/* ============================================================
   Holdstr — marketing site
   Brand tokens mirror the app (holdstr-design-brief.md):
   electric-lime accent on warm paper (light) / true dark,
   heavy Archivo headings, Spline Sans Mono for ALL data.
   ============================================================ */

:root {
  /* --- warm-paper light (default) --- */
  --bg: #f5f4ef;
  --bg-2: #efeee7;
  --panel: #ffffff;
  --panel-2: #e4e1d7;
  --line: #dcd9cf;
  --line-soft: #e6e3d9;
  --ink: #1a1c1e;
  --ink-dim: #5c636b;
  --ink-faint: #9a9d97;
  --accent: #c7e02e;
  --accent-ink: #16180a;
  --accent-text: #5d7a0e;
  --accent-tint: rgba(199, 224, 46, 0.14);
  --accent-tint-2: rgba(199, 224, 46, 0.28);
  --hot: #e8492a;
  --hot-tint: rgba(232, 73, 42, 0.12);
  --gold: #c8901a;
  --gold-tint: rgba(200, 144, 26, 0.14);
  --good: #1f9e6a;
  --card-shadow: 0 1px 2px rgba(20, 22, 24, 0.05), 0 10px 30px rgba(20, 22, 24, 0.06);
  --phone-shadow: 0 30px 80px -20px rgba(20, 22, 24, 0.35), 0 8px 24px rgba(20, 22, 24, 0.12);
  --header-bg: rgba(245, 244, 239, 0.82);
  --vid-grad: radial-gradient(120% 90% at 50% 0%, #23262a 0%, #121417 60%, #0c0e10 100%);
}

html[data-theme='dark'] {
  /* --- true dark --- */
  --bg: #0e1012;
  --bg-2: #121417;
  --panel: #16191c;
  --panel-2: #1c2024;
  --line: #262b30;
  --line-soft: #1e2227;
  --ink: #eef1f3;
  --ink-dim: #9aa3ab;
  --ink-faint: #646d75;
  --accent: #e8fc5a;
  --accent-ink: #0e1012;
  --accent-text: #c5dd4a;
  --accent-tint: rgba(232, 252, 90, 0.12);
  --accent-tint-2: rgba(232, 252, 90, 0.22);
  --hot: #ff6b4a;
  --hot-tint: rgba(255, 107, 74, 0.16);
  --gold: #f5c451;
  --gold-tint: rgba(245, 196, 81, 0.14);
  --good: #3bbf86;
  --card-shadow: none;
  --phone-shadow: 0 40px 90px -20px rgba(0, 0, 0, 0.7), 0 10px 30px rgba(0, 0, 0, 0.5);
  --header-bg: rgba(14, 16, 18, 0.78);
  --vid-grad: radial-gradient(120% 90% at 50% 0%, #23262a 0%, #121417 60%, #0c0e10 100%);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Archivo', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.35s ease, color 0.35s ease;
  overflow-x: hidden;
}

/* mono for data — the brand rule */
.mono { font-family: 'Spline Sans Mono', ui-monospace, SFMono-Regular, Menlo, monospace; }

a { color: inherit; text-decoration: none; }

h1, h2, h3 { font-weight: 850; letter-spacing: -0.02em; line-height: 1.02; margin: 0; }

.wrap { width: min(1120px, 92vw); margin: 0 auto; }

/* ---------- accent + pills ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Spline Sans Mono', monospace;
  font-size: 12px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-text);
  background: var(--accent-tint);
  border: 1px solid var(--accent-tint-2);
  padding: 6px 12px; border-radius: 999px;
}
.eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px var(--accent-tint); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: 'Archivo', sans-serif; font-weight: 700; font-size: 15px;
  padding: 12px 20px; border-radius: 12px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.12s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); box-shadow: 0 6px 18px -6px var(--accent); }
.btn-accent:hover { box-shadow: 0 10px 26px -8px var(--accent); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink-faint); background: var(--panel); }

/* ============================================================
   Header
   ============================================================ */
header.site {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 22px; height: 66px; }
.brand { display: flex; align-items: center; gap: 9px; font-weight: 900; letter-spacing: -0.03em; font-size: 21px; }
.brand .glyph { width: 26px; height: 26px; border-radius: 7px; display: block; object-fit: cover; box-shadow: 0 0 0 3px var(--accent-tint); }
.nav .links { display: flex; gap: 22px; margin-left: 8px; }
.nav .links a { font-size: 14.5px; color: var(--ink-dim); font-weight: 600; }
.nav .links a:hover { color: var(--ink); }
.nav .spacer { flex: 1; }
.nav .actions { display: flex; align-items: center; gap: 12px; }

.theme-toggle {
  width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--line);
  background: var(--panel); color: var(--ink-dim); cursor: pointer; display: grid; place-items: center;
  transition: color 0.2s, border-color 0.2s;
}
.theme-toggle:hover { color: var(--ink); border-color: var(--ink-faint); }
.theme-toggle svg { width: 18px; height: 18px; }
html[data-theme='dark'] .theme-toggle .i-sun { display: block; }
html[data-theme='dark'] .theme-toggle .i-moon { display: none; }
.theme-toggle .i-sun { display: none; }
.theme-toggle .i-moon { display: block; }

.login-link { font-size: 14.5px; font-weight: 700; color: var(--ink-dim); white-space: nowrap; }
.login-link:hover { color: var(--ink); }

/* ============================================================
   Hero
   ============================================================ */
.hero { position: relative; padding: 74px 0 40px; overflow: hidden; }
.hero::before {
  content: ''; position: absolute; inset: -20% -10% auto -10%; height: 620px; z-index: 0;
  background:
    radial-gradient(50% 60% at 22% 20%, var(--accent-tint) 0%, transparent 60%),
    radial-gradient(40% 50% at 88% 8%, var(--hot-tint) 0%, transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: center; }
.hero h1 { font-size: clamp(38px, 6vw, 68px); margin: 20px 0 0; }
.hero h1 .em { color: var(--accent-text); }
.hero .lede { font-size: clamp(17px, 2.1vw, 21px); color: var(--ink-dim); margin: 20px 0 28px; max-width: 30ch; font-weight: 500; }

.waitlist {
  display: flex; gap: 10px; max-width: 460px; background: var(--panel); padding: 8px;
  border: 1px solid var(--line); border-radius: 15px; box-shadow: var(--card-shadow);
}
.waitlist input {
  flex: 1; min-width: 0; border: none; background: transparent; color: var(--ink);
  font-family: 'Spline Sans Mono', monospace; font-size: 15px; padding: 10px 12px; outline: none;
}
.waitlist input::placeholder { color: var(--ink-faint); }
.waitlist .btn { flex-shrink: 0; }
.waitlist.busy { opacity: 0.7; pointer-events: none; }

.form-note { font-family: 'Spline Sans Mono', monospace; font-size: 12.5px; color: var(--ink-faint); margin-top: 14px; display: flex; align-items: center; gap: 7px; }
.form-note svg { width: 14px; height: 14px; color: var(--accent-text); }

.form-msg { margin-top: 12px; font-family: 'Spline Sans Mono', monospace; font-size: 13.5px; min-height: 1.2em; }
.form-msg.ok { color: var(--good); }
.form-msg.err { color: var(--hot); }

.hero-success {
  display: none; max-width: 460px; background: var(--panel); border: 1px solid var(--accent-tint-2);
  border-radius: 15px; padding: 20px 22px; box-shadow: var(--card-shadow);
}
.hero-success.show { display: block; }
.hero-success .big { font-weight: 850; font-size: 20px; display: flex; align-items: center; gap: 10px; }
.hero-success .big .chk { width: 26px; height: 26px; border-radius: 50%; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; }
.hero-success p { color: var(--ink-dim); font-size: 15px; margin: 10px 0 0; }
.hero-success .mono { color: var(--accent-text); }

/* ============================================================
   Phone mockup (theme-reactive — recreates the app UI)
   ============================================================ */
.phone-stage { display: flex; justify-content: center; }
.phone {
  position: relative; width: 300px; height: 620px; border-radius: 42px; padding: 11px;
  background: var(--panel-2); border: 1px solid var(--line);
  box-shadow: var(--phone-shadow);
}
html[data-theme='dark'] .phone { background: #05070a; border-color: #23272c; }
.phone .screen {
  position: relative; width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: var(--bg); border: 1px solid var(--line-soft); display: flex; flex-direction: column;
}
/* dynamic island removed per brand preference — kept selector as a no-op */
.phone .notch { display: none; }

/* status bar */
.p-status { display: flex; justify-content: space-between; align-items: center; padding: 12px 20px 6px; font-family: 'Spline Sans Mono', monospace; font-size: 11px; color: var(--ink-dim); flex-shrink: 0; }
.p-status .dots { display: flex; gap: 3px; align-items: center; }
.p-status .bar { width: 3px; border-radius: 1px; background: var(--ink-dim); }

/* generic app chrome inside phone */
.p-body { flex: 1; overflow: hidden; padding: 4px 14px 0; display: flex; flex-direction: column; gap: 10px; }
.p-topbar { display: flex; align-items: center; justify-content: space-between; }
.p-title { font-weight: 850; font-size: 19px; letter-spacing: -0.02em; }
.p-groupchip { display: inline-flex; align-items: center; gap: 6px; font-family: 'Spline Sans Mono', monospace; font-size: 11px; font-weight: 600; padding: 5px 9px; border-radius: 999px; background: var(--panel-2); border: 1px solid var(--line); color: var(--ink-dim); }
.p-groupchip .ge { width: 16px; height: 16px; border-radius: 5px; background: var(--accent); color: var(--accent-ink); display: grid; place-items: center; font-size: 10px; font-weight: 900; }
.p-sub { font-family: 'Spline Sans Mono', monospace; font-size: 11px; color: var(--ink-faint); }

.p-card { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--card-shadow); }

/* leaderboard */
.lb-head { display: flex; align-items: center; justify-content: space-between; padding: 12px 13px 10px; }
.lb-head .name { font-weight: 800; font-size: 15px; }
.lb-head .unit { font-family: 'Spline Sans Mono', monospace; font-size: 10.5px; color: var(--ink-faint); }
.lb-kind { font-family: 'Spline Sans Mono', monospace; font-size: 9.5px; font-weight: 600; letter-spacing: 0.1em; padding: 3px 7px; border-radius: 999px; background: var(--accent-tint); color: var(--accent-text); text-transform: uppercase; }
.lb-row { display: flex; align-items: center; gap: 10px; padding: 9px 13px; border-top: 1px solid var(--line-soft); }
.lb-row .rank { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 13px; width: 18px; color: var(--ink-dim); }
.lb-row .av { width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 11px; color: #fff; flex-shrink: 0; }
.lb-row .who { flex: 1; font-weight: 700; font-size: 13.5px; }
.lb-row .rx { font-family: 'Spline Sans Mono', monospace; font-size: 10px; color: var(--ink-faint); }
.lb-row .val { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 14px; }
.lb-row.gold .rank { color: var(--gold); }
.lb-row.gold .val { color: var(--gold); }
.lb-row.crown { background: var(--gold-tint); }
.lb-row.you { background: var(--accent-tint); }
.lb-row.you .who { color: var(--accent-text); }
.lb-row.you .val { color: var(--accent-text); }
.lb-row .medal { font-size: 12px; }

/* standing / cta */
.p-standing { display: flex; align-items: center; justify-content: space-between; padding: 11px 13px; }
.p-standing .lbl { font-family: 'Spline Sans Mono', monospace; font-size: 10px; color: var(--ink-faint); text-transform: uppercase; letter-spacing: 0.08em; }
.p-standing .big { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 20px; }
.p-cta { margin: auto 0 14px; }
.p-record { display: flex; align-items: center; justify-content: center; gap: 8px; background: var(--accent); color: var(--accent-ink); font-weight: 800; font-size: 14px; padding: 13px; border-radius: 13px; }

/* bottom nav */
.p-nav { display: flex; justify-content: space-around; align-items: center; padding: 10px 8px 20px; border-top: 1px solid var(--line-soft); background: var(--panel); flex-shrink: 0; }
.p-nav .item { display: flex; flex-direction: column; align-items: center; gap: 3px; font-family: 'Spline Sans Mono', monospace; font-size: 9px; color: var(--ink-faint); position: relative; }
.p-nav .item.on { color: var(--accent-text); }
.p-nav .item svg { width: 20px; height: 20px; }
.p-nav .item .badge { position: absolute; top: -3px; right: 4px; width: 7px; height: 7px; border-radius: 50%; background: var(--hot); border: 1.5px solid var(--panel); }

/* video mock */
.p-video { position: relative; flex: 1; margin: 4px 0 0; border-radius: 16px; overflow: hidden; background: var(--vid-grad); display: flex; }
.p-video .vbg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.p-video .vshade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,.4) 0%, rgba(0,0,0,0) 28%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.78) 100%); }
.p-video .caption { position: absolute; left: 12px; right: 74px; bottom: 62px; color: #fff; font-weight: 800; font-size: 16px; line-height: 1.15; text-shadow: 0 2px 10px rgba(0,0,0,.6); }
.p-video .pip { position: absolute; right: 12px; bottom: 30px; width: 78px; height: 108px; border-radius: 12px; border: 2.5px solid rgba(255,255,255,.9); overflow: hidden; background: linear-gradient(160deg,#3a4048,#20242a); box-shadow: 0 8px 20px rgba(0,0,0,.4); }
.p-video .pip .pface { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.p-video .pip .tag { position: absolute; left: 0; bottom: 0; right: 0; font-family: 'Spline Sans Mono', monospace; font-size: 8px; color: #fff; background: rgba(0,0,0,.5); padding: 2px 4px; }
.p-video .rail { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 12px; }
.p-video .rail .em { font-size: 20px; filter: drop-shadow(0 2px 4px rgba(0,0,0,.5)); }
.p-video .scrub { position: absolute; left: 12px; right: 12px; bottom: 18px; height: 4px; border-radius: 2px; background: rgba(255,255,255,.25); }
.p-video .scrub::after { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 46%; border-radius: 2px; background: var(--accent); }
.p-video .who { position: absolute; left: 12px; top: 12px; display: flex; align-items: center; gap: 7px; color: #fff; font-family: 'Spline Sans Mono', monospace; font-size: 11px; }
.p-video .who .av { width: 22px; height: 22px; border-radius: 50%; display: grid; place-items: center; font-weight: 800; font-size: 9px; }
.p-video .live { position: absolute; right: 12px; top: 12px; font-family: 'Spline Sans Mono', monospace; font-size: 9px; font-weight: 700; color: var(--accent-ink); background: var(--accent); padding: 3px 7px; border-radius: 999px; }

/* grind checklist */
.gr-item { display: flex; align-items: center; gap: 10px; padding: 11px 13px; border-top: 1px solid var(--line-soft); }
.gr-item:first-child { border-top: none; }
.gr-item .box { width: 22px; height: 22px; border-radius: 7px; border: 2px solid var(--line); flex-shrink: 0; display: grid; place-items: center; }
.gr-item.done .box { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.gr-item .lbl { flex: 1; font-weight: 700; font-size: 13.5px; }
.gr-item.done .lbl { color: var(--ink-dim); }
.gr-item .v { font-family: 'Spline Sans Mono', monospace; font-size: 12px; color: var(--ink-faint); }
.gr-streak { display: flex; align-items: center; justify-content: space-between; padding: 12px 13px; }
.gr-streak .flame { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 22px; color: var(--hot); display: flex; align-items: center; gap: 6px; }
.gr-streak .today { font-family: 'Spline Sans Mono', monospace; font-size: 10px; font-weight: 700; color: var(--accent-ink); background: var(--accent); padding: 4px 9px; border-radius: 999px; }
.gr-dots { display: flex; gap: 4px; padding: 0 13px 12px; }
.gr-dots i { width: 12px; height: 12px; border-radius: 3px; background: var(--panel-2); }
.gr-dots i.hit { background: var(--accent); }
.gr-dots i.miss { background: var(--hot-tint); border: 1px solid var(--hot); }

/* ============================================================
   Sections
   ============================================================ */
section { padding: 84px 0; position: relative; }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--ink-dim); font-size: 18px; margin-top: 16px; font-weight: 500; }

.marquee-strip { border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); background: var(--bg-2); padding: 22px 0; }
.marquee-strip .wrap { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; }
.marquee-strip .item { font-family: 'Spline Sans Mono', monospace; font-size: 13px; color: var(--ink-dim); display: flex; align-items: center; gap: 9px; }
.marquee-strip .item b { color: var(--ink); font-weight: 700; }
.marquee-strip .item .d { width: 5px; height: 5px; border-radius: 50%; background: var(--accent); }

/* feature grid */
.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature {
  background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 26px 24px;
  box-shadow: var(--card-shadow); transition: transform 0.18s ease, border-color 0.18s ease;
}
.feature:hover { transform: translateY(-3px); border-color: var(--accent-tint-2); }
.feature .ic { width: 44px; height: 44px; border-radius: 12px; background: var(--accent-tint); color: var(--accent-text); display: grid; place-items: center; margin-bottom: 18px; }
.feature .ic svg { width: 23px; height: 23px; }
.feature h3 { font-size: 20px; }
.feature p { color: var(--ink-dim); font-size: 15.5px; margin: 10px 0 0; }
.feature .tag { display: inline-block; margin-top: 14px; font-family: 'Spline Sans Mono', monospace; font-size: 11px; color: var(--accent-text); background: var(--accent-tint); padding: 4px 9px; border-radius: 999px; letter-spacing: 0.04em; }

/* showcase rows */
.showcase { display: flex; flex-direction: column; gap: 92px; }
.show-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
.show-row.flip .show-copy { order: 2; }
.show-row.flip .show-art { order: 1; }
.show-copy .kicker { font-family: 'Spline Sans Mono', monospace; font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent-text); font-weight: 600; }
.show-copy h3 { font-size: clamp(26px, 3.4vw, 38px); margin: 14px 0 0; }
.show-copy p { color: var(--ink-dim); font-size: 17.5px; margin: 18px 0 0; }
.show-copy ul { list-style: none; padding: 0; margin: 22px 0 0; display: flex; flex-direction: column; gap: 12px; }
.show-copy li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; }
.show-copy li .b { width: 20px; height: 20px; border-radius: 6px; background: var(--accent-tint); color: var(--accent-text); display: grid; place-items: center; flex-shrink: 0; margin-top: 2px; }
.show-copy li .b svg { width: 12px; height: 12px; }

/* how it works */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: step; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: 18px; padding: 28px 26px; box-shadow: var(--card-shadow); position: relative; }
.step .n { font-family: 'Spline Sans Mono', monospace; font-weight: 700; font-size: 13px; color: var(--accent-ink); background: var(--accent); width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; margin-bottom: 18px; }
.step h3 { font-size: 21px; }
.step p { color: var(--ink-dim); font-size: 15.5px; margin: 10px 0 0; }
.step .conn { position: absolute; top: 44px; right: -14px; color: var(--ink-faint); }
@media (max-width: 860px) { .step .conn { display: none; } }

/* final CTA band */
.cta-band { }
.cta-card {
  background: var(--panel); border: 1px solid var(--line); border-radius: 26px; padding: 56px 48px;
  box-shadow: var(--card-shadow); text-align: center; position: relative; overflow: hidden;
}
.cta-card::before { content: ''; position: absolute; inset: -40% 20% auto 20%; height: 300px; background: radial-gradient(50% 60% at 50% 0, var(--accent-tint) 0, transparent 65%); pointer-events: none; }
.cta-card > * { position: relative; }
.cta-card h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-card p { color: var(--ink-dim); font-size: 18px; margin: 16px auto 30px; max-width: 44ch; }
.cta-card .waitlist { margin: 0 auto; }
.cta-card .hero-success { margin: 0 auto; text-align: left; }
.cta-card .form-note { justify-content: center; }

/* footer */
footer.site { border-top: 1px solid var(--line-soft); padding: 46px 0 60px; background: var(--bg-2); }
footer.site .wrap { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
footer.site .brand { font-size: 18px; }
footer.site .links { display: flex; gap: 24px; flex-wrap: wrap; }
footer.site .links a { font-size: 14px; color: var(--ink-dim); font-weight: 600; }
footer.site .links a:hover { color: var(--ink); }
footer.site .fine { width: 100%; font-family: 'Spline Sans Mono', monospace; font-size: 12px; color: var(--ink-faint); }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero .phone-stage { order: -1; }
  .features { grid-template-columns: 1fr; }
  .show-row, .show-row.flip .show-copy, .show-row.flip .show-art { grid-template-columns: 1fr; order: 0; }
  .show-row { gap: 32px; }
  .steps { grid-template-columns: 1fr; }
  .nav .links { display: none; }
}
.nav-cta .cta-short { display: none; }

@media (max-width: 520px) {
  body { font-size: 16px; }
  section { padding: 60px 0; }
  .cta-card { padding: 40px 24px; }
  .waitlist { flex-direction: column; }
  .waitlist .btn { width: 100%; }
  /* screenshots stay full-size below 530px (no shrink → no internal wrapping) */
  /* tighten header so everything fits a 375px phone */
  .nav { gap: 12px; height: 60px; }
  .nav .actions { gap: 9px; }
  .brand { font-size: 18px; }
  .login-link { font-size: 13.5px; }
  .theme-toggle { width: 34px; height: 34px; }
  .btn { padding: 10px 15px; font-size: 14px; }
  .nav-cta .cta-full { display: none; }
  .nav-cta .cta-short { display: inline; }
}

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