/* ============================================================
   Fizzbo — Marketing Site
   Design tokens mirrored from mobile/constants/theme.ts (dark theme)
   ============================================================ */

:root {
  /* Colors — dark theme (source of truth) */
  --bg: #1a1528;
  --bg-alt: #08040d;
  --surface: #150a24;
  --surface-alt: #2a2340;
  --primary: #3cf661;          /* neon green CTA */
  --primary-ink: #1a1528;      /* text on primary */
  --accent: #a79bff;           /* lavender */
  --teal: #3df6d0;             /* neon teal */
  --text: #f1f5f9;
  --text-secondary: #cbd5e1;
  --text-muted: #b8b0d0;
  --border: rgba(167, 155, 255, 0.14);
  --border-strong: rgba(167, 155, 255, 0.28);
  --error: #ef4444;

  /* Brand gradient (logo: teal -> lavender) */
  --brand-gradient: linear-gradient(120deg, var(--teal) 0%, var(--accent) 100%);
  --green-glow: 0 0 28px rgba(60, 246, 97, 0.45);

  /* Typography */
  --font-head: 'Montserrat', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  /* Spacing scale (dp) */
  --s-xs: 4px;
  --s-sm: 8px;
  --s-md: 16px;
  --s-lg: 24px;
  --s-xl: 32px;
  --s-xxl: 48px;

  /* Radius */
  --r-md: 16px;
  --r-lg: 24px;
  --r-full: 9999px;

  /* Shadow */
  --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.45);
  --max-w: 1160px;
}

/* ---------- Reset ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  margin: 0;
  letter-spacing: -0.02em;
}

p { margin: 0; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--s-lg);
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: var(--s-md);
  display: inline-block;
}

.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 46px); }
.section-head p { color: var(--text-secondary); font-size: 18px; margin-top: var(--s-md); }

.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-sm);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: -0.01em;
  border-radius: var(--r-lg);
  padding: 15px 26px;
  border: 2px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: var(--primary-ink);
  box-shadow: var(--green-glow);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 36px rgba(60, 246, 97, 0.6); }
.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border-strong);
}
.btn-outline:hover { border-color: var(--accent); background: rgba(167, 155, 255, 0.08); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(26, 21, 40, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 30px; width: auto; }
.nav-links { display: flex; align-items: center; gap: var(--s-xl); }
.nav-links a {
  font-size: 15px;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.15s ease;
}
.nav-links a:hover { color: var(--text); }
.nav-cta { display: flex; align-items: center; gap: var(--s-md); }
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  padding: 8px;
}
.nav-toggle svg { width: 26px; height: 26px; }
.mobile-menu { display: none; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 100px);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  top: -240px; right: -160px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(167, 155, 255, 0.22), transparent 62%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -260px; left: -180px;
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(60, 246, 97, 0.16), transparent 62%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s-sm);
  padding: 7px 14px 7px 8px;
  border-radius: var(--r-full);
  background: rgba(167, 155, 255, 0.1);
  border: 1px solid var(--border-strong);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: var(--s-lg);
}
.hero-pill .tag {
  background: var(--brand-gradient);
  color: var(--primary-ink);
  font-weight: 700;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: var(--r-full);
  letter-spacing: 0.04em;
}
.hero h1 {
  font-size: clamp(34px, 8vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.03em;
}
.hero h1 .gradient-text { display: block; }
.hero-sub {
  font-size: clamp(17px, 2vw, 21px);
  color: var(--text-secondary);
  margin-top: var(--s-lg);
  max-width: 520px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: var(--s-md); margin-top: var(--s-xl); }
.hero-note { margin-top: var(--s-md); font-size: 13px; color: var(--text-muted); }

/* Phone mock */
.hero-visual { display: flex; justify-content: center; }
.phone {
  position: relative;
  width: 300px;
  max-width: 80vw;
  aspect-ratio: 300 / 620;
  background: linear-gradient(165deg, #221a36, #120a1f);
  border-radius: 44px;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-card), 0 0 60px rgba(167, 155, 255, 0.18);
  padding: 14px;
}
.phone-screen {
  width: 100%; height: 100%;
  background: var(--bg-alt);
  border-radius: 32px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.phone-photo {
  height: 46%;
  background:
    radial-gradient(circle at 70% 20%, rgba(60, 246, 97, 0.25), transparent 55%),
    linear-gradient(150deg, #3a3357, #1d1530);
  position: relative;
}
.phone-photo .fav {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: var(--r-full);
  background: rgba(26, 21, 40, 0.7);
  display: grid; place-items: center;
}
.phone-photo .price-chip {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--primary); color: var(--primary-ink);
  font-family: var(--font-head); font-weight: 700;
  padding: 6px 12px; border-radius: var(--r-full); font-size: 15px;
}
.phone-body { padding: 16px; flex: 1; }
.phone-body .ttl { font-family: var(--font-head); font-weight: 700; font-size: 16px; }
.phone-body .meta { color: var(--text-muted); font-size: 12px; margin-top: 4px; }
.phone-body .row { display: flex; gap: 14px; margin-top: 14px; color: var(--text-secondary); font-size: 12px; }
.phone-body .row span { display: inline-flex; align-items: center; gap: 5px; }
.phone-cta {
  margin: 14px 16px 18px;
  background: var(--primary); color: var(--primary-ink);
  text-align: center; font-weight: 700; font-size: 14px;
  padding: 12px; border-radius: var(--r-md);
}
/* real app screenshot inside a phone frame */
.phone-shot { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Hero auto carousel */
.carousel { position: relative; flex: 1; width: 100%; overflow: hidden; }
.carousel-track { display: flex; height: 100%; will-change: transform; }
.carousel-track .phone-shot { flex: 0 0 100%; width: 100%; height: 100%; }
.carousel-dots {
  position: absolute; left: 0; right: 0; bottom: 12px;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.carousel-dots span {
  width: 6px; height: 6px; border-radius: var(--r-full);
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
  transition: width 0.3s ease, background 0.3s ease;
}
.carousel-dots span.on { width: 18px; background: var(--primary); }

/* App showcase gallery */
.showcase {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(20px, 3vw, 40px);
  align-items: start;
}
.show-item { text-align: center; margin: 0; }
.phone-sm {
  width: 100%;
  max-width: 250px;
  aspect-ratio: 250 / 516;
  margin: 0 auto;
  padding: 10px;
  border-radius: 34px;
}
.phone-sm .phone-screen { border-radius: 26px; }
.show-item figcaption { margin-top: var(--s-md); }
.show-item figcaption b {
  display: block;
  font-family: var(--font-head);
  font-size: 17px;
  margin-bottom: 4px;
}
.show-item figcaption span { color: var(--text-secondary); font-size: 14px; }

/* ---------- Stat bar ---------- */
.stats {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
  padding: clamp(48px, 9vw, 64px) 0;
}
.stat { text-align: center; }
.stat .num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 3.4vw, 40px);
}
.stat .lbl { color: var(--text-muted); font-size: 14px; margin-top: 4px; }

/* ---------- Cards / grids ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.step .num-badge {
  width: 48px; height: 48px; border-radius: var(--r-full);
  display: grid; place-items: center;
  background: rgba(60, 246, 97, 0.12);
  color: var(--primary);
  font-family: var(--font-head); font-weight: 700; font-size: 20px;
  margin-bottom: var(--s-md);
  border: 1px solid rgba(60, 246, 97, 0.3);
}
.step h3 { font-size: 21px; margin-bottom: var(--s-sm); }
.step p { color: var(--text-secondary); font-size: 15px; }

.features { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.feature .ic {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: var(--brand-gradient);
  margin-bottom: var(--s-md);
}
.feature .ic svg { width: 26px; height: 26px; stroke: var(--primary-ink); }
.feature h3 { font-size: 19px; margin-bottom: 6px; }
.feature p { color: var(--text-secondary); font-size: 15px; }

/* ---------- Roadmap / coming soon ---------- */
.roadmap { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--s-lg); }
.roadmap-card { display: flex; flex-direction: column; }
.roadmap-card .ic {
  width: 52px; height: 52px; border-radius: var(--r-md);
  display: grid; place-items: center;
  background: rgba(167, 155, 255, 0.12);
  border: 1px solid var(--border-strong);
  margin-bottom: var(--s-md);
}
.roadmap-card .ic svg { width: 26px; height: 26px; stroke: var(--accent); }
.roadmap-card h3 { font-size: 18px; margin-bottom: 6px; }
.roadmap-card > p { color: var(--text-secondary); font-size: 14px; margin-bottom: var(--s-md); }
.chips { list-style: none; margin: auto 0 0; padding: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.chips li {
  font-size: 12.5px; font-weight: 500; color: var(--text-secondary);
  background: var(--surface-alt);
  border: 1px solid var(--border);
  padding: 5px 11px; border-radius: var(--r-full);
}

/* ---------- Listings ---------- */
.listings { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); }
.listing {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.listing:hover { transform: translateY(-4px); border-color: var(--border-strong); }
.listing-photo {
  height: 200px;
  position: relative;
  display: grid; place-items: center;
}
.listing-photo svg { width: 84px; height: 84px; opacity: 0.85; }
.lp-1 { background: linear-gradient(150deg, #2c4a5e, #14202b); }
.lp-2 { background: linear-gradient(150deg, #4a3a5e, #1f1530); }
.lp-3 { background: linear-gradient(150deg, #2c5e44, #122318); }
.listing .price {
  position: absolute; left: 14px; bottom: 14px;
  background: var(--primary); color: var(--primary-ink);
  font-family: var(--font-head); font-weight: 700; font-size: 18px;
  padding: 6px 14px; border-radius: var(--r-full);
}
.listing .tag-byowner {
  position: absolute; top: 14px; left: 14px;
  background: rgba(26, 21, 40, 0.78);
  color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: var(--r-full);
  border: 1px solid var(--border-strong);
}
.listing-info { padding: var(--s-lg); }
.listing-info h3 { font-size: 18px; }
.listing-info .addr { color: var(--text-muted); font-size: 14px; margin-top: 4px; }
.listing-info .specs {
  display: flex; gap: 18px; margin-top: var(--s-md);
  color: var(--text-secondary); font-size: 14px;
}
.listing-info .specs span { display: inline-flex; align-items: center; gap: 6px; }

.sample-note { text-align: center; color: var(--text-muted); font-size: 13px; margin-top: var(--s-xl); }

/* ---------- Why / comparison ---------- */
.compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
  max-width: 920px; margin: 0 auto;
}
.compare-col { border-radius: var(--r-lg); padding: var(--s-xl); border: 1px solid var(--border); }
.compare-col.them { background: var(--surface); }
.compare-col.us {
  background: linear-gradient(165deg, rgba(60, 246, 97, 0.08), rgba(167, 155, 255, 0.06));
  border-color: var(--border-strong);
}
.compare-col h3 { font-size: 22px; margin-bottom: var(--s-lg); }
.compare-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.compare-col li { display: flex; gap: 12px; font-size: 15px; color: var(--text-secondary); }
.compare-col li svg { flex-shrink: 0; width: 22px; height: 22px; margin-top: 1px; }
.tick { stroke: var(--primary); }
.cross { stroke: var(--error); }

/* ---------- Pricing ---------- */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s-lg); align-items: stretch; }
.plan {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-xl);
  display: flex; flex-direction: column;
}
.plan.featured {
  border-color: var(--primary);
  box-shadow: var(--green-glow);
  position: relative;
}
.plan.featured .ribbon {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--primary-ink);
  font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 14px; border-radius: var(--r-full);
}
.plan h3 { font-size: 20px; }
.plan .price-row { display: flex; align-items: baseline; gap: 6px; margin: var(--s-md) 0; }
.plan .price-row .amt { font-family: var(--font-head); font-weight: 700; font-size: 44px; }
.plan .price-row .per { color: var(--text-muted); font-size: 15px; }
.plan .desc { color: var(--text-secondary); font-size: 14px; min-height: 42px; }
.plan ul { list-style: none; margin: var(--s-lg) 0; padding: 0; display: grid; gap: 12px; flex: 1; }
.plan li { display: flex; gap: 10px; font-size: 14px; color: var(--text-secondary); }
.plan li svg { width: 19px; height: 19px; flex-shrink: 0; stroke: var(--primary); }
.plan .btn { width: 100%; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: var(--s-md); }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  display: flex; align-items: center; justify-content: space-between; gap: var(--s-md);
  background: none; border: 0; color: var(--text);
  padding: 20px var(--s-lg);
  font-size: 16px; font-weight: 600; text-align: left;
}
.faq-q .chev { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.28s ease;
  color: var(--text-secondary); font-size: 15px;
}
.faq-a p { padding: 0 var(--s-lg) 20px; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, rgba(60, 246, 97, 0.1), rgba(167, 155, 255, 0.12));
  border: 1px solid var(--border-strong);
  border-radius: var(--r-lg);
  padding: clamp(40px, 6vw, 72px);
  text-align: center;
}
.cta-banner h2 { font-size: clamp(28px, 4vw, 44px); }
.cta-banner p { color: var(--text-secondary); font-size: 18px; margin: var(--s-md) auto var(--s-xl); max-width: 540px; }
.cta-actions { display: flex; flex-wrap: wrap; gap: var(--s-md); justify-content: center; }

/* App store badge buttons */
.store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--surface-alt);
  border: 1px solid var(--border-strong);
  border-radius: var(--r-md);
  padding: 10px 18px;
  transition: border-color 0.18s ease, transform 0.18s ease;
}
.store-btn:hover { border-color: var(--accent); transform: translateY(-2px); }
.store-btn svg { width: 26px; height: 26px; }
.store-btn .st { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.store-btn .st small { font-size: 10px; color: var(--text-muted); }
.store-btn .st b { font-size: 15px; font-family: var(--font-head); }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 80px) 0 var(--s-xl);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--s-xl);
}
.footer-brand img { height: 30px; margin-bottom: var(--s-md); }
.footer-brand p { color: var(--text-muted); font-size: 14px; max-width: 280px; }
.footer-col h4 {
  font-family: var(--font-body);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: var(--s-md);
}
.footer-col a { display: block; color: var(--text-secondary); font-size: 14px; padding: 5px 0; transition: color 0.15s ease; }
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: var(--s-md);
  margin-top: var(--s-xxl);
  padding-top: var(--s-lg);
  border-top: 1px solid var(--border);
  color: var(--text-muted); font-size: 13px;
}
.socials { display: flex; gap: var(--s-md); }
.socials a {
  width: 38px; height: 38px; border-radius: var(--r-full);
  display: grid; place-items: center;
  border: 1px solid var(--border);
  transition: border-color 0.15s ease, color 0.15s ease;
}
.socials a:hover { border-color: var(--accent); color: var(--accent); }
.socials svg { width: 18px; height: 18px; }

/* ---------- Legal / content pages ---------- */
.legal {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) var(--s-lg) clamp(64px, 9vw, 110px);
}
.legal .eyebrow { margin-bottom: var(--s-sm); }
.legal h1 { font-size: clamp(32px, 5vw, 48px); margin-bottom: var(--s-sm); }
.legal .updated { color: var(--text-muted); font-size: 14px; margin-bottom: var(--s-xl); }
.legal h2 {
  font-size: 22px;
  margin: var(--s-xl) 0 var(--s-sm);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
}
.legal h3 { font-size: 17px; margin: var(--s-lg) 0 var(--s-xs); }
.legal p, .legal li { color: var(--text-secondary); font-size: 16px; line-height: 1.7; }
.legal p { margin-bottom: var(--s-md); }
.legal ul { padding-left: var(--s-lg); margin: 0 0 var(--s-md); display: grid; gap: 8px; }
.legal a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }
.legal a:hover { color: var(--primary); }
.legal .back {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-secondary); font-size: 14px; text-decoration: none; margin-bottom: var(--s-lg);
}
.legal .back:hover { color: var(--text); }
.legal table {
  width: 100%; border-collapse: collapse; margin: var(--s-md) 0 var(--s-lg); font-size: 14px;
}
.legal th, .legal td {
  text-align: left; padding: 12px var(--s-md);
  border: 1px solid var(--border); vertical-align: top; color: var(--text-secondary);
}
.legal th { background: var(--surface); color: var(--text); font-family: var(--font-body); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-pill { margin-left: auto; margin-right: auto; }
  .hero-visual { order: 0; margin-top: var(--s-xl); }
  .features, .steps, .listings, .pricing, .showcase, .roadmap { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta .btn-outline { display: none; }
  .nav-toggle { display: inline-flex; }
  .mobile-menu {
    display: none;
    flex-direction: column;
    gap: var(--s-sm);
    padding: var(--s-md) var(--s-lg) var(--s-lg);
    border-bottom: 1px solid var(--border);
    background: var(--surface);
  }
  .mobile-menu.open { display: flex; }
  .mobile-menu a { padding: 12px 0; color: var(--text-secondary); border-bottom: 1px solid var(--border); }
  .mobile-menu .btn { margin-top: var(--s-sm); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: var(--s-xxl) var(--s-lg); padding: var(--s-xxl) 0; }
  .compare { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .features, .steps, .listings, .pricing, .footer-grid, .roadmap { grid-template-columns: 1fr; }
  .showcase { grid-template-columns: repeat(2, 1fr); gap: var(--s-md); }
  .container { padding: 0 var(--s-md); }
  .plan.featured { order: -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}

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