:root {
  --bg: #080a0d;
  --panel: #101319;
  --panel-2: #171b22;
  --line: #2a2f38;
  --white: #f7f8fa;
  --muted: #9ca2ad;
  --acid: #cbff42;
  --cyan: #38d9ff;
  --coral: #ff604d;
  --pink: #ff86b5;
  --paper: #f2f4f6;
  --ink: #111318;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; color-scheme: dark; }
body { margin: 0; overflow-x: clip; color: var(--white); background: var(--bg); font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", Arial, sans-serif; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
a:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
img { max-width: 100%; display: block; }
button { font: inherit; }
h1, h2, h3, p { letter-spacing: 0; }
figure { margin: 0; }
main section[id] { scroll-margin-top: 72px; }
.reveal-ready { opacity: 0; transform: translateY(18px); transition: opacity .8s cubic-bezier(.22, 1, .36, 1), transform .8s cubic-bezier(.22, 1, .36, 1); }
.reveal-ready.revealed { opacity: 1; transform: translateY(0); }
.skip-link { position: fixed; left: 14px; top: -80px; z-index: 100; padding: 12px 16px; color: #0b0d10; background: var(--acid); font-weight: 800; }
.skip-link:focus { top: 14px; }

.site-header {
  height: 72px;
  padding: 0 max(26px, calc((100% - 1320px) / 2));
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(8, 10, 13, .94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 780; font-size: 19px; }
.brand img { width: 34px; height: 34px; object-fit: contain; }
nav { display: flex; justify-content: center; gap: 26px; color: #a8adb7; font-size: 13px; }
nav a { padding: 10px 0; position: relative; transition: color .2s ease; }
nav a::after { content: ""; position: absolute; left: 0; right: 0; bottom: 3px; height: 1px; background: var(--acid); transform: scaleX(0); transform-origin: left; transition: transform .28s cubic-bezier(.22, 1, .36, 1); }
nav a.active { color: #fff; }
nav a.active::after { transform: scaleX(1); }
nav a:hover, nav a:focus-visible { color: #fff; }
.header-actions { display: flex; align-items: center; gap: 12px; }
.download-link { min-width: 142px; height: 44px; padding: 0 14px; display: flex; align-items: center; justify-content: space-between; border: 1px solid #454b56; font-size: 13px; font-weight: 740; }
.download-link svg, .primary-action svg, .quiet-action svg, .support-grid svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.download-link:hover, .download-link:focus-visible { border-color: var(--acid); color: var(--acid); }
.language-toggle { height: 44px; padding: 4px; display: grid; grid-template-columns: 1fr 1px 1fr; align-items: center; gap: 3px; color: #747b87; background: #101319; border: 1px solid #30353e; cursor: pointer; font-size: 10px; font-weight: 850; }
.language-toggle span { min-width: 27px; height: 32px; display: grid; place-items: center; }
.language-toggle span.active { color: #0b0d10; background: var(--white); }
.language-toggle i { width: 1px; height: 14px; background: #3d424b; }
.language-toggle:focus-visible, .menu-button:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.menu-button { display: none; width: 44px; height: 44px; padding: 11px; border: 0; background: transparent; }
.menu-button span { display: block; height: 2px; margin: 6px 0; background: #fff; transform-origin: center; transition: transform .2s ease; }
.menu-button[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.menu-button[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.reading-progress { position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; overflow: hidden; pointer-events: none; }
.reading-progress i { width: 100%; height: 100%; display: block; background: var(--acid); transform: scaleX(0); transform-origin: left; will-change: transform; }

.signal-hero { min-height: 820px; padding: 90px max(26px, calc((100% - var(--max)) / 2)) 0; overflow: hidden; position: relative; }
.signal-hero::before, .signal-hero::after { content: ""; position: absolute; top: 0; bottom: 0; width: 1px; background: #1d2027; z-index: -1; }
.signal-hero::before { left: 18%; }
.signal-hero::after { right: 18%; }
.hero-copy { width: min(940px, 100%); margin: 0 auto; text-align: center; }
.system-label, .kicker { margin: 0 0 20px; color: #9da2ad; font-size: 11px; font-weight: 820; text-transform: uppercase; }
.system-label { display: flex; align-items: center; justify-content: center; gap: 10px; }
.system-label span { width: 26px; height: 26px; display: inline-grid; place-items: center; color: var(--bg); background: var(--acid); font-weight: 850; }
.system-label b { font-size: inherit; }
h1 { margin: 0; font-size: 92px; line-height: .93; font-weight: 810; }
.hero-copy > p:last-of-type { width: min(680px, 100%); margin: 28px auto 0; color: #aeb3bd; font-size: 20px; line-height: 1.6; }
.hero-actions { margin-top: 34px; display: flex; justify-content: center; align-items: center; gap: 24px; }
.hero-store-cluster { min-height: 68px; padding: 0 12px 0 6px; display: flex; align-items: center; gap: 14px; border: 1px solid #353a44; background: #0f1217; }
.app-icon { width: 54px; height: 54px; object-fit: cover; border: 1px solid #303641; border-radius: 13px; box-shadow: 0 8px 22px rgba(0, 0, 0, .35); }
.app-store-badge { padding: 7px; display: block; line-height: 0; }
.app-store-badge img { width: 160px; height: auto; }
.app-store-badge:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; }
.primary-action { min-height: 54px; padding: 0 18px; display: inline-flex; align-items: center; justify-content: space-between; gap: 28px; color: #0d0f12; background: var(--acid); border: 1px solid var(--acid); font-size: 14px; font-weight: 800; }
.primary-action:hover, .primary-action:focus-visible { color: #fff; background: transparent; }
.quiet-action { min-height: 44px; display: inline-flex; align-items: center; gap: 12px; color: #c0c4cc; font-size: 14px; font-weight: 700; }

.command-deck { width: min(1120px, 100%); height: 490px; margin: 54px auto 0; position: relative; border-top: 1px solid var(--line); background: #0c0f14; overflow: hidden; isolation: isolate; }
.command-deck::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #252932; }
.deck-meta { position: absolute; left: 24px; right: 24px; top: 18px; z-index: 9; display: flex; justify-content: space-between; color: #626975; font-size: 9px; font-weight: 820; text-transform: uppercase; pointer-events: none; }
.deck-meta b { color: #868d98; font-size: inherit; transition: color .25s ease; }
.command-input { appearance: none; position: absolute; top: 44px; left: 50%; z-index: 8; transform: translateX(-50%); width: min(620px, calc(100% - 40px)); min-height: 58px; padding: 10px 16px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 13px; color: #e8eaf0; background: #151820; border: 1px solid #393e48; border-radius: 4px; text-align: left; cursor: pointer; font-size: 14px; transition: border-color .25s ease, background .25s ease, box-shadow .25s ease; }
.command-input:hover { border-color: #59616e; background: #181c24; }
.command-input:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }
.pulse { width: 11px; height: 11px; border: 3px solid var(--cyan); border-radius: 50%; }
.command-input .pulse { animation: signal-pulse 2.2s ease-in-out infinite; }
.send { width: 30px; height: 30px; display: grid; place-items: center; position: relative; color: #0a0c0f; background: var(--acid); font-size: 18px; transition: background .25s ease, color .25s ease, transform .25s ease; }
.send svg { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.send-check { position: absolute; opacity: 0; transform: scale(.6); transition: opacity .2s ease, transform .25s ease; }
.send-arrow { transition: opacity .2s ease, transform .25s ease; }
.hero-phone { position: absolute; width: 272px; left: calc(50% - 136px); top: 118px; z-index: 5; padding: 8px; background: #020305; border: 1px solid #3b404a; border-radius: 45px; overflow: hidden; box-shadow: 0 30px 90px rgba(0, 0, 0, .45); transition: transform .65s cubic-bezier(.22, 1, .36, 1), border-color .4s ease, box-shadow .5s ease; }
.hero-phone img { width: 100%; height: auto; border-radius: 37px; }
.week-map { position: absolute; top: 180px; width: 270px; display: grid; gap: 15px; transition: opacity .5s ease, transform .65s cubic-bezier(.22, 1, .36, 1); }
.map-heading { padding-bottom: 9px; display: flex; justify-content: space-between; border-bottom: 1px solid #2b3038; color: #858b96; font-size: 10px; font-weight: 800; text-transform: uppercase; }
.map-heading small { color: #5f6671; font-size: 9px; }
.map-row { width: var(--w); display: grid; gap: 7px; }
.map-row span { display: flex; justify-content: space-between; gap: 8px; align-items: baseline; }
.map-row b { color: #d7dae0; font-size: 10px; font-weight: 720; white-space: nowrap; }
.map-row small { color: #6f7682; font-size: 9px; white-space: nowrap; }
.map-row i { width: 100%; height: 7px; display: block; background: var(--c); opacity: .9; transform-origin: left; transition: transform .7s cubic-bezier(.22, 1, .36, 1), opacity .4s ease; }
.map-row.moved i { background: transparent; border: 1px solid var(--c); opacity: .65; }
.map-row.protected small { color: var(--coral); }
.left-map { left: 7%; }
.right-map { right: 7%; justify-items: end; }
.right-map .map-heading { width: 100%; }
.result-flag { position: absolute; right: 38px; bottom: 24px; z-index: 7; width: 264px; padding: 13px 15px; border-left: 3px solid var(--acid); background: #171a21; transition: opacity .45s ease, transform .55s cubic-bezier(.22, 1, .36, 1); }
.result-flag b, .result-flag span { display: block; }
.result-flag b { font-size: 13px; }
.result-flag span { margin-top: 5px; color: #9196a1; font-size: 10px; }
.mobile-command-proof { display: none; }
.command-deck[data-command-state="ready"] .right-map { opacity: .24; transform: translateX(16px); }
.command-deck[data-command-state="ready"] .right-map .map-row i { transform: scaleX(.2); }
.command-deck[data-command-state="ready"] .result-flag { opacity: 0; transform: translateY(14px); }
.command-deck[data-command-state="applying"] .command-input { border-color: var(--cyan); box-shadow: 0 0 0 4px rgba(56, 217, 255, .08); }
.command-deck[data-command-state="applying"] .deck-meta b { color: var(--cyan); }
.command-deck[data-command-state="applying"] .send { color: var(--cyan); background: #202632; transform: scale(.92); }
.command-deck[data-command-state="applying"] .left-map { opacity: .42; transform: translateX(-10px); }
.command-deck[data-command-state="applying"] .left-map .map-row i { transform: scaleX(.72); }
.command-deck[data-command-state="applying"] .right-map { opacity: .58; transform: translateX(7px); }
.command-deck[data-command-state="applying"] .right-map .map-row i { transform: scaleX(.56); }
.command-deck[data-command-state="applying"] .result-flag { opacity: 0; transform: translateY(14px); }
.command-deck[data-command-state="applied"] .left-map { opacity: .3; transform: translateX(-10px); }
.command-deck[data-command-state="applied"] .right-map { opacity: 1; transform: translateX(0); }
.command-deck[data-command-state="applied"] .hero-phone { transform: translateY(-5px); border-color: #555d69; box-shadow: 0 34px 100px rgba(0, 0, 0, .54), 0 0 42px rgba(56, 217, 255, .07); }
.command-deck[data-command-state="applied"] .deck-meta b { color: var(--acid); }
.command-deck[data-command-state="applied"] .pulse { border-color: var(--acid); background: var(--acid); }
.command-deck[data-command-state="applied"] .send-arrow { opacity: 0; transform: scale(.55); }
.command-deck[data-command-state="applied"] .send-check { opacity: 1; transform: scale(1); }

.signal-strip { min-height: 126px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.signal-strip div { min-width: 0; padding: 28px 22px; display: grid; align-content: center; gap: 9px; }
.signal-strip div + div { border-left: 1px solid var(--line); }
.signal-strip span { color: var(--cyan); font-size: 10px; font-weight: 820; text-transform: uppercase; }
.signal-strip div:nth-child(2) span { color: var(--acid); }
.signal-strip div:nth-child(3) span { color: var(--coral); }
.signal-strip div:nth-child(4) span { color: var(--pink); }
.signal-strip div:nth-child(5) span { color: #8ea2ff; }
.signal-strip b { font-size: 14px; line-height: 1.35; }

.manifesto-section { padding: 120px max(26px, calc((100% - 1180px) / 2)); color: var(--ink); background: var(--paper); display: grid; grid-template-columns: 120px 1fr; gap: 34px; }
.manifesto-index { margin: 8px 0 0; color: #7c828b; font-size: 11px; font-weight: 800; }
.manifesto-copy h2 { max-width: 960px; margin: 0; font-size: 68px; line-height: 1; }
.manifesto-copy p { max-width: 780px; margin: 34px 0 0; color: #5f646d; font-size: 19px; line-height: 1.65; }
.life-rail { grid-column: 1 / -1; margin-top: 68px; padding: 24px 0; display: grid; grid-template-columns: repeat(11, auto); justify-content: space-between; align-items: center; border-top: 1px solid #c7ccd2; border-bottom: 1px solid #c7ccd2; color: #2b2e34; font-size: 11px; font-weight: 800; text-transform: uppercase; }
.life-rail i { width: 38px; height: 1px; background: #a8afb7; }

.section-heading { width: min(800px, 100%); }
.section-heading h2, .capture-copy h2, .adapt-intro h2, .focus-copy h2, .travel-copy h2, .companion-heading h2, .ledger-heading h2, .language-copy h2, .start-head h2, .faq-heading h2, .support-grid h2 { margin: 0; font-size: 58px; line-height: 1.02; }
.section-heading > p:last-child, .capture-copy > p, .focus-copy > p, .travel-copy > p, .companion-heading > p, .language-copy > p { color: var(--muted); font-size: 18px; line-height: 1.65; }

.system-section { padding: 132px max(26px, calc((100% - var(--max)) / 2)); }
.system-heading { margin-bottom: 64px; }
.system-console { min-height: 780px; display: grid; grid-template-columns: 250px 1fr 330px; border: 1px solid var(--line); background: #0c0f14; }
.system-tabs { border-right: 1px solid var(--line); }
.system-tab { width: 100%; min-height: 92px; padding: 16px 18px 16px 0; display: grid; grid-template-columns: 48px 1fr; grid-template-rows: auto auto; column-gap: 16px; row-gap: 6px; align-content: center; text-align: left; color: #8d929e; background: transparent; border: 0; border-bottom: 1px solid var(--line); cursor: pointer; }
.system-tab .system-index { grid-row: 1 / span 2; align-self: stretch; display: grid; place-items: center; color: #626975; border-right: 1px solid #292e37; font-size: 10px; font-weight: 820; font-variant-numeric: tabular-nums; }
.system-tab strong { color: #f0f2f5; font-size: 15px; }
.system-tab small { font-size: 10px; }
.system-tab:hover { background: #12151b; }
.system-tab.active { color: #d8dbe1; background: #171a20; box-shadow: inset 3px 0 0 var(--acid); }
.system-tab.active .system-index { color: var(--acid); border-right-color: #454b55; }
.system-screen { min-width: 0; padding: 26px; display: grid; grid-template-rows: auto 1fr; overflow: hidden; position: relative; }
.screen-meta { display: flex; justify-content: space-between; gap: 16px; color: #646a75; font-size: 10px; }
.screen-meta b { color: #a9aeb7; text-align: right; }
.system-screen figure { width: 310px; margin: 34px auto -250px; padding: 8px; align-self: start; background: #020305; border: 1px solid #3d424c; border-radius: 47px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.system-screen img { width: 100%; height: auto; border-radius: 39px; }
.system-copy { padding: 52px 34px; border-left: 1px solid var(--line); align-self: stretch; }
.system-number { margin: 0 0 100px; color: var(--acid); font-size: 14px; font-weight: 800; }
.system-copy h3 { margin: 0; font-size: 34px; line-height: 1.08; }
.system-copy > p:not(.system-number) { color: var(--muted); line-height: 1.6; }
.system-copy ul { padding: 0; margin: 34px 0 0; list-style: none; }
.system-copy li { padding: 13px 0; border-top: 1px solid var(--line); color: #c6cad2; font-size: 13px; }
.system-copy li:last-child { border-bottom: 1px solid var(--line); }
.system-console.system-changing .system-screen figure { animation: system-image-enter .48s cubic-bezier(.22, 1, .36, 1); }
.system-console.system-changing .system-copy h3, .system-console.system-changing .system-copy > p:not(.system-number), .system-console.system-changing .system-copy ul { animation: system-copy-enter .44s cubic-bezier(.22, 1, .36, 1); }

.capture-section { min-height: 900px; padding: 120px max(26px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: .9fr 1.1fr; gap: 84px; color: #102025; background: #dff4f8; overflow: hidden; }
.capture-copy { align-self: center; }
.capture-copy .kicker { color: #327687; }
.capture-copy > p { color: #53676d; }
.capture-methods { margin-top: 42px; border-top: 1px solid #a6c8d0; }
.capture-methods > div { padding: 20px 0; display: grid; grid-template-columns: 36px 130px 1fr; gap: 12px; border-bottom: 1px solid #a6c8d0; align-items: start; }
.capture-methods span { color: #4d8e9d; font-size: 10px; font-weight: 800; }
.capture-methods b { font-size: 15px; }
.capture-methods p { margin: 0; color: #53676d; font-size: 13px; line-height: 1.5; }
.capture-visual { min-height: 650px; position: relative; align-self: center; isolation: isolate; }
.capture-phone { position: absolute; padding: 7px; background: #020305; border: 1px solid #5a6570; border-radius: 42px; overflow: hidden; box-shadow: 0 28px 70px rgba(17, 48, 57, .24); }
.capture-phone img { width: 100%; height: auto; border-radius: 35px; }
.notes-phone { width: 278px; left: 5%; top: 90px; transform: rotate(-5deg); }
.planner-phone { width: 308px; right: 2%; top: 0; transform: rotate(4deg); }
.voice-demo { position: absolute; left: 50%; top: 56%; z-index: 5; transform: translate(-50%, -50%); width: min(360px, 76%); min-height: 84px; padding: 12px 12px 12px 16px; display: grid; grid-template-columns: 44px minmax(0, 1fr) 48px; align-items: center; gap: 13px; color: #f4f6f8; background: rgba(10, 13, 18, .94); border: 1px solid rgba(120, 134, 149, .58); border-radius: 8px; box-shadow: 0 22px 56px rgba(7, 20, 25, .34), inset 0 1px rgba(255, 255, 255, .045); backdrop-filter: blur(18px); -webkit-backdrop-filter: blur(18px); }
.voice-activity { height: 34px; display: flex; align-items: center; justify-content: center; gap: 3px; }
.voice-activity i { width: 3px; height: 10px; display: block; background: #64717e; border-radius: 2px; transform-origin: center; transition: height .25s ease, background .25s ease, opacity .25s ease; }
.voice-activity i:nth-child(2), .voice-activity i:nth-child(4) { height: 18px; }
.voice-activity i:nth-child(3) { height: 28px; }
.voice-message { min-width: 0; display: grid; gap: 5px; }
.voice-message small { color: #7f8995; font-size: 9px; font-weight: 820; text-transform: uppercase; }
.voice-message strong { color: #eef1f4; font-size: 12px; line-height: 1.3; font-weight: 720; white-space: normal; }
.voice-button { width: 46px; height: 46px; padding: 0; display: grid; place-items: center; color: #f4f7f9; background: #1a1f27; border: 1px solid #596370; border-radius: 50%; cursor: pointer; transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease; }
.voice-button svg { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.voice-button:hover { border-color: var(--cyan); transform: translateY(-1px); }
.voice-button:focus-visible { outline: 2px solid #11242a; outline-offset: 3px; border-color: var(--cyan); box-shadow: 0 0 0 5px rgba(56, 217, 255, .3); }
.voice-demo[data-state="listening"] { border-color: rgba(56, 217, 255, .7); }
.voice-demo[data-state="listening"] .voice-activity i { background: var(--cyan); animation: voice-listen .76s ease-in-out infinite alternate; }
.voice-demo[data-state="listening"] .voice-activity i:nth-child(2) { animation-delay: -.44s; }
.voice-demo[data-state="listening"] .voice-activity i:nth-child(3) { animation-delay: -.18s; }
.voice-demo[data-state="listening"] .voice-activity i:nth-child(4) { animation-delay: -.58s; }
.voice-demo[data-state="listening"] .voice-activity i:nth-child(5) { animation-delay: -.3s; }
.voice-demo[data-state="listening"] .voice-button { color: #0b0e12; background: var(--cyan); border-color: var(--cyan); box-shadow: 0 0 0 7px rgba(56, 217, 255, .12); }
.voice-demo[data-state="heard"] .voice-activity i { background: var(--pink); }
.voice-demo[data-state="applied"] { border-color: rgba(203, 255, 66, .65); }
.voice-demo[data-state="applied"] .voice-activity i { background: var(--acid); }
.voice-demo[data-state="applied"] .voice-message small { color: var(--acid); }
.voice-demo[data-state="applied"] .voice-button { color: #0c0f12; background: var(--acid); border-color: var(--acid); }

.adapt-section { padding: 130px max(26px, calc((100% - var(--max)) / 2)); background: #0a0c10; overflow: hidden; }
.adapt-intro { max-width: 980px; }
.adapt-intro .kicker { color: var(--coral); }
.rescue-board { margin-top: 58px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.rescue-step { min-height: 190px; padding: 28px; }
.rescue-step + .rescue-step { border-left: 1px solid var(--line); }
.rescue-step span { display: block; color: var(--coral); font-size: 10px; font-weight: 800; }
.rescue-step b { display: block; margin-top: 28px; font-size: 18px; }
.rescue-step p { margin: 10px 0 0; color: #9298a3; font-size: 13px; line-height: 1.55; }
.adapt-stage { height: 720px; margin-top: 70px; position: relative; border-left: 1px solid var(--line); border-right: 1px solid var(--line); background: #0d1015; overflow: hidden; }
.adapt-stage::before { content: ""; position: absolute; left: 50%; top: 0; bottom: 0; width: 1px; background: #252a32; }
.adapt-phone { position: absolute; top: 62px; width: 306px; padding: 8px; background: #020305; border: 1px solid #3d424c; border-radius: 47px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); }
.adapt-phone img { width: 100%; height: auto; border-radius: 39px; }
.adapt-phone.week { left: 13%; transform: rotate(-3deg); }
.adapt-phone.smart { right: 13%; transform: rotate(3deg); }
.adapt-command { position: absolute; left: 50%; top: 260px; z-index: 4; transform: translateX(-50%); width: 310px; min-height: 138px; padding: 20px; display: grid; grid-template-columns: auto 1fr; gap: 12px; background: #191d24; border: 1px solid #454b55; box-shadow: 0 24px 60px rgba(0, 0, 0, .5); }
.adapt-command p { margin: 0; font-size: 14px; line-height: 1.45; }
.adapt-command b { grid-column: 2; color: var(--acid); font-size: 10px; text-transform: uppercase; }
.protected-rail { padding: 24px 0; display: grid; grid-template-columns: auto repeat(9, auto); align-items: center; justify-content: space-between; border-bottom: 1px solid var(--line); color: #b7bcc5; font-size: 11px; }
.protected-rail > span { color: var(--acid); font-weight: 800; text-transform: uppercase; }
.protected-rail i { width: 5px; height: 5px; background: #525863; border-radius: 50%; }

.focus-section { min-height: 800px; padding: 110px max(26px, calc((100% - 1120px) / 2)); display: grid; grid-template-columns: 1fr 360px; gap: 100px; align-items: center; position: relative; color: #111318; background: #eef2f6; overflow: hidden; }
.focus-copy { position: relative; z-index: 2; }
.focus-copy .kicker { color: #297b91; }
.focus-copy > p { color: #666c75; max-width: 650px; }
.focus-stats { margin-top: 48px; display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #c3c9d0; border-bottom: 1px solid #c3c9d0; }
.focus-stats div { min-height: 118px; padding: 22px 16px 22px 0; display: grid; align-content: center; gap: 7px; }
.focus-stats div + div { padding-left: 18px; border-left: 1px solid #c3c9d0; }
.focus-stats strong { font-size: 18px; }
.focus-stats span { color: #6b717a; font-size: 11px; }
.focus-phone { width: 320px; margin: 0 auto -180px; padding: 8px; position: relative; z-index: 2; background: #030407; border: 1px solid #414650; border-radius: 48px; box-shadow: 0 34px 80px rgba(0, 0, 0, .26); overflow: hidden; }
.focus-phone img { width: 100%; height: auto; border-radius: 40px; }
.focus-orbit { position: absolute; right: max(0px, calc((100% - 1300px) / 2)); top: 160px; width: 520px; height: 520px; border: 1px solid #c6cdd4; border-radius: 50%; animation: orbit-turn 34s linear infinite; }
.focus-orbit span { position: absolute; inset: 58px; border: 1px solid #d2d7dc; border-radius: 50%; }
.focus-orbit i { position: absolute; width: 12px; height: 12px; background: var(--cyan); border-radius: 50%; }
.focus-orbit i:nth-of-type(1) { left: 42px; top: 242px; }
.focus-orbit i:nth-of-type(2) { right: 82px; top: 70px; background: var(--coral); }
.focus-orbit i:nth-of-type(3) { right: 56px; bottom: 120px; background: var(--acid); }

.travel-section { min-height: 760px; display: grid; grid-template-columns: 1fr 1fr; color: #151516; background: var(--coral); overflow: hidden; }
.travel-scene { min-height: 760px; position: relative; border-right: 1px solid rgba(10, 12, 15, .28); background: #111318; }
.travel-phone { position: absolute; width: 320px; left: 50%; top: 100px; transform: translateX(-50%) rotate(-2deg); padding: 8px; background: #030407; border: 1px solid #4b5059; border-radius: 48px; box-shadow: 0 34px 80px rgba(0, 0, 0, .35); overflow: hidden; }
.travel-phone img { width: 100%; height: auto; border-radius: 40px; }
.travel-route { position: absolute; left: 50%; top: 70px; transform: translateX(-50%); width: 80%; display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; color: #b5bac3; font-size: 11px; font-weight: 800; }
.travel-route i { height: 1px; position: relative; background: #4d535e; }
.travel-route i::after { content: ""; position: absolute; width: 6px; height: 6px; top: -2px; left: 0; background: var(--coral); border-radius: 50%; animation: route-progress 5.5s ease-in-out infinite; }
.travel-copy { padding: 110px max(32px, calc((100vw - 1180px) / 2)) 100px 70px; align-self: center; }
.travel-copy .kicker { color: #222326; }
.travel-copy > p { color: #3f302e; }
.travel-details { margin-top: 42px; display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(10, 12, 15, .3); }
.travel-details span { padding: 18px 0; border-bottom: 1px solid rgba(10, 12, 15, .3); font-size: 12px; font-weight: 760; }
.travel-details span:nth-child(even) { padding-left: 18px; border-left: 1px solid rgba(10, 12, 15, .3); }

.ecosystem-section { padding: 130px max(26px, calc((100% - var(--max)) / 2)); background: #0a0c10; }
.ecosystem-heading { margin-bottom: 70px; }
.ecosystem-heading .kicker { color: var(--pink); }
.ecosystem-gallery { border-top: 1px solid var(--line); }
.ecosystem-item { min-height: 650px; padding: 0 34px 0 38px; display: grid; grid-template-columns: 1fr 430px; gap: 80px; align-items: center; border-bottom: 1px solid var(--line); overflow: hidden; }
.ecosystem-item:nth-child(even) { grid-template-columns: 430px 1fr; }
.ecosystem-item:nth-child(even) > div { grid-column: 2; }
.ecosystem-item:nth-child(even) figure { grid-column: 1; grid-row: 1; }
.ecosystem-item > div > span { color: #727985; font-size: 10px; font-weight: 820; }
.ecosystem-item h3 { max-width: 620px; margin: 28px 0 0; font-size: 46px; line-height: 1.05; }
.ecosystem-item p { max-width: 620px; color: #989ea9; font-size: 16px; line-height: 1.65; }
.ecosystem-item figure { width: 286px; margin: 86px auto -170px; padding: 7px; background: #020305; border: 1px solid #424852; border-radius: 45px; overflow: hidden; box-shadow: 0 30px 80px rgba(0, 0, 0, .5); transition: transform .65s cubic-bezier(.22, 1, .36, 1), border-color .35s ease; }
.ecosystem-item figure img { width: 100%; height: auto; border-radius: 37px; }
.ecosystem-item:hover figure { transform: translateY(-10px); border-color: #626a77; }
.insights-item { box-shadow: inset 4px 0 0 var(--cyan); }
.companion-item { box-shadow: inset 4px 0 0 var(--acid); }
.friends-item { box-shadow: inset 4px 0 0 var(--coral); }

.companions-section { padding: 130px max(26px, calc((100% - 1180px) / 2)); color: var(--ink); background: var(--paper); }
.companion-heading { width: min(780px, 100%); margin-bottom: 66px; }
.companion-heading .kicker { color: #6a6f78; }
.companion-heading > p { color: #626870; }
.companion-lineup { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid #cfd3da; border-bottom: 1px solid #cfd3da; }
.companion-lineup figure { min-width: 0; padding: 30px; }
.companion-lineup figure + figure { border-left: 1px solid #cfd3da; }
.companion-lineup figure > div { height: 340px; display: grid; place-items: end center; }
.companion-lineup img { width: auto; height: auto; max-height: 310px; object-fit: contain; }
.companion-lineup figcaption { padding-top: 20px; display: flex; justify-content: space-between; border-top: 1px solid #cfd3da; }
.companion-lineup figcaption b { font-size: 18px; }
.companion-lineup figcaption span { color: #666b74; font-size: 12px; }
.companion-lineup .verdi { box-shadow: inset 0 5px 0 #51d884; }
.companion-lineup .bloom { box-shadow: inset 0 5px 0 #ff62a2; }
.companion-lineup .buddy { box-shadow: inset 0 5px 0 #42c9ff; }

.feature-ledger-section { padding: 130px max(26px, calc((100% - 1180px) / 2)); color: var(--ink); background: #fff; }
.ledger-heading { max-width: 900px; margin-bottom: 70px; }
.ledger-heading .kicker { color: #70757e; }
.feature-ledger { border-top: 2px solid #14171b; }
.ledger-row { min-height: 132px; display: grid; grid-template-columns: 80px 220px 1fr; align-items: center; gap: 22px; border-bottom: 1px solid #cfd3d8; }
.ledger-row > span { color: #878c94; font-size: 10px; font-weight: 800; }
.ledger-row h3 { margin: 0; font-size: 24px; }
.ledger-row p { margin: 0; color: #5f646d; font-size: 14px; line-height: 1.65; }

.language-section { padding: 110px max(26px, calc((100% - 1180px) / 2)) 0; color: #101215; background: var(--acid); overflow: hidden; }
.language-copy { max-width: 860px; }
.language-copy .kicker { color: #38401d; }
.language-copy > p { max-width: 720px; color: #3a421d; }
.integration-rail { margin-top: 70px; min-height: 110px; display: grid; grid-template-columns: repeat(5, 1fr); align-items: stretch; border-top: 1px solid rgba(12, 14, 16, .28); }
.integration-rail span { padding: 30px 18px; display: grid; place-items: center; text-align: center; font-size: 12px; font-weight: 800; }
.integration-rail span + span { border-left: 1px solid rgba(12, 14, 16, .28); }

.start-section { padding: 120px max(26px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr 1fr; gap: 100px; background: #0a0c10; }
.start-head .kicker { color: var(--acid); }
.start-body > p { max-width: 560px; color: var(--muted); font-size: 17px; line-height: 1.65; }
.primary-action.light { margin-top: 24px; color: #101216; background: #fff; border-color: #fff; }
.primary-action.light:hover, .primary-action.light:focus-visible { color: #fff; background: transparent; }
.billing-note { margin-top: 42px; padding: 20px 0; display: grid; grid-template-columns: 80px 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.billing-note span { color: #757b86; font-size: 10px; text-transform: uppercase; }
.billing-note b { font-size: 14px; }
.billing-note small { grid-column: 2; margin-top: 6px; color: #8f949f; line-height: 1.5; }

.faq-section { padding: 120px max(26px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 420px 1fr; gap: 100px; color: var(--ink); background: var(--paper); }
.faq-heading .kicker { color: #71767e; }
.faq-heading h2 { font-size: 46px; }
.faq-list { border-top: 1px solid #bfc4ca; }
.faq-list details { border-bottom: 1px solid #bfc4ca; }
.faq-list summary { min-height: 80px; display: grid; grid-template-columns: 1fr 20px; align-items: center; gap: 20px; cursor: pointer; font-weight: 760; list-style: none; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary:focus-visible { outline: 1px solid #6c818b; outline-offset: -1px; }
.faq-list summary i { width: 14px; height: 14px; position: relative; }
.faq-list summary i::before, .faq-list summary i::after { content: ""; position: absolute; background: #24272c; }
.faq-list summary i::before { width: 14px; height: 1px; left: 0; top: 6px; }
.faq-list summary i::after { width: 1px; height: 14px; left: 6px; top: 0; transition: transform .2s ease; }
.faq-list details[open] summary i::after { transform: rotate(90deg); }
.faq-list details p { max-width: 650px; margin: -4px 0 28px; color: #60656d; line-height: 1.65; }

.support-section { padding: 100px max(26px, calc((100% - 1180px) / 2)); color: var(--ink); background: #fff; }
.support-section .kicker { color: #676c75; }
.support-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; align-items: stretch; border-top: 1px solid #d8dbe0; border-bottom: 1px solid #d8dbe0; }
.support-grid h2 { padding: 36px 32px 36px 0; font-size: 44px; }
.support-grid a { min-height: 180px; padding: 34px 22px; display: grid; align-content: space-between; border-left: 1px solid #d8dbe0; }
.support-grid a span { color: #777b84; font-size: 10px; text-transform: uppercase; }
.support-grid a b { font-size: 14px; word-break: break-word; }
.support-grid a svg { justify-self: end; }

footer { min-height: 176px; padding: 32px max(26px, calc((100% - 1180px) / 2)); display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; border-top: 1px solid var(--line); }
footer .brand img { width: 32px; height: 32px; }
footer p { color: #858a95; font-size: 12px; text-align: center; }
footer > div { display: flex; justify-content: flex-end; gap: 22px; color: #a5aab4; font-size: 12px; }
.apple-legal { grid-column: 1 / -1; padding-top: 22px; color: #5f6570; border-top: 1px solid #20242b; font-size: 9px; line-height: 1.5; text-align: center; }

@keyframes signal-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(56, 217, 255, 0); }
  45% { box-shadow: 0 0 0 7px rgba(56, 217, 255, .12); }
}

@keyframes voice-listen {
  from { height: 8px; opacity: .66; }
  to { height: 30px; opacity: 1; }
}

@keyframes orbit-turn {
  to { transform: rotate(360deg); }
}

@keyframes route-progress {
  0%, 12% { left: 0; opacity: 0; }
  20% { opacity: 1; }
  78% { opacity: 1; }
  88%, 100% { left: calc(100% - 6px); opacity: 0; }
}

@keyframes system-image-enter {
  from { opacity: .25; transform: translateY(12px) scale(.985); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes system-copy-enter {
  from { opacity: .2; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

@media (max-width: 1100px) {
  nav { gap: 18px; }
  .manifesto-copy h2 { font-size: 58px; }
  .system-console { grid-template-columns: 220px 1fr 300px; }
  .capture-section { gap: 40px; }
  .adapt-phone.week { left: 8%; }
  .adapt-phone.smart { right: 8%; }
  .faq-section { grid-template-columns: 340px 1fr; gap: 60px; }
}

@media (max-width: 980px) {
  h1 { font-size: 72px; }
  .site-header nav { display: none; }
  .site-header nav.open { display: grid; grid-template-columns: repeat(3, 1fr); position: absolute; top: 71px; left: 0; right: 0; gap: 0; padding: 0 max(26px, calc((100% - 900px) / 2)); background: rgba(11, 13, 17, .98); border-bottom: 1px solid var(--line); box-shadow: 0 22px 50px rgba(0, 0, 0, .34); }
  .site-header nav.open a { min-height: 58px; padding: 0 18px; display: grid; place-items: center; border-left: 1px solid var(--line); }
  .site-header nav.open a:nth-child(3n), .site-header nav.open a:last-child { border-right: 1px solid var(--line); }
  .download-link { display: none; }
  .menu-button { display: block; justify-self: end; }
  .site-header { grid-template-columns: auto 1fr auto; }
  .header-actions { justify-self: end; }
  .week-map { display: none; }
  .signal-strip { grid-template-columns: repeat(3, 1fr); }
  .signal-strip div:nth-child(4) { border-left: 0; }
  .signal-strip div:nth-child(n+4) { border-top: 1px solid var(--line); }
  .manifesto-section { grid-template-columns: 80px 1fr; }
  .life-rail { grid-template-columns: repeat(6, 1fr); gap: 12px; }
  .life-rail i { display: none; }
  .system-console { grid-template-columns: 210px 1fr; }
  .system-copy { grid-column: 1 / -1; border-left: 0; border-top: 1px solid var(--line); padding: 34px; }
  .system-number { margin-bottom: 30px; }
  .capture-section { min-height: 1120px; grid-template-columns: 1fr; }
  .capture-visual { width: min(660px, 100%); margin: 0 auto; }
  .adapt-phone.week { left: 3%; }
  .adapt-phone.smart { right: 3%; }
  .focus-section { gap: 50px; }
  .travel-copy { padding-left: 48px; }
  .ecosystem-item, .ecosystem-item:nth-child(even) { grid-template-columns: 1fr 330px; gap: 40px; }
  .ecosystem-item:nth-child(even) > div { grid-column: 1; }
  .ecosystem-item:nth-child(even) figure { grid-column: 2; grid-row: 1; }
  .feature-ledger .ledger-row { grid-template-columns: 60px 160px 1fr; }
  .faq-section { grid-template-columns: 1fr; }
  .support-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .support-grid h2 { grid-column: 1 / -1; border-bottom: 1px solid #d8dbe0; }
  .support-grid a:first-of-type { border-left: 0; }
}

@media (max-width: 720px) {
  .site-header { height: 66px; padding: 0 18px; gap: 10px; }
  main section[id] { scroll-margin-top: 66px; }
  .site-header nav.open { top: 65px; padding: 0 18px; gap: 0; }
  .brand { font-size: 17px; }
  .brand img { width: 30px; height: 30px; }
  .language-toggle { height: 38px; }
  .menu-button { width: 38px; height: 38px; padding: 8px; }
  .signal-hero { min-height: 820px; padding: 58px 18px 0; }
  h1 { font-size: 50px; }
  .hero-copy > p:last-of-type { font-size: 17px; }
  .hero-actions { flex-direction: column; gap: 18px; }
  .hero-store-cluster { width: min(100%, 330px); justify-content: center; }
  .primary-action { width: 100%; max-width: 330px; }
  .command-deck { width: calc(100% + 36px); height: 540px; margin-left: -18px; }
  .command-input { width: calc(100% - 24px); font-size: 12px; }
  .hero-phone { width: 230px; left: calc(50% - 115px); top: 126px; }
  .result-flag { left: 12px; right: 12px; bottom: 12px; width: auto; }
  .signal-strip { grid-template-columns: 1fr 1fr; }
  .signal-strip div { min-height: 112px; padding: 22px 18px; }
  .signal-strip div:nth-child(3), .signal-strip div:nth-child(5) { border-left: 0; }
  .signal-strip div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .manifesto-section { padding: 86px 18px; grid-template-columns: 1fr; }
  .manifesto-copy h2 { font-size: 40px; }
  .manifesto-copy p { font-size: 16px; }
  .life-rail { grid-column: auto; grid-template-columns: 1fr 1fr; margin-top: 38px; gap: 0; }
  .life-rail span { min-height: 58px; display: grid; place-items: center; border-bottom: 1px solid #c7ccd2; }
  .life-rail span:nth-of-type(odd) { border-right: 1px solid #c7ccd2; }
  .section-heading h2, .capture-copy h2, .adapt-intro h2, .focus-copy h2, .travel-copy h2, .companion-heading h2, .ledger-heading h2, .language-copy h2, .start-head h2, .faq-heading h2 { font-size: 40px; }
  .section-heading > p:last-child, .capture-copy > p, .focus-copy > p, .travel-copy > p, .companion-heading > p, .language-copy > p { font-size: 16px; }
  .system-section { padding: 88px 18px; }
  .system-console { grid-template-columns: 1fr; }
  .system-tabs { display: grid; grid-template-columns: 1fr 1fr; border-right: 0; }
  .system-tab { min-height: 98px; padding: 14px 12px 14px 0; grid-template-columns: 38px 1fr; column-gap: 10px; row-gap: 5px; }
  .system-tab strong { font-size: 13px; }
  .system-tab:nth-child(odd) { border-right: 1px solid var(--line); }
  .system-screen { min-height: 560px; border-top: 1px solid var(--line); }
  .screen-meta { font-size: 9px; }
  .system-screen figure { width: 238px; margin-bottom: -160px; }
  .system-copy { grid-column: auto; padding: 28px 22px; }
  .system-copy h3 { font-size: 30px; }
  .capture-section { min-height: 1020px; padding: 86px 18px; }
  .capture-methods > div { grid-template-columns: 30px 1fr; }
  .capture-methods p { grid-column: 2; }
  .capture-visual { min-height: 530px; }
  .notes-phone { width: 205px; left: -8%; top: 100px; }
  .planner-phone { width: 225px; right: -8%; }
  .voice-demo { top: 54%; width: calc(100% - 24px); }
  .adapt-section { padding: 88px 18px; }
  .rescue-board { grid-template-columns: 1fr; }
  .rescue-step { min-height: 150px; }
  .rescue-step + .rescue-step { border-left: 0; border-top: 1px solid var(--line); }
  .adapt-stage { height: 630px; width: calc(100% + 36px); margin-left: -18px; }
  .adapt-phone { width: 210px; top: 112px; }
  .adapt-phone.week { left: -17%; }
  .adapt-phone.smart { right: -17%; }
  .adapt-command { width: 260px; top: 252px; }
  .protected-rail { grid-template-columns: 1fr 1fr; gap: 0; }
  .protected-rail > span { grid-column: 1 / -1; padding: 18px 0; }
  .protected-rail b { min-height: 50px; display: grid; align-items: center; border-top: 1px solid var(--line); }
  .protected-rail b:nth-of-type(even) { padding-left: 14px; border-left: 1px solid var(--line); }
  .protected-rail i { display: none; }
  .focus-section { min-height: 860px; padding: 86px 18px; grid-template-columns: 1fr; gap: 34px; }
  .focus-stats { grid-template-columns: 1fr; }
  .focus-stats div { min-height: 78px; }
  .focus-stats div + div { padding-left: 0; border-left: 0; border-top: 1px solid #c3c9d0; }
  .focus-phone { width: 240px; margin-bottom: -130px; }
  .focus-orbit { width: 390px; height: 390px; right: -140px; top: 480px; }
  .travel-section { grid-template-columns: 1fr; }
  .travel-scene { min-height: 620px; border-right: 0; }
  .travel-phone { width: 250px; top: 80px; }
  .travel-copy { padding: 76px 18px; }
  .ecosystem-section { padding: 88px 18px; }
  .ecosystem-gallery { border-top: 0; }
  .ecosystem-item, .ecosystem-item:nth-child(even) { min-height: 820px; padding: 58px 18px 0 30px; grid-template-columns: 1fr; gap: 24px; border-top: 1px solid var(--line); }
  .ecosystem-item:nth-child(even) > div { grid-column: auto; }
  .ecosystem-item:nth-child(even) figure { grid-column: auto; grid-row: auto; }
  .ecosystem-item h3 { font-size: 36px; }
  .ecosystem-item figure { width: 230px; margin: 20px auto -130px; }
  .companions-section { padding: 88px 18px; }
  .companion-lineup { grid-template-columns: 1fr; }
  .companion-lineup figure + figure { border-left: 0; border-top: 1px solid #cfd3da; }
  .companion-lineup figure > div { height: 280px; }
  .companion-lineup img { max-height: 250px; }
  .feature-ledger-section { padding: 88px 18px; }
  .ledger-heading { margin-bottom: 48px; }
  .feature-ledger .ledger-row { padding: 24px 0; grid-template-columns: 36px 1fr; gap: 8px 12px; }
  .ledger-row p { grid-column: 2; }
  .language-section { padding: 86px 18px 0; }
  .integration-rail { grid-template-columns: 1fr 1fr; }
  .integration-rail span { min-height: 70px; padding: 18px 10px; border-bottom: 1px solid rgba(12, 14, 16, .28); }
  .integration-rail span:nth-child(odd) { border-left: 0; }
  .integration-rail span:last-child { grid-column: 1 / -1; }
  .start-section { padding: 86px 18px; grid-template-columns: 1fr; gap: 48px; }
  .faq-section { padding: 86px 18px; gap: 48px; }
  .faq-list summary { min-height: 74px; }
  .support-section { padding: 76px 18px; }
  .support-grid { grid-template-columns: 1fr; }
  .support-grid h2 { padding-right: 0; font-size: 38px; }
  .support-grid a { min-height: 110px; border-left: 0; border-top: 1px solid #d8dbe0; }
  footer { padding: 28px 18px; grid-template-columns: 1fr; gap: 18px; }
  footer p { text-align: left; }
  footer > div { justify-content: flex-start; }
  .apple-legal { grid-column: auto; padding-top: 18px; text-align: left; }
}

@media (max-width: 720px) {
  .site-header { height: 64px; padding: 0 16px; background: rgba(8, 10, 13, .97); }
  main section[id] { scroll-margin-top: 64px; }
  .site-header nav.open { top: 63px; grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .site-header nav.open a { min-height: 54px; padding: 0 12px; place-items: center start; }
  .site-header nav.open a:nth-child(3n) { border-right: 0; }
  .site-header nav.open a:nth-child(even) { border-right: 1px solid var(--line); }
  .site-header nav.open a:nth-child(n+3) { border-top: 1px solid var(--line); }
  .brand { min-height: 44px; gap: 8px; font-size: 16px; }
  .brand img { width: 29px; height: 29px; }
  .language-toggle { height: 44px; padding: 3px; background: #0c0f14; border-color: #292e36; }
  .language-toggle span { min-width: 25px; height: 34px; }
  .menu-button { width: 44px; height: 44px; padding: 12px; }

  .signal-hero { min-height: 0; padding: 50px 20px 0; }
  .signal-hero::before { left: 18px; }
  .signal-hero::after { right: 18px; }
  .system-label { margin-bottom: 16px; gap: 8px; font-size: 9px; }
  .system-label span { width: 23px; height: 23px; }
  h1 { font-size: 48px; line-height: .95; }
  .hero-copy > p:last-of-type { margin-top: 20px; font-size: 16px; line-height: 1.55; }
  .hero-actions { margin-top: 24px; gap: 13px; }
  .hero-store-cluster { min-height: 54px; width: auto; padding: 0; gap: 10px; border: 0; background: transparent; }
  .app-icon { width: 48px; height: 48px; border-radius: 12px; }
  .app-store-badge { padding: 0; }
  .app-store-badge img { width: 148px; }
  .quiet-action { font-size: 13px; }
  .command-deck { width: calc(100% + 40px); height: 508px; margin: 38px 0 0 -20px; border-bottom: 1px solid var(--line); }
  .deck-meta { left: 16px; right: 16px; top: 13px; font-size: 8px; }
  .command-input { top: 36px; width: calc(100% - 32px); min-height: 54px; padding: 9px 12px; gap: 10px; background: rgba(20, 24, 32, .96); border-color: #343a44; font-size: 11px; }
  .hero-phone { width: 210px; left: calc(50% - 105px); top: 106px; }
  .result-flag { display: none; }
  .mobile-command-proof { position: absolute; left: 16px; right: 16px; bottom: 14px; z-index: 8; min-height: 66px; padding: 11px 13px; display: grid; grid-template-columns: 1fr 28px 1fr; align-items: center; gap: 6px; background: rgba(16, 19, 25, .96); border: 1px solid #363c46; box-shadow: 0 18px 45px rgba(0, 0, 0, .36); transition: border-color .35s ease, transform .5s cubic-bezier(.22, 1, .36, 1); }
  .mobile-command-proof span { min-width: 0; display: grid; gap: 4px; }
  .mobile-command-proof span:last-child { text-align: right; }
  .mobile-command-proof small { color: #69717d; font-size: 8px; font-weight: 820; text-transform: uppercase; }
  .mobile-command-proof b { overflow: hidden; color: #c7cbd3; font-size: 10px; text-overflow: ellipsis; white-space: nowrap; }
  .mobile-command-proof i { width: 28px; height: 28px; display: grid; place-items: center; color: #747c87; border: 1px solid #39404a; border-radius: 50%; }
  .mobile-command-proof svg { width: 14px; height: 14px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
  .command-deck[data-command-state="ready"] .mobile-command-proof { transform: translateY(7px); }
  .command-deck[data-command-state="ready"] .mobile-command-proof span:last-child { opacity: .34; }
  .command-deck[data-command-state="applying"] .mobile-command-proof { border-color: rgba(56, 217, 255, .65); }
  .command-deck[data-command-state="applied"] .mobile-command-proof { border-color: rgba(203, 255, 66, .58); transform: translateY(0); }
  .command-deck[data-command-state="applied"] .mobile-command-proof span:last-child b { color: var(--acid); }

  .signal-strip { min-height: 104px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .signal-strip::-webkit-scrollbar, .life-rail::-webkit-scrollbar, .system-tabs::-webkit-scrollbar, .companion-lineup::-webkit-scrollbar, .integration-rail::-webkit-scrollbar { display: none; }
  .signal-strip div { flex: 0 0 176px; min-height: 103px; padding: 20px; scroll-snap-align: start; border-top: 0 !important; }
  .signal-strip div + div, .signal-strip div:nth-child(3), .signal-strip div:nth-child(5) { border-left: 1px solid var(--line); }

  .manifesto-section { padding: 72px 20px; gap: 0; }
  .manifesto-index { margin: 0 0 24px; }
  .manifesto-copy h2 { font-size: 38px; line-height: 1.02; }
  .manifesto-copy p { margin-top: 24px; font-size: 16px; line-height: 1.58; }
  .life-rail { width: calc(100% + 40px); margin: 40px 0 0 -20px; padding: 0 0 0 20px; display: flex; gap: 0; overflow-x: auto; justify-content: flex-start; border-bottom: 1px solid #c7ccd2; scrollbar-width: none; }
  .life-rail span { flex: 0 0 auto; min-height: 54px; padding: 0 21px; display: grid; place-items: center; border-right: 1px solid #c7ccd2; border-bottom: 0; white-space: nowrap; }
  .life-rail span:nth-of-type(odd) { border-right: 1px solid #c7ccd2; }

  .section-heading h2, .capture-copy h2, .adapt-intro h2, .focus-copy h2, .travel-copy h2, .companion-heading h2, .ledger-heading h2, .language-copy h2, .start-head h2, .faq-heading h2 { font-size: 36px; line-height: 1.03; }
  .section-heading > p:last-child, .capture-copy > p, .focus-copy > p, .travel-copy > p, .companion-heading > p, .language-copy > p { font-size: 15px; line-height: 1.58; }
  .kicker { margin-bottom: 16px; font-size: 10px; }

  .system-section { padding: 76px 20px; }
  .system-heading { margin-bottom: 42px; }
  .system-console { border-left: 0; border-right: 0; }
  .system-tabs { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; border-right: 0; border-bottom: 1px solid var(--line); scrollbar-width: none; }
  .system-tab { flex: 0 0 150px; width: auto; min-height: 76px; padding: 12px 12px 12px 0; grid-template-columns: 32px 1fr; column-gap: 9px; border-right: 1px solid var(--line); border-bottom: 0; scroll-snap-align: start; }
  .system-tab:nth-child(odd) { border-right: 1px solid var(--line); }
  .system-tab .system-index { border-right: 0; }
  .system-tab strong { font-size: 12px; }
  .system-tab small { font-size: 9px; }
  .system-tab.active { box-shadow: inset 0 -3px 0 var(--acid); }
  .system-screen { min-height: 500px; padding: 20px; }
  .system-screen figure { width: 220px; margin-top: 26px; margin-bottom: -150px; }
  .system-copy { padding: 26px 20px; }
  .system-copy h3 { font-size: 28px; }
  .system-copy ul { margin-top: 26px; }

  .capture-section { min-height: 0; padding: 72px 20px 64px; gap: 34px; }
  .capture-methods { margin-top: 32px; }
  .capture-methods > div { padding: 16px 0; grid-template-columns: 28px 1fr; gap: 6px 10px; }
  .capture-methods p { font-size: 12px; line-height: 1.45; }
  .capture-visual { min-height: 470px; width: 100%; }
  .notes-phone { width: 188px; left: -10%; top: 84px; transform: rotate(-4deg); }
  .planner-phone { width: 214px; right: -9%; top: 2px; transform: rotate(3deg); }
  .voice-demo { top: 55%; min-height: 78px; padding: 10px 10px 10px 13px; grid-template-columns: 38px minmax(0, 1fr) 44px; gap: 10px; }
  .voice-button { width: 42px; height: 42px; }
  .voice-message strong { font-size: 11px; }

  .adapt-section { padding: 76px 20px; }
  .rescue-board { margin-top: 42px; }
  .rescue-step { min-height: 0; padding: 22px 0; }
  .rescue-step b { margin-top: 16px; }
  .adapt-stage { width: calc(100% + 40px); height: 560px; margin: 48px 0 0 -20px; }
  .adapt-phone { width: 196px; top: 88px; }
  .adapt-phone.week { left: -13%; }
  .adapt-phone.smart { right: -13%; }
  .adapt-command { width: 270px; min-height: 124px; top: 222px; }
  .protected-rail { padding-top: 0; }

  .focus-section { min-height: 760px; padding: 72px 20px 0; gap: 28px; }
  .focus-stats { margin-top: 34px; grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .focus-stats div { min-height: 96px; padding: 16px 9px 16px 0; }
  .focus-stats div + div { padding-left: 10px; border-top: 0; border-left: 1px solid #c3c9d0; }
  .focus-stats strong { font-size: 14px; overflow-wrap: anywhere; }
  .focus-stats span { font-size: 9px; line-height: 1.35; }
  .focus-phone { width: 230px; margin-bottom: -114px; }
  .focus-orbit { width: 350px; height: 350px; right: -150px; top: 432px; }

  .travel-scene { min-height: 550px; }
  .travel-phone { width: 230px; top: 72px; }
  .travel-copy { padding: 68px 20px; }
  .travel-details { margin-top: 32px; }

  .ecosystem-section { padding: 76px 20px; }
  .ecosystem-heading { margin-bottom: 46px; }
  .ecosystem-gallery { margin: 0 -20px; }
  .ecosystem-item, .ecosystem-item:nth-child(even) { min-height: 610px; padding: 48px 20px 0 30px; gap: 16px; }
  .ecosystem-item h3 { margin-top: 18px; font-size: 33px; }
  .ecosystem-item p { font-size: 14px; line-height: 1.55; }
  .ecosystem-item figure { width: 218px; margin: 12px auto -108px; }

  .companions-section { padding: 76px 20px; }
  .companion-heading { margin-bottom: 42px; }
  .companion-lineup { width: calc(100% + 40px); margin-left: -20px; padding-left: 20px; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .companion-lineup figure { flex: 0 0 min(82vw, 310px); padding: 24px 20px; scroll-snap-align: center; }
  .companion-lineup figure + figure { border-top: 0; border-left: 1px solid #cfd3da; }
  .companion-lineup figure > div { height: 246px; }
  .companion-lineup img { max-height: 226px; }

  .feature-ledger-section { padding: 76px 20px; }
  .ledger-heading { margin-bottom: 44px; }
  .feature-ledger .ledger-row { min-height: 0; padding: 20px 0; }
  .ledger-row h3 { font-size: 20px; }
  .ledger-row p { font-size: 13px; line-height: 1.55; }

  .language-section { padding: 72px 20px 0; }
  .integration-rail { width: calc(100% + 40px); min-height: 82px; margin: 48px 0 0 -20px; padding-left: 20px; display: flex; overflow-x: auto; scrollbar-width: none; }
  .integration-rail span { flex: 0 0 160px; min-height: 81px; padding: 16px 14px; border-bottom: 0; }
  .integration-rail span:nth-child(odd), .integration-rail span + span { border-left: 1px solid rgba(12, 14, 16, .28); }
  .integration-rail span:last-child { grid-column: auto; }

  .start-section { padding: 76px 20px; gap: 38px; }
  .start-body > p { font-size: 15px; }
  .faq-section { padding: 76px 20px; gap: 40px; }
  .faq-list summary { min-height: 68px; font-size: 14px; }
  .faq-list details p { font-size: 14px; }
  .support-section { padding: 68px 20px; }
  .support-grid h2 { font-size: 34px; }
  .support-grid a { min-height: 92px; padding: 24px 0; }
  footer { padding: 26px 20px; }
}

@media (max-width: 400px) {
  html[lang="es"] h1 { font-size: 43px; }
  html[lang="es"] .section-heading h2, html[lang="es"] .capture-copy h2, html[lang="es"] .adapt-intro h2, html[lang="es"] .focus-copy h2, html[lang="es"] .travel-copy h2, html[lang="es"] .companion-heading h2, html[lang="es"] .ledger-heading h2, html[lang="es"] .language-copy h2, html[lang="es"] .start-head h2, html[lang="es"] .faq-heading h2 { font-size: 34px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; animation: none !important; }
}
