/* ============================================================
   The Full 90 — landing page styles
   ============================================================ */

:root {
  /* Palette — pitch green base, warm cream, dark slate */
  --pitch-900: oklch(0.18 0.035 158);
  --pitch-800: oklch(0.23 0.04 158);
  --pitch-700: oklch(0.32 0.05 158);
  --pitch-600: oklch(0.42 0.06 158);
  --pitch-50:  oklch(0.96 0.018 158);

  --cream:     oklch(0.975 0.012 88);
  --cream-2:   oklch(0.955 0.018 88);
  --paper:     #ffffff;

  --slate-900: oklch(0.22 0.012 250);
  --slate-700: oklch(0.40 0.015 250);
  --slate-500: oklch(0.55 0.012 250);
  --slate-300: oklch(0.82 0.008 250);
  --slate-200: oklch(0.90 0.006 250);
  --slate-100: oklch(0.95 0.004 250);

  /* Accent — set per data-accent on <body> */
  --accent:        oklch(0.80 0.14 162);
  --accent-strong: oklch(0.62 0.14 162);
  --accent-soft:   oklch(0.94 0.05 162);
  --accent-ink:    oklch(0.18 0.05 162);

  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --radius-xl: 30px;

  --shadow-sm: 0 1px 2px rgba(15,23,15,0.06), 0 1px 0 rgba(15,23,15,0.03);
  --shadow:    0 8px 24px -8px rgba(15,23,15,0.18), 0 2px 6px -2px rgba(15,23,15,0.08);
  --shadow-lg: 0 30px 60px -20px rgba(10,30,20,0.35), 0 8px 24px -8px rgba(10,30,20,0.18);

  --maxw: 1200px;
}

body[data-accent="mint"] {
  --accent:        oklch(0.80 0.13 165);
  --accent-strong: oklch(0.55 0.14 165);
  --accent-soft:   oklch(0.94 0.05 165);
  --accent-ink:    oklch(0.18 0.05 165);
}
body[data-accent="amber"] {
  --accent:        oklch(0.82 0.14 78);
  --accent-strong: oklch(0.68 0.16 60);
  --accent-soft:   oklch(0.95 0.045 80);
  --accent-ink:    oklch(0.30 0.08 60);
}
body[data-accent="sky"] {
  --accent:        oklch(0.83 0.10 230);
  --accent-strong: oklch(0.58 0.13 235);
  --accent-soft:   oklch(0.95 0.035 230);
  --accent-ink:    oklch(0.22 0.07 235);
}
body[data-accent="coral"] {
  --accent:        oklch(0.78 0.13 35);
  --accent-strong: oklch(0.62 0.16 30);
  --accent-soft:   oklch(0.95 0.04 35);
  --accent-ink:    oklch(0.26 0.08 30);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Geist", system-ui, -apple-system, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
  color: var(--slate-900);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.f-display, h1, h2, h3, .wordmark {
  font-family: "Bricolage Grotesque", "Geist", sans-serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.04;
  text-wrap: balance;
}
h1 { font-size: clamp(38px, 6.2vw, 76px); margin: 0; }
h2 { font-size: clamp(30px, 4.2vw, 52px); margin: 0 0 12px; }
h3 { font-size: clamp(20px, 1.6vw, 24px); margin: 0 0 6px; letter-spacing: -0.01em; }
p  { margin: 0 0 12px; }
.lede { font-size: clamp(18px, 1.5vw, 22px); color: var(--slate-700); text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--maxw);
  padding: 0 24px;
  margin: 0 auto;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: "Geist Mono", ui-monospace, monospace;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--slate-500);
}
.eyebrow::before {
  content: ""; width: 18px; height: 1px; background: currentColor;
}
.eyebrow.on-dark { color: oklch(0.85 0.04 158); }
.eyebrow.on-dark::before { background: var(--accent); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 20px;
  font-weight: 600; font-size: 15px;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .15s ease, background .15s ease, color .15s ease, border-color .15s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--accent-ink);
  box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 8px 20px -8px color-mix(in oklch, var(--accent-strong) 60%, transparent);
}
.btn-primary:hover { transform: translateY(-1px); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 14px 26px -10px color-mix(in oklch, var(--accent-strong) 70%, transparent); }
.btn-primary.lg { padding: 16px 26px; font-size: 16px; }

.btn-ghost {
  background: transparent;
  color: var(--slate-900);
  border-color: var(--slate-200);
}
.btn-ghost.on-dark { color: var(--cream); border-color: rgba(255,255,255,0.18); }
.btn-ghost:hover { background: var(--slate-100); }
.btn-ghost.on-dark:hover { background: rgba(255,255,255,0.06); }

.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--slate-700); font-weight: 500;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.btn-link:hover { color: var(--slate-900); }
.btn-link .arrow { transition: transform .15s ease; }
.btn-link:hover .arrow { transform: translateX(3px); }

/* ============================================================
   NAV
   ============================================================ */
.nav-wrap {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: saturate(140%) blur(10px);
  background: color-mix(in oklch, var(--cream) 80%, transparent);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.nav-wrap.scrolled {
  border-bottom-color: var(--slate-200);
  background: color-mix(in oklch, var(--cream) 92%, transparent);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0;
  gap: 16px;
}
.nav-links {
  display: flex; gap: 28px; align-items: center;
  font-size: 15px; color: var(--slate-700);
}
.nav-links a:hover { color: var(--slate-900); }
.nav-right { display: flex; align-items: center; gap: 14px; }
.nav-login { font-size: 15px; color: var(--slate-700); }
.nav-login:hover { color: var(--slate-900); }
.nav-burger { display: none; background: none; border: 1px solid var(--slate-200); border-radius: 10px; padding: 8px 10px; }
.nav-burger svg { width: 18px; height: 18px; }

/* Wordmark */
.wordmark {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 19px; letter-spacing: -0.02em;
  color: var(--slate-900);
}
.wordmark .badge {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--pitch-900);
  color: var(--accent);
  display: grid; place-items: center;
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0;
  position: relative;
  overflow: hidden;
}
.wordmark .badge::after {
  /* pitch arc */
  content: ""; position: absolute; left: 50%; top: -8px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.2px solid color-mix(in oklch, var(--accent) 40%, transparent);
  transform: translateX(-50%);
}
.wordmark .badge span { position: relative; z-index: 1; }
.wordmark.on-dark { color: var(--cream); }
.wordmark.on-dark .badge { background: var(--accent); color: var(--pitch-900); }
.wordmark.on-dark .badge::after { border-color: color-mix(in oklch, var(--pitch-900) 30%, transparent); }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 56px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items: center;
}
.hero-copy h1 .accent-word {
  color: var(--accent-strong);
  position: relative;
}
.hero-copy h1 .strike {
  position: relative;
  white-space: nowrap;
}
.hero-copy h1 .strike::after {
  content: ""; position: absolute;
  left: -2%; right: -2%; top: 56%;
  height: 6px; background: var(--accent);
  border-radius: 4px;
  transform: rotate(-1.5deg);
  opacity: 0.85;
}
.hero-sub { margin-top: 22px; max-width: 540px; }
.hero-ctas {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 30px;
}
.hero-meta {
  display: flex; flex-wrap: wrap; gap: 18px 28px; margin-top: 28px;
  color: var(--slate-700); font-size: 14px;
}
.hero-meta span { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--accent-strong); }

.hero-mockup {
  position: relative;
  min-height: 460px;
}

/* ============================================================
   MOCKUPS — desktop dashboard + phone
   ============================================================ */
.mockup-desktop {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  width: 100%;
  max-width: 620px;
  transform: rotate(-1deg);
}
.mockup-desktop .chrome {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px;
  background: var(--slate-100);
  border-bottom: 1px solid var(--slate-200);
}
.mockup-desktop .chrome .dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-desktop .chrome .d1 { background: #ff5f57; }
.mockup-desktop .chrome .d2 { background: #ffbd2e; }
.mockup-desktop .chrome .d3 { background: #28ca41; }
.mockup-desktop .chrome .url {
  margin-left: 12px;
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 6px;
  font-family: "Geist Mono", monospace;
  font-size: 11px;
  color: var(--slate-500);
  padding: 4px 10px;
  flex: 1;
  max-width: 280px;
}
.mockup-desktop .app {
  display: grid;
  grid-template-columns: 140px 1fr;
  min-height: 360px;
  font-size: 12px;
}
.mockup-desktop .side {
  background: var(--pitch-900);
  color: oklch(0.85 0.04 158);
  padding: 14px 12px;
  font-family: "Geist", sans-serif;
}
.mockup-desktop .side .brand {
  display: flex; align-items: center; gap: 8px;
  color: var(--cream); font-weight: 700; font-size: 13px;
  margin-bottom: 18px;
}
.mockup-desktop .side .brand .b {
  width: 22px; height: 22px; border-radius: 6px;
  background: var(--accent); color: var(--pitch-900);
  display: grid; place-items: center; font-size: 10px; font-weight: 800;
}
.mockup-desktop .side .nav-item {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 8px; border-radius: 7px;
  color: oklch(0.78 0.03 158);
  margin-bottom: 2px;
}
.mockup-desktop .side .nav-item.active {
  background: oklch(0.28 0.05 158);
  color: var(--cream);
}
.mockup-desktop .side .nav-item .ico {
  width: 14px; height: 14px; border-radius: 3px;
  background: currentColor; opacity: 0.5;
}
.mockup-desktop .main { padding: 16px; background: var(--cream-2); }
.mockup-desktop .topline {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.mockup-desktop .topline h4 {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 16px; margin: 0; color: var(--slate-900);
}
.mockup-desktop .topline .pill {
  font-size: 10px; padding: 3px 9px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent-ink);
  font-weight: 600;
}
.mockup-desktop .kpis { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 12px; }
.mockup-desktop .kpi {
  background: var(--paper); border: 1px solid var(--slate-200);
  border-radius: 9px; padding: 9px 10px;
}
.mockup-desktop .kpi .label { font-size: 9px; color: var(--slate-500); letter-spacing: 0.05em; text-transform: uppercase; }
.mockup-desktop .kpi .val { font-family: "Bricolage Grotesque", sans-serif; font-size: 18px; font-weight: 700; color: var(--slate-900); margin-top: 2px; }
.mockup-desktop .kpi .delta { font-size: 9px; color: var(--accent-strong); font-weight: 600; }
.mockup-desktop .kpi .delta.neg { color: oklch(0.55 0.16 28); }

.mockup-desktop .row-2 { display: grid; grid-template-columns: 1.2fr 1fr; gap: 8px; }
.mockup-desktop .card {
  background: var(--paper); border: 1px solid var(--slate-200);
  border-radius: 9px; padding: 10px;
}
.mockup-desktop .card .title { font-size: 10px; color: var(--slate-500); margin-bottom: 8px; letter-spacing: 0.05em; text-transform: uppercase; }
.mockup-desktop .fixture {
  display: grid; grid-template-columns: 30px 1fr auto; gap: 8px; align-items: center;
  padding: 6px 0;
  border-top: 1px solid var(--slate-100);
}
.mockup-desktop .fixture:first-of-type { border-top: none; }
.mockup-desktop .fixture .date {
  width: 26px; height: 26px; border-radius: 6px;
  background: var(--cream-2);
  display: grid; place-items: center; text-align: center;
  font-size: 9px; line-height: 1; color: var(--slate-700);
}
.mockup-desktop .fixture .date b { display: block; font-size: 11px; color: var(--slate-900); font-family: "Bricolage Grotesque", sans-serif; }
.mockup-desktop .fixture .name { font-size: 11px; color: var(--slate-900); font-weight: 500; }
.mockup-desktop .fixture .meta { font-size: 9px; color: var(--slate-500); }
.mockup-desktop .fixture .tag {
  font-size: 9px; padding: 2px 6px; border-radius: 999px;
  background: var(--slate-100); color: var(--slate-700);
}
.mockup-desktop .fixture .tag.home { background: var(--accent-soft); color: var(--accent-ink); }

/* Bar chart */
.mockup-desktop .bars { display: flex; align-items: flex-end; gap: 4px; height: 60px; padding: 6px 2px 0; }
.mockup-desktop .bars .bar { flex: 1; background: var(--slate-200); border-radius: 3px 3px 0 0; position: relative; }
.mockup-desktop .bars .bar .fg { position: absolute; bottom: 0; left: 0; right: 0; background: var(--accent); border-radius: 3px 3px 0 0; }
.mockup-desktop .bars-labels { display: flex; gap: 4px; font-size: 8px; color: var(--slate-500); padding: 4px 2px 0; }
.mockup-desktop .bars-labels span { flex: 1; text-align: center; }

/* Phone */
.mockup-phone {
  position: absolute;
  right: -10px; bottom: -30px;
  width: 240px;
  background: oklch(0.16 0.005 250);
  border-radius: 34px;
  padding: 8px;
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.4);
  transform: rotate(4deg);
  z-index: 2;
}
.mockup-phone .screen {
  background: var(--paper);
  border-radius: 26px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 9 / 18;
}
.mockup-phone .notch {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 80px; height: 18px; border-radius: 999px;
  background: oklch(0.14 0.005 250);
  z-index: 5;
}
.mockup-phone .status {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 10px; padding: 8px 18px 0; color: var(--slate-900); font-weight: 600;
}
.mockup-phone .status .right { display: flex; gap: 4px; align-items: center; }
.mockup-phone .icon-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--slate-900); }

.mockup-phone .ph-header {
  padding: 28px 18px 14px;
  display: flex; justify-content: space-between; align-items: center;
}
.mockup-phone .ph-header .b {
  width: 22px; height: 22px; border-radius: 7px;
  background: var(--pitch-900); color: var(--accent);
  display: grid; place-items: center; font-size: 10px; font-weight: 800;
  font-family: "Bricolage Grotesque", sans-serif;
}
.mockup-phone .ph-header .menu { display: flex; flex-direction: column; gap: 3px; }
.mockup-phone .ph-header .menu i { width: 16px; height: 1.5px; background: var(--slate-700); border-radius: 2px; display: block; }

.mockup-phone .ph-greet { padding: 4px 18px 14px; }
.mockup-phone .ph-greet .small { font-size: 11px; color: var(--slate-500); }
.mockup-phone .ph-greet .name {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 19px; font-weight: 700; color: var(--slate-900); letter-spacing: -0.02em;
  line-height: 1.15;
}

.mockup-phone .ph-card {
  margin: 0 14px 12px;
  background: var(--pitch-900);
  color: var(--cream);
  border-radius: 18px;
  padding: 16px;
  position: relative;
  overflow: hidden;
}
.mockup-phone .ph-card .label { font-size: 10px; opacity: 0.7; letter-spacing: 0.05em; text-transform: uppercase; }
.mockup-phone .ph-card .amount {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800; font-size: 32px; letter-spacing: -0.02em;
  line-height: 1; margin-top: 6px;
}
.mockup-phone .ph-card .for {
  font-size: 11px; opacity: 0.7; margin-top: 6px;
}
.mockup-phone .ph-card .arc {
  position: absolute; right: -30px; bottom: -50px;
  width: 120px; height: 120px; border-radius: 50%;
  border: 1.5px solid color-mix(in oklch, var(--accent) 45%, transparent);
}
.mockup-phone .ph-card .arc-2 {
  position: absolute; right: -10px; top: -40px;
  width: 70px; height: 70px; border-radius: 50%;
  border: 1.5px solid color-mix(in oklch, var(--accent) 30%, transparent);
}

.mockup-phone .ph-detail { padding: 0 18px; }
.mockup-phone .ph-detail .row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--slate-100);
  font-size: 11px;
}
.mockup-phone .ph-detail .row b { color: var(--slate-900); font-weight: 600; }
.mockup-phone .ph-detail .row span { color: var(--slate-500); }

.mockup-phone .ph-btn {
  margin: 14px 14px;
  background: var(--accent);
  color: var(--accent-ink);
  border-radius: 999px;
  padding: 12px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
}
.mockup-phone .ph-secondary {
  text-align: center; font-size: 11px; color: var(--slate-500);
  margin-bottom: 14px;
}

/* When mockup === "desktop" — center desktop, hide phone */
.hero-mockup[data-variant="desktop"] .mockup-desktop { max-width: 100%; transform: rotate(0deg); }
.hero-mockup[data-variant="desktop"] .mockup-phone { display: none; }
.hero-mockup[data-variant="phone"] .mockup-desktop { display: none; }
.hero-mockup[data-variant="phone"] .mockup-phone {
  position: relative; right: auto; bottom: auto;
  transform: rotate(0deg); margin: 0 auto; width: 280px;
}

/* Pitch line decoration on hero */
.pitch-deco {
  position: absolute; inset: 0;
  pointer-events: none;
  opacity: 0.55;
}

/* ============================================================
   ORIGIN STRIP
   ============================================================ */
.origin {
  background: var(--pitch-900);
  color: oklch(0.92 0.02 158);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.origin .pitch-deco { opacity: 0.18; }
.origin-inner { max-width: 820px; margin: 0 auto; text-align: center; position: relative; }
.origin h2 {
  font-size: clamp(26px, 3.4vw, 38px);
  color: var(--cream);
  margin-bottom: 18px;
  letter-spacing: -0.02em;
}
.origin p {
  font-size: clamp(17px, 1.4vw, 20px);
  color: oklch(0.85 0.02 158);
  line-height: 1.55;
  text-wrap: pretty;
}
.origin .signature {
  margin-top: 28px;
  font-family: "Geist Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--accent);
  text-transform: uppercase;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 100px 0 80px;
  background: var(--cream);
}
.features-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
  align-items: end; margin-bottom: 56px;
}
.features-head .right p { color: var(--slate-700); max-width: 420px; margin-left: auto; }
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.feature-card {
  background: var(--paper);
  border: 1px solid var(--slate-200);
  border-radius: 18px;
  padding: 28px;
  display: flex; flex-direction: column; gap: 12px;
  transition: transform .15s ease, box-shadow .2s ease, border-color .2s ease;
  position: relative;
  overflow: hidden;
}
.feature-card:hover {
  transform: translateY(-2px);
  border-color: color-mix(in oklch, var(--accent) 30%, var(--slate-200));
  box-shadow: var(--shadow);
}
.feature-card .icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-ink);
  display: grid; place-items: center;
}
.feature-card .icon svg { width: 22px; height: 22px; }
.feature-card h3 { margin: 4px 0 2px; color: var(--slate-900); }
.feature-card p { color: var(--slate-700); font-size: 15px; }
.feature-card .num {
  position: absolute; right: 18px; top: 16px;
  font-family: "Geist Mono", monospace;
  font-size: 11px; color: var(--slate-300);
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 100px 0;
  background: var(--cream-2);
  border-top: 1px solid var(--slate-200);
  border-bottom: 1px solid var(--slate-200);
}
.how-head { text-align: center; margin-bottom: 56px; }
.how-head h2 { max-width: 720px; margin: 12px auto 8px; }
.how-head p { color: var(--slate-700); max-width: 520px; margin: 0 auto; }
.how-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px;
  position: relative;
}
.how-step {
  background: var(--paper);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid var(--slate-200);
  position: relative;
  overflow: hidden;
}
.how-step .step-no {
  font-family: "Bricolage Grotesque", sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.04em;
}
.how-step h3 { margin-top: 18px; margin-bottom: 8px; }
.how-step p { color: var(--slate-700); font-size: 15px; }
.how-step .underline {
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 3px;
  margin: 22px 0 4px;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 100px 0;
  background: var(--cream);
}
.pricing-head { text-align: center; margin-bottom: 48px; }
.pricing-head h2 { max-width: 640px; margin: 12px auto 8px; }
.pricing-head p { color: var(--slate-700); max-width: 480px; margin: 0 auto; }

.price-card {
  max-width: 540px;
  margin: 0 auto;
  background: var(--paper);
  border-radius: 28px;
  padding: 40px;
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card .ribbon {
  position: absolute;
  top: 20px; right: 20px;
  font-family: "Geist Mono", monospace;
  font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase;
  background: var(--accent-soft); color: var(--accent-ink);
  padding: 5px 10px; border-radius: 999px;
}
.price-card .plan {
  font-size: 13px; color: var(--slate-500); letter-spacing: 0.05em; text-transform: uppercase; font-family: "Geist Mono", monospace;
}
.price-card .big {
  display: flex; align-items: baseline; gap: 6px;
  font-family: "Bricolage Grotesque", sans-serif;
  margin: 12px 0 6px;
}
.price-card .big .num { font-size: 88px; font-weight: 800; letter-spacing: -0.04em; color: var(--slate-900); line-height: 1; }
.price-card .big .cur { font-size: 36px; font-weight: 700; color: var(--slate-700); }
.price-card .big .per { font-size: 18px; color: var(--slate-500); font-family: "Geist", sans-serif; font-weight: 500; }
.price-card .for { color: var(--slate-700); margin-bottom: 18px; }
.price-card .extra {
  display: flex; justify-content: space-between; align-items: center;
  background: var(--cream-2); border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  margin-bottom: 8px;
}
.price-card .extra b { color: var(--slate-900); }
.price-card .example {
  font-size: 14px;
  color: var(--slate-700);
  margin-bottom: 22px;
  padding-left: 16px;
}
.price-card .example b { color: var(--accent-strong); }
.price-card ul {
  list-style: none; margin: 0 0 24px; padding: 0;
  display: grid; gap: 10px;
}
.price-card ul li {
  display: flex; align-items: center; gap: 10px;
  font-size: 15px; color: var(--slate-900);
}
.price-card ul li svg { flex-shrink: 0; color: var(--accent-strong); }
.price-card .price-cta {
  display: block; text-align: center;
}
.price-card .reassure {
  display: flex; flex-wrap: wrap; gap: 14px;
  justify-content: center;
  font-size: 12px; color: var(--slate-500);
  margin-top: 20px;
  font-family: "Geist Mono", monospace;
}
.price-card .reassure span { display: flex; align-items: center; gap: 6px; }
.price-card .reassure span::before {
  content: ""; width: 5px; height: 5px; background: var(--accent-strong); border-radius: 50%;
}
.price-card .note {
  text-align: center;
  font-size: 13px; color: var(--slate-500);
  margin-top: 16px;
  font-style: italic;
}

/* ============================================================
   FINAL CTA
   ============================================================ */
.final {
  padding: 110px 0 110px;
  background: var(--pitch-900);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.final .pitch-deco { opacity: 0.22; }
.final-inner { position: relative; text-align: center; max-width: 760px; margin: 0 auto; }
.final h2 { color: var(--cream); font-size: clamp(34px, 5vw, 60px); margin-bottom: 18px; }
.final p { color: oklch(0.85 0.025 158); font-size: clamp(17px, 1.4vw, 20px); }
.final .final-ctas { display: flex; justify-content: center; gap: 16px; margin-top: 32px; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--pitch-900);
  color: oklch(0.78 0.02 158);
  padding: 30px 0 40px;
  border-top: 1px solid color-mix(in oklch, var(--cream) 8%, var(--pitch-900));
  font-size: 14px;
}
footer .footer-row {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
footer .links { display: flex; gap: 24px; }
footer .links a:hover { color: var(--cream); }
footer .meta { font-family: "Geist Mono", monospace; font-size: 12px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-mockup { min-height: 420px; max-width: 560px; margin: 0 auto; }
  .features-head { grid-template-columns: 1fr; gap: 18px; }
  .features-head .right p { margin-left: 0; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .how-steps { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .nav-burger { display: inline-flex; }
}
@media (max-width: 760px) {
  /* On phones, lead with the phone mockup — the parent-paying-subs story
     reads cleanly at small sizes. The dense desktop dashboard is hidden so
     the hero never looks cramped or clipped. */
  .hero-mockup { min-height: 0; max-width: 100%; }
  .mockup-desktop { display: none; }
  .mockup-phone {
    position: static;
    right: auto; bottom: auto;
    transform: rotate(0deg);
    width: 240px;
    margin: 0 auto;
  }
}
@media (max-width: 640px) {
  .container { padding: 0 18px; }
  body { font-size: 16px; }
  .hero { padding: 24px 0 56px; }
  .hero-grid { gap: 36px; }
  .hero-copy h1 { font-size: clamp(34px, 9vw, 46px); }
  .hero-ctas { gap: 14px; margin-top: 26px; }
  .hero-meta { gap: 12px 20px; }
  .features { padding: 70px 0 50px; }
  .features-grid { grid-template-columns: 1fr; }
  .how { padding: 70px 0; }
  .how-step { padding: 26px; }
  .how-step .step-no { font-size: 52px; }
  .pricing { padding: 70px 0; }
  .price-card { padding: 30px 22px; border-radius: 22px; }
  .price-card .big .num { font-size: 66px; }
  .price-card .extra { flex-direction: column; align-items: flex-start; gap: 4px; }
  .final { padding: 72px 0; }
  .nav-login { display: none; }
  footer .footer-row { flex-direction: column; align-items: flex-start; gap: 14px; }
  .hero-ctas .btn-primary { flex: 1; min-width: 100%; }
  .final .final-ctas .btn { flex: 1; min-width: 100%; }
}

/* Hide pitch deco when off */
body[data-pitch="off"] .pitch-deco { display: none; }
