:root {
  color-scheme: dark;
  --black: #0a0a09;
  --black-soft: #11110f;
  --paper: #e9e5dc;
  --paper-soft: #dcd7cd;
  --white: #f5f2eb;
  --muted: #a9a59d;
  --ink: #11110f;
  --ink-muted: #5b5954;
  --orange: #ff6b19;
  --orange-hot: #ff7c2b;
  --rust: #a53f2f;
  --red: #c45138;
  --line-dark: rgba(245, 242, 235, .2);
  --line-light: rgba(17, 17, 15, .24);
  --ease-out: cubic-bezier(.23, 1, .32, 1);
  --ease-in-out: cubic-bezier(.77, 0, .175, 1);
  --ease-drawer: cubic-bezier(.32, .72, 0, 1);
  --shell: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { overflow-x: clip; scroll-behavior: smooth; scroll-padding-top: 92px; background: var(--black); }
body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--black);
  color: var(--white);
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
p, h1, h2, h3, blockquote { margin-top: 0; }
::selection { background: var(--orange); color: var(--black); }

.shell { width: min(calc(100% - 64px), var(--shell)); margin-inline: auto; min-width: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px; border: 1px solid currentColor; background: var(--paper); color: var(--ink); transform: translateY(-160%); transition: transform 150ms var(--ease-out); }
.skip-link:focus { transform: translateY(0); }
:focus-visible { outline: 2px solid var(--orange-hot); outline-offset: 4px; }

/* Header */
.site-header { position: fixed; z-index: 100; inset: 0 0 auto; height: 88px; color: var(--white); transition: background-color 180ms ease, border-color 180ms ease; }
.site-header.is-scrolled { border-bottom: 1px solid var(--line-dark); background: rgba(10,10,9,.96); }
.nav { display: flex; min-height: 88px; align-items: center; justify-content: space-between; }
.brand { display: inline-flex; align-items: center; gap: 13px; font-size: 21px; font-weight: 650; letter-spacing: -.04em; }
.brand-icon { display: block; width: 42px; height: 42px; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links > a { padding: 10px 13px; color: #d4d0c8; font-size: 14px; font-weight: 560; transition: color 140ms ease, background-color 140ms ease, transform 120ms var(--ease-out); }
.nav-links > a:active { transform: scale(.97); }
.nav-links > a[aria-current="page"] { color: white; }
.nav-links .nav-cta { margin-left: 8px; border: 1px solid rgba(245,242,235,.55); color: white; }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--line-dark); background: var(--black); cursor: pointer; }
.nav-toggle > span:not(.sr-only) { display: block; width: 17px; height: 1px; margin: 5px auto; background: currentColor; transition: transform 170ms var(--ease-out); }
.nav-toggle.is-open > span:nth-child(2) { transform: translateY(3px) rotate(45deg); }
.nav-toggle.is-open > span:nth-child(3) { transform: translateY(-3px) rotate(-45deg); }

/* Shared typography */
.section-index, .hero-kicker, .status-label, .screen-number, .footer-links strong, .footer-bottom {
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.section-index { margin: 0; color: var(--orange-hot); }
.section-paper .section-index, .faq-section .section-index { color: #9c341d; }
.section-dark { background: var(--black); color: var(--white); }
.section-paper { background: var(--paper); color: var(--ink); }
.section { padding-block: clamp(110px, 12vw, 180px); }

/* Hero */
.hero { position: relative; min-height: 100vh; min-height: 100svh; overflow: hidden; background: var(--black); }
.hero-field { position: absolute; inset: 0; overflow: hidden; background: radial-gradient(ellipse at 72% 36%,#a94739 0,#4b211c 42%,#0e0e0f 78%); }
.hero-dither { display: block; width: 100%; height: 100%; }
.hero-field::before { content: ""; position: absolute; z-index: 1; inset: 0; background: rgba(0,0,0,.06); pointer-events: none; }
.hero-field::after { content: ""; position: absolute; z-index: 2; inset: auto 0 0; height: 32%; background: linear-gradient(to bottom,transparent,var(--black)); pointer-events: none; }
.hero-content { position: relative; z-index: 2; display: flex; align-items: center; flex-direction: column; padding-top: clamp(210px,26svh,250px); text-align: center; }
.hero-kicker { margin-bottom: 32px; color: #f0d7cc; }
.hero h1 { max-width: 1160px; margin-bottom: 34px; font-size: clamp(5rem, 9.1vw, 9rem); font-weight: 300; letter-spacing: -.079em; line-height: .84; }
.hero-lede { max-width: 690px; margin-bottom: 35px; color: #e3ddd5; font-size: clamp(17px,1.6vw,21px); font-weight: 530; line-height: 1.55; }
.hero-actions { display: flex; align-items: center; flex-direction: column; gap: 18px; }
.button { display: inline-flex; min-height: 54px; align-items: center; justify-content: center; padding: 0 27px; border: 1px solid transparent; font-size: 14px; font-weight: 620; transition: transform 130ms var(--ease-out), background-color 160ms ease, color 160ms ease, border-color 160ms ease; }
.button:active { transform: scale(.97); }
.button-light { border-color: var(--paper); background: var(--paper); color: var(--ink); }
.status-label { display: inline-block; padding: 8px 11px; border: 1px solid rgba(245,242,235,.34); color: #ded8d0; }

/* Sticky phone story */
.phone-story { position: relative; height: 240svh; min-height: 1600px; background: var(--black); }
.phone-story-sticky { position: sticky; z-index: 2; top: 0; height: 100svh; min-height: 640px; overflow: hidden; isolation: isolate; }
.phone-story-field { position: absolute; z-index: -1; inset: 0; background: linear-gradient(180deg,#0a0a09,#100d0b 48%,#0a0a09); }
.phone-story-field::before { content: ""; position: absolute; inset: -8%; background-image: radial-gradient(circle, rgba(255,142,85,.28) 0 1px, transparent 1.35px); background-size: 11px 11px; opacity: .38; -webkit-mask-image: linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent); mask-image: linear-gradient(90deg,transparent,#000 18%,#000 82%,transparent); }
.product-stage { position: relative; z-index: 2; height: 100%; perspective: 1400px; transform-style: preserve-3d; }
.product-phone { position: absolute; z-index: 1; left: 50%; top: 48%; width: min(306px,24vw,calc((100svh - 150px) * .45)); margin: 0; backface-visibility: hidden; opacity: .15; transform: translate3d(calc(-50% + 560px),-50%,-420px) rotateY(-48deg) rotateZ(3deg); transform-origin: center; transform-style: preserve-3d; transition: transform 520ms var(--ease-drawer),opacity 220ms ease; will-change: transform,opacity; }
.product-phone[data-phone-index="0"] { z-index: 3; opacity: 1; transform: translate3d(-50%,-50%,0) rotateY(0deg) rotateZ(0deg); }
.product-phone[data-phone-index="1"] { z-index: 2; opacity: .45; transform: translate3d(calc(-50% + 360px),-50%,-220px) rotateY(-38deg) rotateZ(2deg); }
.product-phone::before,.product-phone::after { content: ""; position: absolute; z-index: -1; width: 4px; background: linear-gradient(180deg,#4a4a47,#11110f 36%,#292925); }
.product-phone::before { left: -3px; top: 112px; height: 38px; border-radius: 3px 0 0 3px; box-shadow: 0 50px 0 #242420,0 94px 0 #242420; }
.product-phone::after { right: -3px; top: 154px; height: 72px; border-radius: 0 3px 3px 0; }
.phone-display { position: relative; overflow: hidden; border: 8px solid #0a0a09; border-radius: 44px; background: #050504; box-shadow: -9px 8px 0 #030302,0 42px 85px rgba(0,0,0,.6),inset 0 0 0 1px rgba(255,255,255,.16); }
.phone-display::after { content: ""; position: absolute; z-index: 3; inset: 0; border: 1px solid rgba(255,255,255,.16); border-radius: 35px; box-shadow: inset 10px 0 18px rgba(255,255,255,.035),inset -10px 0 18px rgba(0,0,0,.12); pointer-events: none; }
.product-phone img { width: 100%; height: auto; }
.phone-island { position: absolute; z-index: 4; left: 50%; top: 10px; width: 78px; height: 22px; transform: translateX(-50%); border-radius: 999px; background: #050505; box-shadow: inset 0 0 0 1px rgba(255,255,255,.05),0 1px 2px rgba(0,0,0,.28); }
.phone-island::after { content: ""; position: absolute; right: 8px; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: radial-gradient(circle at 38% 38%,#28415b,#090c10 68%); }
.phone-story-chrome { position: absolute; z-index: 5; inset: 0; pointer-events: none; }
.phone-story-captions { position: absolute; left: 0; bottom: clamp(54px,8vh,86px); width: 320px; height: 38px; }
.phone-story-captions p { position: absolute; inset: 0; margin: 0; color: var(--white); font-size: 24px; font-weight: 520; letter-spacing: -.035em; opacity: 0; transform: translateY(10px); transition: opacity 180ms ease,transform 240ms var(--ease-out); }
.phone-story-captions p.is-active { opacity: 1; transform: translateY(0); }
.phone-story-progress { position: absolute; right: 0; bottom: clamp(62px,8.5vh,92px); display: flex; gap: 8px; }
.phone-story-progress span { width: 34px; height: 2px; background: rgba(245,242,235,.22); transition: background-color 160ms ease,transform 180ms var(--ease-out); transform-origin: left; }
.phone-story-progress span.is-active { background: var(--orange-hot); transform: scaleX(1.18); }

/* Statement */
.manifesto { padding-block: clamp(130px, 15vw, 220px); border-top: 1px solid var(--line-dark); }
.manifesto > .manifesto-grid { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 50px; }
.manifesto h2 { max-width: 980px; margin-bottom: 45px; font-size: clamp(4rem, 8.6vw, 8.2rem); font-weight: 300; letter-spacing: -.075em; line-height: .89; }
.manifesto h2 span, .boundary-grid h2 span { color: #6f6c66; }
.manifesto > .manifesto-grid > div > p { max-width: 680px; margin: 0 0 0 auto; color: var(--muted); font-size: 20px; line-height: 1.7; }
.manifesto-minimal { display: flex; justify-content: center; }
.manifesto-minimal h2 { max-width: none; margin: 0; text-align: center; }
.manifesto-minimal h2 span { color: #6f6c66; }

/* Product */
.product-section { padding-block: clamp(120px, 13vw, 190px); }
.section-intro { display: grid; grid-template-columns: 160px minmax(0,1.35fr) minmax(260px,.65fr); align-items: end; gap: 50px; margin-bottom: 90px; }
.section-intro h2 { margin: 0; font-size: clamp(3.5rem, 6.4vw, 6rem); font-weight: 350; letter-spacing: -.068em; line-height: .91; }
.section-intro > p:last-child { margin: 0 0 6px; color: var(--ink-muted); font-size: 17px; line-height: 1.65; }
.screen-runway { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border-top: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
.screen-runway article { position: relative; min-width: 0; padding: 34px clamp(22px,3.5vw,44px) 46px; border-left: 1px solid var(--line-light); }
.screen-runway article:last-child { border-right: 1px solid var(--line-light); }
.screen-number { margin-bottom: 28px; color: var(--ink-muted); }
.screen-runway img { width: min(100%, 300px); margin-inline: auto; border: 1px solid rgba(17,17,15,.28); border-radius: 24px; box-shadow: 0 28px 60px rgba(17,17,15,.14); }
.screen-runway h3 { margin: 34px 0 10px; font-size: 25px; font-weight: 520; letter-spacing: -.04em; }
.screen-runway p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.6; }

/* Image-led product gallery */
.visual-showcase { overflow: hidden; padding-block: clamp(120px,13vw,190px); }
.visual-showcase-heading { display: grid; grid-template-columns: 160px minmax(0,1fr); align-items: end; gap: 50px; margin-bottom: 80px; }
.visual-showcase-heading h2 { max-width: 1020px; margin: 0; font-size: clamp(4rem,7.2vw,7rem); font-weight: 330; letter-spacing: -.072em; line-height: .9; }
.visual-gallery { display: grid; height: 760px; grid-template-columns: minmax(0,.85fr) minmax(0,1.15fr) minmax(0,.85fr); align-items: center; gap: 14px; }
.visual-panel { position: relative; min-width: 0; height: 620px; margin: 0; overflow: hidden; isolation: isolate; transition: transform 260ms var(--ease-out),opacity 180ms ease; }
.visual-panel-capture { background: #bd4937; color: white; }
.visual-panel-compare { height: 760px; background: #131311; color: white; }
.visual-panel-report { background: #d6d1c8; color: var(--ink); }
.gallery-device { position: absolute; left: 50%; top: 47%; width: min(74%,280px); transform: translate(-50%,-50%); transition: transform 300ms var(--ease-out); }
.gallery-device .phone-display { border-width: 7px; border-radius: 40px; box-shadow: -8px 7px 0 rgba(0,0,0,.78),0 35px 70px rgba(0,0,0,.35); }
.gallery-device .phone-display::after { border-radius: 32px; }
.visual-panel-capture .gallery-device { transform: translate(-53%,-47%) rotate(-5deg); }
.visual-panel-compare .gallery-device { width: min(70%,310px); }
.visual-panel-report .gallery-device { transform: translate(-47%,-47%) rotate(5deg); }
.visual-panel figcaption { position: absolute; z-index: 4; left: 24px; bottom: 22px; padding: 8px 11px; background: rgba(10,10,9,.86); color: white; font-size: 17px; font-weight: 620; letter-spacing: -.03em; }

/* Feature ledger */
.feature-ledger { padding-block: clamp(120px, 13vw, 190px); }
.ledger-heading { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 50px; margin-bottom: 80px; }
.ledger-heading h2 { max-width: 980px; margin: 0; font-size: clamp(3.7rem,7vw,6.8rem); font-weight: 320; letter-spacing: -.07em; line-height: .9; }
.ledger-list { border-top: 1px solid var(--line-dark); }
.ledger-list article { position: relative; display: block; padding: 50px 0; border-bottom: 1px solid var(--line-dark); transition: background-color 180ms ease; }
.ledger-list article > span { color: var(--orange); font-family: ui-monospace,monospace; font-size: 12px; }
.ledger-list h3 { margin: 0; font-size: clamp(3.5rem,7vw,7rem); font-weight: 340; letter-spacing: -.07em; line-height: .94; transition: color 160ms ease,transform 220ms var(--ease-out); }
.ledger-list p { margin: 3px 0 0; color: var(--muted); font-size: 16px; line-height: 1.65; }
.ledger-hover-preview { position: fixed; z-index: 90; left: 0; top: 0; width: 216px; opacity: 0; pointer-events: none; transform: translate3d(-300px,-300px,0); transition: opacity 140ms ease,visibility 0s linear 140ms; visibility: hidden; }
.ledger-hover-preview.is-visible { opacity: 1; transition-delay: 0s; visibility: visible; }
.ledger-preview-device { position: relative; perspective: 900px; transform: scale(.96) rotateY(-7deg) translateY(8px); transform-origin: center; transition: transform 260ms var(--ease-out); }
.ledger-hover-preview.is-visible .ledger-preview-device { transform: scale(1) rotateY(0deg) translateY(0); }
.ledger-preview-device::before,.ledger-preview-device::after { content: ""; position: absolute; z-index: -1; width: 3px; background: #242420; }
.ledger-preview-device::before { left: -2px; top: 72px; height: 26px; border-radius: 2px 0 0 2px; box-shadow: 0 34px 0 #242420,0 63px 0 #242420; }
.ledger-preview-device::after { right: -2px; top: 98px; height: 48px; border-radius: 0 2px 2px 0; }
.ledger-preview-device .phone-display { border-width: 6px; border-radius: 34px; box-shadow: -6px 5px 0 #030302,0 26px 50px rgba(0,0,0,.62),inset 0 0 0 1px rgba(255,255,255,.15); }
.ledger-preview-device .phone-display::after { border-radius: 27px; }
.ledger-preview-device .phone-island { top: 7px; width: 58px; height: 17px; }
.ledger-preview-device .phone-island::after { right: 6px; top: 5px; width: 6px; height: 6px; }
@media (hover: hover) and (pointer: fine) {
  .ledger-list article[data-feature-preview]:hover { cursor: none; }
  .ledger-list article:hover { background: rgba(255,255,255,.018); }
  .ledger-list article:hover h3 { color: white; transform: translateX(7px); }
}

/* Privacy */
.privacy-band { position: relative; overflow: hidden; padding-block: clamp(120px,14vw,210px); background: var(--rust); color: white; }
.privacy-texture { position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,207,178,.5) 0 1.25px, transparent 1.55px); background-size: 12px 12px; opacity: .58; -webkit-mask-image: radial-gradient(ellipse 60% 120% at 83% 48%, #000 0 22%, transparent 75%); mask-image: radial-gradient(ellipse 60% 120% at 83% 48%, #000 0 22%, transparent 75%); }
.privacy-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 160px minmax(0,1fr) 330px; gap: 50px; }
.privacy-band .section-index { color: #ffd8c5; }
.privacy-statement h2 { margin-bottom: 35px; font-size: clamp(4rem,7.6vw,7.5rem); font-weight: 300; letter-spacing: -.075em; line-height: .87; }
.privacy-statement p { max-width: 620px; margin-bottom: 36px; color: #f0d8ce; font-size: 18px; line-height: 1.68; }
.line-link { display: inline-flex; align-items: center; gap: 18px; padding-bottom: 7px; border-bottom: 1px solid currentColor; font-size: 14px; font-weight: 650; }
.line-link span { transition: transform 160ms var(--ease-out); }
.privacy-facts { align-self: end; border-top: 1px solid rgba(255,255,255,.42); }
.privacy-facts > div { display: grid; gap: 7px; padding: 22px 0; border-bottom: 1px solid rgba(255,255,255,.42); }
.privacy-facts span { color: #f0c1b1; font-family: ui-monospace,monospace; font-size: 10px; letter-spacing: .15em; }
.privacy-facts strong { font-size: 16px; font-weight: 560; }
.privacy-showcase { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(300px,.72fr) minmax(480px,1.28fr); align-items: center; gap: 80px; }
.privacy-showcase .privacy-statement h2 { margin: 22px 0 28px; }
.privacy-showcase .privacy-statement p:not(.section-index) { max-width: 470px; margin-bottom: 30px; }
.privacy-stack { position: relative; min-height: 720px; perspective: 1200px; }
.privacy-device { position: absolute; width: min(42%,300px); margin: 0; transition: transform 360ms var(--ease-drawer); }
.privacy-device .phone-display { border-width: 7px; border-radius: 42px; box-shadow: -9px 7px 0 rgba(0,0,0,.76),0 42px 80px rgba(65,18,12,.35); }
.privacy-device .phone-display::after { border-radius: 34px; }
.privacy-device-back { z-index: 1; left: 12%; top: 95px; transform: rotateY(14deg) rotateZ(-7deg); }
.privacy-device-front { z-index: 2; right: 8%; top: 15px; transform: rotateY(-8deg) rotateZ(4deg); }

/* Process */
.process-section { padding-block: clamp(120px,13vw,190px); }
.process-grid { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); border: 1px solid var(--line-light); }
.process-grid article { min-height: 320px; padding: clamp(28px,4vw,50px); border-right: 1px solid var(--line-light); }
.process-grid article:last-child { border-right: 0; }
.process-grid article > span { font-family: ui-monospace,monospace; font-size: 11px; color: #9c341d; }
.process-grid h3 { margin: 115px 0 16px; font-size: 28px; font-weight: 480; letter-spacing: -.045em; }
.process-grid p { margin: 0; color: var(--ink-muted); font-size: 15px; line-height: 1.65; }

/* Boundary */
.boundary-section { padding-block: clamp(130px,15vw,230px); }
.boundary-grid { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 50px; }
.boundary-grid h2 { margin: 0; font-size: clamp(3.8rem,7.7vw,7.2rem); font-weight: 300; letter-spacing: -.075em; line-height: .9; }
.boundary-grid > p:last-child { grid-column: 2; max-width: 730px; margin: 20px 0 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.boundary-minimal { display: flex; align-items: flex-end; justify-content: space-between; gap: 80px; }
.boundary-minimal h2 { max-width: 770px; margin: 0; font-size: clamp(3.8rem,7vw,7rem); font-weight: 310; letter-spacing: -.073em; line-height: .9; }
.boundary-minimal p { max-width: 430px; margin: 0 0 8px; color: var(--muted); font-size: 15px; line-height: 1.65; }

/* FAQ */
.faq-section { padding-block: clamp(120px,13vw,190px); }
.faq-layout { display: grid; grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr); gap: 100px; }
.faq-heading h2 { margin: 23px 0 0; font-size: clamp(3.8rem,6.7vw,6.4rem); font-weight: 340; letter-spacing: -.072em; line-height: .9; }
.faq-list { border-top: 1px solid var(--line-light); }
.faq-list details { border-bottom: 1px solid var(--line-light); }
.faq-list summary { position: relative; display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 25px; padding: 20px 0; cursor: pointer; list-style: none; font-size: 17px; font-weight: 560; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { position: relative; flex: 0 0 auto; width: 18px; height: 18px; }
.faq-list summary span::before,.faq-list summary span::after { content: ""; position: absolute; left: 2px; top: 8px; width: 14px; height: 1px; background: currentColor; transition: transform 180ms var(--ease-out); }
.faq-list summary span::after { transform: rotate(90deg); }
.faq-list details[open] summary span::after { transform: rotate(0); }
.faq-list details p { max-width: 690px; margin: -3px 45px 25px 0; color: var(--ink-muted); font-size: 15px; line-height: 1.7; }

/* Waitlist */
.waitlist-section { position: relative; overflow: hidden; padding-block: clamp(130px,15vw,220px); border-top: 1px solid var(--line-dark); }
.waitlist-signal { position: absolute; right: -180px; bottom: -320px; width: 760px; height: 760px; border: 1px solid rgba(255,107,25,.22); border-radius: 50%; box-shadow: 0 0 0 100px rgba(255,107,25,.03),0 0 0 220px rgba(255,107,25,.02); }
.waitlist-signal::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,25,.5) 0 1.2px, transparent 1.5px); background-size: 12px 12px; border-radius: inherit; -webkit-mask-image: linear-gradient(120deg, transparent 20%, #000 90%); mask-image: linear-gradient(120deg, transparent 20%, #000 90%); }
.waitlist-layout { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0,.85fr) minmax(440px,1.15fr); gap: 110px; align-items: end; }
.waitlist-copy h2 { margin: 25px 0 25px; font-size: clamp(4rem,7vw,6.7rem); font-weight: 300; letter-spacing: -.073em; line-height: .88; }
.waitlist-copy > p:not(.section-index) { max-width: 500px; margin-bottom: 28px; color: var(--muted); font-size: 17px; line-height: 1.7; }
.waitlist-card { min-width: 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.waitlist-form-shell { padding-block: 32px; }
.waitlist-field > .form__entry > label:first-child { display: block; margin-bottom: 11px; color: #c7c3bb; font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; }
.waitlist-control { display: grid; grid-template-columns: minmax(0,1fr) auto; border: 1px solid #77736c; background: #f1eee7; transition: border-color 150ms ease, box-shadow 170ms ease; }
.waitlist-control:focus-within { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,107,25,.18); }
.waitlist-control input { min-width: 0; min-height: 62px; padding: 0 18px; border: 0; outline: 0; background: transparent; color: var(--ink); font-size: 16px; }
.waitlist-control input::placeholder { color: #77736c; opacity: 1; }
.waitlist-submit { position: relative; display: inline-flex; min-width: 168px; min-height: 62px; align-items: center; justify-content: center; gap: 14px; padding: 0 20px; border: 0; border-left: 1px solid #77736c; background: var(--orange); color: #110d0a; cursor: pointer; font-size: 14px; font-weight: 680; transition: transform 130ms var(--ease-out), background-color 150ms ease; }
.waitlist-submit:active { transform: scale(.98); }
.waitlist-submit:disabled { cursor: wait; }
.waitlist-submit:disabled .waitlist-submit-label,.waitlist-submit:disabled .waitlist-submit-arrow { opacity: 0; }
.waitlist-submit-arrow { font-size: 17px; transition: transform 150ms var(--ease-out), opacity 100ms ease; }
.waitlist-spinner { position: absolute; width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-dasharray: 39 18; animation: waitlist-spin .75s linear infinite; }
.waitlist-spinner.sib-hide-loader-icon { display: none; }
@keyframes waitlist-spin { to { transform: rotate(360deg); } }
.entry__error { display: none; margin-top: 9px; color: #ff9b80; font-size: 13px; }
.entry_errored .waitlist-control { border-color: #ff8064; box-shadow: 0 0 0 3px rgba(255,80,50,.14); }
.input--hidden { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.waitlist-note { margin: 13px 0 0; color: #85817a; font-size: 11px; line-height: 1.55; }
.waitlist-note a { color: #bbb7af; text-decoration: underline; text-underline-offset: 2px; }
.sib-form-message-panel { display: none; }
.sib-form-message-panel--active { display: flex; }
.waitlist-message { align-items: center; gap: 14px; margin: 18px 0; padding: 18px 0; border-top: 1px solid currentColor; border-bottom: 1px solid currentColor; font-size: 14px; }
.waitlist-message p { margin: 0; }
.waitlist-message-icon { display: grid; flex: 0 0 auto; place-items: center; width: 30px; height: 30px; border: 1px solid currentColor; }
.waitlist-message-error { color: #ff9b80; }
.waitlist-message-success { min-height: 125px; color: #d5e8d4; font-size: 16px; }
.waitlist-card.is-complete .waitlist-form-shell { display: none; }

/* Footer */
.site-footer { padding: 90px 0 28px; border-top: 1px solid var(--line-dark); background: var(--black); color: var(--white); }
.footer-grid { display: grid; grid-template-columns: minmax(260px,1.4fr) repeat(3,minmax(130px,.55fr)); gap: 55px; padding-bottom: 70px; }
.footer-brand { margin-bottom: 20px; }
.footer-grid > div:first-child p { max-width: 340px; color: var(--muted); font-size: 13px; }
.footer-links { display: flex; align-items: flex-start; flex-direction: column; gap: 10px; }
.footer-links strong { margin-bottom: 8px; color: #918d85; }
.footer-links a { color: #bab6ae; font-size: 13px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 25px; padding-top: 22px; border-top: 1px solid var(--line-dark); color: #918d85; font-size: 10px; }

/* About */
.page-hero { position: relative; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.55fr); align-items: end; gap: 80px; min-height: 760px; padding-top: 160px; padding-bottom: 100px; }
.page-hero::before,.privacy-hero::before { content: ""; position: absolute; z-index: -1; right: -24vw; top: 0; width: 75vw; height: 100%; background-image: radial-gradient(circle, rgba(196,81,56,.65) 0 1.35px, transparent 1.6px); background-size: 12px 12px; -webkit-mask-image: radial-gradient(ellipse at center,#000,transparent 70%); mask-image: radial-gradient(ellipse at center,#000,transparent 70%); }
.page-hero .overline,.privacy-hero .overline { color: var(--orange); font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.page-hero h1,.privacy-hero h1 { margin: 25px 0 0; font-size: clamp(4.8rem,8.7vw,8.4rem); font-weight: 300; letter-spacing: -.078em; line-height: .85; }
.page-hero h1 span,.privacy-hero h1 span { color: #77736d; }
.about-intro p,.privacy-summary p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.about-intro p:last-child { margin-bottom: 0; }
.about-manifesto { padding-block: clamp(120px,13vw,190px); background: var(--paper); color: var(--ink); }
.about-manifesto .manifesto-grid { display: grid; grid-template-columns: minmax(300px,.75fr) minmax(0,1.25fr); align-items: center; gap: 100px; }
.manifesto-visual { position: relative; display: grid; min-height: 520px; place-items: center; overflow: hidden; border: 1px solid var(--line-light); background: #171715; }
.manifesto-visual::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(circle, rgba(255,107,25,.45) 0 1px, transparent 1.4px); background-size: 10px 10px; mix-blend-mode: screen; -webkit-mask-image: radial-gradient(circle at 50% 50%,#000,transparent 70%); mask-image: radial-gradient(circle at 50% 50%,#000,transparent 70%); }
.manifesto-visual img { position: relative; z-index: 2; width: 300px; filter: grayscale(.8) contrast(1.14); }
.sun-field { position: absolute; width: 430px; height: 430px; border: 1px solid rgba(255,107,25,.4); border-radius: 50%; box-shadow: 0 0 0 65px rgba(255,107,25,.045),0 0 0 135px rgba(255,107,25,.025); }
.manifesto-copy .overline { color: #9c341d; font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.manifesto-copy blockquote { margin: 25px 0 35px; font-size: clamp(3rem,5vw,5rem); font-weight: 350; letter-spacing: -.066em; line-height: .96; }
.manifesto-copy > p:last-child { color: var(--ink-muted); font-size: 17px; line-height: 1.7; }
.section-heading { display: grid; grid-template-columns: 160px minmax(0,1fr); gap: 50px; margin-bottom: 70px; }
.section-heading .overline { margin: 0; color: var(--orange); font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.section-heading h2 { grid-column: 2; margin: 0; font-size: clamp(3.4rem,6vw,5.8rem); font-weight: 330; letter-spacing: -.069em; line-height: .93; }
.section-heading > p:last-child { grid-column: 2; max-width: 680px; margin: 0 0 0 auto; color: var(--muted); font-size: 17px; line-height: 1.7; }
.values-grid { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border-top: 1px solid var(--line-dark); border-left: 1px solid var(--line-dark); }
.values-grid article { min-height: 300px; padding: 45px; border-right: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); }
.values-grid span { color: var(--orange); font-family: ui-monospace,monospace; font-size: 11px; }
.values-grid h3 { margin: 90px 0 13px; font-size: 29px; font-weight: 430; letter-spacing: -.045em; }
.values-grid p { max-width: 460px; margin: 0; color: var(--muted); }
.status-card { display: grid; grid-template-columns: minmax(0,.8fr) minmax(480px,1.2fr); gap: 80px; width: 100%; max-width: none; padding-inline: max(32px,calc((100vw - var(--shell))/2)); background: var(--paper); color: var(--ink); }
.status-copy .overline,.founder-note .overline { color: #9c341d; font-family: ui-monospace,monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; }
.status-copy h2,.founder-note h2 { margin: 25px 0; font-size: clamp(3rem,5vw,5rem); font-weight: 350; letter-spacing: -.065em; line-height: .95; }
.status-copy > p:last-child { color: var(--ink-muted); line-height: 1.7; }
.status-columns { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); border: 1px solid var(--line-light); }
.status-columns > div { padding: 30px; border-right: 1px solid var(--line-light); }
.status-columns > div:last-child { border-right: 0; }
.status-chip { display: inline-block; color: #9c341d; font-family: ui-monospace,monospace; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.status-columns h3 { margin: 90px 0 17px; font-size: 22px; }
.status-columns ul { display: grid; gap: 8px; margin: 0; padding-left: 18px; color: var(--ink-muted); font-size: 13px; }
.founder-note { display: grid; grid-template-columns: minmax(0,1fr) minmax(320px,.62fr); align-items: start; gap: 100px; }
.founder-note > div:last-child p { color: var(--muted); font-size: 17px; line-height: 1.7; }
.founder-note .button-primary { margin-top: 15px; border-color: var(--paper); background: var(--paper); color: var(--ink); }

/* Privacy policy */
.privacy-main { background: var(--paper); color: var(--ink); }
.privacy-hero { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.15fr) minmax(300px,.55fr); align-items: end; gap: 80px; min-height: 700px; padding-top: 160px; padding-bottom: 100px; background: var(--black); color: var(--white); }
.privacy-hero.shell { width: 100%; max-width: none; padding-inline: max(32px,calc((100vw - var(--shell))/2)); }
.privacy-summary span { color: #77736d; font-family: ui-monospace,monospace; font-size: 10px; letter-spacing: .1em; text-transform: uppercase; }
.policy-layout { display: grid; grid-template-columns: 220px minmax(0,780px); justify-content: space-between; gap: 100px; padding-top: 100px; padding-bottom: 150px; }
.policy-nav { position: sticky; top: 120px; align-self: start; display: flex; flex-direction: column; gap: 8px; padding-top: 5px; }
.policy-nav strong { margin-bottom: 12px; color: #9c341d; font-family: ui-monospace,monospace; font-size: 10px; letter-spacing: .13em; text-transform: uppercase; }
.policy-nav a { color: #77736d; font-size: 12px; transition: color 140ms ease, transform 140ms var(--ease-out); }
.policy { min-width: 0; }
.policy > section { padding: 70px 0; border-bottom: 1px solid var(--line-light); scroll-margin-top: 100px; }
.policy > section:first-child { padding-top: 0; }
.policy > section:last-child { border-bottom: 0; }
.policy h2 { margin-bottom: 26px; font-size: clamp(2.4rem,4vw,4rem); font-weight: 390; letter-spacing: -.06em; line-height: 1; }
.policy h3 { margin: 36px 0 10px; font-size: 18px; letter-spacing: -.025em; }
.policy p,.policy li { color: #4f4d48; font-size: 15px; line-height: 1.82; }
.policy a { color: #8e2d19; text-decoration: underline; text-underline-offset: 3px; }
.policy strong { color: var(--ink); }
.policy-index { margin-bottom: 14px; color: #9c341d !important; font-family: ui-monospace,monospace; font-size: 10px !important; font-weight: 700; letter-spacing: .15em; }
.policy-callout { display: grid; grid-template-columns: 60px minmax(0,1fr); gap: 26px; padding: 40px 0 !important; border-top: 1px solid var(--line-light); }
.policy-callout ul { display: grid; gap: 9px; margin: 0; padding-left: 18px; }
.policy-lock { position: relative; width: 34px; height: 31px; margin-top: 14px; border: 2px solid #9c341d; }
.policy-lock::before { content: ""; position: absolute; left: 7px; top: -17px; width: 16px; height: 17px; border: 2px solid #9c341d; border-bottom: 0; border-radius: 12px 12px 0 0; }
.permission-list { border-top: 1px solid var(--line-light); }
.permission-list > div { display: grid; grid-template-columns: 180px minmax(0,1fr); gap: 20px; padding: 19px 0; border-bottom: 1px solid var(--line-light); }
.permission-list strong,.permission-list span { font-size: 13px; }
.permission-list span { color: var(--ink-muted); }
.policy-contact > a { display: inline-block; margin: 8px 0 22px; font-size: 22px; font-weight: 600; }
.contact-note { color: #77736d !important; font-family: ui-monospace,monospace; font-size: 11px !important; }

/* Reveal and interaction */
.js [data-reveal] { opacity: 0; transform: translateY(14px); transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out); }
.js [data-reveal].is-visible { opacity: 1; transform: translateY(0); }

@media (hover:hover) and (pointer:fine) {
  .nav-links > a:hover { color: white; }
  .nav-links .nav-cta:hover { background: var(--paper); color: var(--ink); }
  .button-light:hover { background: white; }
  .visual-gallery:hover .visual-panel:not(:hover) { opacity: .72; transform: scale(.985); }
  .visual-panel:hover { transform: translateY(-9px); }
  .visual-panel:hover .gallery-device { transform: translate(-50%,-50%) rotate(0deg) scale(1.035); }
  .privacy-stack:hover .privacy-device-back { transform: translateX(-20px) rotateY(10deg) rotateZ(-10deg); }
  .privacy-stack:hover .privacy-device-front { transform: translateX(20px) rotateY(-5deg) rotateZ(6deg); }
  .line-link:hover span { transform: translate(3px,-3px); }
  .waitlist-submit:hover { background: var(--orange-hot); }
  .waitlist-submit:hover .waitlist-submit-arrow { transform: translateX(3px); }
  .footer-links a:hover { color: white; }
  .policy-nav a:hover { color: var(--ink); transform: translateX(3px); }
}

@media (max-width: 1050px) {
  .section-intro { grid-template-columns: 120px minmax(0,1fr); }
  .section-intro > p:last-child { grid-column: 2; max-width: 620px; }
  .manifesto > .manifesto-grid,.ledger-heading,.boundary-grid { grid-template-columns: 120px minmax(0,1fr); }
  .privacy-grid { grid-template-columns: 120px minmax(0,1fr); }
  .privacy-facts { grid-column: 2; display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); margin-top: 25px; }
  .privacy-facts > div { padding-right: 18px; border-top: 1px solid rgba(255,255,255,.42); }
  .waitlist-layout { grid-template-columns: 1fr 1fr; gap: 70px; }
  .visual-gallery { height: 690px; }
  .visual-panel { height: 560px; }
  .visual-panel-compare { height: 690px; }
  .privacy-showcase { grid-template-columns: minmax(280px,.75fr) minmax(420px,1.25fr); gap: 45px; }
  .status-card { grid-template-columns: 1fr; }
}

@media (max-width: 820px) {
  .shell { width: min(calc(100% - 36px), var(--shell)); }
  .site-header,.nav { height: 74px; min-height: 74px; }
  .nav-toggle { display: block; }
  .nav-links { position: fixed; top: 74px; left: 18px; right: 18px; display: flex; align-items: stretch; flex-direction: column; gap: 0; padding: 8px; border: 1px solid var(--line-dark); background: #0e0e0d; opacity: 0; transform: translateY(-8px); transform-origin: top right; pointer-events: none; transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out); }
  .nav-links.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .nav-links > a { padding: 14px; }
  .nav-links .nav-cta { margin: 5px 0 0; text-align: center; }
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding-top: clamp(170px,22svh,210px); }
  .hero h1 { font-size: clamp(4.3rem,15vw,7rem); }
  .phone-story { height: 240svh; min-height: 1500px; }
  .product-phone { width: min(260px,36vw,calc((100svh - 145px) * .45)); }
  .phone-story-captions { left: 6px; }
  .phone-story-progress { right: 6px; }
  .manifesto > .manifesto-grid,.ledger-heading,.boundary-grid,.section-intro { grid-template-columns: 1fr; gap: 32px; }
  .manifesto > .manifesto-grid > div > p,.boundary-grid > p:last-child,.section-intro > p:last-child { grid-column: 1; margin-left: 0; }
  .screen-runway { grid-template-columns: 1fr; }
  .screen-runway article { display: grid; grid-template-columns: minmax(180px,.65fr) minmax(0,1fr); column-gap: 35px; border-right: 1px solid var(--line-light); border-bottom: 1px solid var(--line-light); }
  .screen-runway article:last-child { border-bottom: 0; }
  .screen-runway .screen-number { grid-column: 1 / -1; }
  .screen-runway img { grid-row: 2 / span 3; }
  .screen-runway h3 { margin-top: 20px; align-self: end; }
  .visual-showcase-heading { grid-template-columns: 1fr; gap: 28px; margin-bottom: 55px; }
  .visual-gallery { width: 100%; height: 650px; grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(78vw,360px); align-items: center; gap: 12px; padding: 0 18px 18px; overflow-x: auto; scroll-padding-inline: 18px; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .visual-gallery::-webkit-scrollbar { display: none; }
  .visual-panel,.visual-panel-compare { height: 610px; scroll-snap-align: center; }
  .ledger-list article { display: block; padding: 42px 0; }
  .ledger-list h3 { font-size: clamp(3.2rem,11vw,5rem); }
  .privacy-grid { grid-template-columns: 1fr; gap: 35px; }
  .privacy-facts { grid-column: 1; }
  .privacy-showcase { grid-template-columns: 1fr; gap: 60px; }
  .privacy-stack { min-height: 650px; }
  .privacy-device { width: min(43%,270px); }
  .boundary-minimal { align-items: flex-start; flex-direction: column; gap: 35px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-grid article { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line-light); }
  .process-grid article:last-child { border-bottom: 0; }
  .process-grid h3 { margin-top: 65px; }
  .faq-layout { grid-template-columns: 1fr; gap: 65px; }
  .waitlist-layout { grid-template-columns: 1fr; gap: 65px; }
  .page-hero,.privacy-hero { grid-template-columns: 1fr; gap: 40px; min-height: 700px; }
  .about-intro,.privacy-summary { max-width: 650px; }
  .about-manifesto .manifesto-grid { grid-template-columns: 1fr; }
  .manifesto-visual { min-height: 440px; }
  .section-heading { grid-template-columns: 1fr; }
  .section-heading h2,.section-heading > p:last-child { grid-column: 1; margin-left: 0; }
  .founder-note { grid-template-columns: 1fr; gap: 35px; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { position: static; display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 7px 20px; padding-bottom: 35px; border-bottom: 1px solid var(--line-light); }
  .policy-nav strong { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .hero { min-height: 100vh; min-height: 100svh; }
  .hero-content { padding-top: clamp(160px,21svh,190px); }
  .hero-kicker { margin-bottom: 24px; font-size: 9px; }
  .hero h1 { font-size: clamp(3.75rem,17vw,5.4rem); line-height: .88; }
  .hero-lede { font-size: 16px; }
  .phone-story { height: 240svh; min-height: 1450px; }
  .phone-story-sticky { min-height: 600px; }
  .product-phone { top: 46%; width: min(230px,62vw,calc((100svh - 170px) * .45)); }
  .phone-display { border-width: 6px; border-radius: 36px; box-shadow: -7px 6px 0 #030302,0 34px 65px rgba(0,0,0,.58),inset 0 0 0 1px rgba(255,255,255,.15); }
  .phone-display::after { border-radius: 29px; }
  .phone-island { top: 8px; width: 62px; height: 18px; }
  .phone-island::after { right: 7px; top: 6px; width: 6px; height: 6px; }
  .product-phone::before { top: 88px; height: 31px; box-shadow: 0 41px 0 #242420,0 77px 0 #242420; }
  .product-phone::after { top: 120px; height: 58px; }
  .phone-story-captions { left: 2px; bottom: 40px; width: 230px; }
  .phone-story-captions p { font-size: 20px; }
  .phone-story-progress { right: 2px; bottom: 48px; gap: 5px; }
  .phone-story-progress span { width: 22px; }
  .manifesto,.product-section,.visual-showcase,.feature-ledger,.process-section,.faq-section,.waitlist-section,.boundary-section,.about-manifesto { padding-block: 105px; }
  .manifesto h2,.privacy-statement h2 { font-size: 3.75rem; }
  .manifesto > .manifesto-grid > div > p { font-size: 17px; }
  .section-intro { margin-bottom: 55px; }
  .section-intro h2,.visual-showcase-heading h2,.ledger-heading h2,.faq-heading h2 { font-size: 3.55rem; }
  .screen-runway article { display: block; padding: 28px 22px 40px; }
  .screen-runway img { width: min(100%,260px); }
  .screen-runway h3 { margin-top: 28px; }
  .visual-gallery { height: 590px; grid-auto-columns: 82vw; padding-inline: 0; scroll-padding-inline: 0; }
  .visual-panel,.visual-panel-compare { height: 560px; }
  .gallery-device { width: min(72%,230px); }
  .visual-panel-compare .gallery-device { width: min(72%,240px); }
  .ledger-list article { display: block; padding: 34px 0; }
  .ledger-list h3 { font-size: 3rem; }
  .privacy-band { padding-block: 105px; }
  .privacy-facts { grid-template-columns: 1fr; }
  .privacy-facts > div { border-top: 0; }
  .privacy-stack { min-height: 520px; }
  .privacy-device { width: 205px; }
  .privacy-device-back { left: 0; top: 80px; }
  .privacy-device-front { right: 0; top: 10px; }
  .boundary-minimal h2 { font-size: 3.45rem; }
  .boundary-grid h2 { font-size: 3.45rem; }
  .waitlist-copy h2 { font-size: 4rem; }
  .waitlist-control { grid-template-columns: 1fr; border: 0; background: transparent; }
  .waitlist-control input { border: 1px solid #77736c; background: var(--paper); }
  .waitlist-submit { min-width: 100%; border: 0; }
  .page-hero,.privacy-hero { min-height: 640px; padding-top: 125px; padding-bottom: 80px; }
  .page-hero h1,.privacy-hero h1 { font-size: 4rem; }
  .manifesto-visual { min-height: 360px; }
  .manifesto-visual img { width: 230px; }
  .sun-field { width: 300px; height: 300px; }
  .manifesto-copy blockquote { font-size: 2.8rem; }
  .values-grid { grid-template-columns: 1fr; }
  .values-grid article { min-height: 250px; padding: 30px; }
  .values-grid h3 { margin-top: 65px; }
  .status-card { padding-inline: 18px; }
  .status-columns { grid-template-columns: 1fr; }
  .status-columns > div { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .status-columns > div:last-child { border-bottom: 0; }
  .policy-layout { padding-top: 65px; padding-bottom: 100px; }
  .policy-nav { grid-template-columns: 1fr; }
  .policy-callout { grid-template-columns: 1fr; }
  .permission-list > div { grid-template-columns: 1fr; gap: 5px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:first-child { grid-column: 1; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,*::before,*::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .js [data-reveal] { opacity: 1; transform: none; }
  .phone-story { height: auto; min-height: 0; padding: 90px 0; }
  .phone-story-sticky { position: relative; height: auto; min-height: 0; overflow: visible; }
  .product-stage { display: grid; height: auto; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; perspective: none; }
  .phone-story-chrome { display: none; }
  .product-phone,.product-phone[data-phone-index] { position: relative; left: auto; top: auto; width: 100%; opacity: 1 !important; transform: none !important; }
}

@media (max-width: 560px) and (prefers-reduced-motion: reduce) {
  .product-stage { grid-template-columns: 1fr; padding-inline: 50px; }
}

@media (prefers-contrast: more) {
  :root { --muted: #d0ccc4; --ink-muted: #3d3b37; --line-dark: rgba(255,255,255,.45); --line-light: rgba(0,0,0,.5); }
}

@media print {
  .site-header,.site-footer,.policy-nav,.waitlist-section { display: none !important; }
  body,.privacy-main,.section-paper { background: white; color: black; }
  .privacy-hero,.page-hero { min-height: auto; padding: 30px 0; background: white; color: black; }
  .policy-layout { display: block; padding: 0; }
  .policy > section { break-inside: avoid; }
}
