/* Let's Ride — site styles */
@import url("assets/tokens.css");

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--surface-page);
  color: var(--text-strong);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Layout ---------- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 820px; margin: 0 auto; padding: 0 24px; }

/* ---------- Top nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 40;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--border-default);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 600; letter-spacing: -0.01em; color: var(--text-primary); }
.nav-logo .mark {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--brand);
  display: grid; place-items: center;
  color: #fff; font-weight: 700; font-size: 14px;
  letter-spacing: -0.04em;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04), 0 0 0 1px rgba(255,255,255,0.15) inset;
}
.nav-logo .mark img { width: 100%; height: 100%; border-radius: 8px; }
.nav-logo .word { font-size: 16px; }
.nav-logo .word b { font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: color 200ms var(--ease-default);
}
.nav-links a:hover { color: var(--text-primary); }
.nav-links a.active { color: var(--brand-fg-strong); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle {
    display: inline-grid; place-items: center;
    width: 40px; height: 40px; border-radius: var(--radius-control);
    border: 1px solid var(--border-input); background: var(--surface-card);
    cursor: pointer;
  }
  .nav-mobile-open .nav-links {
    display: flex; flex-direction: column; gap: 0;
    position: absolute; top: 68px; left: 0; right: 0;
    background: var(--surface-card); border-bottom: 1px solid var(--border-default);
    padding: 8px 0;
  }
  .nav-mobile-open .nav-links a { padding: 14px 24px; border-bottom: 1px solid var(--border-subtle); }
}
.dark .nav { background: rgba(11,13,14,0.85); }

/* Theme toggle */
.theme-toggle {
  width: 40px; height: 40px; border-radius: var(--radius-control);
  border: 1px solid var(--border-input); background: var(--surface-card);
  display: inline-grid; place-items: center; cursor: pointer;
  color: var(--text-secondary);
  transition: color 200ms, border-color 200ms, background 200ms;
}
.theme-toggle:hover { color: var(--brand-fg-strong); border-color: var(--brand); }
.theme-toggle svg { width: 18px; height: 18px; }
.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }
.dark .theme-toggle .icon-sun { display: block; }
.dark .theme-toggle .icon-moon { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  height: 40px; padding: 0 16px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  border-radius: var(--radius-control); border: 1px solid transparent;
  cursor: pointer; transition: background-color 200ms var(--ease-default), border-color 200ms, color 200ms, transform 100ms;
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary { background: var(--brand); color: #fff; }
.btn-primary:hover { background: var(--brand-hover); }
.btn-primary:active { background: var(--brand-active); }
.btn-outline { background: transparent; color: var(--text-primary); border-color: var(--border-input); }
.btn-outline:hover { background: var(--brand-surface); border-color: var(--brand); color: var(--brand-fg-strong); }
.btn-ghost { background: transparent; color: var(--text-secondary); }
.btn-ghost:hover { background: var(--surface-chip); color: var(--text-primary); }
.btn-lg { height: 48px; padding: 0 22px; font-size: 15px; }
.btn-block { width: 100%; }

/* App store badges */
.store-row { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 12px;
  background: #0b0d0e; color: #fff;
  padding: 10px 18px; border-radius: var(--radius-control);
  border: 1px solid #1f2937;
  transition: transform 150ms var(--ease-default);
  min-width: 170px;
}
.store-badge:hover { transform: translateY(-1px); }
.store-badge .icon { width: 24px; height: 24px; flex-shrink: 0; }
.store-badge .lines { display: flex; flex-direction: column; line-height: 1.1; }
.store-badge .small { font-size: 10px; color: #9ca3af; letter-spacing: 0.04em; text-transform: uppercase; }
.store-badge .big { font-size: 16px; font-weight: 600; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background: #0b0d0e; color: #fff;
  border-bottom: 1px solid #1f2937;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 40% at 80% 10%, rgba(249,115,22,0.22) 0%, transparent 70%),
    radial-gradient(50% 50% at 0% 100%, rgba(249,115,22,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: 0.35; pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}
.hero-inner {
  position: relative; z-index: 1;
  padding: 96px 24px 80px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center;
  max-width: 1200px; margin: 0 auto;
}
@media (max-width: 960px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; padding: 64px 24px; }
  .hero-mock { margin: 0 auto; }
}
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--brand-fg);
  padding: 6px 12px; border-radius: var(--radius-pill);
  background: rgba(249,115,22,0.10); border: 1px solid rgba(249,115,22,0.25);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }
.hero h1 {
  font-size: clamp(44px, 6vw, 72px); line-height: 1.02; letter-spacing: -0.035em;
  font-weight: 700; margin: 20px 0 20px;
  color: #fff;
}
.hero h1 .accent { color: var(--brand); }
.hero p.lede {
  font-size: 18px; line-height: 1.55; color: #d1d5db;
  max-width: 540px; margin: 0 0 32px;
}
.hero-actions { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.hero-secondary { color: var(--brand-fg); font-size: 14px; font-weight: 500; }
.hero-secondary:hover { color: #fff; }
.hero-secondary .arrow { transition: transform 200ms; display: inline-block; }
.hero-secondary:hover .arrow { transform: translateX(4px); }

/* Hero phone mock */
.hero-mock {
  position: relative; aspect-ratio: 5 / 6; width: 100%; max-width: 520px; margin-left: auto;
}
.phone {
  position: absolute; inset: 0;
  border-radius: 36px;
  background: #111827; border: 1px solid #1f2937;
  box-shadow: 0 60px 120px -40px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.04);
  overflow: hidden; padding: 12px;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 26px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.4) 100%),
    radial-gradient(circle at 30% 20%, #5a3a1f 0%, #2a1a0d 60%, #0e0a07 100%);
  position: relative;
}
.phone .map-grid {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 22% 30%, rgba(249,115,22,0.5) 0, transparent 28%),
    radial-gradient(circle at 70% 70%, rgba(16,185,129,0.35) 0, transparent 30%);
  filter: blur(2px);
}
.phone .route {
  position: absolute; inset: 0;
}
.phone .stat-card {
  position: absolute; left: 16px; right: 16px; bottom: 16px;
  background: rgba(17,24,39,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px; padding: 14px 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px;
  color: #fff;
}
.phone .stat-card .label { font-size: 10px; color: #9ca3af; text-transform: uppercase; letter-spacing: 0.06em; }
.phone .stat-card .value { font-size: 18px; font-weight: 600; margin-top: 2px; }
.phone .top-pill {
  position: absolute; top: 16px; left: 16px;
  background: rgba(17,24,39,0.85); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px; padding: 6px 12px; font-size: 11px; color: #fff;
  display: inline-flex; align-items: center; gap: 6px;
}
.phone .top-pill .live-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(249,115,22,0.25); }

/* ---------- Section ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 64px 0; }
.section-dark { background: #0b0d0e; color: #fff; }
.section-dark .text-body { color: #d1d5db; }
.section-head { max-width: 720px; margin: 0 auto 48px; text-align: center; }
.section-head .eyebrow-light {
  display: inline-block;
  font-size: 12px; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-fg-strong); margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(32px, 4vw, 44px); line-height: 1.1; letter-spacing: -0.025em;
  font-weight: 700; margin: 0 0 16px;
}
.section-dark .section-head h2 { color: #fff; }
.section-head p {
  font-size: 17px; line-height: 1.55; color: var(--text-body); margin: 0;
}
.section-dark .section-head p { color: #d1d5db; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-card); padding: 24px;
}
.card-elev {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  transition: transform 200ms var(--ease-default), box-shadow 200ms;
}
.card-elev:hover { transform: translateY(-2px); box-shadow: 0 12px 28px -16px rgba(0,0,0,0.18); }

/* Feature grid */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 920px) { .feature-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .feature-grid { grid-template-columns: 1fr; } }
.feature-card {
  padding: 28px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  transition: border-color 200ms, transform 200ms;
}
.feature-card:hover { border-color: var(--brand); }
.feature-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--brand-surface); color: var(--brand-fg-strong);
  display: grid; place-items: center; margin-bottom: 18px;
}
.feature-icon svg { width: 22px; height: 22px; }
.feature-card h3 { font-size: 18px; font-weight: 600; margin: 0 0 8px; letter-spacing: -0.01em; }
.feature-card p { font-size: 14px; line-height: 1.55; color: var(--text-body); margin: 0; }

/* Membership tier cards */
.tier-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1000px) { .tier-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .tier-grid { grid-template-columns: 1fr; } }
.tier {
  position: relative; padding: 28px 24px;
  background: var(--surface-card);
  border: 1px solid var(--border-default);
  border-radius: var(--radius-card);
  display: flex; flex-direction: column;
}
.tier.featured {
  border-color: var(--brand);
  box-shadow: 0 0 0 1px var(--brand), 0 20px 40px -24px rgba(249,115,22,0.35);
}
.tier .badge {
  position: absolute; top: -12px; right: 20px;
  background: var(--brand); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  padding: 4px 10px; border-radius: var(--radius-pill);
}
.tier h3 { font-size: 18px; font-weight: 600; margin: 0 0 4px; }
.tier .for { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }
.tier .price { font-size: 32px; font-weight: 700; letter-spacing: -0.025em; margin-bottom: 4px; }
.tier .price small { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.tier .price-note { font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }
.tier ul { list-style: none; padding: 0; margin: 0 0 24px; flex: 1; }
.tier li {
  font-size: 14px; color: var(--text-body); line-height: 1.5;
  padding: 8px 0 8px 24px; position: relative;
  border-top: 1px solid var(--border-subtle);
}
.tier li:first-child { border-top: none; }
.tier li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 14px; height: 14px;
  background: var(--brand-surface);
  border-radius: 4px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23ea580c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}

/* Footer */
footer.site-footer {
  background: #0b0d0e; color: #d1d5db; padding: 64px 0 32px;
  border-top: 1px solid #1f2937;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand .nav-logo { color: #fff; margin-bottom: 12px; }
.footer-brand p { color: #9ca3af; font-size: 14px; line-height: 1.55; margin: 0 0 20px; max-width: 320px; }
.footer-col h4 {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff; margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: #9ca3af; }
.footer-col a:hover { color: #fff; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid #1f2937;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: #6b7280;
}
.socials { display: flex; gap: 12px; }
.socials a {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #1f2937; display: grid; place-items: center;
  color: #9ca3af; transition: all 200ms;
}
.socials a:hover { color: #fff; border-color: var(--brand); background: rgba(249,115,22,0.08); }
.socials svg { width: 16px; height: 16px; }

/* Generic page header */
.page-header {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--border-default);
  background:
    radial-gradient(70% 100% at 50% 0%, var(--brand-surface) 0%, transparent 70%),
    var(--surface-page);
}
.page-header .container { text-align: center; }
.page-header h1 {
  font-size: clamp(40px, 5vw, 56px); line-height: 1.05; letter-spacing: -0.03em;
  font-weight: 700; margin: 12px 0 16px;
}
.page-header p {
  font-size: 18px; color: var(--text-body); line-height: 1.55;
  max-width: 640px; margin: 0 auto;
}

/* Two-column feature blocks (Features page) */
.feature-block {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  padding: 56px 0;
  border-top: 1px solid var(--border-default);
}
.feature-block:first-of-type { border-top: none; }
.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }
@media (max-width: 880px) { .feature-block, .feature-block.reverse { grid-template-columns: 1fr; gap: 32px; } }
.feature-block h3 { font-size: 28px; line-height: 1.15; letter-spacing: -0.02em; font-weight: 700; margin: 12px 0 14px; }
.feature-block p { color: var(--text-body); line-height: 1.6; font-size: 16px; margin: 0 0 12px; }
.feature-block .tag {
  font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brand-fg-strong);
}

/* Visual placeholder used in feature blocks — abstract terrain */
.terrain {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius-card);
  border: 1px solid var(--border-default);
  position: relative; overflow: hidden;
  background: #0b0d0e;
}
.terrain svg { position: absolute; inset: 0; width: 100%; height: 100%; }
.terrain .label {
  position: absolute; top: 14px; left: 14px;
  background: rgba(17,24,39,0.85); color: #fff; backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 999px; padding: 5px 10px; font-size: 11px; font-weight: 500;
  display: inline-flex; align-items: center; gap: 6px;
}
.terrain .label .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brand); }

/* Audience switch on Features page */
.audience-tabs {
  display: inline-flex; padding: 4px;
  background: var(--surface-chip); border-radius: var(--radius-pill);
  margin-bottom: 32px;
}
.audience-tabs button {
  background: transparent; border: 0; cursor: pointer;
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-family: var(--font-sans); font-size: 14px; font-weight: 500; color: var(--text-secondary);
  transition: all 200ms var(--ease-default);
}
.audience-tabs button.active { background: var(--surface-card); color: var(--text-primary); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

/* Differentiator strip */
.diff-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; border-radius: var(--radius-card); overflow: hidden; border: 1px solid var(--border-default); background: var(--surface-card); }
@media (max-width: 920px) { .diff-strip { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-strip { grid-template-columns: 1fr; } }
.diff-strip .item { padding: 24px; border-right: 1px solid var(--border-subtle); border-bottom: 1px solid var(--border-subtle); }
.diff-strip .item .num { font-family: var(--font-mono); font-size: 12px; color: var(--brand-fg-strong); margin-bottom: 8px; }
.diff-strip .item h4 { font-size: 16px; font-weight: 600; margin: 0 0 6px; letter-spacing: -0.01em; }
.diff-strip .item p { font-size: 13px; color: var(--text-body); margin: 0; line-height: 1.5; }

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, #0b0d0e 0%, #1a0e05 100%);
  border-radius: var(--radius-card);
  padding: 56px;
  color: #fff; position: relative; overflow: hidden;
  border: 1px solid #1f2937;
}
.cta-banner::before {
  content: ""; position: absolute; right: -60px; top: -60px; width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(249,115,22,0.35) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner-inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; flex-wrap: wrap; position: relative; }
.cta-banner h3 { font-size: 28px; font-weight: 700; margin: 0 0 8px; letter-spacing: -0.02em; }
.cta-banner p { font-size: 15px; color: #9ca3af; margin: 0; max-width: 480px; }

/* Comparison table */
.compare-table { width: 100%; border-collapse: collapse; font-size: 14px; background: var(--surface-card); border: 1px solid var(--border-default); border-radius: var(--radius-card); overflow: hidden; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-subtle); }
.compare-table thead th { background: var(--surface-page); font-size: 13px; font-weight: 600; color: var(--text-secondary); }
.compare-table thead th:first-child { color: var(--text-muted); font-weight: 500; }
.compare-table tbody td { color: var(--text-body); vertical-align: middle; }
.compare-table tbody td:first-child { color: var(--text-primary); font-weight: 500; }
.compare-table tbody tr:last-child td { border-bottom: 0; }
.compare-table .check { color: var(--brand-fg-strong); }
.compare-table .featured-col { background: var(--brand-surface); color: var(--brand-fg-strong) !important; }

/* Giveaway callout */
.callout {
  display: grid; grid-template-columns: auto 1fr; gap: 24px; align-items: start;
  background: linear-gradient(135deg, var(--brand-surface) 0%, var(--brand-surface-2) 100%);
  border: 1px solid var(--brand);
  border-radius: var(--radius-card);
  padding: 32px;
}
.callout .icon-circle {
  width: 56px; height: 56px; border-radius: 16px;
  background: var(--brand); color: #fff;
  display: grid; place-items: center;
}
.callout h3 { margin: 0 0 6px; font-size: 20px; font-weight: 600; letter-spacing: -0.01em; color: var(--brand-active); }
.callout p { margin: 0 0 12px; color: var(--text-strong); line-height: 1.55; }
.callout .multipliers { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.callout .multipliers .chip {
  background: rgba(255,255,255,0.7); border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px; padding: 6px 12px; border-radius: var(--radius-pill);
  color: var(--text-strong); font-weight: 500;
}
.callout .multipliers .chip b { color: var(--brand-active); }

/* About — team */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 800px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
.team-card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-card); padding: 20px; text-align: left;
}
.team-card .av {
  width: 56px; height: 56px; border-radius: var(--radius-pill);
  background: var(--brand); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-size: 18px;
  margin-bottom: 14px;
}
.team-card h4 { margin: 0 0 2px; font-size: 16px; font-weight: 600; }
.team-card .role { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.team-card p { font-size: 13px; color: var(--text-body); line-height: 1.5; margin: 0; }

/* Stats row */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; text-align: center; }
@media (max-width: 600px) { .stats { grid-template-columns: 1fr; } }
.stat .num { font-size: 44px; font-weight: 700; letter-spacing: -0.025em; color: var(--brand-fg-strong); }
.stat .label { font-size: 14px; color: var(--text-body); }

/* Contact form */
.form-row-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row-2col { grid-template-columns: 1fr; } }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
@media (max-width: 800px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
.form-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-row label { font-size: 13px; font-weight: 500; color: var(--text-secondary); }
.form-row input, .form-row select, .form-row textarea {
  font-family: var(--font-sans); font-size: 14px;
  background: var(--surface-input); color: var(--text-primary);
  border: 1px solid var(--border-input);
  border-radius: var(--radius-control);
  padding: 10px 12px;
  transition: border-color 200ms, box-shadow 200ms;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus {
  outline: 0; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}
.form-row textarea { min-height: 140px; resize: vertical; }
.contact-info-card {
  background: var(--surface-card); border: 1px solid var(--border-default);
  border-radius: var(--radius-card); padding: 28px; margin-bottom: 16px;
}
.contact-info-card h4 { margin: 0 0 6px; font-size: 16px; font-weight: 600; }
.contact-info-card p { margin: 0; color: var(--text-body); font-size: 14px; line-height: 1.55; }
.contact-info-card a { color: var(--brand-fg-strong); font-weight: 500; }

/* Legal pages */
.legal-content { padding: 56px 0 96px; }
.legal-content h2 { font-size: 22px; font-weight: 600; margin: 36px 0 12px; letter-spacing: -0.015em; }
.legal-content h3 { font-size: 17px; font-weight: 600; margin: 24px 0 10px; }
.legal-content p, .legal-content li { font-size: 15px; line-height: 1.65; color: var(--text-body); }
.legal-content ul { padding-left: 22px; }
.legal-content .updated { color: var(--text-muted); font-size: 13px; }

/* Form success state */
.flash {
  background: var(--success-surface); border: 1px solid var(--success);
  border-radius: var(--radius-popup); padding: 14px 18px;
  color: var(--success-fg-strong); font-size: 14px; margin-bottom: 16px;
  display: none;
}
.flash.show { display: block; }

/* ============================================================================
   Dark mode adjustments
   The hero, footer, .section-dark, and .cta-banner are intentionally dark in
   both modes. These rules fix surfaces and content that read white in light.
   ============================================================================ */
.dark .page-header {
  background:
    radial-gradient(70% 100% at 50% 0%, rgba(249,115,22,0.10) 0%, transparent 70%),
    var(--surface-page);
  border-bottom-color: var(--border-default);
}
.dark .audience-tabs button.active {
  background: var(--surface-elevated);
  color: var(--text-primary);
  box-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.dark .compare-table thead th { background: #0a0f17; }
.dark .compare-table .featured-col {
  background: rgba(249,115,22,0.10);
  color: var(--brand-fg) !important;
}
.dark .tier li::before {
  background: rgba(249,115,22,0.15);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%23fb923c' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center;
}
.dark .tier.featured {
  box-shadow: 0 0 0 1px var(--brand), 0 20px 40px -24px rgba(249,115,22,0.5);
}
.dark .callout {
  background: linear-gradient(135deg, rgba(249,115,22,0.10) 0%, rgba(249,115,22,0.05) 100%);
  border-color: rgba(249,115,22,0.4);
}
.dark .callout h3 { color: var(--brand-fg); }
.dark .callout p { color: var(--text-strong); }
.dark .callout .multipliers .chip {
  background: rgba(0,0,0,0.3);
  border-color: rgba(255,255,255,0.08);
  color: var(--text-strong);
}
.dark .callout .multipliers .chip b { color: var(--brand-fg); }
.dark .section-head .eyebrow-light { color: var(--brand-fg); }
.dark .feature-card:hover { border-color: var(--brand); background: rgba(249,115,22,0.04); }
.dark .feature-icon { background: rgba(249,115,22,0.12); color: var(--brand-fg); }
.dark footer.site-footer { background: #050709; border-top-color: var(--border-default); }
.dark .stat .num { color: var(--brand-fg); }
.dark .form-row input,
.dark .form-row select,
.dark .form-row textarea { background: var(--surface-input); }
.dark .cta-banner { box-shadow: 0 0 0 1px rgba(255,255,255,0.04); }
html { color-scheme: light; }
.dark { color-scheme: dark; }
body { transition: background-color 200ms var(--ease-default), color 200ms; }
