/* WolfGPT — Light, premium fintech / trading aesthetic
   Type: Geist (UI) + Geist Mono (numeric / labels)
   Color: soft off-white surfaces, single-hue green accent for trust + gain */

:root{
  --bg:#f5f6f8; --bg-2:#ffffff; --bg-3:#eef0f3; --bg-4:#e3e6ea;
  --line:#e6e8ec; --line-2:#d3d7dd;
  --ink:#10131a; --ink-2:#454c58; --ink-3:#727a86; --ink-4:#a3aab4;
  --green:#12a150; --green-strong:#0f9249; --green-deep:#0a6e37;
  --green-tint:rgba(18,161,80,.10);
  --red:#d83a3a; --red-tint:rgba(216,58,58,.09);
  --amber:#bf7d09;
  --on-green:#ffffff;
  --radius:14px; --shell:1140px;
  --shadow:0 1px 2px rgba(16,19,26,.05), 0 6px 20px rgba(16,19,26,.07);
  --font-sans:'Geist',-apple-system,BlinkMacSystemFont,'Segoe UI',sans-serif;
  --font-mono:'Geist Mono',ui-monospace,SFMono-Regular,monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html, body { overflow-x: hidden; max-width: 100vw; }
body {
  background: var(--bg);
  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; }
a { color: inherit; }

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

/* ---------- Promo bar ---------- */
.promo {
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-strong) 50%, var(--green-deep) 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: nowrap;
  white-space: nowrap;
  overflow: hidden;
  position: sticky;
  top: 0;
  z-index: 60;
  border-bottom: 1px solid var(--green-deep);
}
.promo .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #fff;
  animation: promoPulse 1.6s ease-out infinite;
  flex-shrink: 0;
}
@keyframes promoPulse {
  0%   { box-shadow: 0 0 0 0 rgba(255,255,255,.7); }
  70%  { box-shadow: 0 0 0 8px rgba(255,255,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); }
}
.promo .promo-text { color: rgba(255,255,255,0.95); flex-shrink: 0; }
.promo .promo-text b {
  color: var(--green-deep);
  font-weight: 800;
  background: #fff;
  padding: 1px 7px;
  border-radius: 5px;
  margin: 0 1px;
}
.promo .promo-text-extra { display: none; color: rgba(255,255,255,0.7); }
@media (min-width: 720px) { .promo .promo-text-extra { display: inline; } }
.promo .countdown {
  display: inline-flex;
  gap: 3px;
  font-variant-numeric: tabular-nums;
  font-family: var(--font-mono);
  align-items: center;
  flex-shrink: 0;
}
.promo .countdown b {
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(255,255,255,0.22);
  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.7; color: #fff; font-weight: 700; }
@media (max-width: 380px) {
  .promo { gap: 8px; padding-left: 10px; padding-right: 10px; }
  .promo .countdown b { padding: 2px 4px; min-width: 20px; font-size: 11.5px; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
}
.promo + .nav { top: 41px; }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-sans);
  font-size: 21px;
  letter-spacing: -0.04em;
  color: var(--ink);
  text-decoration: none;
  font-weight: 800;
}
.brand .brand-mark {
  width: 28px; height: 28px;
  border-radius: 8px;
  background: var(--green);
  color: var(--on-green);
  display: grid; place-items: center;
  font-weight: 800;
  font-size: 15px;
  box-shadow: 0 2px 6px rgba(18,161,80,.28);
}
.brand .brand-word { font-weight: 800; }
.brand .brand-word .dotapp { color: var(--green); }
.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(--bg-2);
  color: var(--ink);
  border: 1px solid var(--line-2);
  box-shadow: var(--shadow);
}
.btn-primary:hover { background: var(--bg-3); border-color: var(--ink-4); }
.btn-primary .arrow { transition: transform .2s ease; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-green {
  background: var(--green);
  color: var(--on-green);
  border: 1px solid var(--green-strong);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 16px -6px rgba(18,161,80,0.45),
    0 1px 2px rgba(16,19,26,0.06);
}
.btn-green:hover {
  background: var(--green-strong);
  color: var(--on-green);
  transform: translateY(-1px);
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 10px 22px -6px rgba(18,161,80,0.5),
    0 2px 4px rgba(16,19,26,0.08);
}
.btn-green .arrow { transition: transform .2s ease; }
.btn-green:hover .arrow { transform: translateX(3px); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-3); }
.btn-lg { height: 54px; padding: 0 26px; font-size: 15px; }
.btn-block { width: 100%; }

/* ---------- 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.32) 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; }

/* ---------- Pills / chips ---------- */
.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(--bg-3);
  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); }
.pill-trust {
  background: var(--green-tint);
  color: var(--green-deep);
  border-color: rgba(18,161,80,.28);
  font-weight: 600;
}

/* ---------- Hero ---------- */
.hero { padding: 32px 0 16px; }
@media (min-width: 768px) { .hero { padding: 56px 0 32px; } }
.hero h1 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(34px, 6.4vw, 66px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 0;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: normal;
  color: var(--green);
  font-weight: 800;
}
.hero p.lead {
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
  color: var(--ink-2);
  margin: 16px auto 0;
  max-width: 560px;
  text-wrap: pretty;
  font-weight: 500;
}
.hero p.lead b { color: var(--ink); font-weight: 700; }
.hero-actions {
  display: flex; flex-wrap: wrap; gap: 12px;
  margin-top: 22px;
  align-items: center;
}
.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: -10% -12% 0;
  background: radial-gradient(60% 60% at 50% 25%, var(--green-tint), transparent 70%);
  z-index: 0;
  pointer-events: none;
}
.hero-mock-wrap > * { position: relative; z-index: 1; }

/* avatar stack */
.avatar-stack { display: inline-flex; }
.avatar-stack .av {
  width: 30px; height: 30px; border-radius: 50%;
  border: 2px solid var(--bg);
  background-size: cover; background-position: center;
  background-color: var(--bg-3);
  margin-left: -8px;
}
.avatar-stack .av:first-child { margin-left: 0; }

/* hero meta — rating + verified */
.hero-meta-rich {
  display: flex; align-items: center;
  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: var(--amber); letter-spacing: 1px; font-size: 14px; }
.hero-rating b { font-weight: 700; color: var(--ink); }
.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;
}

/* ---------- Win ticker ---------- */
.win-ticker {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
  padding: 8px 14px;
  background: var(--bg-3);
  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;
  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(--bg-2);
  border: 1px solid var(--line-2);
  color: var(--ink);
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 1px 2px rgba(16,19,26,0.06);
}
.win-ticker-comma { font-weight: 700; font-size: 20px; color: var(--ink-3); padding: 0 1px; }
.win-ticker-symbol {
  font-family: var(--font-sans);
  font-weight: 800; font-size: 22px;
  color: var(--green);
  margin-right: 2px;
  letter-spacing: -0.02em;
}
.win-ticker-label { font-size: 13px; color: var(--ink-3); font-weight: 500; }
.win-ticker-label b { color: var(--ink); font-weight: 700; }
@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; }
}

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

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-deep);
  margin-bottom: 14px;
}
.section h2 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(32px, 5.6vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.04em;
  margin: 0;
  text-wrap: balance;
  color: var(--ink);
}
.section h2 em { font-style: normal; color: var(--green); font-weight: 800; }
.section .sub {
  margin-top: 14px;
  font-size: clamp(15px, 1.9vw, 18px);
  color: var(--ink-2);
  max-width: 580px;
  line-height: 1.55;
  font-weight: 500;
}

/* ---------- 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-simple {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-simple .num {
  display: inline-block;
  background: var(--green-tint);
  border: 1px solid rgba(18,161,80,.22);
  border-radius: 999px;
  padding: 4px 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-deep);
}
.step-simple h3 {
  margin: 14px 0 6px;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--ink);
}
.step-simple p { color: var(--ink-2); max-width: 280px; margin: 0 auto; font-size: 14.5px; line-height: 1.5; }

/* ---------- 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: 72px; padding: 48px 0; }
  .feature.reverse .feat-copy { order: 2; }
}
.feat-copy h3 {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.03;
  letter-spacing: -0.04em;
  margin: 12px 0 0;
  text-wrap: balance;
  color: var(--ink);
}
.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: 20px 0 0;
  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-tint);
  color: var(--green-deep);
  display: grid; place-items: center;
  font-size: 11px; font-weight: 700;
  margin-top: 1px;
}
.feat-art {
  position: relative;
  border-radius: var(--radius);
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ---------- Mock app screen ---------- */
.mock {
  font-family: var(--font-sans);
  background: var(--bg-3);
  border-radius: 14px;
  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: var(--line-2); display: inline-block;
}
.mock-pad { padding: 16px; }
.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(--bg);
  border: 1px solid var(--line);
  color: var(--ink-2);
}
.tag-pill.green { background: var(--green-tint); color: var(--green-deep); border-color: rgba(18,161,80,.28); }
.tag-pill.amber { background: rgba(191,125,9,.10); color: var(--amber); border-color: rgba(191,125,9,.28); }
.tag-pill.red { background: var(--red-tint); color: var(--red); border-color: rgba(216,58,58,.28); }
.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; color: var(--ink); }

/* ---------- Calculator (intentional dark spotlight band) ---------- */
.calc {
  background: linear-gradient(180deg, #14171d 0%, #0d0f14 100%);
  color: #ffffff;
  border: 1px solid #20242c;
  border-radius: 20px;
  padding: 32px 24px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 20px 50px -24px rgba(16,19,26,0.45);
}
@media (min-width: 768px) { .calc { padding: 56px; } }
.calc h2 { color: #ffffff; }
.calc h2 em { color: var(--green); }
.calc .section-eyebrow { color: var(--green); }
.calc .sub { color: rgba(255,255,255,0.72); }
.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(255,255,255,0.72);
  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(255,255,255,0.16);
  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 #0d0f14;
  cursor: pointer;
  box-shadow: 0 0 0 1px var(--green);
}
.calc-field input[type="range"]::-moz-range-thumb {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--green); border: 3px solid #0d0f14; cursor: pointer;
}
.calc-field .ticks {
  display: flex; justify-content: space-between;
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.42);
}
.calc-result {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 16px;
  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(255,255,255,0.55);
}
.calc-result .big {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: clamp(52px, 9vw, 88px);
  line-height: 1;
  letter-spacing: -0.045em;
  color: var(--green);
  margin: 12px 0;
  font-variant-numeric: tabular-nums;
}
.calc-result .meta { color: rgba(255,255,255,0.55); font-size: 13px; margin-bottom: 18px; }

/* ---------- Pricing ---------- */
.pricing {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: stretch;
  margin-top: 40px;
}
@media (min-width: 860px) { .pricing { grid-template-columns: 1fr 1fr; gap: 24px; } }
.price-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 30px 26px;
  position: relative;
  text-align: left;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.price-card.featured {
  border-color: rgba(18,161,80,.45);
  background: var(--bg-2);
  box-shadow: 0 0 0 1px rgba(18,161,80,.18), 0 12px 32px -14px rgba(18,161,80,.28), var(--shadow);
}
.price-card .price-badge {
  position: absolute;
  top: -12px; left: 26px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.price-card .price-badge.popular { background: var(--green); color: var(--on-green); }
.price-card .price-badge.value { background: var(--green-tint); color: var(--green-deep); border: 1px solid rgba(18,161,80,.35); }
.price-card .tier-name {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price-card .tier-desc {
  font-size: 13.5px;
  color: var(--ink-3);
  margin: 6px 0 0;
  line-height: 1.5;
}
.price-card .price-row {
  display: flex; align-items: baseline;
  gap: 8px;
  margin-top: 20px;
}
.price-card .price {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 64px;
  letter-spacing: -0.05em;
  line-height: 0.9;
  color: var(--ink);
}
.price-card .price-unit { font-size: 15px; color: var(--ink-3); font-weight: 500; }
.price-card .btn { margin-top: 22px; }
.price-card ul.feats {
  list-style: none; padding: 0; margin: 22px 0 0;
  display: flex; flex-direction: column; gap: 2px;
}
.price-card ul.feats li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 14px; color: var(--ink-2);
  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: var(--on-green);
  display: grid; place-items: center; font-size: 12px; font-weight: 700;
  margin-top: 1px;
}
.feats-label {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink-4);
  margin-top: 22px;
}

/* ---------- Testimonials ---------- */
.tcards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (min-width: 680px) { .tcards { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1000px) { .tcards { grid-template-columns: repeat(3, 1fr); } }
.tcard {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.tcard .tstars { color: var(--amber); letter-spacing: 1px; font-size: 13px; }
.tcard p {
  margin: 12px 0 16px;
  color: var(--ink);
  font-size: 14.5px;
  line-height: 1.6;
  flex: 1;
}
.tcard .twho {
  display: flex; align-items: center; gap: 10px;
}
.tcard .tav {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: var(--green-tint);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 13px;
  font-family: var(--font-mono);
  flex-shrink: 0;
}
.tcard .tname { font-weight: 700; font-size: 13.5px; color: var(--ink); }
.tcard .trole { font-size: 12px; color: var(--ink-3); }

/* ---------- FAQ ---------- */
.faq-list { display: flex; flex-direction: column; gap: 10px; margin-top: 32px; }
.faq-item {
  border: 1px solid var(--line);
  background: var(--bg-2);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: border-color .2s ease, background .2s ease;
}
.faq-item.open { background: var(--bg-2); border-color: var(--line-2); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 20px;
  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(--green); color: var(--on-green); border-color: var(--green); }
.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 20px 20px;
  margin: 0;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  max-width: 640px;
}

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--bg-2);
  border: 1px solid var(--line);
  color: var(--ink);
  border-radius: 20px;
  padding: 56px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: auto -10% -40% -10%;
  height: 60%;
  background: radial-gradient(50% 100% at 50% 100%, var(--green-tint), transparent 75%);
  pointer-events: none;
}
.final-cta > * { position: relative; z-index: 1; }
@media (min-width: 768px) { .final-cta { padding: 80px 40px; } }
.final-cta h2 { font-size: clamp(34px, 6vw, 60px); letter-spacing: -0.045em; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  background: var(--bg-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.6fr 1fr 1fr; gap: 32px 48px; } }
.foot-brand-blurb {
  color: var(--ink-3);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 14px 0 0;
  max-width: 280px;
}
.foot-col h5 {
  font-size: 11px;
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-4);
  margin: 0 0 12px;
}
.foot-col a {
  display: block;
  font-size: 14px;
  color: var(--ink-2);
  text-decoration: none;
  padding: 5px 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);
}
.foot-disclaimer {
  margin-top: 24px;
  font-size: 11.5px;
  color: var(--ink-4);
  line-height: 1.6;
}
.foot-disclaimer a { color: var(--ink-3); }

/* ---------- Floating proof toast ---------- */
.proof {
  position: fixed;
  left: 16px;
  bottom: 88px;
  z-index: 60;
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 14px;
  padding: 12px 14px 12px 12px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: 0 12px 32px -10px rgba(16,19,26,0.25), var(--shadow);
  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;
  background-color: var(--bg-4);
  flex-shrink: 0;
  border: 1px solid var(--line-2);
}
.proof .body { line-height: 1.35; color: var(--ink-2); }
.proof .body b { font-weight: 600; color: var(--ink); }
.proof .body .amt { color: var(--green); 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;
  width: 100%;
  max-width: 100vw;
  box-sizing: border-box;
  overflow: hidden;
  z-index: 55;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--line);
  box-shadow: 0 -4px 16px rgba(16,19,26,0.06);
  padding: 12px 14px calc(12px + env(safe-area-inset-bottom));
  display: flex; align-items: center; gap: 10px;
}
.bottom-cta .meta { flex: 1 1 auto; min-width: 0; }
.bottom-cta .meta .price-line {
  display: flex; gap: 6px; align-items: baseline; flex-wrap: nowrap;
}
.bottom-cta .meta .price-line b {
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.bottom-cta .meta .price-line .unit { font-size: 11px; color: var(--ink-3); }
.bottom-cta .meta .sub { font-size: 11px; color: var(--ink-3); margin-top: 0; white-space: nowrap; }
.bottom-cta .btn {
  flex: 0 1 auto;
  min-width: 0;
  white-space: nowrap;
  padding-left: 14px;
  padding-right: 14px;
}
@media (max-width: 380px) {
  .bottom-cta { gap: 8px; padding-left: 10px; padding-right: 10px; }
  .bottom-cta .meta .price-line b { font-size: 19px; }
  .bottom-cta .btn { font-size: 13px; padding: 0 10px; }
}
@media (min-width: 768px) { .bottom-cta { display: none; } }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--line-2); border-radius: 6px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: var(--ink-4); border: 2px solid transparent; background-clip: content-box; }

.no-scroll { overflow: hidden; }

/* ============================================================
   SIGNUP MODAL — dark palette, heavy blur
   ============================================================ */
.signup-backdrop {
  position: fixed; inset: 0;
  z-index: 2000;
  background: rgba(16, 19, 26, 0.45);
  backdrop-filter: blur(10px) saturate(140%);
  -webkit-backdrop-filter: blur(10px) 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(--bg-2);
  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 24px 60px -16px rgba(16, 19, 26, 0.28),
    0 2px 8px rgba(16, 19, 26, 0.08);
  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(--bg-3); color: var(--ink); }
.signup-trust {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-tint);
  border: 1px solid rgba(18,161,80,.3);
  color: var(--green-deep);
  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-deep); }
.signup-title {
  margin: 0 0 6px;
  font-family: var(--font-sans);
  font-weight: 800;
  font-size: 26px;
  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(--bg-3);
  border: 1px solid var(--line-2);
  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(--bg-4); border-color: var(--ink-4); }
.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(--bg);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 13px 14px;
  font-size: 14px;
  font-family: var(--font-sans);
  color: var(--ink);
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.signup-input::placeholder { color: var(--ink-3); }
.signup-input:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px var(--green-tint);
}
.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(--bg-3); }
.signup-submit {
  width: 100%;
  background: var(--green);
  color: var(--on-green);
  border: 1px solid var(--green-strong);
  border-radius: 10px;
  padding: 13px 18px;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.005em;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: transform .12s ease, filter .15s ease, background .15s ease;
  box-shadow:
    0 1px 0 rgba(255,255,255,0.18) inset,
    0 6px 16px -6px rgba(18,161,80,0.45);
  margin-top: 4px;
}
.signup-submit:hover:not(:disabled) { transform: translateY(-1px); background: var(--green-strong); }
.signup-submit:disabled { opacity: 0.45; 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;
}
.signup-stars { letter-spacing: 0.5px; font-size: 12px; color: var(--amber); }
.signup-rating b { color: var(--ink); font-weight: 700; font-size: 12px; }
.signup-sep { opacity: 0.4; color: var(--ink-4); }
.signup-verified {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--ink-3);
  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;
}
.signup-err {
  margin-top: 10px;
  padding: 8px 10px;
  background: var(--red-tint);
  color: var(--red);
  border: 1px solid rgba(216,58,58,.3);
  border-radius: 8px;
  font-size: 12.5px;
  line-height: 1.4;
}
@media (max-width: 480px) {
  .signup-card { padding: 24px 20px 18px; border-radius: 16px; }
  .signup-title { font-size: 23px; }
}

/* ---------- Login page ---------- */
.login-shell { width: 100%; max-width: 420px; }
.login-brand {
  display: flex; align-items: center; gap: 9px; justify-content: center;
  margin-bottom: 24px; font-weight: 800; font-size: 22px;
  letter-spacing: -0.04em; text-decoration: none; color: var(--ink);
}
.login-banner {
  background: var(--green-tint); color: var(--green-deep);
  padding: 10px 14px; border-radius: 12px;
  border: 1px solid rgba(18,161,80,.3);
  margin-bottom: 14px; font-size: 13px; text-align: center;
  font-weight: 600;
}

/* ---------- Error pages ---------- */
.err-num {
  font-family: var(--font-sans);
  font-size: 96px; font-weight: 900;
  letter-spacing: -0.04em;
  margin: 0; line-height: 1;
}
.err-num.green { color: var(--green); }
.err-num.red { color: var(--red); }
.err-title { font-size: 26px; font-weight: 700; margin: 12px 0 8px; color: var(--ink); letter-spacing: -0.02em; }
.err-sub { color: var(--ink-3); margin: 0 0 24px; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal {
  max-width: 760px;
  margin: 0 auto;
  padding: 56px 20px 96px;
}
.legal .back {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--ink-3); text-decoration: none;
  font-size: 13.5px; margin-bottom: 24px;
}
.legal .back:hover { color: var(--ink); }
.legal .legal-eyebrow {
  font-family: var(--font-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green-deep);
}
.legal h1 {
  font-family: var(--font-sans);
  font-size: clamp(32px, 5vw, 46px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.035em;
  margin: 10px 0 6px;
  color: var(--ink);
}
.legal .legal-tagline { color: var(--ink-2); font-size: 15px; margin: 0; }
.legal .updated {
  color: var(--ink-3);
  font-size: 13px;
  margin: 8px 0 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.legal h2 {
  font-size: 20px;
  margin: 32px 0 10px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.legal h3 { font-size: 15.5px; margin: 20px 0 6px; color: var(--ink); font-weight: 700; }
.legal p, .legal li { color: var(--ink-2); font-size: 15px; line-height: 1.7; }
.legal p b, .legal li b { color: var(--ink); }
.legal ul { padding-left: 20px; }
.legal li { margin-bottom: 4px; }
.legal a { color: var(--green-deep); text-underline-offset: 2px; }
.legal .legal-callout {
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-left: 3px solid var(--green);
  border-radius: 10px;
  padding: 16px 18px;
  margin: 20px 0;
}
.legal .legal-callout p { margin: 0; font-size: 14px; }
