@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Roboto+Mono:wght@500&family=Schibsted+Grotesk:wght@400;500;600;700&display=swap');

:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', system-ui, sans-serif;
  --bg: #faf7f2;
  --bg-elevated: #ffffff;
  --surface: #f1ece4;
  --surface-2: #e5ddd1;
  --text: #211b16;
  --text-muted: #6e655b;
  --text-faint: #a39a8e;
  --accent: #ff5a4f;
  --accent-strong: #ee4338;
  --accent-soft: rgba(255, 90, 79, 0.12);
  --border: rgba(33, 27, 22, 0.08);
  --shadow: 0 24px 80px rgba(33, 27, 22, 0.12);
  --phone-bg: #0f0d0d;
  --phone-surface: #1b1818;
  --phone-surface-2: #242120;
  --phone-text: #ede6da;
  --phone-muted: #86807b;
  --phone-faint: #5a5552;
  --phone-coral: #ff5a4d;
  --phone-red: #f63a3b;
  --phone-hair: #2c2826;
  --phone-font: 'Schibsted Grotesk', var(--font);
  --phone-mono: 'Roboto Mono', ui-monospace, monospace;
  --nav-bg: rgba(250, 247, 242, 0.82);
  --hero-glow: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 90, 79, 0.18), transparent 70%);
  --radius: 20px;
  --radius-sm: 12px;
  --max: 1180px;
  --transition: 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-theme="dark"] {
  --bg: #0d0c0b;
  --bg-elevated: #161412;
  --surface: #1c1713;
  --surface-2: #2a221c;
  --text: #f6efe8;
  --text-muted: #a39a8e;
  --text-faint: #6e655b;
  --accent-soft: rgba(255, 90, 79, 0.18);
  --border: rgba(246, 239, 232, 0.08);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --nav-bg: rgba(13, 12, 11, 0.82);
  --hero-glow: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(255, 90, 79, 0.22), transparent 70%);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  transition: background var(--transition), color var(--transition);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.container { width: min(var(--max), calc(100% - 2rem)); margin: 0 auto; }

/* Nav */
.nav {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(16px);
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: 1rem 0;
}
.logo {
  font-size: 1.2rem; font-weight: 700; letter-spacing: -0.03em;
}
.nav-links {
  display: flex; align-items: center; gap: 1.5rem; list-style: none;
}
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-muted);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--text); }
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }

.theme-toggle {
  width: 42px; height: 42px; border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  display: grid; place-items: center;
  color: var(--text);
  transition: transform 0.2s, background var(--transition);
}
.theme-toggle:hover { transform: scale(1.04); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
[data-theme="dark"] .theme-toggle .icon-moon { display: none; }
[data-theme="dark"] .theme-toggle .icon-sun { display: block; }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
  padding: 0.8rem 1.4rem; border-radius: 999px;
  font-size: 0.92rem; font-weight: 600;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }
.btn-primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 24px rgba(255, 90, 79, 0.28);
}
.btn-primary:hover { background: var(--accent-strong); }
.btn-secondary {
  background: var(--bg-elevated); color: var(--text);
  border: 1px solid var(--border);
}
.btn-ghost {
  padding: 0.55rem 1rem; font-size: 0.85rem;
  color: var(--text-muted); border: 1px solid var(--border);
  background: transparent;
}

/* Hero */
.hero {
  position: relative; overflow: hidden;
  padding: 4.5rem 0 2rem;
}
.hero::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 420px;
  background: var(--hero-glow); pointer-events: none;
}
.hero-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem; align-items: center;
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.35rem 0.8rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.04em; font-weight: 700;
  margin-bottom: 1rem;
}
.hero-lead {
  font-size: clamp(1.05rem, 2vw, 1.2rem);
  color: var(--text-muted); max-width: 34rem; margin-bottom: 1.75rem;
}
.cta-row { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-bottom: 1rem; }

.store-cta { display: flex; flex-direction: column; gap: 0.85rem; margin-bottom: 1.25rem; }
.store-cta--center { align-items: center; }
.store-buttons { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.store-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.7rem 1.35rem; border-radius: 999px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}
.store-btn:hover { transform: translateY(-1px); text-decoration: none; }
.store-btn__icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.store-btn--apple {
  background: #111; color: #fff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.store-btn--apple:hover { box-shadow: 0 10px 28px rgba(0, 0, 0, 0.24); }
[data-theme="dark"] .store-btn--apple { background: #fff; color: #111; }
.store-btn--google {
  background: #fff; color: #111;
  border: 1px solid rgba(0, 0, 0, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.store-btn--google:hover { box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1); }
[data-theme="dark"] .store-btn--google {
  background: var(--bg-elevated); color: var(--text);
  border-color: var(--border);
}
.store-rating {
  display: inline-flex; align-items: center; flex-wrap: wrap; gap: 0.45rem 0.6rem;
  color: var(--text-faint); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.05em; text-transform: uppercase;
}
.store-rating__stars {
  display: inline-flex; gap: 0.1rem; color: var(--accent);
  font-size: 0.9rem; letter-spacing: 0;
}
.store-rating__dot { opacity: 0.45; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 1rem 1.5rem;
  color: var(--text-faint); font-size: 0.88rem;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 0.4rem; }

/* Phone demo */
.demo-wrap { position: relative; display: flex; justify-content: center; }
.demo-glow {
  position: absolute; inset: 10% 5% auto 5%; height: 70%;
  background: radial-gradient(circle, rgba(255, 90, 79, 0.22), transparent 68%);
  filter: blur(30px); pointer-events: none;
}
.phone {
  position: relative; width: min(320px, 88vw); aspect-ratio: 9/19.5;
  border-radius: 42px; padding: 12px;
  background: linear-gradient(145deg, #3a3530, #1a1714);
  box-shadow: var(--shadow);
}
.phone-inner {
  position: relative; width: 100%; height: 100%;
  border-radius: 32px; overflow: hidden;
  background: var(--phone-bg);
}
.phone-notch {
  position: absolute; top: 10px; left: 50%; transform: translateX(-50%);
  width: 108px; height: 28px; border-radius: 20px;
  background: #000; z-index: 5;
}
.phone-screen {
  position: absolute; inset: 0;
  opacity: 0; transform: scale(0.96);
  transition: opacity var(--transition), transform var(--transition);
  padding: 52px 16px 18px;
  display: flex; flex-direction: column;
}
.phone-screen.active { opacity: 1; transform: scale(1); z-index: 2; }
.screen-label {
  font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: #8e8780; margin-bottom: 0.5rem;
}
.screen-title {
  font-size: 1.35rem; font-weight: 700; color: var(--phone-text);
  letter-spacing: -0.03em; margin-bottom: 0.35rem;
}
.screen-sub { font-size: 0.82rem; color: #a39a8e; margin-bottom: 1rem; line-height: 1.45; }

.ui-card {
  background: var(--phone-surface); border-radius: 16px;
  padding: 14px; margin-bottom: 10px;
  border: 1px solid rgba(255,255,255,0.04);
}
.ui-timer {
  font-size: 2.6rem; font-weight: 700; letter-spacing: -0.05em;
  color: #ff5a4f; text-align: center; margin: 0.5rem 0;
}
.ui-pill-row { display: flex; flex-wrap: wrap; gap: 6px; }
.ui-pill {
  padding: 6px 10px; border-radius: 999px; font-size: 0.68rem; font-weight: 600;
  background: rgba(255,255,255,0.06); color: #e8dfd6;
}
.ui-pill.accent { background: rgba(255,90,79,0.18); color: #ff8a82; }
.ui-bar {
  height: 8px; border-radius: 999px; background: rgba(255,255,255,0.08); overflow: hidden;
}
.ui-bar > span {
  display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, #ff5a4f, #ff8a82);
}
.ui-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.ui-stat {
  background: rgba(255,255,255,0.04); border-radius: 12px; padding: 10px;
}
.ui-stat strong { display: block; font-size: 1rem; color: #f6efe8; }
.ui-stat small { color: #8e8780; font-size: 0.68rem; }
.ui-tree {
  height: 90px; border-radius: 14px;
  background: linear-gradient(180deg, rgba(17,181,164,0.15), rgba(255,90,79,0.08));
  display: grid; place-items: center; font-size: 2rem;
}
.ui-bubble {
  max-width: 88%; padding: 10px 12px; border-radius: 14px;
  font-size: 0.75rem; line-height: 1.4;
}
.ui-bubble.user { align-self: flex-end; background: rgba(255,90,79,0.22); color: #ffe7e2; }

/* App-faithful session preview (matches SessionScreen) */
.app-session {
  display: flex; flex-direction: column; height: 100%;
  font-family: var(--phone-font);
}
.session-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 10px;
}
.session-method {
  display: flex; align-items: center; gap: 8px;
}
.session-method-icon {
  width: 16px; height: 16px; border-radius: 4px;
  background: rgba(246,58,59,0.2); color: var(--phone-red);
  font-size: 0.55rem; display: grid; place-items: center;
}
.session-method-label {
  font-family: var(--phone-mono); font-size: 0.62rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--phone-text);
}
.session-pips { display: flex; gap: 5px; align-items: center; }
.session-pips .pip {
  width: 7px; height: 7px; border-radius: 99px;
  background: rgba(255,255,255,0.14);
}
.session-pips .pip.active { background: var(--phone-red); }
.session-tag {
  align-self: center; margin-bottom: 8px;
  padding: 7px 14px; border-radius: 99px;
  background: var(--phone-surface); border: 1px solid var(--phone-hair);
  font-family: var(--phone-mono); font-size: 0.58rem;
  letter-spacing: 0.06em; text-transform: uppercase; color: var(--phone-muted);
}
.session-ring-wrap {
  position: relative; width: 168px; height: 168px;
  margin: 4px auto 8px;
}
.session-ring { width: 100%; height: 100%; }
.session-ring-center {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.session-phase {
  font-family: var(--phone-mono); font-size: 0.58rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--phone-muted); margin-bottom: 6px;
}
.session-time {
  font-family: var(--phone-font); font-size: 2.35rem; font-weight: 600;
  letter-spacing: -0.04em; color: var(--phone-text); line-height: 1;
  font-variant-numeric: tabular-nums;
}
.session-sub {
  margin-top: 6px; font-size: 0.72rem; color: var(--phone-faint);
}
.session-tree {
  text-align: center; font-size: 1.35rem; margin-bottom: 10px;
}
.session-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 14px;
}
.session-stat {
  background: var(--phone-surface); border-radius: 14px;
  padding: 10px 12px; border: 1px solid rgba(255,255,255,0.03);
}
.session-stat-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 6px; font-size: 0.85rem;
}
.session-stat-top strong {
  font-size: 1.05rem; font-weight: 600; color: var(--phone-text);
}
.session-stat-lbl {
  font-family: var(--phone-mono); font-size: 0.5rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--phone-muted);
}
.session-controls {
  display: flex; align-items: center; justify-content: center; gap: 18px;
  margin-top: auto; padding-bottom: 4px;
}
.session-ctl {
  width: 42px; height: 42px; border-radius: 99px;
  border: 1.5px solid var(--phone-hair);
  display: grid; place-items: center;
  font-family: var(--phone-mono); font-size: 0.55rem; color: var(--phone-muted);
}
.session-play {
  width: 54px; height: 54px; border-radius: 99px;
  background: var(--phone-coral);
  box-shadow: 0 8px 20px rgba(255,90,77,0.45);
  display: grid; place-items: center; color: #fff; font-size: 1rem;
}

/* App-faithful light screens (Coach, Stats, Home) */
.app-light {
  font-family: var(--phone-font);
  color: var(--text);
}
.app-light .screen-eyebrow {
  font-size: 0.58rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--text-faint); margin-bottom: 4px;
}
.app-light .screen-heading {
  font-size: 1.15rem; font-weight: 700; letter-spacing: -0.03em;
  color: var(--text); margin-bottom: 10px;
}
.app-card {
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: 14px; padding: 10px 12px; margin-bottom: 8px;
}
.app-card.accent-border { border-color: rgba(255,90,79,0.28); }
.app-insight {
  display: flex; gap: 10px; align-items: flex-start;
}
.app-insight-icon {
  width: 30px; height: 30px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: grid; place-items: center; font-size: 0.8rem; flex-shrink: 0;
}
.app-insight p {
  font-size: 0.68rem; line-height: 1.45; color: var(--text-muted); margin: 0;
}
.app-heatmap {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 4px; margin-top: 8px;
}
.app-heatmap span {
  aspect-ratio: 1; border-radius: 4px; background: var(--surface-2);
}
.app-heatmap span.on { background: rgba(255,90,79,0.55); }
.app-heatmap span.mid { background: rgba(255,90,79,0.28); }
.app-streak {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px; border-radius: 14px;
  background: var(--text); color: var(--bg);
  margin-bottom: 8px;
}
.app-streak strong { font-size: 1.2rem; }
.app-streak small { font-size: 0.62rem; opacity: 0.75; }
.app-paywall-plan {
  border: 1.5px solid var(--border); border-radius: 14px;
  padding: 10px 12px; margin-bottom: 6px;
}
.app-paywall-plan.best {
  border-color: rgba(255,90,79,0.45); background: var(--accent-soft);
}
.app-paywall-plan strong { display: block; font-size: 0.82rem; }
.app-paywall-plan span { font-size: 0.65rem; color: var(--text-muted); }
.phone-screen--light {
  background: var(--bg);
  color: var(--text);
}
.phone-screen--light .screen-label,
.phone-screen--light .screen-title,
.phone-screen--light .screen-sub { display: none; }
.phone-screen--light .ui-stat {
  background: var(--surface);
  border: 1px solid var(--border);
}
.phone-screen--light .ui-stat strong { color: var(--text); }
.phone-screen--light .ui-stat small { color: var(--text-muted); }
.phone-screen--light .ui-pill {
  background: var(--surface);
  color: var(--text-muted);
  border: 1px solid var(--border);
}
.phone-screen--light .ui-pill.accent {
  background: var(--accent-soft);
  color: var(--accent);
  border-color: rgba(255,90,79,0.25);
}

.demo-nav {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem;
  margin-top: 1.25rem;
}
.demo-dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--surface-2); transition: transform 0.2s, background 0.2s;
}
.demo-dot.active { background: var(--accent); transform: scale(1.15); }
.demo-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 0.45rem;
  margin-top: 0.85rem;
}
.demo-tab {
  padding: 0.45rem 0.8rem; border-radius: 999px; font-size: 0.75rem; font-weight: 600;
  color: var(--text-muted); border: 1px solid var(--border);
  background: var(--bg-elevated); transition: all 0.2s;
}
.demo-tab.active, .demo-tab:hover {
  color: var(--accent); border-color: rgba(255,90,79,0.35);
  background: var(--accent-soft);
}

/* Sections */
section { padding: 5rem 0; }
.section-head {
  max-width: 720px; margin: 0 auto 3rem; text-align: center;
}
.section-head h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  letter-spacing: -0.03em; margin-bottom: 0.75rem;
}
.section-head p { color: var(--text-muted); font-size: 1.05rem; }

.feature-section { scroll-margin-top: 88px; }
.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
}
.feature-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.35rem;
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
  cursor: pointer;
}
.feature-card:hover, .feature-card.active {
  transform: translateY(-3px);
  border-color: rgba(255,90,79,0.35);
  box-shadow: 0 16px 40px rgba(255, 90, 79, 0.08);
}
.feature-icon {
  width: 42px; height: 42px; border-radius: 12px;
  display: grid; place-items: center;
  background: var(--accent-soft); color: var(--accent);
  font-size: 1.1rem; margin-bottom: 1rem;
}
.feature-card h3 { font-size: 1.02rem; margin-bottom: 0.45rem; letter-spacing: -0.02em; }
.feature-card p { color: var(--text-muted); font-size: 0.92rem; }

.surface-band { background: var(--surface); }

.pro-panel {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 2rem; align-items: center;
  background: linear-gradient(135deg, var(--bg-elevated), var(--surface));
  border: 1px solid var(--border); border-radius: calc(var(--radius) + 4px);
  padding: 2rem;
}
.pro-list { list-style: none; display: grid; gap: 0.65rem; }
.pro-list li {
  display: flex; gap: 0.65rem; align-items: flex-start;
  color: var(--text-muted); font-size: 0.95rem;
}
.pro-list li::before {
  content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0;
}
.pro-badge {
  display: inline-block; margin-bottom: 0.75rem;
  padding: 0.35rem 0.7rem; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
}

.stats-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
.stat-card {
  text-align: center; padding: 1.5rem 1rem;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius);
}
.stat-card strong {
  display: block; font-size: 1.8rem; letter-spacing: -0.04em;
  color: var(--accent); margin-bottom: 0.25rem;
}
.stat-card span { color: var(--text-muted); font-size: 0.9rem; }

.faq-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem;
}
.faq-item {
  padding: 1.5rem; border-radius: var(--radius);
  background: var(--bg-elevated); border: 1px solid var(--border);
}
.faq-item h3 {
  font-size: 1.05rem; letter-spacing: -0.02em; margin-bottom: 0.5rem;
}
.faq-item p { color: var(--text-muted); font-size: 0.95rem; line-height: 1.6; }

.contact-panel {
  text-align: center; max-width: 640px; margin: 0 auto;
  padding: 2.5rem; border-radius: var(--radius);
  background: var(--bg-elevated); border: 1px solid var(--border);
}
.contact-email {
  display: inline-block; margin-top: 1rem;
  font-size: 1.15rem; font-weight: 600; color: var(--accent);
}

.ph-badge { display: inline-block; line-height: 0; }
.ph-badge img { display: block; max-width: 100%; height: auto; }
.ph-badge-dark { display: none; }
[data-theme="dark"] .ph-badge-light { display: none; }
[data-theme="dark"] .ph-badge-dark { display: block; }

footer {
  padding: 2.5rem 0 3rem; border-top: 1px solid var(--border);
}
.footer-ph { width: 100%; display: flex; justify-content: center; margin-bottom: 1.25rem; }
.footer-inner {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 1rem; align-items: center;
}
.footer-links { display: flex; flex-wrap: wrap; gap: 1.25rem; }
.footer-links a { color: var(--text-muted); font-size: 0.9rem; }
.footer-links a:hover { color: var(--text); }

/* Legal pages */
.legal-page { max-width: 760px; margin: 0 auto; padding: 3rem 1rem 4rem; }
.legal-page h1 { font-size: 2rem; letter-spacing: -0.03em; margin-bottom: 0.5rem; }
.legal-page h2 { font-size: 1.15rem; margin-top: 2rem; margin-bottom: 0.5rem; }
.legal-page p, .legal-page li { color: var(--text-muted); }
.legal-page ul { padding-left: 1.2rem; margin-top: 0.5rem; }
.legal-page li { margin-bottom: 0.35rem; }
.legal-page a { color: var(--accent); }
.back-link { display: inline-block; margin-top: 2rem; font-weight: 600; color: var(--accent); }

/* Responsive */
.menu-btn { display: none; width: 42px; height: 42px; border-radius: 12px; border: 1px solid var(--border); background: var(--bg-elevated); }
.mobile-menu {
  display: none; position: fixed; inset: 64px 1rem auto 1rem; z-index: 99;
  background: var(--bg-elevated); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1rem; box-shadow: var(--shadow);
}
.mobile-menu.open { display: grid; gap: 0.5rem; }
.mobile-menu a { padding: 0.75rem 0.5rem; color: var(--text-muted); font-weight: 500; }

@media (max-width: 980px) {
  .hero-grid, .pro-panel { grid-template-columns: 1fr; }
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero { padding-top: 3rem; }
  .demo-wrap { order: -1; }
}

@media (max-width: 720px) {
  .nav-links, .nav-actions .btn-ghost { display: none; }
  .menu-btn { display: grid; place-items: center; }
  .feature-grid, .faq-grid { grid-template-columns: 1fr; }
  .cta-row .btn, .store-buttons { width: 100%; }
  .store-btn { flex: 1; justify-content: center; min-width: 0; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

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