@import url('https://fonts.bunny.net/css2?family=manrope:wght@400;500;600;700;800&family=space-grotesk:wght@400;500;600;700&display=swap');

:root {
    --ink: #071319;
    --ink-soft: #0b1b21;
    --ink-raised: #10252d;
    --paper: #f0f2e9;
    --paper-dim: #b7c1be;
    --line: rgba(220, 237, 231, 0.18);
    --line-strong: rgba(220, 237, 231, 0.38);
    --coral: #ff705e;
    --coral-soft: #ff988b;
    --shadow: rgba(0, 0, 0, 0.28);
    --display: 'Space Grotesk', sans-serif;
    --body: 'Manrope', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--ink); }
body { margin: 0; min-width: 320px; background: var(--ink); color: var(--paper); font-family: var(--body); overflow-x: hidden; }
body.menu-open { overflow: hidden; }
button, a { font: inherit; }
a { color: inherit; text-decoration: none; }
button { border: 0; }
img { display: block; max-width: 100%; }

.skip-link { position: fixed; z-index: 200; left: 1rem; top: -5rem; padding: .8rem 1rem; background: var(--paper); color: var(--ink); border-radius: .5rem; transition: top .2s ease; }
.skip-link:focus { top: 1rem; }
.scroll-progress { position: fixed; z-index: 150; top: 0; left: 0; width: 100%; height: 3px; background: transparent; transform-origin: left; }
.scroll-progress span { display: block; width: 0; height: 100%; background: var(--coral); }
.page-noise { position: fixed; inset: 0; z-index: 0; opacity: .045; pointer-events: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E"); }
.ambient { position: fixed; z-index: 0; width: 45vw; aspect-ratio: 1; border-radius: 50%; filter: blur(110px); opacity: .17; pointer-events: none; }
.ambient-one { top: -18rem; right: -13rem; background: var(--coral); }
.ambient-two { bottom: -28rem; left: -20rem; background: #499fb7; opacity: .11; }

.site-header { position: fixed; top: 0; left: 0; z-index: 100; width: 100%; transition: background .35s ease, border-color .35s ease, padding .35s ease; }
.site-header.is-scrolled { background: rgba(7, 19, 25, .82); border-bottom: 1px solid rgba(240, 242, 233, .1); backdrop-filter: blur(18px); }
.nav-shell { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; width: min(100% - 3rem, 1380px); min-height: 86px; margin: auto; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand-mark { display: grid; place-items: center; min-width: 94px; height: 35px; padding: 0 13px; background: var(--paper); border-radius: 999px; }
.brand img { width: 62px; height: auto; }
.desktop-nav { display: flex; align-items: center; gap: clamp(1.4rem, 3vw, 3.4rem); margin-left: auto; }
.desktop-nav a { position: relative; color: var(--paper-dim); font-size: .79rem; font-weight: 700; letter-spacing: .015em; }
.desktop-nav a::after { content: ''; position: absolute; bottom: -7px; left: 0; width: 100%; height: 1px; background: var(--coral); transform: scaleX(0); transform-origin: right; transition: transform .25s ease; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--paper); }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); transform-origin: left; }
.language-select { appearance: none; border: 1px solid rgba(240, 242, 233, .2); border-radius: 999px; background: rgba(7, 19, 25, .72); color: var(--paper); padding: .52rem 2rem .52rem .78rem; font: 700 .7rem/1 var(--sans); letter-spacing: .04em; cursor: pointer; }
.language-select:focus-visible { outline: 2px solid var(--coral); outline-offset: 3px; }
.nav-download, .button, .footer-download { display: inline-flex; align-items: center; justify-content: center; gap: .65rem; border-radius: 999px; font-weight: 800; letter-spacing: -.015em; transition: transform .25s ease, background .25s ease, color .25s ease; }
.nav-download { min-height: 44px; padding: 0 1.1rem 0 1.25rem; background: var(--paper); color: var(--ink); font-size: .78rem; }
.nav-download svg, .button svg, .footer-download svg { width: 16px; stroke-width: 2.4; }
.nav-download:hover, .button:hover, .footer-download:hover { transform: translateY(-3px); }
.nav-download:active, .button:active, .footer-download:active { transform: translateY(0) scale(.98); }
.menu-toggle { display: none; width: 46px; height: 46px; padding: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--paper); transition: transform .25s ease, opacity .25s ease; }
.menu-toggle.is-open span:first-child { transform: translateY(3.5px) rotate(45deg); }
.menu-toggle.is-open span:last-child { transform: translateY(-3.5px) rotate(-45deg); }
.mobile-menu { position: absolute; top: 100%; left: 0; display: grid; width: 100%; padding: 1.35rem 1.5rem 1.5rem; background: var(--ink); border-bottom: 1px solid var(--line); }
.mobile-menu[hidden] { display: none; }
.mobile-menu a { display: flex; align-items: center; justify-content: space-between; padding: 1.1rem 0; border-top: 1px solid var(--line); font-family: var(--display); font-size: 1.23rem; font-weight: 600; }
.mobile-menu a svg { width: 18px; }
.mobile-menu .mobile-download { margin-top: 1rem; padding: 1rem 1.2rem; background: var(--coral); border: 0; border-radius: 999px; font-family: var(--body); font-size: .95rem; }

main, footer { position: relative; z-index: 1; }
.hero { position: relative; display: flex; min-height: min(900px, 100dvh); padding: 8.5rem 0 2rem; }
.hero-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(430px, 1.08fr); align-items: center; gap: clamp(2rem, 5vw, 7rem); width: min(100% - 3rem, 1380px); margin: auto; }
.hero-copy { position: relative; z-index: 3; padding: 3rem 0; }
.eyebrow, .section-label { display: flex; align-items: center; gap: .7rem; margin: 0; color: var(--paper-dim); font-size: .67rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.hero-kicker span { display: block; width: 8px; height: 8px; background: var(--coral); border-radius: 50%; box-shadow: 0 0 0 5px rgba(255, 112, 94, .12); }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--display); }
.hero h1 { max-width: 750px; margin: 1.75rem 0 1.65rem; color: var(--paper); font-size: clamp(3.45rem, 6.7vw, 7.6rem); font-weight: 600; letter-spacing: -.085em; line-height: .86; }
.hero h1 em, .display-statement em, .features h2 em, .closing h2 em { color: var(--coral); font-style: normal; }
.hero-description { max-width: 540px; margin-bottom: 2rem; color: var(--paper-dim); font-size: clamp(1rem, 1.3vw, 1.17rem); font-weight: 500; line-height: 1.8; }
.hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 1.7rem; }
.button { min-height: 56px; padding: 0 1.45rem 0 1.7rem; font-size: .92rem; }
.button-primary { background: var(--coral); color: var(--ink); box-shadow: 0 12px 30px rgba(255, 112, 94, .2); }
.button-primary:hover { background: #ff8878; box-shadow: 0 16px 42px rgba(255, 112, 94, .28); }
.text-link { display: inline-flex; align-items: center; gap: .48rem; padding: .25rem 0; border-bottom: 1px solid var(--line-strong); color: var(--paper); font-size: .82rem; font-weight: 800; transition: border-color .2s ease, color .2s ease; }
.text-link:hover { color: var(--coral-soft); border-color: var(--coral); }
.text-link svg { width: 15px; stroke-width: 2.2; }
.hero-proof { display: flex; align-items: center; gap: .55rem; margin-top: 4.8rem; color: #8fa19e; font-size: .7rem; font-weight: 700; letter-spacing: .025em; }
.pulse-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 0 rgba(255, 112, 94, .6); animation: pulse 2.5s infinite; }

.hero-art { position: relative; min-height: 580px; align-self: stretch; }
.phone-frame { position: absolute; z-index: 2; top: 49%; left: 51%; width: min(88%, 550px); transform: translate(-50%, -50%); }
.phone-frame::before { content: ''; position: absolute; z-index: -1; inset: 15% 10% 9%; border-radius: 50%; background: radial-gradient(circle, rgba(255,112,94,.32), rgba(255,112,94,0) 65%); filter: blur(35px); }
.phone-frame img { width: 100%; filter: drop-shadow(0 35px 40px rgba(0, 0, 0, .38)); }
.phone-glow { position: absolute; inset: 15% 15% 17%; border: 1px solid rgba(240,242,233,.18); border-radius: 50%; transform: rotate(-16deg); }
.orbit { position: absolute; top: 50%; left: 50%; border: 1px solid rgba(240,242,233,.15); border-radius: 50%; transform: translate(-50%, -50%) rotate(-22deg); }
.orbit::after { content: ''; position: absolute; top: 8%; right: 15%; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 7px rgba(255,112,94,.12); }
.orbit-outer { width: 89%; aspect-ratio: 1.45; }
.orbit-inner { width: 67%; aspect-ratio: 1.15; border-color: rgba(240,242,233,.1); }
.stage-line { position: absolute; height: 1px; background: linear-gradient(90deg, transparent, var(--line-strong), transparent); }
.line-one { top: 15%; left: 0; width: 72%; transform: rotate(-17deg); }
.line-two { right: 1%; bottom: 20%; width: 65%; transform: rotate(13deg); }
.hero-stamp { position: absolute; z-index: 4; padding: .6rem .9rem; border: 1px solid rgba(240,242,233,.2); border-radius: 999px; background: rgba(12, 32, 39, .74); color: var(--paper); font-size: .62rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase; backdrop-filter: blur(10px); }
.stamp-one { top: 15%; left: 1%; transform: rotate(-8deg); }
.stamp-two { right: 0; bottom: 21%; transform: rotate(8deg); }
.hero-message { position: absolute; z-index: 5; width: min(200px, 34%); padding: .9rem 1rem; border: 1px solid rgba(240,242,233,.17); border-radius: 3px 16px 16px 16px; background: rgba(14, 35, 43, .88); box-shadow: 0 14px 30px rgba(0,0,0,.16); backdrop-filter: blur(10px); }
.hero-message p { margin: .35rem 0 0; color: var(--paper); font-size: .72rem; font-weight: 700; line-height: 1.45; }
.message-label { color: var(--coral-soft); font-size: .52rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.message-one { top: 27%; left: -2%; transform: rotate(-6deg); }
.message-two { right: -1%; bottom: 11%; transform: rotate(6deg); }
.art-caption { position: absolute; bottom: 1%; left: 5%; z-index: 3; display: flex; gap: .5rem; color: var(--paper-dim); font-size: .62rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.art-caption span:first-child { color: var(--coral); }
.hero-bottom { position: absolute; right: max(1.5rem, calc((100vw - 1380px) / 2)); bottom: 1.8rem; display: flex; align-items: center; gap: .8rem; color: #728683; font-size: .6rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.scroll-line { display: block; width: 74px; height: 1px; background: linear-gradient(90deg, var(--coral) 0 25%, var(--line-strong) 25% 100%); }

.ribbon { position: relative; z-index: 2; display: flex; width: 100%; padding: 1.15rem 0; overflow: hidden; background: var(--coral); color: var(--ink); transform: rotate(-1.1deg) scale(1.02); }
.ribbon-track { display: flex; flex: 0 0 auto; align-items: center; white-space: nowrap; animation: ribbon 25s linear infinite; }
.ribbon-track span { display: inline-flex; align-items: center; gap: 1.9rem; padding-left: 1.9rem; font-family: var(--display); font-size: clamp(1.1rem, 1.65vw, 1.55rem); font-weight: 700; letter-spacing: -.045em; }
.ribbon-track b { width: 7px; height: 7px; background: var(--ink); border-radius: 50%; }

.section-pad { width: min(100% - 3rem, 1380px); margin-right: auto; margin-left: auto; }
.manifesto { padding-top: clamp(8rem, 15vw, 14rem); padding-bottom: clamp(8rem, 13vw, 12rem); }
.section-label span:first-child { color: var(--coral); }
.manifesto-layout { display: grid; grid-template-columns: minmax(0, 1.32fr) minmax(260px, .5fr); gap: clamp(2rem, 8vw, 10rem); align-items: end; margin-top: 2rem; }
.display-statement { max-width: 970px; margin: 0; font-size: clamp(3rem, 6.1vw, 7.2rem); font-weight: 500; letter-spacing: -.08em; line-height: .92; }
.manifesto-aside { max-width: 360px; padding-bottom: .8rem; }
.manifesto-aside p { color: var(--paper-dim); font-size: .95rem; font-weight: 500; line-height: 1.8; }
.manifesto-aside .text-link { margin-top: 1.2rem; }

.story { position: relative; overflow: hidden; background: var(--paper); color: var(--ink); }
.story-heading { padding-top: clamp(5.5rem, 9vw, 8.5rem); }
.story .section-label { color: #50605f; }
.story-heading h2 { max-width: 800px; margin: 1.65rem 0 0; font-size: clamp(3rem, 5.5vw, 6.6rem); font-weight: 500; letter-spacing: -.08em; line-height: .9; }
.story-viewport { overflow: hidden; }
.story-rail { display: flex; width: 300%; }
.story-panel { position: relative; display: flex; flex: 0 0 33.3333%; min-height: min(670px, 82dvh); overflow: hidden; padding: clamp(2.5rem, 6vw, 7rem) max(1.5rem, calc((100vw - 1380px) / 2)); }
.story-panel-memory { background: #d9e4df; }
.story-panel-rhythm { background: #bed7d4; }
.story-panel-shape { background: #f2a89d; }
.panel-number { position: absolute; top: 2rem; right: max(1.5rem, calc((100vw - 1380px) / 2)); color: rgba(7,19,25,.32); font-family: var(--display); font-size: clamp(6rem, 14vw, 13rem); font-weight: 600; letter-spacing: -.12em; line-height: .7; }
.panel-copy { position: relative; z-index: 2; width: min(100%, 540px); margin-top: auto; }
.panel-copy .eyebrow { color: #405552; }
.panel-copy h3 { max-width: 560px; margin: 1.25rem 0 1.5rem; font-size: clamp(2.8rem, 5.2vw, 6rem); font-weight: 500; letter-spacing: -.085em; line-height: .88; }
.panel-copy p:last-child { max-width: 440px; margin-bottom: 0; color: #36504d; font-size: .95rem; font-weight: 600; line-height: 1.75; }
.memory-stack { position: absolute; right: max(1.5rem, calc((100vw - 1380px) / 2)); bottom: clamp(3.5rem, 8vw, 7rem); width: min(35vw, 430px); }
.memory-stack div { position: relative; display: grid; gap: .5rem; padding: 1.5rem; border: 1px solid rgba(7,19,25,.18); border-radius: 4px; background: rgba(240,242,233,.7); box-shadow: 0 15px 24px rgba(7,19,25,.08); }
.memory-stack div:nth-child(1) { transform: rotate(6deg) translate(5%, 7%); }
.memory-stack div:nth-child(2) { transform: rotate(-3deg) translate(-4%, 2%); }
.memory-stack div:nth-child(3) { transform: rotate(2deg); }
.memory-stack small { color: #607774; font-size: .55rem; font-weight: 800; letter-spacing: .11em; }
.memory-stack strong { font-family: var(--display); font-size: clamp(1rem, 1.5vw, 1.35rem); font-weight: 600; letter-spacing: -.04em; }
.rhythm-display { position: absolute; top: 50%; right: max(1.5rem, calc((100vw - 1380px) / 2)); display: grid; gap: 1.4rem; width: min(39vw, 520px); transform: translateY(-48%); }
.rhythm-display > span { color: rgba(7,19,25,.58); font-family: var(--display); font-size: clamp(2rem, 3.5vw, 4.1rem); font-weight: 500; letter-spacing: -.07em; }
.rhythm-display small { color: #31514e; font-size: .64rem; font-weight: 800; letter-spacing: .13em; text-transform: uppercase; }
.wave { display: flex; align-items: center; gap: .45rem; height: 160px; }
.wave i { display: block; flex: 1; min-width: 6px; border-radius: 99px; background: var(--coral); }
.wave i:nth-child(1), .wave i:nth-child(9) { height: 17%; }.wave i:nth-child(2), .wave i:nth-child(8) { height: 35%; }.wave i:nth-child(3), .wave i:nth-child(7) { height: 68%; }.wave i:nth-child(4), .wave i:nth-child(6) { height: 46%; }.wave i:nth-child(5) { height: 100%; }
.shape-display { position: absolute; top: 50%; right: max(1.5rem, calc((100vw - 1380px) / 2)); width: min(34vw, 450px); aspect-ratio: 1; transform: translateY(-48%); }
.shape-orbit { position: absolute; inset: 8%; border: 1px solid rgba(7,19,25,.44); border-radius: 47% 53% 61% 39% / 43% 38% 62% 57%; transform: rotate(31deg); }
.shape-orbit::after { content: ''; position: absolute; top: 6%; left: 50%; width: 15px; height: 15px; border-radius: 50%; background: var(--ink); }
.shape-core { position: absolute; top: 50%; left: 50%; display: grid; width: 36%; aspect-ratio: 1; place-items: center; border-radius: 50%; background: var(--ink); color: var(--paper); font-size: .65rem; font-weight: 800; letter-spacing: .12em; transform: translate(-50%, -50%); }
.shape-tag { position: absolute; padding: .65rem .85rem; border: 1px solid rgba(7,19,25,.34); border-radius: 999px; background: rgba(242, 168, 157, .65); color: var(--ink); font-size: .65rem; font-weight: 800; }
.tag-a { top: 13%; left: 0; }.tag-b { right: -2%; bottom: 22%; }.tag-c { bottom: 4%; left: 22%; }

.features { padding-top: clamp(8rem, 14vw, 14rem); padding-bottom: clamp(8rem, 13vw, 12rem); }
.features-top { display: grid; grid-template-columns: .6fr 1fr; gap: 2rem; align-items: start; }
.features h2 { max-width: 720px; margin: -.1em 0 4rem; font-size: clamp(3.25rem, 6vw, 7rem); font-weight: 500; letter-spacing: -.085em; line-height: .9; }
.feature-list { border-top: 1px solid var(--line); }
.feature-row { display: grid; grid-template-columns: .15fr 1fr auto; gap: 2rem; align-items: center; min-height: 165px; padding: 1.8rem 0; border-bottom: 1px solid var(--line); transition: padding .35s ease, color .35s ease; }
.feature-row:hover { padding-right: 1rem; padding-left: 1rem; color: var(--coral-soft); }
.feature-index { color: var(--coral); font-family: var(--display); font-size: .8rem; font-weight: 700; }
.feature-row h3 { margin: 0 0 .5rem; font-size: clamp(1.45rem, 2.25vw, 2.5rem); font-weight: 500; letter-spacing: -.065em; }
.feature-row p { max-width: 560px; margin: 0; color: var(--paper-dim); font-size: .87rem; font-weight: 500; line-height: 1.65; }
.feature-row > svg { width: 27px; height: 27px; color: var(--coral); stroke-width: 1.35; }

.privacy { display: grid; grid-template-columns: minmax(300px, .83fr) minmax(0, 1fr); gap: clamp(3rem, 9vw, 11rem); align-items: center; padding-top: clamp(7rem, 11vw, 10rem); padding-bottom: clamp(7rem, 11vw, 10rem); border-top: 1px solid var(--line); }
.privacy-orb { position: relative; width: min(100%, 420px); aspect-ratio: 1; margin-left: max(0rem, 3vw); border: 1px solid rgba(240,242,233,.22); border-radius: 50%; }
.privacy-orb::before, .privacy-orb::after { content: ''; position: absolute; border: 1px solid rgba(240,242,233,.16); border-radius: inherit; }
.privacy-orb::before { inset: 11%; }.privacy-orb::after { inset: 24%; }
.privacy-orb span { position: absolute; display: block; width: 13px; height: 13px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 9px rgba(255,112,94,.1); }
.privacy-orb span:nth-child(1) { top: 13%; left: 22%; }.privacy-orb span:nth-child(2) { top: 48%; right: -2%; }.privacy-orb span:nth-child(3) { bottom: 11%; left: 36%; }
.privacy-content { max-width: 650px; }
.privacy h2 { margin: 1.5rem 0; font-size: clamp(3rem, 5.6vw, 6.5rem); font-weight: 500; letter-spacing: -.085em; line-height: .9; }
.privacy p { max-width: 560px; margin-bottom: 2rem; color: var(--paper-dim); font-size: 1rem; font-weight: 500; line-height: 1.8; }
.button-outline { border: 1px solid var(--line-strong); color: var(--paper); }
.button-outline:hover { border-color: var(--coral); color: var(--coral-soft); }

.closing { padding-top: clamp(6rem, 10vw, 10rem); padding-bottom: clamp(8rem, 12vw, 12rem); text-align: center; }
.closing-rule { width: 1px; height: 80px; margin: 0 auto 2rem; background: linear-gradient(var(--coral), transparent); }
.closing .eyebrow { justify-content: center; }
.closing h2 { margin: 1.6rem auto 2.6rem; font-size: clamp(3.2rem, 7vw, 8rem); font-weight: 500; letter-spacing: -.095em; line-height: .87; }
.closing-cta { min-height: 60px; }

.site-footer { position: relative; z-index: 2; border-top: 1px solid var(--line); }
.footer-top, .footer-bottom { width: min(100% - 3rem, 1380px); margin: auto; }
.footer-top { display: grid; grid-template-columns: .7fr 1.2fr auto; gap: 2rem; align-items: center; padding: 2.5rem 0; }
.footer-top p { max-width: 460px; margin: 0; color: var(--paper-dim); font-size: .78rem; font-weight: 600; line-height: 1.6; }
.footer-download { min-height: 46px; padding: 0 1rem 0 1.2rem; background: var(--paper); color: var(--ink); font-size: .77rem; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: 1.4rem 0 2rem; border-top: 1px solid var(--line); color: #82918e; font-size: .65rem; font-weight: 700; letter-spacing: .03em; }
.footer-bottom p { margin: 0; }
.footer-bottom nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 1.35rem; }
.footer-bottom a:hover { color: var(--coral-soft); }

[data-reveal] { will-change: transform, opacity; }
@keyframes ribbon { to { transform: translateX(-50%); } }
@keyframes pulse { 70% { box-shadow: 0 0 0 7px rgba(255,112,94,0); } 100% { box-shadow: 0 0 0 0 rgba(255,112,94,0); } }

@media (max-width: 900px) {
    .desktop-nav, .nav-download { display: none; }.menu-toggle { display: block; }
    .hero { min-height: auto; padding-top: 8rem; }.hero-grid { grid-template-columns: 1fr; gap: 1rem; }.hero-copy { padding: 2rem 0 0; }.hero-art { min-height: 530px; width: min(100%, 690px); margin: 0 auto; }.hero-bottom { display: none; }
    .manifesto-layout { grid-template-columns: 1fr; }.manifesto-aside { max-width: 520px; }
    .story-rail { display: grid; width: 100%; }.story-panel { min-height: 600px; padding: 3.5rem 1.5rem; }.panel-number { right: 1.5rem; }.memory-stack, .rhythm-display, .shape-display { right: 1.5rem; width: min(45vw, 350px); }.memory-stack { bottom: 3.5rem; }.shape-display { width: min(42vw, 340px); }
    .features-top { grid-template-columns: 1fr; }.features h2 { margin-bottom: 3rem; }
    .privacy { grid-template-columns: 1fr; }.privacy-orb { width: min(72vw, 390px); margin: auto; }
    .footer-top { grid-template-columns: 1fr auto; }.footer-top p { grid-row: 2; grid-column: 1 / -1; }
}

@media (max-width: 600px) {
    .nav-shell { width: min(100% - 2rem, 1380px); min-height: 74px; }.brand-mark { min-width: 86px; height: 32px; }.brand img { width: 56px; }
    .hero-grid, .section-pad, .footer-top, .footer-bottom { width: min(100% - 2rem, 1380px); }.hero { padding-top: 6.5rem; }.hero-copy { padding-top: 2rem; }.hero h1 { font-size: clamp(3.25rem, 15vw, 5rem); }.hero-description { font-size: .92rem; line-height: 1.72; }.hero-actions { align-items: flex-start; flex-direction: column; gap: 1.25rem; }.hero-proof { margin-top: 3rem; }
    .hero-art { min-height: 410px; margin-top: 1.3rem; }.phone-frame { width: min(87%, 365px); }.hero-message { width: min(172px, 43%); padding: .75rem; }.hero-message p { font-size: .62rem; }.message-label { font-size: .47rem; }.stamp-one { top: 10%; }.stamp-two { bottom: 13%; }.art-caption { bottom: 0; }
    .ribbon { padding: .9rem 0; }.ribbon-track span { font-size: 1.05rem; }
    .manifesto { padding-top: 7rem; padding-bottom: 7rem; }.display-statement { font-size: clamp(2.65rem, 12.5vw, 4.5rem); }.manifesto-aside p { font-size: .87rem; }
    .story-heading { padding-top: 5rem; }.story-heading h2 { font-size: clamp(2.7rem, 12vw, 4.2rem); }.story-panel { min-height: 570px; }.panel-number { top: 1.5rem; font-size: 6.5rem; }.panel-copy { margin-top: auto; padding-bottom: 0; }.panel-copy h3 { font-size: clamp(2.6rem, 11vw, 4rem); }.panel-copy p:last-child { font-size: .84rem; }.memory-stack { right: 1rem; bottom: 2.1rem; width: 58%; }.memory-stack div { padding: .85rem; }.memory-stack strong { font-size: .8rem; }.rhythm-display { top: 25%; right: 1.2rem; width: 47%; }.rhythm-display > span { font-size: 1.7rem; }.wave { height: 88px; gap: .25rem; }.shape-display { top: 28%; right: 1rem; width: 55%; }
    .features { padding-top: 7rem; padding-bottom: 7rem; }.features h2 { font-size: clamp(2.9rem, 13vw, 4.6rem); }.feature-row { grid-template-columns: 28px 1fr; gap: 1rem; min-height: 148px; }.feature-row > svg { display: none; }.feature-row h3 { font-size: 1.53rem; }.feature-row p { font-size: .78rem; }
    .privacy { padding-top: 6.5rem; padding-bottom: 7rem; }.privacy h2 { font-size: clamp(2.9rem, 13vw, 4.6rem); }.privacy p { font-size: .88rem; }.button { min-height: 54px; padding: 0 1.2rem 0 1.35rem; font-size: .82rem; }
    .closing h2 { font-size: clamp(3rem, 13.5vw, 4.8rem); }.closing-cta { width: 100%; }
    .footer-top { grid-template-columns: 1fr; padding: 2rem 0; }.footer-top p { grid-row: auto; grid-column: auto; }.footer-download { width: fit-content; }.footer-bottom { align-items: flex-start; flex-direction: column; gap: 1rem; }.footer-bottom nav { justify-content: flex-start; gap: .8rem 1.15rem; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }.ribbon-track, .pulse-dot { animation: none; }.site-header, .nav-download, .button, .footer-download, .desktop-nav a::after, .menu-toggle span { transition: none; }
}
