/* =============================================================
   Buddai — "Stillness" pre-launch design system
   Warm ivory base · saffron/gold + deep indigo · soft dawn light
   Serene, spacious, contemplative — light & calm, never neon.
   (Class names & JS hooks preserved from the shared template.)
   ============================================================= */

:root {
  /* base — warm ivory / paper */
  --bg-0: #f6f1e7;      /* page base */
  --bg-1: #efe7d8;
  --bg-2: #e7dcc7;
  --surface: rgba(59,55,143,0.035);
  --surface-2: rgba(59,55,143,0.06);
  --glass: rgba(255,255,255,0.72);

  /* lines — soft warm */
  --line-0: rgba(59,55,143,0.12);
  --line-1: rgba(212,162,78,0.40);
  --line-glow: rgba(212,162,78,0.5);

  /* text — deep indigo ink */
  --text-0: #20203f;
  --text-1: #3a3860;
  --text-2: #5a577a;
  --text-mute: #8a86a3;

  /* accents — saffron/gold, deep indigo, soft rose */
  --gold: #d4a24e;
  --gold-bright: #e0b56a;
  --gold-deep: #b8863a;
  --indigo: #3b378f;
  --indigo-deep: #2c2a6e;
  --rose: #e8b4a0;
  --gold-faint: rgba(212,162,78,0.14);
  --indigo-faint: rgba(59,55,143,0.09);
  --gold-glow: rgba(212,162,78,0.28);

  /* interactive/text accent = indigo (contrast on ivory) */
  --accent: #3b378f;
  --accent-bright: #4b46a8;

  /* legacy aliases kept so no rule breaks */
  --cyan: var(--indigo);
  --cyan-bright: var(--accent-bright);
  --cyan-deep: var(--gold-deep);
  --blue: var(--indigo);
  --blue-deep: var(--indigo-deep);
  --cyan-faint: var(--gold-faint);
  --cyan-glow: var(--gold-glow);

  --font-display: 'Newsreader', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, 'SFMono-Regular', Menlo, monospace;

  --radius-1: 12px;
  --radius-2: 20px;
  --radius-3: 28px;
  --wrap: 1200px;
  --transition: 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background: var(--bg-0);
  color: var(--text-1);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--accent); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-deep); }
::selection { background: var(--gold); color: #201704; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--indigo); color: #fff; padding: 10px 18px; border-radius: 10px;
  font-weight: 600; transition: top var(--transition);
}
.skip-link:focus { top: 12px; }

/* ---------- background FX — calm dawn ---------- */
.fx { position: fixed; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; }
.fx-grid {
  position: absolute; inset: 0;
  background:
    radial-gradient(120% 80% at 50% -10%, rgba(232,180,160,0.35), transparent 55%),
    radial-gradient(90% 70% at 85% 0%, rgba(212,162,78,0.22), transparent 60%),
    linear-gradient(180deg, #faf6ee 0%, var(--bg-0) 40%, var(--bg-1) 100%);
}
.fx-orb { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.5; animation: orb 16s ease-in-out infinite; }
.fx-orb--cyan { width: 46vw; height: 46vw; max-width: 620px; max-height: 620px; top: -12vw; left: -8vw;
  background: radial-gradient(circle, rgba(212,162,78,0.30), transparent 62%); }
.fx-orb--blue { width: 44vw; height: 44vw; max-width: 580px; max-height: 580px; bottom: -14vw; right: -8vw;
  background: radial-gradient(circle, rgba(59,55,143,0.16), transparent 62%); animation-delay: -8s; }
.fx-scan {
  position: absolute; left: 0; right: 0; height: 320px; top: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.35), transparent);
  animation: scan 22s linear infinite; opacity: 0.4;
}
@keyframes orb { 0%,100% { transform: translateY(0) scale(1); opacity: 0.42; } 50% { transform: translateY(3%) scale(1.06); opacity: 0.58; } }
@keyframes scan { 0% { transform: translateY(-320px); } 100% { transform: translateY(100vh); } }

/* ---------- launch bar ---------- */
.launchbar {
  position: relative; z-index: 20;
  background: linear-gradient(90deg, rgba(212,162,78,0.14), rgba(232,180,160,0.14));
  border-bottom: 1px solid var(--line-0);
  font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.02em;
}
.launchbar__inner { display: flex; align-items: center; gap: 0.7rem; padding: 0.6rem 0; justify-content: center; flex-wrap: wrap; color: var(--text-2); }
.launchbar__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 10px var(--gold-glow); animation: blink 3.2s ease-in-out infinite; }
.launchbar__cta { color: var(--indigo); font-weight: 600; }
@keyframes blink { 0%,100% { opacity: 1; } 50% { opacity: 0.35; } }

/* ---------- header / nav ---------- */
.site-header { position: sticky; top: 0; z-index: 50; backdrop-filter: blur(14px);
  background: rgba(246,241,231,0.82); border-bottom: 1px solid var(--line-0); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; padding: 0.9rem 0; }

.brand { display: inline-flex; align-items: center; gap: 0.7rem; color: var(--text-0); }
.brand__mark svg { filter: drop-shadow(0 3px 8px rgba(59,55,143,0.18)); }
.brand__word { display: flex; flex-direction: column; line-height: 1.05; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 1.4rem; letter-spacing: -0.01em; }
.brand__sub { font-family: var(--font-mono); font-size: 0.56rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-deep); margin-top: 3px; }

.nav { display: flex; align-items: center; }
.nav__list { list-style: none; display: flex; align-items: center; gap: 0.35rem; }
.nav__list a { display: inline-flex; align-items: center; padding: 0.5rem 0.9rem; border-radius: 10px;
  font-size: 0.92rem; font-weight: 500; color: var(--text-1); }
.nav__list a:not(.nav__cta):hover { color: var(--text-0); background: var(--surface); }
.nav__list a.is-active { color: var(--indigo); }
.nav__toggle { display: none; width: 44px; height: 44px; background: transparent; border: 1px solid var(--line-1);
  border-radius: 12px; flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer; }
.nav__bar { width: 20px; height: 2px; background: var(--text-0); border-radius: 2px; transition: var(--transition); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.55rem; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 50px; font-family: var(--font-body);
  font-weight: 600; font-size: 0.95rem; cursor: pointer; border: 1px solid transparent;
  transition: var(--transition); letter-spacing: 0.01em; white-space: nowrap;
}
.btn--sm { padding: 0.55rem 1.1rem; font-size: 0.85rem; }
.btn--lg { padding: 1.05rem 2rem; font-size: 1.02rem; }
.btn .arrow { transition: transform var(--transition); }
.btn:hover .arrow { transform: translateX(4px); }
.btn--glow { background: linear-gradient(135deg, var(--indigo), var(--gold-deep)); color: #fff;
  box-shadow: 0 8px 24px rgba(59,55,143,0.22); }
.btn--glow:hover { transform: translateY(-2px); box-shadow: 0 14px 34px rgba(59,55,143,0.30); color: #fff; }
.btn--ghost { background: var(--glass); border-color: var(--line-1); color: var(--text-0); }
.btn--ghost:hover { border-color: var(--gold); background: var(--gold-faint); color: var(--text-0); }

/* ---------- typography / sections ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem; font-family: var(--font-mono);
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
}
.eyebrow::before { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, transparent, var(--gold)); }
.eyebrow--center { justify-content: center; }
.eyebrow--center::after { content: ''; width: 24px; height: 1px; background: linear-gradient(90deg, var(--gold), transparent); }

h1, h2, h3 { font-family: var(--font-display); color: var(--text-0); line-height: 1.15; letter-spacing: -0.01em; font-weight: 600; }
.grad { background: linear-gradient(120deg, var(--indigo), var(--gold-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
em, .em { font-style: italic; }

.section { padding: clamp(3.5rem, 8vw, 7rem) 0; position: relative; z-index: 10; }
.section--tight { padding: clamp(2.5rem, 5vw, 4rem) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(255,255,255,0.45), transparent); }
.section__head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3rem); }
.section__head--center { margin-left: auto; margin-right: auto; text-align: center; }
.section__head h2 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 0.8rem 0 0.6rem; }
.section__head p { color: var(--text-2); font-size: 1.05rem; }
.lede { font-size: clamp(1.05rem, 2vw, 1.28rem); color: var(--text-1); font-weight: 400; line-height: 1.8; }

/* ---------- hero ---------- */
.hero { position: relative; z-index: 10; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3rem, 6vw, 5rem); }
.hero__inner { max-width: 900px; margin: 0 auto; text-align: center; }
.hero__tag {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.4rem 1.1rem; margin-bottom: 1.6rem;
  background: var(--gold-faint); border: 1px solid var(--line-1); border-radius: 50px;
  font-family: var(--font-mono); font-size: 0.75rem; color: var(--gold-deep);
}
.hero h1 { font-size: clamp(2.6rem, 7vw, 5rem); font-weight: 500; }
.hero__lede { margin: 1.6rem auto 2.4rem; max-width: 660px; }
.hero__actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.hero__note { margin-top: 1.3rem; font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-mute); }

/* inline hero waitlist */
.hero__form { max-width: 500px; margin: 2rem auto 0; }

/* ---------- signup form ---------- */
.signup__row { display: flex; gap: 0.6rem; }
.signup input[type=email] {
  flex: 1; min-width: 0; padding: 0.95rem 1.1rem; background: #fff;
  border: 1px solid var(--line-1); border-radius: 50px; color: var(--text-0);
  font-family: var(--font-body); font-size: 1rem; outline: none; transition: var(--transition);
}
.signup input[type=email]:focus { border-color: var(--gold); box-shadow: 0 0 0 3px var(--gold-faint); background: #fff; }
.signup input::placeholder { color: var(--text-mute); }
.signup__fine { margin-top: 0.8rem; font-size: 0.78rem; color: var(--text-mute); }
.form-status { margin-top: 0.7rem; font-size: 0.9rem; min-height: 1.2em; }
.form-status.is-ok { color: var(--indigo); font-weight: 500; }
.form-status.is-err { color: #b5453a; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 1.2rem; }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--glass); backdrop-filter: blur(6px);
  border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: 1.8rem;
  transition: var(--transition); position: relative; overflow: hidden;
  box-shadow: 0 2px 10px rgba(59,55,143,0.04);
}
.card::after { content: ''; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(212,162,78,0.10), transparent 45%); opacity: 0; transition: opacity var(--transition); }
.card:hover { border-color: var(--line-1); transform: translateY(-4px); box-shadow: 0 18px 40px rgba(59,55,143,0.12); }
.card:hover::after { opacity: 1; }
.card__icon { width: 48px; height: 48px; display: inline-flex; align-items: center; justify-content: center;
  border-radius: 14px; background: var(--gold-faint); border: 1px solid var(--line-1); color: var(--gold-deep);
  font-size: 1.35rem; margin-bottom: 1rem; }
.card__num { font-family: var(--font-mono); font-size: 0.78rem; color: var(--gold-deep); letter-spacing: 0.12em; }
.card h3 { font-size: 1.3rem; margin: 0.3rem 0 0.5rem; font-weight: 600; }
.card p { color: var(--text-2); font-size: 0.96rem; }

/* feature row */
.feature { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4.5rem); align-items: center; }
.feature + .feature { margin-top: clamp(3rem, 7vw, 6rem); }
.feature--reverse > :first-child { order: 2; }
.feature__body h2 { font-size: clamp(1.7rem, 3.4vw, 2.5rem); margin-bottom: 1rem; font-weight: 500; }
.feature__body > p { color: var(--text-1); }
.feature__visual {
  border: 1px solid var(--line-1); border-radius: var(--radius-3); padding: 1.6rem; background: var(--glass);
  box-shadow: 0 20px 50px rgba(59,55,143,0.10); position: relative;
}

/* checklist */
.checklist { list-style: none; display: grid; gap: 0.9rem; margin-top: 1.4rem; }
.checklist li { position: relative; padding-left: 32px; color: var(--text-1); font-size: 1rem; }
.checklist li::before {
  content: ''; position: absolute; left: 0; top: 5px; width: 18px; height: 18px; border-radius: 50%;
  background: var(--gold-faint); border: 1px solid var(--line-1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23b8863a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}
.checklist li strong { color: var(--text-0); font-weight: 600; }

/* reflection panel (was terminal) — calm enso card */
.terminal {
  font-family: var(--font-body); font-size: 0.96rem; background: #fffdf8;
  border: 1px solid var(--line-1); border-radius: var(--radius-2); overflow: hidden;
}
.terminal__bar { display: flex; align-items: center; gap: 0.5rem; padding: 0.8rem 1.2rem; border-bottom: 1px solid var(--line-0);
  color: var(--text-mute); font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.08em; }
.terminal__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line-1); }
.terminal__dot--live { background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.terminal__body { padding: 1.4rem 1.5rem; display: grid; gap: 0.85rem; }
.terminal__line { color: var(--text-2); line-height: 1.6; }
.terminal__line b { color: var(--indigo); font-weight: 600; }
.terminal__line .ok { color: var(--gold-deep); font-weight: 600; }

/* enso brush circle motif */
.enso { display: block; width: clamp(150px, 46%, 220px); height: auto; margin: 0.4rem auto 1.4rem; }
.enso__ring { fill: none; stroke: var(--indigo); stroke-width: 7; stroke-linecap: round;
  stroke-dasharray: 250; stroke-dashoffset: 26; transform: rotate(128deg); transform-origin: 50% 50%; opacity: 0.9; }
.enso__ring--gold { stroke: var(--gold); stroke-width: 3.5; stroke-dashoffset: 40; opacity: 0.7; }
.reflection__caption { text-align: center; color: var(--text-2); font-style: italic; font-family: var(--font-display); font-size: 1.12rem; }

/* steps */
.steps { display: grid; gap: 1.2rem; counter-reset: step; }
.step { display: grid; grid-template-columns: auto 1fr; gap: 1.2rem; align-items: start;
  background: var(--glass); border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: 1.5rem 1.6rem;
  box-shadow: 0 2px 10px rgba(59,55,143,0.04); }
.step__num { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  font-family: var(--font-mono); font-weight: 600; color: #fff; background: linear-gradient(135deg, var(--indigo), var(--gold-deep)); }
.step h3 { font-size: 1.18rem; margin-bottom: 0.35rem; font-weight: 600; }
.step p { color: var(--text-2); font-size: 0.96rem; }

/* stat strip */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--line-0);
  border: 1px solid var(--line-0); border-radius: var(--radius-2); overflow: hidden; }
.stat { background: var(--glass); padding: 2rem 1.2rem; text-align: center; }
.stat__num { font-family: var(--font-display); font-size: clamp(1.9rem, 4vw, 2.7rem); font-weight: 600; color: var(--text-0); }
.stat__num .grad { display: inline; }
.stat__label { font-family: var(--font-mono); font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-2); margin-top: 0.5rem; }

/* panel */
.panel { background: var(--glass); border: 1px solid var(--line-0); border-radius: var(--radius-2); padding: clamp(1.6rem, 3vw, 2.4rem);
  box-shadow: 0 2px 12px rgba(59,55,143,0.05); }
.panel--accent { border-left: 3px solid var(--gold); }

/* pill row */
.pills { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }
.pill { font-family: var(--font-mono); font-size: 0.76rem; padding: 0.45rem 0.9rem; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--line-0); color: var(--text-2); }

/* faq */
.faq { display: grid; gap: 0.8rem; max-width: 780px; margin: 0 auto; }
.faq__item { border: 1px solid var(--line-0); border-radius: var(--radius-1); background: var(--glass); overflow: hidden; }
.faq__item summary { cursor: pointer; list-style: none; padding: 1.2rem 1.4rem; font-family: var(--font-display);
  font-weight: 600; color: var(--text-0); font-size: 1.08rem; position: relative; padding-right: 3rem; }
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; position: absolute; right: 1.3rem; top: 50%; transform: translateY(-50%);
  color: var(--gold-deep); font-size: 1.4rem; font-weight: 300; }
.faq__item[open] summary::after { content: '\2212'; }
.faq__item .faq__a { padding: 0 1.4rem 1.3rem; color: var(--text-2); }

/* preflaunch band */
.preflaunch { position: relative; z-index: 10; border-top: 1px solid var(--line-0); border-bottom: 1px solid var(--line-0);
  background: linear-gradient(180deg, rgba(255,255,255,0.5), rgba(232,180,160,0.14)); padding: clamp(3rem, 6vw, 5rem) 0; }
.preflaunch__inner { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.preflaunch__copy h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); margin: 0.6rem 0 0.7rem; font-weight: 500; }
.preflaunch__copy p { color: var(--text-2); }

/* ---------- footer ---------- */
.site-footer { position: relative; z-index: 10; background: var(--bg-1); border-top: 1px solid var(--line-0); padding-top: clamp(2.5rem, 5vw, 4rem); }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 2rem; padding-bottom: 2.5rem; }
.site-footer__tag { color: var(--text-2); font-size: 0.92rem; margin: 1rem 0; max-width: 44ch; }
.statusline { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); }
.statusline__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 8px var(--gold-glow); }
.site-footer__col h3 { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 1rem; }
.site-footer__col ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer__col a { color: var(--text-2); font-size: 0.92rem; }
.site-footer__col a:hover { color: var(--indigo); }
.site-footer__disclaimer { padding: 1.4rem 0; border-top: 1px solid var(--line-0); }
.site-footer__disclaimer p { font-size: 0.8rem; color: var(--text-mute); max-width: 90ch; }
.site-footer__base { border-top: 1px solid var(--line-0); }
.site-footer__base-inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem;
  padding: 1.2rem 0; font-family: var(--font-mono); font-size: 0.72rem; color: var(--text-mute); }

/* ---------- crumbs / page head ---------- */
.page-head { padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(1.5rem, 3vw, 2.5rem); position: relative; z-index: 10; }
.crumbs { font-family: var(--font-mono); font-size: 0.76rem; color: var(--text-mute); margin-bottom: 1.2rem; }
.crumbs a { color: var(--text-2); }
.crumbs .sep { margin: 0 0.5rem; opacity: 0.5; }
.page-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 0.7rem 0; font-weight: 500; }
.page-head__lede { max-width: 660px; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fx-orb, .fx-scan, .launchbar__dot { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- responsive ---------- */
@media (max-width: 900px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .feature, .preflaunch__inner { grid-template-columns: 1fr; gap: 2.2rem; }
  .feature--reverse > :first-child { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .nav__toggle { display: flex; }
  .nav__list {
    position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; align-items: stretch; gap: 0.2rem;
    background: rgba(246,241,231,0.98); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line-1);
    padding: 0.8rem 1.1rem 1.2rem; transform: translateY(-8px); opacity: 0; visibility: hidden; transition: var(--transition);
  }
  .nav__list.open { transform: none; opacity: 1; visibility: visible; }
  .nav__list a { padding: 0.8rem 0.9rem; }
  .nav__cta { justify-content: center; margin-top: 0.4rem; }
}
@media (max-width: 560px) {
  .grid--2, .grid--3, .grid--4 { grid-template-columns: 1fr; }
  .signup__row { flex-direction: column; }
  .signup input[type=email] { border-radius: 14px; }
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; }
}
