/* Сказано / Meetpaper — общий стиль лендингов.
   Бумага и чернила, один лаймовый акцент, кнопки-пилюли, чипы.
   Токены — из docs/skazano-platform.md §1. Светлая и тёмная темы. */

:root {
  color-scheme: light dark;
  --paper: #ffffff;
  --paper-2: #f6f6f3;
  --ink: #111111;
  --ink-2: #6b6b6b;
  --line: #e6e6e1;
  --accent: #87ea5c;
  --accent-ink: #0f2a05;
  --accent-text: #1f6e00;
  --accent-soft: #ebffde;
  --accent-border: #b6ec96;
  --well: #111111;
  --well-2: #1c1c1c;
  --well-ink: #f2f2ee;
  --well-ink-2: #a3a39c;
  --well-line: #2a2a28;
  --shadow: 0 22px 48px rgba(17, 17, 17, .12), 0 3px 8px rgba(17, 17, 17, .06);
  --shadow-hover: 0 27px 55px rgba(17, 17, 17, .2), 0 4px 10px rgba(17, 17, 17, .08);
  --wash-a: rgba(168, 196, 236, .5);
  --wash-b: rgba(240, 197, 216, .4);
  --wash-c: rgba(217, 247, 198, .45);
  --radius: 16px;
  --radius-sm: 12px;
  --pill: 999px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Arial, sans-serif;
  font-synthesis: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

@media (prefers-color-scheme: dark) {
  :root {
    --paper: #141414;
    --paper-2: #1c1c1c;
    --ink: #f2f2ee;
    --ink-2: #a3a39c;
    --line: #2a2a28;
    --accent-text: #adf788;
    --accent-soft: #1b3a13;
    --accent-border: #2f6e1f;
    --well: #0b0b0b;
    --well-2: #161616;
    --shadow: 0 22px 48px rgba(0, 0, 0, .45), 0 3px 8px rgba(0, 0, 0, .3);
    --shadow-hover: 0 27px 55px rgba(0, 0, 0, .6), 0 4px 10px rgba(0, 0, 0, .4);
    --wash-a: rgba(96, 126, 178, .16);
    --wash-b: rgba(168, 110, 142, .1);
    --wash-c: rgba(135, 234, 92, .07);
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img { display: block; max-width: 100%; }
section { scroll-margin-top: 85px; }
code { font-family: var(--mono); font-size: .92em; }
::selection { background: var(--accent); color: var(--accent-ink); }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 4px; }
[hidden] { display: none !important; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.shell { width: min(calc(100% - 80px), 1450px); margin-inline: auto; }
.skip-link { position: absolute; top: -80px; left: 16px; z-index: 200; background: var(--ink); color: var(--paper); padding: 12px 18px; border-radius: var(--pill); }
.skip-link:focus { top: 12px; }

/* Шапка */
.site-header { height: 82px; background: color-mix(in srgb, var(--paper) 92%, transparent); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 20; }
.header-inner { height: 100%; display: flex; align-items: center; gap: 28px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex: none; white-space: nowrap; font-size: 20px; letter-spacing: -.04em; font-weight: 700; }
.brand img { width: 30px; height: 34px; object-fit: contain; }
.wordmark { position: relative; }
.wordmark-dot::after { content: "."; color: var(--accent); }
.wordmark-accent { color: var(--accent-text); }
.main-nav { display: flex; align-items: center; justify-content: center; gap: clamp(16px, 2.4vw, 36px); flex: 1; color: var(--ink-2); font-size: 14px; }
.main-nav a, .site-footer a { transition: color .2s ease; }
.main-nav a:hover, .site-footer a:hover { color: var(--ink); }
.main-nav .mobile-nav-cta { display: none; }
.menu-toggle { display: none; }
.header-actions { display: flex; align-items: center; gap: 10px; flex: none; }

/* Кнопки-пилюли */
.button { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; gap: 10px; padding: 0 22px; border: 1px solid transparent; border-radius: var(--pill); font-weight: 600; font-size: 14px; line-height: 1.1; white-space: nowrap; cursor: pointer; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease; }
.button:hover { transform: translateY(-1px); }
.button-primary { color: var(--paper); background: var(--ink); }
.button-primary:hover { box-shadow: 0 10px 25px rgba(17, 17, 17, .18); }
.button-secondary { border-color: var(--line); background: var(--paper); color: var(--ink); }
.button-secondary:hover { border-color: var(--ink-2); }
.button-accent { color: var(--accent-ink); background: var(--accent); }
.button-accent:hover { box-shadow: 0 10px 25px rgba(135, 234, 92, .35); }
.button small { font-weight: 500; font-size: 12px; color: inherit; opacity: .7; }
.header-cta { min-height: 40px; padding: 0 16px; font-size: 13px; }
@media (prefers-color-scheme: dark) {
  .button-primary { color: var(--accent-ink); background: var(--accent); }
  .button-primary:hover { box-shadow: 0 10px 25px rgba(135, 234, 92, .3); }
}

/* Чипы */
.chip { display: inline-flex; align-items: center; gap: 6px; min-height: 30px; padding: 0 12px; border: 1px solid var(--line); border-radius: var(--pill); background: var(--paper-2); color: var(--ink); font-size: 13px; font-weight: 500; line-height: 1; white-space: nowrap; }
.chip-accent { background: var(--accent-soft); border-color: var(--accent-border); color: var(--accent-text); }
.chip-muted { color: var(--ink-2); }
.chip-row { display: flex; flex-wrap: wrap; gap: 8px; }
.eyebrow { margin: 0 0 28px; font: 600 11px/1.45 var(--mono); letter-spacing: .2em; text-transform: uppercase; color: var(--ink-2); }
.eyebrow::before { content: ""; display: inline-block; width: 21px; height: 1px; margin: 0 11px 4px 0; background: var(--accent); }
.eyebrow-light { color: var(--well-ink-2); }

/* Первый экран */
.hero { overflow: hidden; position: relative; background: var(--paper-2); }
.hero::before { content: ""; position: absolute; inset: 0; pointer-events: none; background:
  radial-gradient(circle at 12% -4%, var(--wash-a), transparent 60%),
  radial-gradient(circle at 92% 4%, var(--wash-b), transparent 55%),
  radial-gradient(circle at 86% 98%, var(--wash-c), transparent 55%); }
.hero-grid { position: relative; min-height: 640px; display: grid; grid-template-columns: minmax(0, 44%) minmax(0, 56%); align-items: center; gap: 24px; padding-top: 64px; padding-bottom: 72px; }
.hero-copy { position: relative; z-index: 1; }
.hero h1 { max-width: 680px; margin: 0; font-size: clamp(50px, 5.1vw, 84px); line-height: 1.02; letter-spacing: -.05em; font-weight: 760; }
.hero-lead { max-width: 590px; margin: 28px 0 0; color: var(--ink-2); font-size: clamp(17px, 1.4vw, 21px); line-height: 1.52; letter-spacing: -.01em; }
.hero-actions { display: flex; flex-wrap: wrap; align-items: center; gap: 12px; margin-top: 34px; }
.hero-actions .button { min-height: 54px; font-size: 15px; padding-inline: 26px; }
.hero-note { margin: 28px 0 0; font: 500 10.5px/1.6 var(--mono); letter-spacing: .12em; text-transform: uppercase; color: var(--ink-2); }
.hero-note span { margin: 0 8px; }
.download-sha { margin: 12px 0 0; font: 500 11px/1.5 var(--mono); color: var(--ink-2); word-break: break-all; }
.hero-visual { margin: 0; min-width: 0; }
.hero-visual figcaption, .proof-visual figcaption { margin: 14px 4px 0; color: var(--ink-2); font-size: 12px; text-align: center; }
.hero-visual figcaption a, .proof-visual figcaption a { text-decoration: underline; text-underline-offset: 3px; margin-left: 7px; }
.hero-single { grid-template-columns: 1fr; text-align: center; min-height: 0; padding-bottom: 56px; }
.hero-single .hero-copy { max-width: 820px; margin-inline: auto; }
.hero-single .hero-lead, .hero-single h1 { margin-inline: auto; }
.hero-single .hero-actions { justify-content: center; }

.screenshot-link { display: block; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); box-shadow: var(--shadow); transition: transform .2s ease, box-shadow .2s ease; }
.screenshot-link:hover { transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.real-app-shot { display: block; width: 100%; height: auto; }

/* Секции */
.section-pad { padding-block: 104px; }
.section-heading-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 50px; }
.section-heading-row h2, .section-title { margin: 0; font-size: clamp(36px, 4.2vw, 58px); line-height: 1.1; letter-spacing: -.045em; font-weight: 740; }
.section-heading-row > p { max-width: 400px; margin: 0 0 5px; color: var(--ink-2); font-size: 17px; line-height: 1.55; }
.section-heading-row > p a { text-decoration: underline; text-underline-offset: 3px; }

/* Опоры */
.pillars { background: var(--paper); }
.pillar-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 16px; margin-top: 56px; }
.pillar { display: flex; flex-direction: column; gap: 14px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.pillar-index { font: 600 11px/1 var(--mono); letter-spacing: .18em; color: var(--accent-text); }
.pillar h3 { margin: 0; font-size: clamp(21px, 1.8vw, 26px); letter-spacing: -.035em; line-height: 1.15; }
.pillar p { margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.6; }
.pillar-wide { grid-column: span 2; }

/* Шаги */
.steps .eyebrow { margin-bottom: 22px; }
.step-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 64px; }
.step { padding: 0 36px; border-left: 1px solid var(--line); }
.step:first-child { padding-left: 0; border-left: 0; }
.step:last-child { padding-right: 0; }
.step-top { display: flex; align-items: center; gap: 12px; }
.step-top > span:first-child { display: grid; place-items: center; width: 44px; height: 44px; border-radius: var(--pill); background: var(--accent); color: var(--accent-ink); font: 700 14px/1 var(--mono); }
.step h3 { margin: 24px 0 10px; font-size: clamp(22px, 2vw, 27px); letter-spacing: -.04em; }
.step p { max-width: 360px; margin: 0; color: var(--ink-2); font-size: 16px; line-height: 1.62; }

/* Тёмная секция с экраном расшифровки */
.proof { background: var(--well); color: var(--well-ink); overflow: hidden; padding-block: 110px; }
.proof-grid { display: grid; grid-template-columns: minmax(0, 40%) minmax(0, 60%); gap: 48px; align-items: center; }
.proof h2 { margin: 0; max-width: 570px; font-size: clamp(42px, 4.8vw, 72px); letter-spacing: -.05em; line-height: 1.05; }
.proof-copy > p:not(.eyebrow) { max-width: 540px; margin: 26px 0 0; color: var(--well-ink-2); font-size: 19px; line-height: 1.55; }
.proof-list { padding: 0; margin: 36px 0 0; list-style: none; font-size: 15.5px; }
.proof-list li { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.proof-list li span { display: block; width: 10px; height: 10px; flex: none; border-radius: var(--pill); background: var(--accent); }
.proof-visual { min-width: 0; margin: 0; }
.proof-visual .screenshot-link { max-width: 760px; border-color: var(--well-line); background: var(--well-2); box-shadow: 0 26px 55px rgba(0, 0, 0, .4); }
.proof-visual figcaption { color: var(--well-ink-2); }
.proof-visual figcaption a { color: var(--well-ink); }

/* Таблица Community и Pro */
.editions { background: var(--paper-2); }
.compare-wrap { margin-top: 52px; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.compare { width: 100%; min-width: 640px; border-collapse: collapse; font-size: 15px; }
.compare th, .compare td { padding: 14px 20px; text-align: left; vertical-align: middle; border-bottom: 1px solid var(--line); }
.compare thead th { background: var(--paper); font: 600 11px/1.4 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--ink-2); }
.compare thead th:not(:first-child), .compare td:not(:first-child) { width: 200px; text-align: center; }
.compare tbody th { font-weight: 500; color: var(--ink); }
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: 0; }
.compare tbody tr:hover { background: var(--paper-2); }
.compare .group th { padding-top: 26px; font: 600 11px/1.4 var(--mono); letter-spacing: .16em; text-transform: uppercase; color: var(--accent-text); border-bottom: 0; }
.yes { display: inline-flex; align-items: center; gap: 8px; color: var(--ink); font-weight: 600; white-space: nowrap; }
.yes::before { content: ""; width: 10px; height: 10px; border-radius: var(--pill); background: var(--accent); }
.no { color: var(--ink-2); }
.compare-note { margin: 18px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.5; }

/* Цены */
.pricing-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 56px; }
.plan { display: flex; flex-direction: column; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper); }
.plan-pro { border-color: var(--accent-border); background: var(--accent-soft); }
.plan-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.plan h3 { margin: 0; font-size: 24px; letter-spacing: -.035em; }
.plan-price { margin: 22px 0 0; font-size: clamp(34px, 3.4vw, 46px); font-weight: 740; letter-spacing: -.045em; line-height: 1; }
.plan-price small { display: block; margin-top: 8px; font-size: 15px; font-weight: 500; letter-spacing: 0; color: var(--ink-2); }
.plan-tagline { margin: 14px 0 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.55; }
.plan ul { margin: 24px 0 0; padding: 0; list-style: none; font-size: 15px; line-height: 1.5; }
.plan li { display: flex; gap: 10px; align-items: flex-start; margin-top: 10px; }
.plan li::before { content: ""; flex: none; width: 8px; height: 8px; margin-top: 7px; border-radius: var(--pill); background: var(--accent); }
.plan-pro li::before { background: var(--accent-text); }
.plan .button { margin-top: 30px; align-self: flex-start; }
.pricing-footnote { margin: 20px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.55; }

/* Приватность */
.privacy .eyebrow { margin-bottom: 20px; }
.privacy-heading { align-items: center; }
.privacy-heading h2 { max-width: 900px; }
.privacy-heading > p { max-width: 380px; }
.privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 56px; }
.privacy-item { display: flex; gap: 22px; padding: 30px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); }
.privacy-icon { width: 44px; height: 44px; display: grid; place-items: center; flex: none; border-radius: var(--pill); background: var(--paper); border: 1px solid var(--line); font: 700 13px/1 var(--mono); color: var(--accent-text); }
.privacy-item h3 { margin: 0 0 10px; font-size: 22px; letter-spacing: -.035em; }
.privacy-item p { max-width: 540px; margin: 0; color: var(--ink-2); font-size: 15.5px; line-height: 1.58; }
.privacy-item code { color: var(--ink); }
.privacy-footnote { margin: 20px 0 0; color: var(--ink-2); font-size: 13px; line-height: 1.5; }

/* Языки (Meetpaper) */
.languages { background: var(--paper-2); }
.language-grid { list-style: none; margin: 44px 0 0; padding: 0; }
.language-grid .chip { min-height: 38px; padding-inline: 16px; font-size: 15px; }
.language-note { margin: 22px 0 0; color: var(--ink-2); font-size: 14px; line-height: 1.55; max-width: 720px; }

/* Форма ожидания (Meetpaper) */
.waitlist { background: var(--paper); }
.waitlist-card { max-width: 720px; margin: 48px auto 0; padding: 40px; border: 1px solid var(--line); border-radius: var(--radius); background: var(--paper-2); text-align: center; }
.waitlist-card h2 { margin: 0; font-size: clamp(30px, 3.4vw, 44px); letter-spacing: -.04em; line-height: 1.1; }
.waitlist-card > p { margin: 14px auto 0; max-width: 520px; color: var(--ink-2); font-size: 16px; line-height: 1.55; }
.waitlist-form { display: flex; gap: 10px; max-width: 520px; margin: 28px auto 0; }
.waitlist-form label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.waitlist-form input { flex: 1; min-width: 0; min-height: 52px; padding: 0 20px; border: 1px solid var(--line); border-radius: var(--pill); background: var(--paper); color: var(--ink); font: inherit; font-size: 16px; }
.waitlist-form input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px var(--accent-soft); }
.waitlist-form .button { min-height: 52px; padding-inline: 26px; }
.waitlist-form .button[disabled] { opacity: .6; cursor: wait; transform: none; }
.waitlist-status { min-height: 24px; margin: 16px 0 0; font-size: 14px; line-height: 1.5; color: var(--ink-2); }
.waitlist-status.is-success { color: var(--accent-text); font-weight: 600; }
.waitlist-status.is-error { color: #b42318; font-weight: 600; }
@media (prefers-color-scheme: dark) { .waitlist-status.is-error { color: #ff8a80; } }
.waitlist-fine { margin: 18px 0 0; color: var(--ink-2); font-size: 12.5px; line-height: 1.5; }

/* FAQ */
.faq { padding-top: 48px; }
.faq .eyebrow { margin-bottom: 20px; }
.faq-heading { align-items: center; }
.faq-heading > p { font-size: 15px; }
.faq-list { margin-top: 36px; }
.faq-list details { border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--paper); margin-top: 8px; }
.faq-list details[open] { background: var(--paper-2); }
.faq-list summary { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 60px; padding: 12px 22px; cursor: pointer; list-style: none; font-size: 17px; font-weight: 600; letter-spacing: -.01em; }
.faq-list summary::-webkit-details-marker { display: none; }
.faq-list summary span { flex: none; width: 10px; height: 10px; border-right: 1.5px solid var(--ink); border-bottom: 1.5px solid var(--ink); transform: translateY(-3px) rotate(45deg); transition: transform .2s ease; }
.faq-list details[open] summary span { transform: translateY(2px) rotate(225deg); }
.faq-list details p, .faq-list details ul { max-width: 900px; margin: 0; padding: 0 55px 20px 22px; color: var(--ink-2); font-size: 15px; line-height: 1.6; }
.faq-list details ul { padding-left: 42px; padding-top: 0; }
.faq-list details ul li { margin-top: 4px; }
.faq-list details p + p { padding-top: 0; }

/* Заключение и подвал */
.closing { padding: 96px 0 104px; background: var(--well); color: var(--well-ink); text-align: center; }
.closing .eyebrow { margin-bottom: 24px; }
.closing h2 { margin: 0; font-size: clamp(42px, 5vw, 76px); letter-spacing: -.05em; line-height: 1.03; }
.closing p:not(.eyebrow) { max-width: 620px; margin: 22px auto 30px; color: var(--well-ink-2); font-size: 18px; line-height: 1.55; }
.closing .button-primary { color: var(--accent-ink); background: var(--accent); }
.closing .hero-actions { justify-content: center; margin-top: 0; }
.site-footer { background: var(--well-2); color: var(--well-ink-2); border-top: 1px solid var(--well-line); }
.footer-inner { min-height: 110px; display: flex; align-items: center; gap: 40px; padding-block: 22px; }
.brand-footer { color: var(--well-ink); font-size: 17px; }
.brand-footer img { width: 26px; height: 30px; }
.footer-family { font-size: 12.5px; white-space: nowrap; }
.site-footer nav, .footer-external { display: flex; flex-wrap: wrap; gap: 20px; font-size: 12.5px; }
.footer-external { margin-left: auto; }
.site-footer a:hover { color: var(--well-ink); }
.site-footer small { font-size: 11px; white-space: nowrap; }

@media (max-width: 1200px) {
  .shell { width: min(calc(100% - 56px), 1120px); }
  .hero-grid { grid-template-columns: minmax(0, 44%) minmax(0, 56%); }
  .hero h1 { font-size: clamp(48px, 5.3vw, 68px); }
  .proof-grid { grid-template-columns: minmax(0, 40%) minmax(0, 60%); gap: 26px; }
  .proof h2 { font-size: 56px; }
  .footer-inner { gap: 22px; }
}

@media (max-width: 960px) {
  .hero-grid { display: block; padding-top: 72px; padding-bottom: 80px; }
  .hero-copy { max-width: 760px; }
  .hero h1 { font-size: clamp(52px, 7.5vw, 76px); }
  .hero-visual { max-width: 760px; margin-top: 56px; }
  .hero-single .hero-visual { margin-inline: auto; }
  .pillar-grid { grid-template-columns: 1fr 1fr; }
  .pillar-wide { grid-column: auto; }
  .proof-grid { display: block; }
  .proof-copy { max-width: 680px; }
  .proof-visual { margin-top: 52px; }
  .privacy-heading { display: block; }
  .privacy-heading > p { max-width: 690px; margin-top: 22px; }
  .footer-inner { flex-wrap: wrap; }
  .footer-external { margin-left: 0; }
}

@media (max-width: 860px) {
  .site-header { height: 70px; }
  .header-inner { gap: 12px; }
  section { scroll-margin-top: 72px; }
  .menu-toggle { display: flex; flex: none; flex-direction: column; justify-content: center; gap: 5px; order: 3; width: 41px; height: 41px; margin-left: 2px; border: 1px solid var(--line); border-radius: var(--pill); background: var(--paper); cursor: pointer; }
  .menu-toggle span { display: block; width: 17px; height: 1.5px; margin-inline: auto; background: var(--ink); transition: transform .2s ease, opacity .2s ease; }
  .menu-toggle[aria-expanded="true"] span:first-child { transform: translateY(6.5px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:last-child { transform: translateY(-6.5px) rotate(-45deg); }
  .header-actions { order: 2; margin-left: auto; }
  .header-actions .button-secondary { display: none; }
  .main-nav { display: none; position: absolute; top: 69px; left: 0; right: 0; padding: 16px 28px 22px; border-bottom: 1px solid var(--line); background: var(--paper); box-shadow: var(--shadow); flex-direction: column; align-items: stretch; gap: 0; font-size: 16px; }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 11px 0; }
  .main-nav .mobile-nav-cta { display: block; margin-top: 10px; padding: 12px 15px; border-radius: var(--pill); border: 1px solid var(--line); text-align: center; font-size: 14px; font-weight: 600; color: var(--ink); }
  .section-pad { padding-block: 80px; }
  .section-heading-row { display: block; }
  .section-heading-row > p { margin-top: 22px; max-width: 640px; }
  .step-grid { gap: 22px; margin-top: 48px; }
  .step { padding: 0 20px; }
  .step p { font-size: 14.5px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .privacy-grid { gap: 14px; }
  .privacy-item { padding: 22px; gap: 15px; }
}

@media (max-width: 650px) {
  .shell { width: min(calc(100% - 32px), 560px); }
  .site-header { height: 64px; }
  .main-nav { top: 63px; }
  section { scroll-margin-top: 66px; }
  .brand { font-size: 17px; }
  .brand img { width: 24px; height: 28px; }
  .header-cta { min-height: 36px; font-size: 12px; padding-inline: 12px; }
  .hero-grid { padding-top: 60px; padding-bottom: 64px; }
  .eyebrow { font-size: 9.5px; letter-spacing: .18em; margin-bottom: 22px; }
  .eyebrow::before { width: 15px; margin-right: 7px; }
  .hero h1 { font-size: clamp(42px, 9.5vw, 60px); line-height: 1.05; }
  .hero h1 br { display: none; }
  .hero-lead { font-size: 17px; margin-top: 22px; }
  .hero-actions { margin-top: 26px; gap: 9px; }
  .hero-actions .button { min-height: 48px; font-size: 14px; padding-inline: 18px; }
  .hero-note { margin-top: 22px; font-size: 9.5px; }
  .hero-visual { margin-top: 44px; }
  .hero-visual figcaption { font-size: 11px; }
  .section-pad { padding-block: 68px; }
  .section-heading-row h2, .section-title { font-size: clamp(34px, 8vw, 48px); }
  .section-heading-row > p { font-size: 15px; }
  .pillar-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 40px; }
  .pillar { padding: 24px; }
  .step-grid { display: block; margin-top: 44px; }
  .step, .step:first-child, .step:last-child { padding: 0 0 26px; margin-bottom: 26px; border: 0; border-bottom: 1px solid var(--line); }
  .step:last-child { margin-bottom: 0; border-bottom: 0; padding-bottom: 0; }
  .step h3 { margin-top: 14px; font-size: 23px; }
  .step p { font-size: 15px; }
  .proof h2 { font-size: clamp(40px, 10vw, 58px); }
  .proof-copy > p:not(.eyebrow) { font-size: 17px; }
  .proof-list { font-size: 14.5px; }
  .proof-visual { margin-top: 40px; }
  .compare-wrap { margin-top: 36px; }
  .compare { font-size: 14px; }
  .compare th, .compare td { padding: 12px 14px; }
  .compare thead th:not(:first-child), .compare td:not(:first-child) { width: 120px; }
  .plan { padding: 24px; }
  .privacy-grid { display: block; margin-top: 36px; }
  .privacy-item { margin-top: 12px; }
  .privacy-item h3 { font-size: 20px; }
  .privacy-item p { font-size: 14.5px; }
  .language-grid .chip { min-height: 34px; font-size: 14px; padding-inline: 13px; }
  .waitlist-card { padding: 26px 20px; }
  .waitlist-form { flex-direction: column; }
  .faq { padding-top: 24px; }
  .faq-list { margin-top: 28px; }
  .faq-list summary { min-height: 56px; padding-inline: 16px; font-size: 15.5px; }
  .faq-list details p, .faq-list details ul { padding: 0 32px 18px 16px; font-size: 14.5px; }
  .faq-list details ul { padding-left: 34px; }
  .closing { padding-block: 70px 78px; }
  .closing h2 { font-size: clamp(40px, 10vw, 58px); }
  .closing p:not(.eyebrow) { font-size: 16px; }
  .footer-inner { display: grid; grid-template-columns: 1fr auto; gap: 22px 14px; }
  .site-footer nav, .footer-external, .footer-family { grid-column: 1 / -1; }
  .site-footer nav { gap: 14px; }
  .site-footer small { grid-column: 2; grid-row: 1; }
}

@media (max-width: 390px) {
  .header-cta { display: none; }
  .menu-toggle { margin-left: auto; }
  .hero h1 { font-size: 40px; }
  .hero-actions .button { width: 100%; }
  .privacy-item { display: block; }
  .privacy-item h3 { margin-top: 16px; }
  .footer-inner { display: block; }
  .site-footer nav, .footer-external, .footer-family { margin-top: 20px; }
  .site-footer small { display: block; margin-top: 20px; }
}

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