:root {
  --linen: #f5f0e7;
  --paper: #fbf8f2;
  --ink: #2b2925;
  --muted: #6c6860;
  --green: #1d9e75;
  --green-dark: #185b49;
  --sage: #dfe9df;
  --sage-deep: #c8d8cb;
  --rose: #ead2cf;
  --rust: #b85f48;
  --amber: #e3a144;
  --line: rgba(43, 41, 37, 0.14);
  --shadow: 0 24px 70px rgba(50, 43, 32, 0.15);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 76% 5%, rgba(234, 210, 207, 0.5), transparent 31rem),
    var(--linen);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }
img { max-width: 100%; }

.site-nav {
  width: min(1240px, calc(100% - 48px));
  min-height: 84px;
  margin: 0 auto;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 34px;
  align-items: center;
}
.wordmark { font-size: 1.22rem; font-weight: 780; letter-spacing: -0.04em; }
.nav-links { display: flex; justify-content: center; gap: clamp(18px, 3vw, 38px); }
.nav-links a { color: var(--muted); font-size: 0.78rem; font-weight: 680; }
.nav-links a:hover { color: var(--ink); }
.nav-cta {
  padding: 11px 17px;
  border-radius: 999px;
  background: var(--green-dark);
  color: white;
  font-size: 0.77rem;
  font-weight: 740;
}

.section-shell { width: min(1100px, calc(100% - 48px)); margin-inline: auto; }
.section-heading h2, .history h2, .partner-grid h2, .privacy-grid h2,
.faq h2, .early-access h2 {
  max-width: 830px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.7rem, 5.4vw, 5.1rem);
  font-weight: 500;
  letter-spacing: -0.058em;
  line-height: 0.98;
}
.kicker {
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.71rem;
  font-weight: 780;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.split-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}
.section-intro { color: var(--muted); font-size: 1.02rem; line-height: 1.72; }
.section-intro p { margin: 0; }
.small-proof { margin-top: 22px !important; padding-top: 20px; border-top: 1px solid var(--line); font-size: 0.82rem; }
.section-subtitle { margin: 22px 0 0; color: var(--muted); font-size: 1rem; }
.card-label { color: var(--green-dark); font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }

/* Hero */
.hero {
  width: min(1240px, calc(100% - 48px));
  min-height: calc(100vh - 84px);
  margin: 0 auto;
  padding: clamp(52px, 7vw, 92px) 0 82px;
  display: grid;
  grid-template-columns: minmax(350px, 0.88fr) minmax(590px, 1.35fr);
  gap: clamp(32px, 5vw, 84px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  max-width: 620px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.2rem, 7.2vw, 7.4rem);
  font-weight: 500;
  letter-spacing: -0.068em;
  line-height: 0.88;
}
.hero-loop { margin: 30px 0 0; font-size: clamp(1.15rem, 1.8vw, 1.45rem); font-weight: 720; letter-spacing: -0.025em; }
.hero-promise { margin: 13px 0 0; color: var(--green-dark); font-family: Georgia, serif; font-size: 1.02rem; font-style: italic; }
.hero-description { max-width: 570px; margin: 18px 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.72; }
.hero-actions { margin-top: 30px; display: flex; flex-wrap: wrap; gap: 12px; }
.button {
  min-height: 50px;
  padding: 0 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 740;
  transition: transform 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green-dark); color: white; }
.button-secondary { border-color: var(--line); background: rgba(255, 255, 255, 0.45); }
.privacy-line { margin: 14px 0 0; color: #777168; font-size: 0.78rem; }

.story-stage {
  --figure-height: clamp(360px, 36vw, 500px);
  position: relative;
  min-height: 690px;
  display: grid;
  grid-template-columns: minmax(120px, 0.72fr) minmax(250px, 1fr) minmax(120px, 0.85fr);
  align-items: end;
  overflow: hidden;
}
.story-glow {
  position: absolute;
  inset: 8% 4% 2%;
  border: 1px solid rgba(43, 41, 37, 0.08);
  border-radius: 48% 52% 44% 56%;
  background: radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.94), rgba(234, 210, 207, 0.38) 52%, rgba(223, 233, 223, 0.4));
  transform: rotate(-2deg);
}
.character { position: relative; z-index: 2; width: 100%; margin: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-end; pointer-events: none; }
.character img { width: auto; max-width: none; height: var(--figure-height); display: block; filter: drop-shadow(0 18px 22px rgba(49, 41, 30, 0.12)); }
.character figcaption { width: max-content; margin: 8px auto 0; padding: 5px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(245, 240, 231, 0.88); color: var(--muted); font-size: 0.66rem; font-weight: 720; }
.character-maya { transform: translateX(16%); }
.character-oliver { transform: translateX(-12%); }
.product-story { position: relative; z-index: 4; align-self: center; display: flex; flex-direction: column; align-items: center; }
.story-copy { width: min(100%, 315px); min-height: 78px; margin-bottom: 14px; padding: 12px 16px; border: 1px solid rgba(255, 255, 255, 0.75); border-radius: 16px; background: rgba(251, 248, 242, 0.72); box-shadow: 0 10px 32px rgba(65, 51, 34, 0.07); backdrop-filter: blur(10px); }
.story-copy span, .story-copy strong { display: block; }
.story-copy span { color: var(--green-dark); font-size: 0.66rem; font-weight: 780; letter-spacing: 0.11em; text-transform: uppercase; }
.story-copy strong { margin-top: 5px; font-size: 0.92rem; line-height: 1.35; }
.phone-shell { width: min(100%, 286px); position: relative; padding: 9px; border: 1px solid rgba(0, 0, 0, 0.7); border-radius: 34px; background: #151817; box-shadow: var(--shadow); }
.phone-speaker { position: absolute; z-index: 5; top: 13px; left: 50%; width: 56px; height: 5px; transform: translateX(-50%); border-radius: 99px; background: rgba(17, 20, 19, 0.82); }
.phone-screen { width: 100%; height: auto; aspect-ratio: 709 / 1536; position: relative; overflow: hidden; border-radius: 25px; background: var(--paper); }
.screen-shot { width: 100%; height: 100%; position: absolute; inset: 0; display: block; object-fit: contain; opacity: 0; transform: none; transition: opacity 440ms ease; }
.screen-shot.active { opacity: 1; transform: none; }
.story-controls { margin-top: 14px; display: flex; align-items: center; gap: 14px; }
.play-control { border: 0; padding: 0; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 0.72rem; font-weight: 720; }
.step-controls { display: flex; gap: 7px; }
.step-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 99px; background: rgba(43, 41, 37, 0.19); cursor: pointer; transition: width 180ms ease, background 180ms ease; }
.step-dot.active { width: 24px; background: var(--green-dark); }
.screen-proof { margin: 14px 0 0; padding: 7px 10px; border: 1px solid var(--line); border-radius: 999px; background: rgba(251, 248, 242, 0.82); color: var(--muted); font-size: 0.63rem; font-weight: 680; white-space: nowrap; backdrop-filter: blur(8px); }

/* Positioning bridge */
.positioning-bridge { padding: 104px 0 110px; background: var(--green-dark); color: #f8f3eb; }
.positioning-bridge .kicker { color: #b8ddcd; }
.positioning-bridge-inner { display: grid; grid-template-columns: minmax(0, 1.22fr) minmax(300px, .78fr); column-gap: clamp(48px, 9vw, 130px); align-items: end; }
.positioning-bridge-inner .kicker { grid-column: 1 / -1; }
.positioning-bridge h2 { max-width: 760px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 5.5vw, 5.2rem); font-weight: 500; letter-spacing: -.058em; line-height: .98; }
.positioning-bridge-inner > p:last-child { max-width: 510px; margin: 0; color: rgba(248, 243, 235, .76); font-size: 1.02rem; line-height: 1.76; }

/* Difference */
.difference { padding: 126px 0 134px; border-top: 1px solid var(--line); }
.contrast-grid { margin-top: 66px; display: grid; grid-template-columns: 1fr 52px 1fr; align-items: stretch; }
.contrast-card { min-height: 290px; padding: clamp(30px, 4vw, 52px); border-radius: 30px; }
.contrast-muted { border: 1px dashed rgba(43, 41, 37, 0.24); color: var(--muted); background: rgba(251, 248, 242, 0.42); }
.contrast-useful { background: var(--sage); border: 1px solid rgba(24, 91, 73, 0.12); }
.contrast-quote { margin: 58px 0 14px; color: var(--ink); font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.7rem); letter-spacing: -0.04em; }
.contrast-card > p:last-child { max-width: 420px; line-height: 1.65; }
.contrast-useful h3 { margin: 52px 0 14px; font-family: Georgia, serif; font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 500; letter-spacing: -0.04em; }
.contrast-useful p { max-width: 460px; color: #42584d; line-height: 1.65; }
.contrast-arrow { display: grid; place-items: center; color: var(--green-dark); font-size: 1.6rem; }

/* Mechanic */
.mechanic { padding: 122px 0 138px; border-top: 1px solid var(--line); }
.mechanic-grid { margin-top: 58px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.mechanic-grid article { min-height: 245px; padding: 26px; border: 1px solid var(--line); border-radius: 24px; background: rgba(251, 248, 242, 0.68); }
.mechanic-grid span { color: var(--green); font-size: 0.72rem; font-weight: 800; letter-spacing: 0.12em; }
.mechanic-grid h3 { margin: 76px 0 10px; font-size: 1.08rem; }
.mechanic-grid p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }

/* Actions */
.actions-section { padding: 132px 0 140px; background: #27302b; color: #f6f0e8; }
.actions-section .kicker { color: #aad6c3; }
.actions-section .section-intro { color: rgba(246, 240, 232, 0.66); }
.pillar-row { margin-top: 68px; display: grid; grid-template-columns: repeat(6, 1fr); border-top: 1px solid rgba(255,255,255,.14); border-bottom: 1px solid rgba(255,255,255,.14); }
.pillar-row span { min-height: 104px; padding: 20px 13px; border-right: 1px solid rgba(255,255,255,.14); display: flex; flex-direction: column; justify-content: space-between; font-family: Georgia, serif; font-size: 1.14rem; }
.pillar-row span:last-child { border-right: 0; }
.pillar-row b { color: #99cbb6; font-family: Inter, sans-serif; font-size: 0.6rem; letter-spacing: 0.12em; }
.action-grid { margin-top: 28px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.action-card { min-height: 300px; margin: 0; padding: 28px; border-radius: 24px; background: rgba(255,255,255,.07); display: flex; flex-direction: column; }
.action-card span { color: #a9d2c0; font-size: 0.67rem; font-weight: 740; letter-spacing: .11em; text-transform: uppercase; }
.action-card p { margin: auto 0 0; font-family: Georgia, serif; font-size: clamp(1.28rem, 2vw, 1.72rem); line-height: 1.35; }
.source-note { margin: 22px 0 0; color: rgba(255,255,255,.45); font-size: .68rem; }

/* History and product screens */
.history { padding: 136px 0; display: grid; grid-template-columns: minmax(0, .9fr) minmax(380px, 1.1fr); gap: clamp(50px, 9vw, 130px); align-items: center; }
.history-copy > p:not(.kicker) { max-width: 540px; margin: 24px 0 0; color: var(--muted); line-height: 1.72; }
.outcome-pills { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 8px; }
.outcome-pills span { padding: 9px 13px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255,255,255,.4); font-size: .72rem; font-weight: 680; }
.screen-pair { min-height: 690px; position: relative; }
.device-card { position: absolute; margin: 0; }
.device-card-back { top: 0; left: 0; transform: rotate(-4deg); }
.device-card-front { right: 0; bottom: 0; transform: rotate(4deg); }
.device-card figcaption, .single-device figcaption, .learn-card figcaption, .privacy-device figcaption { margin-top: 13px; color: var(--muted); font-size: .7rem; text-align: center; }
.mini-phone { width: 260px; padding: 8px; border-radius: 31px; background: #171a19; border: 1px solid rgba(0,0,0,.7); box-shadow: var(--shadow); }
.mini-phone img { width: 100%; height: auto; display: block; object-fit: contain; border-radius: 23px; background: var(--paper); }
.large-phone { width: min(330px, 100%); }

.partner-section { background: var(--rose); }
.partner-grid { min-height: 780px; padding: 112px 0; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(60px, 10vw, 150px); align-items: center; }
.single-device { margin: 0; display: flex; flex-direction: column; align-items: center; }
.partner-grid > div > p:not(.kicker) { max-width: 510px; margin: 26px 0 0; color: #655957; font-size: 1.02rem; line-height: 1.75; }
.tick-list { margin: 34px 0 0; padding: 0; list-style: none; }
.tick-list li { padding: 16px 0 16px 30px; border-top: 1px solid rgba(43,41,37,.14); position: relative; font-size: .9rem; font-weight: 670; }
.tick-list li::before { content: "✓"; position: absolute; left: 0; color: var(--green-dark); }

/* Learn */
.learn { padding: 138px 0 150px; }
.learn-gallery { margin-top: 76px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; align-items: end; }
.learn-card { margin: 0; padding: 22px 16px; border: 1px solid var(--line); border-radius: 25px; background: rgba(251,248,242,.62); display: flex; flex-direction: column; align-items: center; }
.learn-card .mini-phone { width: 100%; }
.learn-card-featured { transform: translateY(-18px); background: var(--sage); }

/* Privacy */
.privacy-section { background: var(--green-dark); color: white; }
.privacy-grid { min-height: 840px; padding: 128px 0; display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(70px, 11vw, 150px); align-items: center; }
.privacy-section .kicker { color: #bce6d4; }
.privacy-copy > p:not(.kicker) { max-width: 570px; margin: 26px 0 0; color: rgba(255,255,255,.7); font-size: 1rem; line-height: 1.75; }
.privacy-points { margin-top: 48px; display: grid; grid-template-columns: 1fr 1fr; gap: 0 30px; }
.privacy-points article { min-height: 100px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.18); display: grid; grid-template-columns: 35px 1fr; gap: 12px; }
.privacy-points span { color: #aad6c3; font-size: .65rem; font-weight: 760; }
.privacy-points p { margin: 0; line-height: 1.5; }
.privacy-context { margin-top: 38px; padding: 28px; border: 1px solid rgba(255,255,255,.2); border-radius: 22px; background: rgba(255,255,255,.08); }
.privacy-context h3 { margin: 0; font-family: Georgia, serif; font-size: clamp(1.55rem, 2.5vw, 2rem); font-weight: 500; letter-spacing: -.03em; }
.privacy-context p { margin: 14px 0 0; color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.72; }
.privacy-copy .privacy-promise { margin-top: 38px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.18); color: white; font-family: Georgia, serif; font-size: 1.35rem; line-height: 1.4; }
.privacy-device { margin: 0; display: flex; flex-direction: column; align-items: center; }
.privacy-device figcaption { color: rgba(255,255,255,.58); }

/* Comparison */
.category { padding: 138px 0; }
.comparison-table { margin-top: 62px; border-top: 1px solid var(--line); }
.comparison-row { min-height: 88px; padding: 22px 24px; border-bottom: 1px solid var(--line); display: grid; grid-template-columns: .7fr 1.3fr; gap: 30px; align-items: center; }
.comparison-row strong { font-family: Georgia, serif; font-size: 1.18rem; font-weight: 500; }
.comparison-row span:last-child { color: var(--muted); line-height: 1.5; }
.comparison-header { min-height: auto; padding-block: 12px; color: var(--muted); font-size: .65rem; font-weight: 760; letter-spacing: .11em; text-transform: uppercase; }
.comparison-highlight { margin-top: 10px; border: 0; border-radius: 20px; background: var(--sage); }
.comparison-highlight strong { color: var(--green-dark); font-weight: 700; }
.comparison-highlight span:last-child { color: #3f594d; }

/* Both */
.both { padding: 126px 0 140px; border-top: 1px solid var(--line); }
.centered-heading { text-align: center; }
.centered-heading h2 { margin-inline: auto; }
.both-grid { margin-top: 62px; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.both-grid article { min-height: 370px; padding: clamp(30px, 5vw, 58px); border-radius: 30px; background: rgba(251,248,242,.78); border: 1px solid var(--line); }
.both-grid article:first-child { background: #eee0db; }
.both-grid article:last-child { background: #dfe4e7; }
.person-marker { width: 54px; height: 54px; margin-bottom: 54px; border-radius: 50%; display: grid; place-items: center; color: white; font-family: Georgia, serif; font-size: 1.45rem; }
.maya-marker { background: var(--rust); }
.oliver-marker { background: #4b6573; }
.both-grid h3 { max-width: 430px; margin: 13px 0 18px; font-family: Georgia, serif; font-size: clamp(1.75rem, 3vw, 2.65rem); font-weight: 500; letter-spacing: -.04em; line-height: 1.1; }
.both-grid article > p:last-child { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.65; }

/* FAQ and CTA */
.faq { padding: 132px 0 144px; border-top: 1px solid var(--line); display: grid; grid-template-columns: .75fr 1.25fr; gap: clamp(50px, 10vw, 140px); align-items: start; }
.faq h2 { font-size: clamp(2.7rem, 5vw, 4.6rem); }
.faq-list { border-top: 1px solid var(--line); }
.faq-list details { border-bottom: 1px solid var(--line); }
.faq-list summary { padding: 26px 0; display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; list-style: none; font-size: 1rem; font-weight: 720; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { color: var(--green-dark); font-size: 1.5rem; font-weight: 400; transition: transform .2s ease; }
.faq-list details[open] summary span { transform: rotate(45deg); }
.faq-list details p { max-width: 650px; margin: -4px 45px 28px 0; color: var(--muted); line-height: 1.7; }
.early-access { margin-bottom: 48px; padding: clamp(48px, 7vw, 84px); border-radius: 38px; background: var(--green-dark); color: white; display: grid; grid-template-columns: 1fr auto; gap: 50px; align-items: end; }
.early-access .kicker { color: #bce6d4; }
.early-access p:not(.kicker) { max-width: 520px; margin: 24px 0 0; color: rgba(255,255,255,.72); line-height: 1.7; }
.final-actions { display: flex; flex-direction: column; gap: 10px; min-width: 220px; }
.button-light { background: white; color: var(--green-dark); }
.button-outline-light { border-color: rgba(255,255,255,.35); color: white; }
.site-footer { width: min(1100px, calc(100% - 48px)); min-height: 170px; margin: 0 auto; padding: 38px 0; border-top: 1px solid var(--line); display: grid; grid-template-columns: .8fr 1.35fr .85fr; gap: 40px; align-items: start; color: var(--muted); font-size: .72rem; }
.site-footer p { margin: 0; }
.footer-brand p { margin-top: 10px; line-height: 1.55; }
.footer-trust { max-width: 470px; line-height: 1.65; }
.footer-meta { text-align: right; }
.footer-meta nav { margin-bottom: 18px; display: flex; justify-content: flex-end; flex-wrap: wrap; gap: 10px 18px; }
.footer-meta a { color: var(--ink); font-weight: 680; }

/* Legal pages */
.legal-page { min-height: 100vh; background: var(--linen); }
.legal-nav { width: min(900px, calc(100% - 48px)); min-height: 82px; margin: 0 auto; border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; }
.legal-nav > a:last-child { color: var(--muted); font-size: .8rem; font-weight: 680; }
.legal-content { width: min(760px, calc(100% - 48px)); margin: 0 auto; padding: 86px 0 120px; }
.legal-content h1 { margin: 0; font-family: Georgia, serif; font-size: clamp(3rem, 7vw, 5.4rem); font-weight: 500; letter-spacing: -.06em; line-height: .95; }
.legal-updated { margin: 18px 0 52px; color: var(--muted); font-size: .8rem; }
.legal-content h2 { margin: 46px 0 14px; font-family: Georgia, serif; font-size: 1.65rem; font-weight: 500; letter-spacing: -.025em; }
.legal-content h3 { margin: 28px 0 10px; font-size: .92rem; }
.legal-content p, .legal-content li { color: var(--muted); line-height: 1.75; }
.legal-content ul { padding-left: 22px; }
.legal-note { margin: 40px 0; padding: 26px; border-radius: 18px; background: var(--sage); color: var(--green-dark) !important; }

@media (max-width: 1040px) {
  .nav-links { display: none; }
  .site-nav { grid-template-columns: 1fr auto; }
  .hero { grid-template-columns: 1fr; text-align: center; }
  .hero-copy { display: flex; flex-direction: column; align-items: center; }
  .story-stage { width: min(760px, 100%); margin: 0 auto; }
  .mechanic-grid { grid-template-columns: repeat(2, 1fr); }
  .pillar-row { grid-template-columns: repeat(3, 1fr); }
  .pillar-row span:nth-child(3) { border-right: 0; }
  .pillar-row span:nth-child(-n+3) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .history { grid-template-columns: 1fr; }
  .history-copy { max-width: 650px; }
  .screen-pair { width: min(620px, 100%); margin-inline: auto; }
  .learn-gallery { grid-template-columns: repeat(2, 1fr); }
  .learn-card .mini-phone { max-width: 280px; }
  .learn-card-featured { transform: none; }
}

@media (max-width: 760px) {
  .section-shell, .site-nav, .hero, .site-footer { width: min(100% - 28px, 100%); }
  .site-nav { min-height: 72px; }
  .nav-cta { padding: 9px 13px; }
  .split-heading, .partner-grid, .privacy-grid, .faq, .early-access { grid-template-columns: 1fr; }
  .section-intro { margin-top: 26px; }
  .hero { padding-top: 42px; }
  .hero h1 { font-size: clamp(3.5rem, 17vw, 5.2rem); }
  .story-stage { --figure-height: 330px; min-height: 610px; grid-template-columns: .55fr minmax(210px, 1.15fr) .65fr; }
  .character-maya { transform: translateX(8%); }
  .character-oliver { transform: translateX(-6%); }
  .screen-proof { display: none; }
  .positioning-bridge { padding: 86px 0 92px; }
  .positioning-bridge-inner { grid-template-columns: 1fr; }
  .positioning-bridge-inner > p:last-child { margin-top: 28px; }
  .difference, .mechanic, .history, .learn, .category, .both, .faq { padding-top: 92px; padding-bottom: 100px; }
  .contrast-grid { grid-template-columns: 1fr; gap: 14px; }
  .contrast-arrow { height: 36px; transform: rotate(90deg); }
  .contrast-card { min-height: 250px; }
  .mechanic-grid, .action-grid, .both-grid { grid-template-columns: 1fr; }
  .mechanic-grid article { min-height: 180px; }
  .mechanic-grid h3 { margin-top: 46px; }
  .actions-section { padding: 96px 0 104px; }
  .action-card { min-height: 240px; }
  .partner-grid, .privacy-grid { padding: 96px 0; }
  .partner-grid > div { grid-row: 1; }
  .privacy-points { grid-template-columns: 1fr; }
  .comparison-row { grid-template-columns: .8fr 1.2fr; padding-inline: 14px; gap: 18px; }
  .faq-list { margin-top: 10px; }
  .early-access { padding: 50px 28px; }
  .final-actions { min-width: 0; }
  .site-footer { grid-template-columns: 1fr; gap: 26px; text-align: left; }
  .footer-meta { text-align: left; }
  .footer-meta nav { justify-content: flex-start; }
  .legal-nav, .legal-content { width: min(100% - 28px, 100%); }
}

@media (max-width: 560px) {
  .story-stage { --figure-height: 280px; min-height: 570px; grid-template-columns: .42fr minmax(198px, 1.3fr) .48fr; }
  .phone-shell { border-radius: 30px; padding: 7px; }
  .story-copy { width: 250px; }
  .pillar-row { grid-template-columns: repeat(2, 1fr); }
  .pillar-row span:nth-child(3) { border-right: 1px solid rgba(255,255,255,.14); }
  .pillar-row span:nth-child(even) { border-right: 0; }
  .pillar-row span:nth-child(-n+4) { border-bottom: 1px solid rgba(255,255,255,.14); }
  .screen-pair { min-height: 535px; }
  .mini-phone { width: 205px; }
  .device-card-front { right: 2%; }
  .learn-gallery { grid-template-columns: 1fr; }
  .learn-card .mini-phone { max-width: 245px; }
  .comparison-row { font-size: .83rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
