/* ── ChowHub site-wide styles ─────────────────────────────────── */
/* Used on every page. Pair with upgrade.css for tokens/cards/FAQ. */

/* ── Reset & base, in case page doesn't load upgrade.css first ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green:        #22c55e;
  --green-soft:   rgba(34, 197, 94, 0.10);
  --green-line:   rgba(34, 197, 94, 0.35);
  --pro:          #22c55e;
  --pro-soft:     rgba(34, 197, 94, 0.10);
  --ent:          #8b5cf6;
  --ent-soft:     rgba(139, 92, 246, 0.12);
  --ent-line:     rgba(139, 92, 246, 0.35);
  --base:         #94a3b8;
  --base-soft:    rgba(148, 163, 184, 0.12);
  --bg:           #0a0a0a;
  --surface:      rgba(255, 255, 255, 0.03);
  --surface-2:    rgba(255, 255, 255, 0.05);
  --border:       rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.15);
  --text:         #fafafa;
  --text-dim:     #a1a1aa;
  --text-faint:   #71717a;
  --radius:       1.25rem;
  --shadow:       0 8px 32px rgba(0, 0, 0, 0.4);
  --shadow-glow:  0 0 60px rgba(34, 197, 94, 0.25), 0 8px 32px rgba(0, 0, 0, 0.4);
}

html {
  scroll-behavior: smooth;
  /* Bumps default body font from 16px → 17.5px without breaking rem-based sizing */
  font-size: 17.5px;
}

body {
  font-family: 'Outfit', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  position: relative;
  min-height: 100vh;
}

/* Default <p> spacing + readability */
p { font-size: 1rem; line-height: 1.65; }

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background:
    radial-gradient(ellipse at top left, rgba(99, 102, 241, 0.18), transparent 55%);
}

body > * { position: relative; z-index: 1; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

a { color: inherit; }

/* ── Nav ──────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  height: 64px;
}

.logo svg { height: 32px; width: auto; color: var(--text); }
.logo svg circle { fill: var(--green); }
.logo { text-decoration: none; color: var(--text); display: inline-flex; align-items: center; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
  margin: 0 auto 0 0;
  padding-left: 2.5rem;
}

.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .15s;
}
.nav-links a:hover { color: var(--text); }
.nav-links a.active { color: var(--text); }

.nav-right {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.nav-signin {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-dim);
  text-decoration: none;
  transition: color .15s;
}
.nav-signin:hover { color: var(--text); }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  background: var(--green);
  color: #052e16;
  border: 1px solid var(--green);
  box-shadow: 0 0 18px rgba(34, 197, 94, 0.35);
  transition: background .15s, box-shadow .2s;
}
.nav-cta:hover { background: #16a34a; box-shadow: 0 0 28px rgba(34, 197, 94, 0.55); }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  background: transparent;
  border: 1px solid var(--border-strong);
  border-radius: .5rem;
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 880px) {
  .nav-links, .nav-right { display: none; }
  .nav-toggle { display: inline-flex; }
  .nav.open .nav-links,
  .nav.open .nav-right {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: .25rem;
    padding: 1rem 0 1.25rem;
    width: 100%;
    border-top: 1px solid var(--border);
  }
  .nav.open .nav-inner {
    flex-wrap: wrap;
    height: auto;
    padding-bottom: .5rem;
  }
  .nav.open .nav-links {
    padding-left: 0;
    margin: 0;
  }
  .nav.open .nav-links a,
  .nav.open .nav-right .nav-signin {
    padding: .65rem 0;
    font-size: 1rem;
  }
  .nav.open .nav-right {
    border-top: none;
    padding-top: 0;
  }
  .nav.open .nav-cta { align-self: flex-start; }
}

/* Backwards compat with existing pages that still use .nav-contact */
.nav-contact {
  font-size: .875rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  padding: .5rem 1rem;
  border: 1px solid var(--border-strong);
  border-radius: .625rem;
  transition: background .15s, border-color .15s;
}
.nav-contact:hover { background: var(--surface-2); border-color: var(--green-line); }

/* ── Section primitives ───────────────────────────────────────── */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-tight { padding: 2.5rem 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4ade80;
  background: var(--green-soft);
  border: 1px solid var(--green-line);
  padding: .4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.eyebrow::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.eyebrow.eyebrow-violet {
  color: #c4b5fd;
  background: var(--ent-soft);
  border-color: var(--ent-line);
}
.eyebrow.eyebrow-violet::before { background: var(--ent); box-shadow: 0 0 8px var(--ent); }

.h1 {
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.025em;
  color: var(--text);
}
.h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
}
.h3 {
  font-size: clamp(1.25rem, 2.2vw, 1.5rem);
  font-weight: 700;
  letter-spacing: -.015em;
  color: var(--text);
}

.lead {
  font-size: 1.2rem;
  color: var(--text-dim);
  max-width: 680px;
  line-height: 1.6;
}

.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

.section-head { margin-bottom: 3rem; }
.section-head.center .h2 { margin: 0 auto .75rem; }

.highlight { color: var(--green); font-weight: 800; }
.highlight-violet { color: #a78bfa; font-weight: 800; }
.muted { color: var(--text-dim); }
.faint { color: var(--text-faint); }

/* ── Hero (generic, full-width centered) ──────────────────────── */
.page-hero {
  text-align: center;
  padding: 5rem 0 3.5rem;
}
.page-hero .lead { margin: 1rem auto 0; }
.page-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Two-col hero */
.split-hero {
  padding: 4rem 0 3.5rem;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 3rem;
  align-items: center;
}
.split-hero .lead { margin-top: 1rem; }
.split-hero-actions {
  margin-top: 2rem;
  display: flex;
  gap: .75rem;
  flex-wrap: wrap;
}
@media (max-width: 880px) {
  .split-hero { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2.5rem; }
}

/* ── Buttons (extends upgrade.css .btn) ───────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  text-align: center;
  padding: .9rem 1.5rem;
  border-radius: .75rem;
  font-size: .9rem;
  font-weight: 700;
  text-decoration: none;
  transition: background .15s, transform .1s, border-color .15s, box-shadow .2s;
  cursor: pointer;
  border: 1px solid transparent;
  white-space: nowrap;
  line-height: 1;
}
.btn:active { transform: scale(.98); }
.btn svg { width: 16px; height: 16px; }

.btn-pro,
.btn-primary {
  background: var(--green);
  color: #052e16;
  border-color: var(--green);
  box-shadow: 0 0 24px rgba(34, 197, 94, 0.35);
}
.btn-pro:hover,
.btn-primary:hover {
  background: #16a34a;
  box-shadow: 0 0 32px rgba(34, 197, 94, 0.55);
}

.btn-outline {
  border: 1px solid var(--border-strong);
  color: var(--text);
  background: var(--surface);
}
.btn-outline:hover { background: var(--surface-2); border-color: rgba(255,255,255,0.25); }

.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1px solid transparent;
}
.btn-ghost:hover { background: var(--surface); }

.btn-sm { padding: .55rem 1rem; font-size: .82rem; }
.btn-lg { padding: 1.05rem 1.75rem; font-size: 1rem; }

/* ── Generic Cards & Grids ────────────────────────────────────── */
.glass {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform .25s, border-color .25s, box-shadow .25s;
}
.glass:hover { border-color: var(--border-strong); }

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.feature-grid-2 { grid-template-columns: repeat(2, 1fr); }
.feature-grid-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 980px) {
  .feature-grid,
  .feature-grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .feature-grid,
  .feature-grid-2,
  .feature-grid-4 { grid-template-columns: 1fr; }
}

.fcard {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.fcard .icon {
  width: 44px; height: 44px;
  border-radius: .75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--green-soft);
  color: var(--green);
  border: 1px solid var(--green-line);
  margin-bottom: .25rem;
}
.fcard .icon svg { width: 22px; height: 22px; }
.fcard h3 { font-size: 1.05rem; font-weight: 700; color: var(--text); }
.fcard p { color: var(--text-dim); font-size: 1rem; line-height: 1.55; }
.fcard .icon.violet { background: var(--ent-soft); color: #a78bfa; border-color: var(--ent-line); }

.fcard-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.fcard .link-arrow {
  margin-top: auto;
  padding-top: .5rem;
  font-size: .85rem;
  font-weight: 600;
  color: var(--green);
  display: inline-flex;
  align-items: center;
  gap: .35rem;
}
.fcard .link-arrow svg { width: 14px; height: 14px; }

/* ── Bulleted prose lists ─────────────────────────────────────── */
.check-list {
  list-style: none;
  display: grid;
  gap: .65rem;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  font-size: .95rem;
  color: var(--text);
}
.check-list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .7rem;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 2px;
}
.cross-list { list-style: none; display: grid; gap: .65rem; }
.cross-list li {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .95rem; color: var(--text);
}
.cross-list li::before {
  content: '×';
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  font-size: 1rem; font-weight: 800;
  flex-shrink: 0; margin-top: 2px;
}

/* ── Compare table ────────────────────────────────────────────── */
.compare-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
}
.compare-scroll { overflow-x: auto; }

.compare {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}
.compare th,
.compare td {
  padding: .9rem 1rem;
  text-align: left;
  font-size: .9rem;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  vertical-align: top;
}
.compare thead th {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-faint);
  background: rgba(255,255,255,0.02);
  position: sticky; top: 0;
}
.compare tbody tr:last-child td { border-bottom: 0; }
.compare .row-label {
  color: var(--text-dim);
  font-weight: 600;
  width: 220px;
  background: rgba(255,255,255,0.015);
}
.compare .yes { color: #4ade80; font-weight: 700; }
.compare .no  { color: #f87171; font-weight: 700; }
.compare .meh { color: #fbbf24; font-weight: 700; }
.compare .chowhub-col {
  background: rgba(34, 197, 94, 0.06);
  color: var(--text);
  font-weight: 600;
}
.compare thead th.chowhub-col {
  color: #4ade80;
  background: rgba(34, 197, 94, 0.12);
}

/* ── Wins / Losses two-col ────────────────────────────────────── */
.versus-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 720px) { .versus-grid { grid-template-columns: 1fr; } }
.versus-card { padding: 2rem; }
.versus-card h3 { margin-bottom: 1rem; }

/* ── Trust strip (reused) ─────────────────────────────────────── */
.trust {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2.5rem 0;
  background: rgba(255, 255, 255, 0.015);
}
.trust-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 2rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-dim);
}
.trust-item svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--green); }

/* ── Screenshot showcase ──────────────────────────────────────── */
.shot-frame {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  box-shadow: var(--shadow);
}
.shot-frame::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: var(--radius);
  pointer-events: none;
  background: linear-gradient(135deg, rgba(34,197,94,0.25), transparent 35%, rgba(99,102,241,0.2));
  z-index: -1;
  filter: blur(20px);
  opacity: .6;
}
.shot-frame img { display: block; width: 100%; height: auto; }

.shot-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}
@media (max-width: 980px)  { .shot-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .shot-grid { grid-template-columns: 1fr; } }

.shot-tile {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shot-frame-sm {
  border-radius: 14px;
}
.shot-frame-sm::before { filter: blur(14px); opacity: .45; }
.shot-tile figcaption {
  display: flex;
  flex-direction: column;
  gap: .3rem;
  font-size: 1rem;
}
.shot-tile figcaption strong {
  color: var(--text);
  font-weight: 700;
  font-size: 1.05rem;
}
.shot-tile figcaption span {
  color: var(--text-dim);
  font-size: .95rem;
  line-height: 1.55;
}

/* ── CTA banner (extra "centered" variant) ────────────────────── */
.cta-banner { padding: 0 0 4rem; }
.cta-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.5rem 3rem;
  border-radius: var(--radius);
  background:
    radial-gradient(ellipse 60% 90% at 10% 0%, rgba(34, 197, 94, 0.55), rgba(34, 197, 94, 0.15) 40%, transparent 65%),
    radial-gradient(ellipse 60% 100% at 100% 100%, rgba(99, 102, 241, 0.18), transparent 60%),
    linear-gradient(135deg, rgba(20, 83, 45, 0.35), rgba(10, 10, 10, 0.9) 65%),
    #08120c;
  overflow: hidden;
}
.cta-copy { flex: 1; min-width: 0; }
.cta-title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -.02em;
  color: var(--text);
  margin-bottom: .5rem;
}
.cta-sub { font-size: 1.05rem; color: var(--text-dim); max-width: 48ch; line-height: 1.55; }
.cta-actions { display: flex; gap: .75rem; flex-shrink: 0; }
.cta-btn { display: inline-flex; align-items: center; gap: .5rem; white-space: nowrap; padding: .875rem 1.5rem; }
.cta-btn svg { width: 16px; height: 16px; }
@media (max-width: 768px) {
  .cta-card { flex-direction: column; align-items: flex-start; padding: 2rem 1.5rem; gap: 1.5rem; }
  .cta-actions { width: 100%; flex-direction: column; }
  .cta-btn { width: 100%; justify-content: center; }
}

/* ── Footer ───────────────────────────────────────────────────── */
.site-footer {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-faint);
  padding: 4rem 0 1.5rem;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (max-width: 880px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
}
.footer-brand .logo svg { height: 28px; }
.footer-brand p {
  margin-top: 1rem;
  font-size: .85rem;
  color: var(--text-faint);
  max-width: 22ch;
}
.footer-col h4 {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: grid; gap: .55rem; }
.footer-col a {
  color: var(--text-faint);
  text-decoration: none;
  font-size: .9rem;
  transition: color .15s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .82rem;
  color: var(--text-faint);
}
.footer-bottom a { color: var(--text-dim); text-decoration: none; }
.footer-bottom a:hover { color: var(--text); }
.footer-tag {
  color: var(--green);
  font-weight: 600;
  letter-spacing: .02em;
}

/* Legacy .footer support (old pages) */
.footer {
  background: rgba(0, 0, 0, 0.4);
  color: var(--text-faint);
  padding: 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: .85rem;
}
.footer a { color: var(--text-dim); text-decoration: none; transition: color .15s; }
.footer a:hover { color: var(--text); }

/* ── Prose / content ──────────────────────────────────────────── */
.prose { max-width: 720px; margin: 0 auto; color: var(--text-dim); font-size: 1.075rem; line-height: 1.75; }
.prose p { margin-bottom: 1.25rem; }
.prose h2 { color: var(--text); margin: 2.5rem 0 1rem; font-size: 1.5rem; font-weight: 700; letter-spacing: -.015em; }
.prose h3 { color: var(--text); margin: 2rem 0 .75rem; font-size: 1.15rem; font-weight: 700; }
.prose a { color: #4ade80; text-decoration: none; border-bottom: 1px solid rgba(74,222,128,0.35); }
.prose a:hover { color: #86efac; border-bottom-color: #86efac; }
.prose ul, .prose ol { margin: 0 0 1.25rem 1.25rem; }
.prose ul li, .prose ol li { margin-bottom: .4rem; }

/* ── Stats ────────────────────────────────────────────────────── */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 880px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
.stat {
  padding: 1.5rem;
  text-align: center;
}
.stat .n {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--green);
  letter-spacing: -.02em;
  line-height: 1.05;
  display: block;
}
.stat .l {
  font-size: .82rem;
  color: var(--text-dim);
  margin-top: .35rem;
  letter-spacing: .02em;
}

/* ── Mini pricing cards (home teaser) ─────────────────────────── */
.mini-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 980px) { .mini-cards { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .mini-cards { grid-template-columns: 1fr; } }
.mini-card { padding: 1.5rem; display: flex; flex-direction: column; gap: .5rem; }
.mini-card .tier { font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.mini-card .p { font-size: 2rem; font-weight: 800; color: var(--text); letter-spacing: -.025em; }
.mini-card .p .per { font-size: .85rem; color: var(--text-dim); font-weight: 500; }
.mini-card .d { font-size: .95rem; color: var(--text-dim); line-height: 1.55; }
.mini-card.featured { border-color: var(--green-line); background: linear-gradient(180deg, rgba(34,197,94,0.06), var(--surface) 60%); }
.mini-card a { margin-top: .75rem; }

/* ── Form ─────────────────────────────────────────────────────── */
.form-grid { display: grid; gap: 1.1rem; max-width: 480px; margin: 0 auto; }
.form-row label {
  display: block;
  font-size: .75rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-dim); margin-bottom: .5rem;
}
.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: .85rem 1rem;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  border-radius: .65rem;
  color: var(--text);
  font-family: inherit;
  font-size: .95rem;
  outline: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
}
.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--green-line);
  background: var(--surface-2);
  box-shadow: 0 0 0 3px rgba(34,197,94,0.12);
}
.form-row textarea { min-height: 140px; resize: vertical; }

/* ── 404 ──────────────────────────────────────────────────────── */
.error-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}
.error-page .big {
  font-size: clamp(5rem, 16vw, 9rem);
  font-weight: 800;
  letter-spacing: -.04em;
  color: var(--green);
  line-height: 1;
  text-shadow: 0 0 60px rgba(34,197,94,0.35);
}

/* ── Apple-style stacked scenes (home page) ───────────────────── */
.scene {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 1.5rem;
  overflow: hidden;
}
.scene-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1100px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.scene-eyebrow {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0;
  color: #4ade80;
  margin-bottom: -.5rem;
}
.scene-title {
  font-size: clamp(2.75rem, 7vw, 5.5rem);
  font-weight: 800;
  letter-spacing: -.035em;
  line-height: 1.05;
  color: var(--text);
  margin: 0;
}
.scene-title .highlight {
  color: var(--green);
  font-weight: 800;
}
.scene-sub {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: var(--text-dim);
  max-width: 640px;
  margin: .5rem 0 0;
  line-height: 1.5;
}
.scene-actions {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}
.scene-shot {
  margin-top: 3rem;
  width: 100%;
  max-width: 1100px;
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.scene-shot::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 20px;
  pointer-events: none;
  background: linear-gradient(135deg, rgba(34,197,94,0.30), transparent 45%, rgba(99,102,241,0.25));
  z-index: -1;
  filter: blur(28px);
  opacity: .65;
}
.scene-shot img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hero scene: no screenshot, but extra breathing room */
.scene-hero {
  min-height: 88vh;
  padding-top: 4rem;
}

/* Pricing scene: stronger green ambient glow behind the headline */
.scene-pricing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 40% at 50% 60%, rgba(34,197,94,0.18), transparent 70%);
  pointer-events: none;
  z-index: 1;
}

@media (max-width: 768px) {
  .scene {
    min-height: auto;
    padding: 4.5rem 1rem;
  }
  .scene-hero {
    min-height: 78vh;
    padding-top: 5rem;
  }
  .scene-shot {
    margin-top: 2rem;
  }
}
