:root {
  --pastel: #d9c2ef;
  --pastel-deep: #b999dc;
  --ink: #09090b;
  --panel: #111114;
  --paper: #f7f2ff;
  --red: #ef3f31;
  --red-dark: #aa241d;
  --lilac: #d18aff;
  --mint: #9fe5d0;
  --yellow: #ffe26f;
  --coral: #ff796e;
  --holo: linear-gradient(115deg, #9ff3e2 0%, #b8a3ff 24%, #f6c7ff 46%, #fff6aa 70%, #8de9fa 100%);
  --rounded: "Arial Rounded MT Bold", "Arial Rounded MT", "Trebuchet MS", Arial, sans-serif;
  --mono: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 92px; }
body {
  margin: 0;
  background: #b8a3ff;
  color: var(--ink);
  font-family: var(--mono);
  min-height: 100vh;
}

a { color: inherit; }
img { display: block; max-width: 100%; }

.topbar,
.footerbar {
  background: var(--ink);
  color: white;
  display: flex;
  align-items: center;
  border: 3px solid var(--ink);
  box-shadow: 0 4px 0 rgba(9,9,11,.22);
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 64px;
  padding: 8px 16px;
  gap: 18px;
}

.start-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 4px 14px 4px 5px;
  background: var(--red);
  color: white;
  text-decoration: none;
  border: 2px solid var(--red);
  box-shadow: 3px 3px 0 var(--lilac);
  font: 900 13px var(--rounded);
  clip-path: polygon(8px 0, calc(100% - 8px) 0, calc(100% - 8px) 3px, calc(100% - 3px) 3px, calc(100% - 3px) 8px, 100% 8px, 100% calc(100% - 8px), calc(100% - 3px) calc(100% - 8px), calc(100% - 3px) calc(100% - 3px), calc(100% - 8px) calc(100% - 3px), calc(100% - 8px) 100%, 8px 100%, 8px calc(100% - 3px), 3px calc(100% - 3px), 3px calc(100% - 8px), 0 calc(100% - 8px), 0 8px, 3px 8px, 3px 3px, 8px 3px);
}

.start-button img { border: 0; }
.brand { flex: 1; display: flex; align-items: center; gap: 13px; text-decoration: none; font: 900 18px var(--rounded); letter-spacing: -.03em; }
.brand-status { color: var(--mint); font: 700 10px var(--mono); letter-spacing: .12em; }
.topbar nav { display: flex; gap: 4px; }
.topbar nav a { padding: 10px 11px; text-decoration: none; font-size: 11px; font-weight: 800; border: 1px solid transparent; }
.topbar nav a:hover, .topbar nav a:focus-visible { color: var(--yellow); border-color: var(--yellow); outline: none; }
.topbar nav a.nav-active { color: var(--ink); background: var(--yellow); border-color: var(--yellow); }
.social-nav { display: flex; gap: 7px; }
.social-nav a { width: 32px; height: 32px; display: grid; place-items: center; color: white; background: var(--ink); border: 2px solid var(--ink); text-decoration: none; transition: transform .12s ease, box-shadow .12s ease; }
.social-nav a:last-child { color: white; background: var(--ink); border-color: var(--ink); }
.social-nav a:hover, .social-nav a:focus-visible { transform: translate(-2px, -2px); box-shadow: 4px 4px 0 white; outline: none; }
.social-nav svg { width: 19px; height: 19px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.social-nav svg rect, .social-nav svg circle:not(.social-dot) { fill: none; }
.social-nav svg .social-dot { stroke: none; }
.date-chip { background: var(--paper); color: var(--ink); padding: 9px 12px; font: 800 10px var(--mono); }

main { position: relative; width: min(1300px, calc(100% - 40px)); margin: 0 auto; padding: 42px 0 92px; overflow: hidden; }

.window {
  position: relative;
  background: var(--panel);
  color: white;
  border: 5px solid var(--ink);
  box-shadow: 11px 11px 0 rgba(9,9,11,.2);
  overflow: hidden;
  clip-path: polygon(16px 0, calc(100% - 16px) 0, calc(100% - 16px) 5px, calc(100% - 5px) 5px, calc(100% - 5px) 16px, 100% 16px, 100% calc(100% - 16px), calc(100% - 5px) calc(100% - 16px), calc(100% - 5px) calc(100% - 5px), calc(100% - 16px) calc(100% - 5px), calc(100% - 16px) 100%, 16px 100%, 16px calc(100% - 5px), 5px calc(100% - 5px), 5px calc(100% - 16px), 0 calc(100% - 16px), 0 16px, 5px 16px, 5px 5px, 16px 5px);
}

.holo-border { border-color: var(--ink); background: var(--panel); }
.titlebar { min-height: 51px; padding: 10px 12px 10px 18px; background: var(--ink); color: white; display: flex; align-items: center; justify-content: space-between; gap: 12px; font: 900 15px var(--rounded); letter-spacing: .015em; border-bottom: 2px solid var(--lilac); }
.titlebar-dark { background: var(--ink); border-bottom-color: var(--lilac); }
.titlebar > span:first-child { display: inline-flex; align-items: center; gap: 10px; }
.window-controls { display: inline-flex !important; gap: 4px !important; }
.window-controls span { width: 27px; height: 25px; display: grid; place-items: center; background: var(--lilac); color: var(--ink); border: 2px solid var(--lilac); box-shadow: 2px 2px 0 var(--ink); font: 900 15px/1 Arial, sans-serif; }
.window-controls span:last-child { background: var(--red); color: white; border-color: var(--red); }

.hero-window { margin-bottom: 92px; }
.hero-art-window { background: #aaa; border-color: var(--ink); }
.hero-chrome { min-height: 62px; padding: 10px 15px; display: flex; align-items: center; justify-content: flex-end; background: var(--ink); border-bottom: 5px solid var(--ink); }
.hero-chrome .window-controls { gap: 7px !important; }
.hero-chrome .window-controls span { width: 34px; height: 34px; border-width: 3px; box-shadow: 3px 3px 0 var(--ink); font-size: 17px; }
.hero-art-stage { position: relative; min-height: clamp(650px, 65vw, 790px); overflow: hidden; background: var(--ink); isolation: isolate; }
.hero-art-image { position: absolute; inset: 0; width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: center; }
.hero-copy-panel { position: absolute; z-index: 5; top: 9.5%; right: 5%; width: min(49%, 650px); min-height: 500px; padding: clamp(46px, 4.5vw, 58px); color: white; background: #050506; border: 5px solid var(--ink); box-shadow: 11px 11px 0 rgba(9,9,11,.28); clip-path: polygon(16px 0, calc(100% - 16px) 0, calc(100% - 16px) 5px, calc(100% - 5px) 5px, calc(100% - 5px) 16px, 100% 16px, 100% calc(100% - 16px), calc(100% - 5px) calc(100% - 16px), calc(100% - 5px) calc(100% - 5px), calc(100% - 16px) calc(100% - 5px), calc(100% - 16px) 100%, 16px 100%, 16px calc(100% - 5px), 5px calc(100% - 5px), 5px calc(100% - 16px), 0 calc(100% - 16px), 0 16px, 5px 16px, 5px 5px, 16px 5px); }
.hero-copy-panel h1 { max-width: 560px; margin: 0; font-size: clamp(54px, 5.5vw, 78px); line-height: .88; letter-spacing: -.075em; }
.hero-copy-panel h1 span { color: var(--coral); text-shadow: 5px 5px 0 #6f356c; }
.hero-copy-panel p { max-width: 450px; margin: 28px 0 0; color: #f2edf5; font-size: clamp(14px, 1.35vw, 18px); line-height: 1.5; }
.hero-actions { position: absolute; z-index: 6; left: 3%; top: 40.5%; display: flex; align-items: center; gap: 10px; }
.hero-action-button { display: inline-flex; align-items: center; justify-content: center; min-height: 82px; padding: 18px clamp(28px, 3vw, 43px); color: var(--ink); background: white; border: 3px solid white; box-shadow: 5px 5px 0 rgba(9,9,11,.14); filter: drop-shadow(-8px 8px 0 rgba(255,255,255,.68)); text-decoration: none; white-space: nowrap; font: 900 clamp(15px, 1.5vw, 19px) var(--rounded); transition: transform .12s ease, box-shadow .12s ease, filter .12s ease; clip-path: polygon(11px 0, calc(100% - 11px) 0, calc(100% - 11px) 4px, calc(100% - 4px) 4px, calc(100% - 4px) 11px, 100% 11px, 100% calc(100% - 11px), calc(100% - 4px) calc(100% - 11px), calc(100% - 4px) calc(100% - 4px), calc(100% - 11px) calc(100% - 4px), calc(100% - 11px) 100%, 11px 100%, 11px calc(100% - 4px), 4px calc(100% - 4px), 4px calc(100% - 11px), 0 calc(100% - 11px), 0 11px, 4px 11px, 4px 4px, 11px 4px); }
.hero-action-button:first-child { min-width: clamp(220px, 20vw, 280px); }
.hero-action-button:last-child { min-width: clamp(195px, 17vw, 238px); }
.hero-action-button:hover, .hero-action-button:focus-visible { transform: translate(-3px, -3px); box-shadow: 9px 9px 0 var(--yellow); filter: drop-shadow(-10px 10px 0 rgba(255,255,255,.78)); outline: none; }
.eyebrow { display: inline-block; margin: 0 0 22px; padding: 7px 11px; color: var(--ink); background: var(--mint); font: 900 12px var(--rounded); box-shadow: 5px 5px 0 var(--red); }
h1, h2, h3 { font-family: var(--rounded); font-weight: 900; }
h1 { max-width: 680px; margin: 0; font-size: clamp(50px, 7.2vw, 96px); line-height: .88; letter-spacing: -.075em; }
h1 span { color: var(--coral); text-shadow: 5px 5px 0 #6f356c; }
.lead { max-width: 640px; margin: 28px 0; color: #e5ddeb; font-size: clamp(15px, 1.5vw, 19px); line-height: 1.55; }
.button-row { display: flex; flex-wrap: wrap; gap: 16px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 10px 18px; color: var(--ink); text-decoration: none; border: 3px solid white; box-shadow: 5px 5px 0 var(--lilac); font: 900 13px var(--rounded); transition: transform .12s ease, box-shadow .12s ease; clip-path: polygon(9px 0, calc(100% - 9px) 0, calc(100% - 9px) 3px, calc(100% - 3px) 3px, calc(100% - 3px) 9px, 100% 9px, 100% calc(100% - 9px), calc(100% - 3px) calc(100% - 9px), calc(100% - 3px) calc(100% - 3px), calc(100% - 9px) calc(100% - 3px), calc(100% - 9px) 100%, 9px 100%, 9px calc(100% - 3px), 3px calc(100% - 3px), 3px calc(100% - 9px), 0 calc(100% - 9px), 0 9px, 3px 9px, 3px 3px, 9px 3px); }
.button:hover, .button:focus-visible { transform: translate(-2px, -2px); box-shadow: 8px 8px 0 var(--yellow); outline: none; }
.button-primary { background: var(--red); color: white; border-color: var(--red); }
.button-secondary { background: var(--lilac); border-color: var(--lilac); }
.hero-meta { margin-top: 32px; display: flex; gap: 9px; flex-wrap: wrap; }
.hero-meta span { padding: 8px 9px; background: #242329; color: var(--yellow); border: 1px solid #4e4b55; font-size: 10px; }

.section-block { margin-bottom: 104px; }
.section-heading { display: flex; align-items: center; gap: 18px; margin-bottom: 30px; }
.section-heading > div { flex: 1; }
.section-heading p { margin: 0 0 3px; font-size: 10px; font-weight: 900; letter-spacing: .16em; }
.section-heading h2 { margin: 0; font-size: clamp(36px, 5vw, 68px); line-height: .92; letter-spacing: -.055em; }

.steps-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.step-card { display: flex; flex-direction: column; min-height: 0; }
.process-card .titlebar { font-size: clamp(12px, 1.3vw, 17px); }
.step-image { height: auto; background: var(--pastel); overflow: hidden; border-bottom: 4px solid var(--ink); }
.step-image img { width: 100%; height: 100%; object-fit: cover; }
.process-landscape { aspect-ratio: 1.87 / 1; }
.process-portrait { aspect-ratio: .8 / 1; }
.process-portrait img { object-position: center center; }
.step-copy { position: relative; flex: 1; min-height: 170px; padding: 28px 30px 32px; display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(180px, .9fr); grid-template-rows: auto 1fr; gap: 8px 28px; align-items: end; background: var(--panel); color: white; }
.step-copy h3 { grid-column: 1; grid-row: 2; align-self: start; margin: 0; font-size: clamp(21px, 2.1vw, 29px); line-height: 1.02; letter-spacing: -.04em; }
.step-copy p { grid-column: 2; grid-row: 1 / 3; align-self: end; margin: 0; color: #c9c1cc; line-height: 1.55; font-size: 13px; }
.step-number { grid-column: 1; grid-row: 1; width: auto; height: auto; color: var(--mint); font: 900 11px var(--mono); letter-spacing: .16em; }
.wallet-screen, .database-screen { margin: 30px; min-height: 278px; background: #08080a; border: 2px solid var(--lilac); box-shadow: 7px 7px 0 var(--red); }
.wallet-head { padding: 14px; display: flex; justify-content: space-between; color: var(--lilac); border-bottom: 1px solid #49434e; font-size: 11px; font-weight: 900; }
.online-dot { color: var(--mint); }
.wallet-screen ul { list-style: none; padding: 8px 14px; margin: 0; }
.wallet-screen li { padding: 14px 6px; border-bottom: 1px solid #333039; font-size: 12px; }
.wallet-screen li span { display: inline-block; width: 28px; color: var(--yellow); }
.database-screen { padding: 9px 18px; }
.database-row { display: grid; grid-template-columns: 1fr 1.2fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid #3f3b44; font-size: 11px; }
.database-row span { color: #aaa2b0; }
.database-row strong { color: white; }
.database-row .verified { color: var(--mint); }

.object-gallery { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; align-items: start; }
.object-wide { grid-column: 1 / -1; }
.object-image { overflow: hidden; background: var(--pastel); }
.object-image img { width: 100%; height: 100%; object-fit: cover; }
.object-image.landscape { aspect-ratio: 1.9 / 1; }
.object-image.portrait { aspect-ratio: .82 / 1; }
.object-image.portrait img { object-position: center 42%; }
.object-info { min-height: 170px; display: grid; grid-template-columns: 1.1fr .9fr; gap: 28px; align-items: end; padding: 28px 30px 32px; background: var(--panel); }
.object-info span { color: var(--mint); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.object-info h3 { margin: 6px 0 0; font-size: clamp(24px, 3vw, 38px); letter-spacing: -.04em; }
.object-info p { margin: 0; color: #c9c1cc; line-height: 1.5; font-size: 13px; }
.mockup-note { width: fit-content; max-width: 820px; margin: 18px 0 0 auto; padding: 10px 12px; background: var(--yellow); border: 2px solid var(--ink); font-size: 11px; font-weight: 800; }

.artwork-layout { display: grid; grid-template-columns: minmax(320px, .84fr) minmax(0, 1.16fr); gap: clamp(34px, 7vw, 98px); align-items: center; }
.artwork-phone { margin: 0; display: flex; justify-content: center; align-items: center; }
.artwork-phone img { width: min(100%, 500px); height: auto; filter: drop-shadow(12px 18px 0 rgba(9,9,11,.14)); }
.artwork-content { min-width: 0; display: grid; gap: clamp(40px, 6vw, 74px); align-content: center; }
.app-links { display: grid; grid-template-columns: minmax(250px, 1.2fr) minmax(150px, .8fr); align-items: start; gap: clamp(40px, 7vw, 100px); }
.app-group { display: grid; justify-items: center; gap: 24px; }
.app-group > strong { color: #4b2f78; text-align: center; font: 900 15px/1.12 var(--rounded); letter-spacing: .02em; }
.app-group > div { display: flex; align-items: center; justify-content: center; gap: clamp(18px, 2.6vw, 36px); }
.app-link { width: 120px; display: grid; justify-items: center; gap: 10px; color: var(--ink); text-decoration: none; font: 900 10px var(--rounded); letter-spacing: .05em; transition: transform .14s ease; }
.app-icon { width: 104px; height: 104px; object-fit: contain; filter: drop-shadow(5px 6px 0 rgba(9,9,11,.14)); transition: filter .14s ease; }
.app-link:hover, .app-link:focus-visible { transform: translate(-3px, -3px); outline: none; }
.app-link:hover .app-icon, .app-link:focus-visible .app-icon { filter: drop-shadow(8px 9px 0 var(--ink)); }
.file-window { position: relative; }
.file-list { padding: 20px; }
.file-list > div { display: flex; align-items: center; gap: 17px; padding: 18px 10px; border-bottom: 1px solid #403b44; }
.file-icon { flex: 0 0 54px; height: 52px; display: grid; place-items: center; color: var(--ink); border: 3px solid white; box-shadow: 4px 4px 0 var(--red); font-weight: 900; }
.file-icon.coral { background: var(--coral); }.file-icon.lilac { background: var(--lilac); }.file-icon.mint { background: var(--mint); }.file-icon.yellow { background: var(--yellow); }
.file-list p { margin: 0; }
.file-list strong { display: block; font: 900 16px var(--rounded); }
.file-list small { display: block; margin-top: 6px; color: #aca4b1; line-height: 1.4; }
.security-panel { margin: 0 25px 25px; padding: 22px; display: flex; align-items: center; gap: 18px; color: var(--ink); background: var(--holo); border: 3px solid white; box-shadow: 5px 5px 0 var(--red); }
.security-panel .lock { width: 48px; height: 48px; display: grid; place-items: center; flex: 0 0 48px; background: var(--ink); color: white; }
.security-panel strong { font: 900 15px var(--rounded); }
.security-panel p { margin: 5px 0 0; font-size: 11px; line-height: 1.45; }

.show-poster-window { background: var(--ink); }
.show-poster-link { display: block; overflow: hidden; border-top: 1px solid var(--lilac); }
.show-poster-link img { display: block; width: 100%; height: auto; transition: transform .18s ease; }
.show-poster-link:hover img { transform: scale(1.01); }
.show-poster-link:focus-visible { outline: 4px solid var(--yellow); outline-offset: -7px; }

.contact-window { margin-bottom: 30px; }
.contact-body { display: grid; grid-template-columns: auto minmax(0, 1fr) minmax(260px, auto); gap: 34px; align-items: center; padding: clamp(32px, 6vw, 72px); }
.contact-body > img { border: 0; box-shadow: none; }
.contact-body .eyebrow { margin-bottom: 15px; }
.contact-copy h2 { margin: 0; font-size: clamp(30px, 4vw, 55px); line-height: .98; letter-spacing: -.055em; }
.contact-copy > p:last-child { margin: 14px 0 0; color: #d4cad8; font-size: 17px; }
.contact-actions { display: grid; gap: 14px; }
.contact-actions .button { width: 100%; white-space: nowrap; text-transform: none; }
.contact-socials { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.contact-socials a { min-height: 45px; padding: 9px 12px; display: flex; align-items: center; gap: 9px; color: var(--ink); background: white; border: 2px solid white; text-decoration: none; font: 900 10px var(--rounded); transition: transform .12s ease, box-shadow .12s ease; }
.contact-socials a:hover, .contact-socials a:focus-visible { transform: translate(-2px, -2px); box-shadow: 5px 5px 0 var(--ink); outline: none; }
.contact-socials svg { width: 21px; height: 21px; flex: 0 0 21px; fill: currentColor; stroke: currentColor; stroke-width: 1.8; }
.contact-socials svg rect, .contact-socials svg circle:not(.social-dot) { fill: none; }
.contact-socials svg .social-dot { stroke: none; }
.footerbar { justify-content: space-between; min-height: 54px; padding: 12px 20px; font-size: 10px; letter-spacing: .08em; }

/* WHAT THE FAQ */
.faq-page { max-width: 1120px; }
.faq-hero { margin-bottom: 86px; }
.faq-hero-body { display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(330px, .92fr); gap: clamp(30px, 6vw, 80px); align-items: center; padding: clamp(34px, 6vw, 76px); }
.faq-hero h1 { font-size: clamp(64px, 10vw, 132px); }
.faq-hero .lead { max-width: 610px; }
.faq-flow { padding: 22px; color: var(--ink); background: var(--paper); border: 5px solid white; box-shadow: 9px 9px 0 var(--red); transform: rotate(1deg); }
.faq-flow > p { margin: 0 0 14px; padding: 8px 10px; color: white; background: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .14em; }
.faq-flow ol { list-style: none; margin: 0; padding: 0; }
.faq-flow li { display: grid; grid-template-columns: 52px 1fr; gap: 14px; align-items: center; padding: 15px 4px; border-bottom: 2px solid var(--ink); }
.faq-flow li:last-child { border-bottom: 0; }
.faq-flow li span { width: 44px; height: 40px; display: grid; place-items: center; color: white; background: var(--red); border: 2px solid var(--ink); font: 900 13px var(--rounded); }
.faq-flow li strong { font: 900 14px var(--rounded); line-height: 1.15; }

.faq-group { margin-bottom: 82px; scroll-margin-top: 88px; }
.faq-group-heading { margin-bottom: 22px; padding: 0 4px; }
.faq-group-heading p { width: fit-content; margin: 0 0 8px; padding: 7px 9px; color: white; background: var(--ink); font-size: 10px; font-weight: 900; letter-spacing: .12em; }
.faq-group-heading h2 { margin: 0; font-size: clamp(39px, 6vw, 74px); line-height: .9; letter-spacing: -.06em; }
.faq-list { display: grid; gap: 13px; }
.faq-item { color: var(--ink); background: var(--paper); border: 4px solid var(--ink); box-shadow: 6px 6px 0 rgba(9,9,11,.19); clip-path: polygon(11px 0, calc(100% - 11px) 0, calc(100% - 11px) 4px, calc(100% - 4px) 4px, calc(100% - 4px) 11px, 100% 11px, 100% calc(100% - 11px), calc(100% - 4px) calc(100% - 11px), calc(100% - 4px) calc(100% - 4px), calc(100% - 11px) calc(100% - 4px), calc(100% - 11px) 100%, 11px 100%, 11px calc(100% - 4px), 4px calc(100% - 4px), 4px calc(100% - 11px), 0 calc(100% - 11px), 0 11px, 4px 11px, 4px 4px, 11px 4px); }
.faq-item:nth-child(4n + 2) { box-shadow: 6px 6px 0 var(--lilac); }
.faq-item:nth-child(4n + 3) { box-shadow: 6px 6px 0 var(--mint); }
.faq-item:nth-child(4n + 4) { box-shadow: 6px 6px 0 var(--yellow); }
.faq-item summary { display: grid; grid-template-columns: 1fr auto; gap: 18px; align-items: center; min-height: 76px; padding: 17px 19px 17px 25px; cursor: pointer; list-style: none; font: 900 clamp(17px, 2.1vw, 23px) var(--rounded); letter-spacing: -.025em; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:focus-visible { outline: 4px solid var(--red); outline-offset: -5px; }
.faq-toggle { width: 40px; height: 40px; display: grid; place-items: center; color: white; background: var(--red); border: 3px solid var(--ink); box-shadow: 3px 3px 0 var(--lilac); font: 900 25px/1 Arial, sans-serif; transition: transform .15s ease; }
.faq-item[open] { background: white; }
.faq-item[open] .faq-toggle { transform: rotate(45deg); background: var(--ink); }
.faq-answer { padding: 0 78px 24px 25px; border-top: 2px solid var(--ink); }
.faq-answer p { max-width: 870px; margin: 20px 0 0; font-size: 15px; line-height: 1.65; }

.faq-final { margin: 96px 0 30px; }
.faq-final-body { padding: clamp(34px, 6vw, 70px); }
.faq-final-body h2 { max-width: 820px; margin: 0; font-size: clamp(38px, 6vw, 72px); line-height: .95; letter-spacing: -.06em; }
.faq-final-body > p:not(.eyebrow) { max-width: 840px; margin: 23px 0 32px; color: #d6ceda; font-size: 16px; line-height: 1.6; }

@media (max-width: 980px) {
  .topbar nav { display: none; }
  .hero-art-stage { min-height: 720px; }
  .hero-copy-panel { top: 8%; right: 3%; width: 62%; }
  .hero-actions { top: auto; right: 3%; bottom: 7%; left: 3%; }
  .object-info { grid-template-columns: 1fr; align-items: start; }
  .contact-body { grid-template-columns: auto 1fr; }
  .contact-actions { grid-column: 1 / -1; grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .faq-hero-body { grid-template-columns: 1fr; }
  .faq-flow { transform: none; }
}

@media (max-width: 760px) {
  html { scroll-padding-top: 72px; }
  .topbar { min-height: 57px; padding: 6px 9px; gap: 10px; }
  .start-button span, .brand-status, .date-chip { display: none; }
  .start-button { padding-right: 5px; }
  .brand { font-size: 15px; }
  main { width: min(100% - 20px, 1300px); padding-top: 20px; }
  .window { border-width: 4px; box-shadow: 7px 7px 0 rgba(9,9,11,.2); }
  .titlebar { min-height: 43px; padding: 8px 9px 8px 14px; font-size: 12px; }
  .window-controls span { width: 23px; height: 21px; font-size: 12px; }
  .hero-window, .section-block { margin-bottom: 68px; }
  .hero-chrome { min-height: 48px; padding: 7px 9px; }
  .hero-chrome .window-controls { gap: 5px !important; }
  .hero-chrome .window-controls span { width: 29px; height: 28px; border-width: 2px; box-shadow: 2px 2px 0 var(--ink); font-size: 14px; }
  .hero-art-stage { min-height: 720px; }
  .hero-copy-panel { top: 32px; right: 17px; left: 17px; width: auto; min-height: auto; padding: 34px 27px 40px; box-shadow: 7px 7px 0 rgba(9,9,11,.28); }
  .hero-copy-panel h1 { font-size: clamp(49px, 15vw, 70px); }
  .hero-copy-panel p { margin-top: 24px; font-size: 14px; }
  .hero-actions { right: 17px; bottom: 24px; left: 17px; flex-direction: column; align-items: stretch; gap: 9px; }
  .hero-action-button, .hero-action-button:first-child, .hero-action-button:last-child { width: 100%; min-width: 0; min-height: 59px; }
  h1 { font-size: clamp(47px, 16vw, 72px); }
  .lead { font-size: 15px; }
  .button { width: 100%; }
  .section-heading { gap: 12px; }
  .section-heading h2 { font-size: clamp(35px, 12vw, 55px); }
  .steps-grid, .object-gallery, .artwork-layout { grid-template-columns: 1fr; }
  .object-wide { grid-column: auto; }
  .step-card { min-height: 0; }
  .step-image { height: auto; }
  .process-portrait { aspect-ratio: .88 / 1; }
  .step-copy { min-height: 0; padding: 24px 22px 28px; grid-template-columns: 1fr; grid-template-rows: auto auto auto; gap: 8px; }
  .step-copy h3 { grid-column: 1; grid-row: 2; }
  .step-copy p { grid-column: 1; grid-row: 3; margin-top: 8px; }
  .step-number { grid-column: 1; grid-row: 1; }
  .wallet-screen, .database-screen { margin: 20px; }
  .object-image.landscape { aspect-ratio: 1.35 / 1; }
  .object-info { padding: 22px; }
  .artwork-layout { gap: 38px; }
  .artwork-phone img { width: min(82vw, 440px); }
  .artwork-content { gap: 38px; }
  .app-links { grid-template-columns: 1fr; gap: 36px; }
  .app-group { gap: 17px; }
  .app-group > strong { font-size: 13px; }
  .app-group > div { gap: 14px; }
  .app-link { width: 86px; font-size: 8px; }
  .app-icon { width: 76px; height: 76px; }
  .file-window { position: static; }
  .file-list { padding: 10px; }
  .file-list > div { align-items: flex-start; padding: 15px 8px; }
  .security-panel { margin: 0 15px 18px; }
  .contact-body { grid-template-columns: 1fr; gap: 26px; padding: 32px 22px; }
  .contact-body > img { width: 90px; height: 90px; }
  .contact-actions { grid-column: auto; grid-template-columns: 1fr; }
  .contact-actions .button { white-space: normal; overflow-wrap: anywhere; }
  .contact-socials { grid-template-columns: 1fr; }
  .footerbar { flex-direction: column; align-items: flex-start; gap: 5px; }
  .faq-hero { margin-bottom: 62px; }
  .faq-hero-body { padding: 30px 20px 36px; }
  .faq-hero h1 { font-size: clamp(60px, 22vw, 96px); }
  .faq-group { margin-bottom: 62px; }
  .faq-item summary { min-height: 68px; padding: 14px 13px 14px 17px; }
  .faq-toggle { width: 36px; height: 36px; }
  .faq-answer { padding: 0 18px 21px; }
  .faq-answer p { font-size: 14px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .button, .hero-action-button { transition: none; }
}
