/* Polypick — Light, trustworthy fintech aesthetic
   Type: Inter (UI) + Instrument Serif (editorial accents) — chose Instrument Serif over Fraunces
   Color: warm off-white paper, deep ink, single hue oklch green for trust + gain */

:root {
  /* Surfaces */
  --paper: #f6f4ee;        /* page background, warm cream */
  --paper-2: #fbfaf6;      /* card surface */
  --paper-3: #ffffff;      /* elevated card */
  --line: rgba(20, 22, 18, 0.08);
  --line-2: rgba(20, 22, 18, 0.14);
  --ink: #14160f;          /* primary text */
  --ink-2: #3a3d33;        /* secondary text */
  --ink-3: #6b6f60;        /* tertiary text */
  --ink-4: #9aa092;        /* muted */

  /* Accents — single hue green, oklch */
  --green: oklch(0.66 0.18 142);
  --green-strong: oklch(0.58 0.19 142);
  --green-soft: oklch(0.92 0.07 142);
  --green-tint: oklch(0.96 0.04 142);
  --red: oklch(0.62 0.19 25);
  --amber: oklch(0.78 0.15 75);

  /* Radii / shadow */
  --r-sm: 8px;
  --r-md: 12px;
  --r-lg: 18px;
  --r-xl: 24px;
  --r-2xl: 32px;
  --shadow-sm: 0 1px 0 rgba(20,22,18,.04), 0 1px 2px rgba(20,22,18,.05);
  --shadow-md: 0 1px 0 rgba(20,22,18,.04), 0 8px 24px -12px rgba(20,22,18,.18);
  --shadow-lg: 0 1px 0 rgba(20,22,18,.04), 0 24px 60px -24px rgba(20,22,18,.28);

  /* Type — bold, impactful sans-first system */
  --font-sans: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-display: "Geist", "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: "Geist Mono", "JetBrains Mono", ui-monospace, "SF Mono", Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ---------- App shell ---------- */
.shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) { .shell { padding: 0 32px; } }
@media (min-width: 1100px) { .shell { padding: 0 48px; } }

/* ---------- Promo bar ---------- */
.promo {
  background: var(--ink);
  color: #f6f4ee;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.005em;
  flex-wrap: wrap;
}
.promo .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 8px var(--green); }
.promo .countdown { display: inline-flex; gap: 4px; font-variant-numeric: tabular-nums; font-family: var(--font-mono); }
.promo .countdown b {
  background: rgba(255,255,255,0.10);
  border-radius: 5px;
  padding: 2px 6px;
  min-width: 24px;
  text-align: center;
  font-weight: 600;
  font-size: 12px;
}
.promo .countdown span { opacity: 0.5; align-self: center; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(246, 244, 238, 0.78);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--ink);
  color: var(--green);
  display: grid; place-items: center;
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 14px;
}
.nav-links { display: none; gap: 28px; align-items: center; }
.nav-links a {
  color: var(--ink-2);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a:hover { color: var(--ink); }
@media (min-width: 768px) { .nav-links { display: inline-flex; } }
.nav-cta { display: inline-flex; align-items: center; gap: 10px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  border: 1px solid transparent;
  text-decoration: none;
  transition: transform .12s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--paper);
  box-shadow: 0 1px 0 rgba(255,255,255,0.08) inset, 0 6px 16px -8px rgba(20,22,18,0.5);
}
.btn-primary:hover { background: #000; }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-green {
  background: linear-gradient(180deg, oklch(0.74 0.17 142) 0%, oklch(0.62 0.19 142) 100%);
  color: #fff;
  border: 1px solid oklch(0.52 0.18 142);
  text-shadow: 0 1px 0 rgba(0,0,0,0.18);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.35) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset,
    0 8px 22px -10px oklch(0.52 0.18 142),
    0 2px 6px -2px rgba(0,0,0,0.18);
}
.btn-green:hover {
  background: linear-gradient(180deg, oklch(0.78 0.17 142) 0%, oklch(0.66 0.19 142) 100%);
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -1px 0 rgba(0,0,0,0.12) inset,
    0 12px 28px -10px oklch(0.52 0.18 142),
    0 2px 6px -2px rgba(0,0,0,0.2);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: rgba(20,22,18,0.04); }
.btn-lg { height: 54px; padding: 0 26px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- Pills / chips / badges ---------- */
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px; border-radius: 999px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
  border: 1px solid var(--line-2);
  background: var(--paper-2);
  color: var(--ink-2);
}
.pill .ring { width: 6px; height: 6px; border-radius: 50%; background: var(--green); box-shadow: 0 0 0 4px var(--green-tint); }
.kbd {
  font-family: var(--font-mono);
  font-size: 11px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 2px 6px;
}

/* ---------- Hero ---------- */
.hero { padding: 28px 0 56px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  font-size: 12px;
  font-weight: 500;
  color: var(--ink-2);
}
.hero-eyebrow .tag {
  background: var(--green);
  color: #06140a;
  font-weight: 700;
  font-size: 11px;
  padding: 3px 9px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 72px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 18px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--green-strong);
  font-weight: 800;
}
.hero h1 .underline {
  background-image: linear-gradient(transparent 62%, var(--green-soft) 62%, var(--green-soft) 92%, transparent 92%);
  background-repeat: no-repeat;
  padding: 0 4px;
}
.hero p.lead {
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 16px 0 0;
  max-width: 560px;
  text-wrap: pretty;
  font-weight: 500;
}
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 22px;
  align-items: center;
}
.hero-meta {
  display: flex; align-items: center; gap: 14px;
  margin-top: 22px;
  flex-wrap: wrap;
}
.avatar-stack { display: inline-flex; }
.avatar-stack .av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--paper);
  background-size: cover; background-position: center;
  margin-left: -8px;
}
.avatar-stack .av:first-child { margin-left: 0; }
.stars { color: var(--ink); font-size: 14px; letter-spacing: 1px; }
.stars b { font-weight: 600; }

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .hero-grid { grid-template-columns: 1.1fr 1fr; gap: 60px; }
  .hero { padding: 56px 0 80px; }
}

/* The "won by people like you" counter */
.win-counter {
  display: inline-flex; align-items: baseline; gap: 8px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  margin-bottom: 4px;
}
.win-counter .num {
  font-family: var(--font-mono);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  font-size: 18px;
  color: var(--green-strong);
  letter-spacing: -0.01em;
}
.win-counter .label { font-size: 12px; color: var(--ink-3); }

/* ---------- Section helpers ---------- */
.section { padding: 64px 0; }
@media (min-width: 768px) { .section { padding: 96px 0; } }

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(36px, 6.5vw, 72px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
}
.section h2 em { font-style: normal; color: var(--green-strong); font-weight: 800; }
.section .sub {
  margin-top: 16px;
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--ink-2);
  max-width: 580px;
  line-height: 1.5;
  font-weight: 500;
}

/* ---------- Cards ---------- */
.card {
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px;
  position: relative;
}
.card.elev { box-shadow: var(--shadow-md); background: var(--paper-3); }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: 1fr; gap: 14px; margin-top: 36px; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(3, 1fr); gap: 18px; } }
.step {
  position: relative;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 24px 22px 26px;
  overflow: hidden;
}
.step .num {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green-strong);
}
.step h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.03em;
  margin: 12px 0 8px;
}
.step p { color: var(--ink-2); margin: 0; font-size: 14.5px; line-height: 1.5; }
.step .step-art {
  margin-top: 18px;
  height: 120px;
  border-radius: 14px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.step-arrow {
  position: absolute;
  right: -10px; top: 50%; transform: translateY(-50%);
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--paper);
  display: none;
  align-items: center; justify-content: center;
  font-size: 12px;
  z-index: 2;
}
@media (min-width: 768px) {
  .step:not(:last-child) .step-arrow { display: flex; }
}

/* ---------- Feature row ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  padding: 28px 0;
}
@media (min-width: 960px) {
  .feature { grid-template-columns: 1fr 1.05fr; gap: 80px; padding: 48px 0; }
  .feature.reverse .feat-copy { order: 2; }
}
.feat-copy h3 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(30px, 4.6vw, 52px);
  line-height: 0.98;
  letter-spacing: -0.04em;
  margin: 14px 0 0;
  text-wrap: balance;
}
.feat-copy p {
  margin: 16px 0 0;
  color: var(--ink-2);
  font-size: clamp(14px, 1.7vw, 16px);
  line-height: 1.6;
  max-width: 520px;
}
.feat-copy .features-list {
  list-style: none;
  padding: 0;
  margin: 22px 0 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feat-copy .features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px; color: var(--ink);
}
.feat-copy .features-list .check {
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: var(--green-soft);
  color: var(--green-strong);
  display: grid; place-items: center;
  font-size: 11px;
  margin-top: 1px;
}
.feat-art {
  position: relative;
  border-radius: var(--r-2xl);
  background: var(--paper-2);
  border: 1px solid var(--line);
  padding: 18px;
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

/* ---------- Calculator ---------- */
.calc {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-2xl);
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) { .calc { padding: 56px; } }
.calc h2 { color: #fff; }
.calc h2 em { color: var(--green); }
.calc .sub { color: rgba(246,244,238,0.7); }
.calc-grid { display: grid; grid-template-columns: 1fr; gap: 28px; margin-top: 36px; }
@media (min-width: 900px) { .calc-grid { grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: center; } }
.calc-input { display: flex; flex-direction: column; gap: 24px; }
.calc-field label {
  display: flex; justify-content: space-between; align-items: baseline;
  font-size: 13px;
  color: rgba(246,244,238,0.7);
  margin-bottom: 10px;
}
.calc-field label b {
  color: var(--green);
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 15px;
  font-variant-numeric: tabular-nums;
}
.calc-field input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 4px;
  background: rgba(246,244,238,0.15);
  border-radius: 2px;
  outline: none;
}
.calc-field input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid #0a1f10;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--green), 0 4px 12px rgba(0,0,0,0.3);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); border: 3px solid #0a1f10; cursor: pointer;
}
.calc-field .ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(246,244,238,0.4);
}
.calc-result {
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, rgba(255,255,255,0) 100%);
  border: 1px solid rgba(246,244,238,0.12);
  border-radius: 20px;
  padding: 28px 24px;
  text-align: center;
}
.calc-result .lab {
  font-family: var(--font-mono);
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.14em;
  color: rgba(246,244,238,0.55);
}
.calc-result .big {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(56px, 9vw, 96px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--green);
  margin: 12px 0;
  font-variant-numeric: tabular-nums;
}
.calc-result .meta { color: rgba(246,244,238,0.65); font-size: 13px; margin-bottom: 18px; }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--paper-2);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .2s ease, background .2s ease;
}
.faq-item.open { background: var(--paper-3); border-color: var(--line-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 22px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  cursor: pointer;
  gap: 16px;
}
.faq-q .icn {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  display: grid; place-items: center;
  transition: transform .25s ease, background .2s ease;
  font-size: 14px;
  color: var(--ink-2);
}
.faq-item.open .faq-q .icn { transform: rotate(45deg); background: var(--ink); color: var(--paper); border-color: var(--ink); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }
.faq-a > div { overflow: hidden; }
.faq-a p {
  padding: 0 22px 22px;
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- Pricing card ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: stretch;
}
@media (min-width: 900px) { .pricing { grid-template-columns: 1fr 1fr; gap: 48px; } }
.price-card {
  background: var(--paper-3);
  border: 1px solid var(--line-2);
  border-radius: var(--r-2xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.price-card .hdr { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.price-card .name { font-family: var(--font-display); font-size: 22px; letter-spacing: -0.03em; font-weight: 700; }
.price-card .row {
  display: flex; align-items: baseline; gap: 14px; margin-top: 18px;
}
.price-card .strike {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--ink-4);
  font-size: 18px;
}
.price-card .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 88px;
  letter-spacing: -0.05em;
  line-height: 0.9;
}
.price-card .price small { font-size: 18px; color: var(--ink-3); font-weight: 500; letter-spacing: -0.01em; }
.price-card .save {
  background: var(--green-soft);
  color: var(--green-strong);
  font-weight: 700;
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.price-card ul.feats {
  list-style: none; padding: 0; margin: 24px 0;
  display: flex; flex-direction: column; gap: 12px;
}
.price-card ul.feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14.5px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}
.price-card ul.feats li:last-child { border-bottom: 0; }
.price-card ul.feats .check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green); color: #06140a;
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.price-card .trust {
  display: flex; flex-wrap: wrap; gap: 16px;
  margin-top: 16px;
  font-size: 12px;
  color: var(--ink-3);
}
.price-card .trust span { display: inline-flex; align-items: center; gap: 6px; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--paper-2);
  padding: 56px 0 120px;
}
@media (min-width: 768px) { .footer { padding-bottom: 56px; } }
.foot-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px 24px;
}
@media (min-width: 768px) { .foot-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 32px 48px; } }
.foot-col h5 {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-3);
  margin: 0 0 14px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 4px 0;
}
.foot-col a:hover { color: var(--ink); }
.foot-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-top: 40px; padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--ink-3);
}

/* ---------- Floating proof toast ---------- */
.proof {
  position: fixed;
  left: 16px;
  bottom: 88px;
  z-index: 60;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow-lg);
  max-width: 320px;
  font-size: 13px;
  transform: translateY(120%);
  opacity: 0;
  transition: transform .4s cubic-bezier(.16,1,.3,1), opacity .3s ease;
}
.proof.show { transform: translateY(0); opacity: 1; }
.proof .av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  border: 1px solid var(--line);
}
.proof .body { line-height: 1.35; }
.proof .body b { font-weight: 600; }
.proof .body .amt { color: var(--green-strong); font-weight: 700; font-family: var(--font-mono); }
.proof .body .ago { color: var(--ink-3); font-size: 11px; margin-top: 2px; }
.proof .x {
  background: transparent; border: 0; color: var(--ink-3);
  font-size: 18px; line-height: 1; padding: 4px;
  margin-left: 4px; align-self: flex-start;
}
@media (min-width: 768px) { .proof { bottom: 24px; } }

/* ---------- Mobile bottom CTA ---------- */
.bottom-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 55;
  background: rgba(246, 244, 238, 0.92);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line);
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 12px;
}
.bottom-cta .meta { flex: 1; min-width: 0; }
.bottom-cta .meta .price-line {
  display: flex; gap: 8px; align-items: baseline;
}
.bottom-cta .meta .price-line .strike { color: var(--ink-4); text-decoration: line-through; font-family: var(--font-mono); font-size: 13px; }
.bottom-cta .meta .price-line b { font-family: var(--font-serif); font-size: 22px; letter-spacing: -0.015em; }
.bottom-cta .meta .sub { font-size: 11px; color: var(--ink-3); margin-top: -2px; }
@media (min-width: 768px) { .bottom-cta { display: none; } }

/* ---------- Stats strip ---------- */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--paper-2);
  overflow: hidden;
}
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, 1fr); } }
.stat {
  padding: 22px 20px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-strip .stat:nth-child(2n) { border-right: 0; }
@media (min-width: 768px) {
  .stats-strip .stat:nth-child(2n) { border-right: 1px solid var(--line); }
  .stats-strip .stat:nth-child(4n) { border-right: 0; }
  .stat { border-bottom: 0; }
}
.stat .v {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat .l {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-3);
  margin-top: 8px;
}

/* ---------- Mock app screen styles ---------- */
.mock {
  font-family: var(--font-sans);
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid var(--line);
  overflow: hidden;
  position: relative;
}
.mock-bar {
  height: 38px;
  display: flex; align-items: center;
  padding: 0 14px;
  border-bottom: 1px solid var(--line);
  font-size: 11px;
  font-family: var(--font-mono);
  color: var(--ink-3);
  gap: 8px;
}
.mock-bar .lights { display: inline-flex; gap: 6px; }
.mock-bar .lights i {
  width: 10px; height: 10px; border-radius: 50%;
  background: rgba(20,22,18,0.12); display: inline-block;
}
.mock-pad { padding: 18px; }

.market-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 14px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  margin-bottom: 10px;
}
.market-row .ttl { font-size: 13px; font-weight: 500; max-width: 60%; line-height: 1.3; }
.market-row .pct { font-family: var(--font-mono); font-weight: 600; font-size: 14px; }
.market-row.up .pct { color: var(--green-strong); }
.market-row.down .pct { color: var(--red); }

.confidence {
  display: flex; align-items: center; gap: 10px;
}
.confidence .bar {
  flex: 1; height: 6px; border-radius: 3px;
  background: var(--line-2);
  overflow: hidden;
}
.confidence .bar > i { display:block; height: 100%; background: var(--green); border-radius: 3px; }
.confidence .v { font-family: var(--font-mono); font-size: 12px; font-weight: 600; }

.tag-pill {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  font-family: var(--font-mono);
  background: var(--paper);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.tag-pill.green { background: var(--green-soft); color: var(--green-strong); border-color: transparent; }
.tag-pill.amber { background: oklch(0.95 0.06 75); color: oklch(0.45 0.15 65); border-color: transparent; }

/* ---------- Density tweak ---------- */
.density-compact .section { padding: 48px 0; }
.density-compact .hero { padding: 24px 0 40px; }
.density-spacious .section { padding: 96px 0; }
@media (min-width: 768px) {
  .density-compact .section { padding: 64px 0; }
  .density-spacious .section { padding: 128px 0; }
}

/* ---------- Theme variants ---------- */
.theme-cream { --paper: #f6f4ee; --paper-2: #fbfaf6; }
.theme-sage  { --paper: #eef2ec; --paper-2: #f4f7f2; --paper-3: #ffffff; --green-soft: oklch(0.9 0.08 142); }
.theme-mint  { --paper: #ecf3ee; --paper-2: #f3f8f4; --paper-3: #ffffff; }

/* Scrollbar polish */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-thumb { background: rgba(20,22,18,0.15); border-radius: 6px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: rgba(20,22,18,0.25); border: 2px solid transparent; background-clip: content-box; }

.no-scroll { overflow: hidden; }

/* ---------- Simpler hero ---------- */
.hero-simple { padding: 32px 0 16px; }
@media (min-width: 768px) { .hero-simple { padding: 56px 0 32px; } }
.hero-simple h1 {
  font-size: clamp(34px, 6.4vw, 72px);
  margin-top: 18px;
  letter-spacing: -0.04em;
  line-height: 1.0;
}
.hero-mock-wrap {
  margin-top: 36px;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.hero-mock-wrap::before {
  content: '';
  position: absolute;
  inset: -8% -10% 0;
  background: radial-gradient(60% 60% at 50% 30%, var(--green-tint), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-mock-wrap > * { position: relative; z-index: 1; }

/* ---------- Simpler steps ---------- */
.section-narrow { padding: 56px 0; }
@media (min-width: 768px) { .section-narrow { padding: 80px 0; } }

.step-simple {
  background: transparent;
  border: 0;
  padding: 16px 0;
  text-align: center;
}
.step-simple .num {
  display: inline-block;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  letter-spacing: 0.12em;
}
.step-simple h3 { margin: 14px 0 6px; font-size: 26px; font-weight: 700; letter-spacing: -0.03em; }
.step-simple p { max-width: 280px; margin: 0 auto; }

/* ---------- Simpler final CTA ---------- */
.final-cta {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--r-2xl);
  padding: 56px 24px;
  text-align: center;
}
@media (min-width: 768px) { .final-cta { padding: 80px 40px; } }
.final-cta h2 { font-size: clamp(40px, 6.5vw, 72px); letter-spacing: -0.045em; }

/* ---------- Promo bar ---------- */
.promo {
  background: linear-gradient(90deg, oklch(0.32 0.08 145) 0%, var(--ink) 50%, oklch(0.32 0.08 145) 100%);
  color: #fff;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: -0.005em;
  flex-wrap: wrap;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.promo .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 var(--green);
  animation: promoPulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes promoPulse {
  0%   { box-shadow: 0 0 0 0 oklch(0.66 0.18 142 / 0.7); }
  70%  { box-shadow: 0 0 0 8px oklch(0.66 0.18 142 / 0); }
  100% { box-shadow: 0 0 0 0 oklch(0.66 0.18 142 / 0); }
}
.promo .promo-text { color: rgba(255,255,255,0.92); }
.promo .promo-text b {
  color: #fff;
  font-weight: 800;
  background: var(--green);
  color: #06140a;
  padding: 1px 7px;
  border-radius: 5px;
  margin: 0 1px;
}
.promo .countdown { display: inline-flex; gap: 3px; font-variant-numeric: tabular-nums; font-family: var(--font-mono); align-items: center; }
.promo .countdown b {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 3px 7px;
  min-width: 26px;
  text-align: center;
  font-weight: 700;
  font-size: 12px;
  color: #fff;
}
.promo .countdown span { opacity: 0.5; color: var(--green); font-weight: 700; }

/* When promo is sticky, push nav below it */
.promo + .nav { top: 41px; }

/* ---------- Button shine ---------- */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: btnShine 3.4s ease-in-out infinite;
  pointer-events: none;
}
@keyframes btnShine {
  0%, 60% { left: -120%; }
  90%     { left: 160%; }
  100%    { left: 160%; }
}
.btn-shine > * { position: relative; z-index: 1; }

/* ---------- Pricing card additions ---------- */
.pill-trust {
  background: var(--green-soft);
  color: var(--green-strong);
  border-color: transparent;
  font-weight: 600;
}
.price-tier {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 4px;
}
.price-tier .tier-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.02em;
}
.price-row {
  display: flex; align-items: baseline; justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.price-row .just {
  font-size: 14px; color: var(--ink-3); font-weight: 500;
}
.price-row .strike {
  font-family: var(--font-mono);
  text-decoration: line-through;
  color: var(--ink-4);
  font-size: 22px;
}
.price-row .price {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 76px;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
}
.price-sub {
  font-size: 12px;
  color: var(--ink-3);
  margin-top: 8px;
}
.trust-rating { display: inline-flex; gap: 4px; align-items: center; }
.trust-rating::before { content: '★★★★★'; color: oklch(0.78 0.15 75); letter-spacing: 1px; font-size: 13px; }
.trust-sep { color: var(--ink-4); }
.trust-proof { display: inline-flex; align-items: center; gap: 5px; }
.trust-row-2 { margin-top: 4px; }
.trust-row-2 span { color: var(--green-strong); font-weight: 500; }

/* ---------- Win ticker (odometer-style) ---------- */
.win-ticker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding: 8px 14px;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 999px;
  position: relative;
}
.win-ticker-pulse {
  position: relative;
  width: 8px; height: 8px;
  display: inline-block;
  flex-shrink: 0;
}
.win-ticker-pulse i {
  position: absolute; inset: 0;
  border-radius: 50%;
  background: var(--green);
}
.win-ticker-pulse i:last-child {
  animation: pulseRing 1.6s ease-out infinite;
  background: var(--green);
  opacity: 0.5;
}
@keyframes pulseRing {
  0%   { transform: scale(1);   opacity: 0.5; }
  80%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}
.win-ticker-amt {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-family: var(--font-mono);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.win-ticker-digit {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 32px;
  padding: 0 4px;
  border-radius: 7px;
  background: var(--ink);
  color: var(--paper);
  font-weight: 700;
  font-size: 18px;
  box-shadow: inset 0 -2px 0 rgba(255,255,255,0.06), 0 1px 2px rgba(0,0,0,0.15);
}
.win-ticker-comma {
  font-weight: 700;
  font-size: 20px;
  color: var(--ink-3);
  padding: 0 1px;
}
.win-ticker-symbol {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green-strong);
  margin-right: 2px;
  letter-spacing: -0.02em;
}
.win-ticker-plus {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--green-strong);
  margin-left: 4px;
}
.win-ticker-label {
  font-size: 13px;
  color: var(--ink-3);
  font-weight: 500;
}
@media (min-width: 600px) {
  .win-ticker { flex-direction: row; gap: 12px; padding: 8px 18px 8px 14px; }
  .win-ticker-digit { min-width: 24px; height: 34px; font-size: 19px; padding: 0 5px; border-radius: 8px; }
  .win-ticker-symbol { font-size: 22px; }
  .win-ticker-comma { font-size: 22px; }
  .win-ticker-label { font-size: 13px; }
}
.win-ticker-label b { color: var(--ink); font-weight: 700; }

/* ---------- Hero meta refinements (rating + verified) ---------- */
.hero-meta-rich {
  margin-top: 16px;
  gap: 10px;
  font-size: 13px;
  color: var(--ink-2);
  flex-wrap: wrap;
}
.hero-rating {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600;
  letter-spacing: -0.005em;
}
.hero-rating-stars {
  color: oklch(0.78 0.15 75);
  letter-spacing: 1px;
  font-size: 14px;
}
.hero-rating b { font-weight: 700; }
.hero-meta-sep {
  color: var(--ink-4);
  font-weight: 300;
}
.verified {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 13px;
  color: var(--ink-2);
  font-weight: 500;
}
.verified b { font-weight: 700; color: var(--ink); }
.hero-disclaimer {
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 11.5px;
  color: var(--ink-3);
  line-height: 1.45;
  font-style: italic;
}

/* Make hero avatars use background-image properly */
.avatar-stack .av {
  background-size: cover;
  background-position: center;
  background-color: var(--paper-2);
}


/* ============================================================
   SIGNUP MODAL — site-palette (cream/green), heavy blur
   ============================================================ */
.signup-backdrop {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(20, 22, 18, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  display: grid;
  place-items: center;
  padding: 20px;
  animation: suFade .2s ease both;
}
@keyframes suFade { from { opacity: 0; } to { opacity: 1; } }

.signup-card {
  width: min(420px, 100%);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px 26px 22px;
  text-align: center;
  position: relative;
  font-family: var(--font-sans);
  box-shadow:
    0 30px 80px -20px rgba(20, 22, 18, 0.28),
    0 6px 20px -6px rgba(20, 22, 18, 0.18);
  animation: suPop .3s cubic-bezier(.2,.9,.3,1.1) both;
}
@keyframes suPop {
  from { transform: translateY(8px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1); opacity: 1; }
}

.signup-x {
  position: absolute; top: 12px; right: 12px;
  width: 32px; height: 32px;
  border: 0; background: transparent;
  border-radius: 8px;
  font-size: 22px;
  color: var(--ink-3);
  cursor: pointer;
  line-height: 1;
}
.signup-x:hover { background: var(--paper-3); color: var(--ink); }

.signup-trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: oklch(0.93 0.08 142);
  border: 1px solid oklch(0.78 0.14 142);
  color: oklch(0.32 0.12 142);
  font-size: 12.5px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.signup-trust-check {
  font-weight: 800;
  color: var(--green-strong);
}

.signup-title {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 28px;
  letter-spacing: -0.025em;
  color: var(--ink);
}
.signup-sub {
  margin: 0 0 22px;
  font-size: 14px;
  color: var(--ink-3);
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.signup-social {
  display: flex; align-items: center; justify-content: center;
  gap: 10px;
  width: 100%;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  font-family: var(--font-sans);
  transition: background .15s ease, border-color .15s ease;
}
.signup-social:hover {
  background: var(--paper-3);
  border-color: var(--ink-3);
}

.signup-or {
  display: flex; align-items: center;
  gap: 12px;
  margin: 6px 0;
  color: var(--ink-3);
  font-size: 12.5px;
}
.signup-or::before, .signup-or::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line);
}

.signup-input-wrap {
  position: relative;
  display: flex;
}
.signup-input {
  width: 100%;
  background: var(--paper-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.signup-input::placeholder { color: var(--ink-3); }
.signup-input:focus {
  border-color: var(--green);
  background: var(--paper);
  box-shadow: 0 0 0 3px oklch(0.66 0.18 142 / 0.18);
}
.signup-input-wrap .signup-input { padding-right: 42px; }

.signup-eye {
  position: absolute; right: 4px; top: 4px; bottom: 4px;
  width: 36px;
  display: grid; place-items: center;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: var(--ink-3);
  border-radius: 8px;
}
.signup-eye:hover { color: var(--ink); background: var(--paper-3); }

.signup-submit {
  width: 100%;
  background: linear-gradient(180deg, oklch(0.74 0.20 142) 0%, var(--green) 100%);
  color: #06140a;
  border: 1px solid oklch(0.50 0.16 142);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  text-shadow: 0 1px 0 rgba(255,255,255,0.18);
  font-family: var(--font-sans);
  transition: transform .12s ease, filter .15s ease, box-shadow .2s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.4) inset,
    0 -1px 0 rgba(20,22,18,0.10) inset,
    0 6px 16px -6px rgba(58, 155, 80, 0.45),
    0 1px 3px rgba(20,22,18,0.10);
  margin-top: 4px;
}
.signup-submit:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.04);
}
.signup-submit:disabled { opacity: 0.5; cursor: not-allowed; }

.signup-link {
  background: none; border: 0;
  color: var(--ink-3);
  font-size: 13px;
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--font-sans);
  margin-top: 4px;
}
.signup-link:hover { color: var(--ink); text-decoration: underline; }

.signup-back {
  background: none; border: 0;
  color: var(--ink-3);
  font-size: 12px;
  cursor: pointer;
  padding: 4px 0;
  margin-top: -2px;
  font-family: var(--font-sans);
}
.signup-back:hover { color: var(--ink); }

.signup-footer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  font-size: 13px;
  color: var(--ink-2);
}
.signup-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #00b67a;
  color: #fff;
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 700;
}
.signup-stars { letter-spacing: 0.5px; font-size: 11px; }
.signup-rating b {
  background: var(--paper);
  color: var(--ink);
  padding: 0 4px;
  border-radius: 3px;
  font-weight: 700;
  font-size: 12px;
}
.signup-sep { opacity: 0.3; }
.signup-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #1f5fff;
  font-weight: 500;
}

.signup-tos {
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--ink-3);
}
.signup-tos a {
  color: var(--ink-3);
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (max-width: 480px) {
  .signup-card { padding: 24px 20px 18px; border-radius: 16px; }
  .signup-title { font-size: 24px; }
}

/* ---------- Signup inline error (not in original design tokens) ---------- */
.signup-err {
  margin-top: 10px;
  padding: 8px 10px;
  background: oklch(0.96 0.06 25);
  color: oklch(0.4 0.15 25);
  border: 1px solid oklch(0.85 0.1 25);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.4;
}
