/* GSS Analytics — Landing Page
   Light, minimal, brand-aligned. Mirrors gss-web-app-prod/index.html tokens
   so the public landing and the in-app surfaces feel like one product.
   Inter Tight (sans) · Fraunces (serif headings + tnums) · JetBrains Mono (labels).
   ============================================================================ */

/* ============================================================
   TOKENS — Oklch palette, identical to the web app
   ============================================================ */
:root {
  --bg:      oklch(0.985 0.004 85);
  --bg-2:    oklch(0.975 0.005 85);
  --bg-3:    oklch(0.955 0.006 85);
  --ink:     oklch(0.18 0.01 80);
  --ink-2:   oklch(0.35 0.01 80);
  --ink-3:   oklch(0.55 0.01 80);
  --line:    oklch(0.9 0.006 85);
  --line-2:  oklch(0.82 0.008 85);
  --pos:     oklch(0.55 0.13 145);
  --pos-soft: oklch(0.92 0.05 145);
  --neg:     oklch(0.55 0.14 32);
  --neg-soft: oklch(0.93 0.05 32);
  --warn:    oklch(0.72 0.14 75);
  --accent:  oklch(0.55 0.13 145);

  --sans:  'Inter Tight', system-ui, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  --container: 1180px;
  --pad-x: clamp(20px, 4vw, 32px);
}

/* ============================================================
   RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }

html {
  background: var(--bg);
  scroll-behavior: smooth;
}
section[id] { scroll-margin-top: 80px; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-optical-sizing: auto;
}

a { color: var(--ink); text-decoration: none; }
a:hover { color: var(--pos); }
img, svg { display: block; max-width: 100%; }
button { font-family: inherit; color: inherit; }
::selection { background: var(--ink); color: var(--bg); }

:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--bg);
  padding: 10px 14px; border-radius: 6px;
  font-weight: 500; z-index: 100;
}
.skip-link:focus { left: 12px; top: 12px; }

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
}

/* Eyebrow — mono uppercase label, used above every section heading */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
  font-weight: 500;
}

.section-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}
.section-head h2 {
  font-family: var(--serif);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: var(--ink);
  line-height: 1.15;
}
.section-sub {
  font-size: 15px;
  color: var(--ink-2);
  margin: 0;
  line-height: 1.55;
}

.ink-accent { color: var(--pos); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  padding: 10px 18px;
  border-radius: 6px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s ease, color 0.15s ease,
              border-color 0.15s ease, transform 0.12s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.btn-primary:hover {
  background: oklch(0.27 0.01 80);
  color: var(--bg);
  border-color: oklch(0.27 0.01 80);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-2);
}
.btn-ghost:hover {
  background: var(--bg-2);
  color: var(--ink);
  border-color: var(--ink-3);
}
.btn-block { width: 100%; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
  position: sticky; top: 0; z-index: 30;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  backdrop-filter: saturate(180%) blur(8px);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 64px;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--ink);
  font-weight: 500;
}
.brand-logo {
  width: 32px; height: 32px;
  display: block;
  border-radius: 7px;
  /* Subtle hairline so the rounded logo sits crisply on the off-white
     topbar bg even when its own padding is minimal. */
  box-shadow: 0 0 0 1px oklch(0.9 0.006 85);
}
.brand-mark {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 18px;
  letter-spacing: -0.015em;
  color: var(--ink);
}

.nav {
  display: flex; align-items: center; gap: 4px;
}
.nav-link, .nav-lang, .nav-login {
  font-size: 13px;
  color: var(--ink-2);
  padding: 8px 12px;
  border-radius: 6px;
  transition: color 0.12s, background 0.12s;
}
.nav-link:hover, .nav-lang:hover, .nav-login:hover {
  color: var(--ink);
  background: var(--bg-2);
}
.nav-lang {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.08em;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--ink-2);
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 6px;
  padding: 4px 8px;
  margin: 0 6px;
}
.nav-lang span { color: var(--ink-3); }
.nav-lang span.cur { color: var(--ink); }
.nav-cta {
  background: var(--ink);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  padding: 9px 16px;
  border-radius: 6px;
  margin-left: 6px;
  border: 1px solid var(--ink);
  transition: background 0.15s, border-color 0.15s;
}
.nav-cta:hover {
  background: oklch(0.27 0.01 80);
  color: var(--bg);
  border-color: oklch(0.27 0.01 80);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.hero-copy h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.032em;
  margin: 8px 0 18px;
  color: var(--ink);
}
.lede {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 28px;
  max-width: 540px;
}
.cta-row {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 28px;
}
.cta-row .btn { font-size: 14px; padding: 12px 20px; }
.trust-strip {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-wrap: wrap; gap: 6px 22px;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.trust-strip li {
  display: inline-flex; align-items: center; gap: 7px;
}
.trust-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--pos);
  display: inline-block;
}

.hero-visual {
  position: relative;
}
.hero-card {
  width: 100%; height: auto;
  filter: drop-shadow(0 18px 40px oklch(0.18 0.01 80 / 0.06));
  border-radius: 12px;
}

/* ============================================================
   STATS STRIP
   ============================================================ */
.stats-strip {
  padding: 36px 0;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  text-align: left;
}
.stat {
  padding: 4px 0;
}
.stat-num {
  font-family: var(--serif);
  font-feature-settings: 'tnum';
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
}
.stat-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-top: 6px;
}
.stats-disclaimer {
  margin: 18px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 11px;
  color: var(--ink-3);
  font-family: var(--mono);
  letter-spacing: 0.02em;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.feature-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 22px 22px 18px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
  transition: border-color 0.15s, transform 0.15s, box-shadow 0.15s;
}
.feature-card:hover {
  border-color: var(--line-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px -12px oklch(0.18 0.01 80 / 0.12);
}
.feature-icon {
  width: 22px; height: 22px;
  color: var(--ink-2);
  flex-shrink: 0;
}
.feature-card h3 {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 2px 0 0;
  color: var(--ink);
  line-height: 1.25;
}
.feature-card p {
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0;
  flex: 1;
}
.tier-pill {
  align-self: flex-start;
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink-3);
  margin-top: auto;
}
.tier-pill.tier-pro {
  background: var(--bg-2);
  border-color: var(--ink);
  color: var(--ink);
}
.tier-pill.tier-expert {
  background: var(--pos-soft);
  border-color: var(--pos);
  color: var(--pos);
}

/* ============================================================
   WHY GSS (trust strip-down)
   ============================================================ */
.why-gss {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.trust-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative;
}
.trust-num {
  font-family: var(--serif);
  font-feature-settings: 'tnum';
  font-size: 32px;
  font-weight: 500;
  color: var(--pos);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-card h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.trust-card p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.trust-card a { color: var(--pos); border-bottom: 1px solid currentColor; }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.steps {
  list-style: none; padding: 0; margin: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.step {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 24px;
  display: flex; flex-direction: column; gap: 10px;
}
.step-num {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--pos);
  font-weight: 600;
}
.step-num::before { content: 'Step '; }
.step h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin: 0;
  color: var(--ink);
}
.step p {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0;
}
.how-cta {
  margin-top: 36px;
  text-align: center;
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
}
.plan-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 28px 24px 22px;
  display: flex; flex-direction: column;
  position: relative;
}
.plan-card--featured {
  border-color: var(--ink);
  box-shadow: 0 12px 32px -16px oklch(0.18 0.01 80 / 0.18);
  transform: translateY(-4px);
}
.plan-badge {
  position: absolute; top: -11px; left: 50%;
  transform: translateX(-50%);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 999px;
  white-space: nowrap;
}
.plan-head { margin-bottom: 18px; }
.plan-name {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 10px;
}
.plan-price {
  display: flex; align-items: baseline; gap: 6px;
  margin-bottom: 8px;
}
.plan-amount {
  font-family: var(--serif);
  font-feature-settings: 'tnum';
  font-size: 40px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.025em;
  line-height: 1;
}
.plan-period {
  font-size: 13px;
  color: var(--ink-3);
}
.plan-blurb {
  font-size: 13px;
  color: var(--ink-2);
  margin: 6px 0 0;
  line-height: 1.5;
}
.plan-feats {
  list-style: none; padding: 0; margin: 0 0 18px;
  display: flex; flex-direction: column; gap: 8px;
  flex: 1;
}
.plan-feats li {
  font-size: 13px;
  line-height: 1.5;
  color: var(--ink-2);
  position: relative;
  padding-left: 18px;
}
.plan-feats li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 8px; height: 4px;
  border-left: 1.5px solid var(--pos);
  border-bottom: 1.5px solid var(--pos);
  transform: rotate(-45deg);
}
.plan-feats li strong {
  color: var(--ink);
  font-weight: 600;
}
.plan-foot {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.04em;
  color: var(--ink-3);
  margin: 10px 0 0;
  text-align: center;
}
.pricing-note {
  margin: 28px auto 0;
  max-width: 640px;
  text-align: center;
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.6;
}

/* ─── Pricing v2 — mirrors WebApp Billing view ─────────────────────────── */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 3px;
  gap: 2px;
  margin-top: 14px;
}
.pricing-toggle button {
  background: transparent;
  border: 0;
  padding: 7px 16px;
  border-radius: 999px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 500;
  transition: background 0.15s ease, color 0.15s ease;
}
.pricing-toggle button:not(.is-active):hover {
  background: var(--bg-2);
  color: var(--ink);
}
.pricing-toggle button.is-active {
  background: var(--ink);
  color: var(--bg);
}

/* ─── Founding Member banner ──────────────────────────────────────────── */
.fm-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, oklch(0.97 0.04 80) 0%, oklch(0.93 0.10 75) 100%);
  border: 1px solid oklch(0.80 0.12 70);
  border-radius: 12px;
  padding: 18px 22px;
  margin: 0 0 24px;
}
.fm-accent-bar {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, oklch(0.55 0.18 60), oklch(0.65 0.22 50));
}
.fm-banner-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.fm-banner-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.fm-banner-label {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
  color: oklch(0.38 0.18 55);
  padding: 3px 8px;
  border-radius: 4px;
  background: oklch(0.99 0.04 75);
  border: 1px solid oklch(0.80 0.12 70);
}
.fm-banner-cycle {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--ink-3);
  padding: 3px 8px;
  border-radius: 4px;
  background: var(--bg);
  border: 1px solid var(--line-2);
}
.fm-banner-headline {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 6px;
  line-height: 1.2;
}
.fm-banner-blurb {
  font-size: 13px;
  color: var(--ink-2);
  margin: 0 0 12px;
  line-height: 1.5;
}
.fm-banner-prices {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.fm-price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 6px;
  background: var(--bg);
  border: 1px solid oklch(0.85 0.10 75);
}
.fm-price-tier {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
}
.fm-price-amount {
  font-family: var(--mono);
  font-size: 16px;
  font-weight: 700;
  color: oklch(0.38 0.18 55);
}
.fm-price-period {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
}
.fm-price-save {
  font-family: var(--mono);
  font-size: 9px;
  font-weight: 700;
  padding: 1px 5px;
  border-radius: 3px;
  background: var(--pos-soft);
  color: var(--pos);
}
.fm-banner-perks {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.fm-perk {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: oklch(0.96 0.05 75);
  color: oklch(0.34 0.16 55);
  font-size: 10.5px;
  font-weight: 500;
  border: 1px solid oklch(0.88 0.08 75);
  white-space: nowrap;
}
.fm-perk-check {
  color: oklch(0.45 0.18 55);
  font-weight: 700;
}
.fm-banner-cta {
  display: inline-block;
  padding: 12px 22px;
  background: oklch(0.40 0.18 55);
  color: white;
  border: 1px solid oklch(0.40 0.18 55);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.fm-banner-cta:hover {
  background: oklch(0.34 0.20 55);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -8px oklch(0.40 0.18 55 / 0.4);
}
@media (max-width: 720px) {
  .fm-banner-grid { grid-template-columns: 1fr; }
  .fm-banner-right { text-align: center; }
}
.pricing-toggle-save {
  color: var(--pos);
  font-size: 10px;
  margin-left: 4px;
  font-weight: 600;
}
.plan-card-v2 .plan-name {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  font-weight: 500;
  margin: 0 0 6px;
}
.plan-card-v2 .plan-blurb {
  font-size: 12.5px;
  color: var(--ink-2);
  margin: 0 0 16px;
  line-height: 1.5;
  min-height: 36px;
}
.plan-card-v2 .plan-price {
  margin-bottom: 4px;
}
.plan-card-v2 .plan-price-strike {
  font-family: var(--mono);
  font-size: 12px;
  color: var(--ink-3);
  text-decoration: line-through;
  margin-left: 6px;
}
.plan-card-v2 .plan-vat {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.plan-card-v2 .plan-feats {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.plan-card-v2 .plan-feats li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  line-height: 1.45;
  color: var(--ink-2);
  padding: 0;
  position: static;
}
.plan-card-v2 .plan-feats li::before { content: none; }
.plan-feat-icon {
  color: var(--pos);
  width: 14px;
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.plan-card-v2 .plan-feats li.plan-miss {
  color: var(--ink-3);
}
.plan-card-v2 .plan-feats li.plan-miss .plan-feat-text {
  text-decoration: line-through;
}
.plan-card-v2 .plan-feats li.plan-miss .plan-feat-icon {
  color: var(--ink-3);
}
.plan-card-v2 .plan-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  transform: none;
  background: var(--ink);
  color: var(--bg);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}
.pricing-grid[data-cycle="monthly"] [data-yearly-only] { display: none; }
.pricing-grid[data-cycle="yearly"]  [data-monthly-only] { display: none; }
.plan-fm-badge {
  display: inline-block;
  margin-left: 8px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 3px;
  background: oklch(0.96 0.10 75);
  color: oklch(0.38 0.18 55);
  border: 1px solid oklch(0.85 0.10 75);
  text-transform: uppercase;
  vertical-align: middle;
}
.pricing-trust-row {
  margin: 20px auto 0;
  padding: 10px 16px;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  font-size: 11px;
  color: var(--ink-2);
}
.pricing-trust-row span.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pricing-trust-row .trust-check {
  color: var(--pos);
  font-family: var(--mono);
  font-weight: 700;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
}
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex; flex-direction: column; gap: 8px;
}
.faq-item {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  transition: border-color 0.15s;
}
.faq-item[open] { border-color: var(--line-2); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 20px;
  font-family: var(--sans);
  font-size: 14.5px;
  font-weight: 500;
  color: var(--ink);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  font-family: var(--mono);
  font-size: 18px;
  color: var(--ink-3);
  transition: transform 0.15s;
  flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; }
.faq-item p {
  margin: 0;
  padding: 0 20px 18px;
  font-size: 13.5px;
  line-height: 1.65;
  color: var(--ink-2);
}
.faq-item p a { color: var(--pos); border-bottom: 1px solid currentColor; }
.faq-item p strong { color: var(--ink); font-weight: 600; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 32px;
  padding: 48px 0 36px;
}
.footer-brand .brand { margin-bottom: 12px; }
.footer-blurb {
  font-size: 12.5px;
  color: var(--ink-3);
  margin: 0;
  line-height: 1.55;
  max-width: 260px;
}
.footer-col h4 {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  margin: 0 0 14px;
}
.footer-col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 8px;
}
.footer-col ul a {
  color: var(--ink-2);
  font-size: 13px;
}
.footer-col ul a:hover { color: var(--ink); }
.footer-col ul li {
  font-size: 12.5px;
  color: var(--ink-3);
  line-height: 1.6;
}

.compliance-bar {
  border-top: 1px solid var(--line);
  background: var(--bg-2);
  padding: 20px 0;
}
.compliance-inner {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.compliance-main {
  display: flex; align-items: center; gap: 14px;
  flex: 1 1 auto; min-width: 0; flex-wrap: wrap;
}
.compliance-tag-row {
  display: flex;
  justify-content: center;
  padding: 14px 0 0;
  margin-top: 14px;
  border-top: 1px solid var(--line);
}
.compliance-tag {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--bg);
  border: 1px solid var(--accent);
  padding: 6px 14px;
  border-radius: 999px;
  flex-shrink: 0;
}
.age-pill {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  background: var(--ink);
  color: var(--bg);
  padding: 4px 9px;
  border-radius: 4px;
  flex-shrink: 0;
}
.compliance-bar p {
  margin: 0;
  font-size: 11.5px;
  color: var(--ink-2);
  line-height: 1.55;
  flex: 1;
  min-width: 0;
}
.compliance-bar p a {
  color: var(--ink-2);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
}
.compliance-bar p a:hover {
  color: var(--ink);
  text-decoration-color: var(--ink);
}
.compliance-bar p strong { color: var(--ink); font-weight: 600; }

.copyright {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 16px 0;
}
.copyright p {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.02em;
  color: var(--ink-3);
  margin: 0;
  text-align: center;
}

/* ============================================================
   COOKIE CONSENT
   ============================================================ */
.cc-overlay {
  position: fixed;
  inset: auto 0 20px 0;
  display: flex; justify-content: center;
  padding: 0 16px;
  z-index: 1000;
  pointer-events: none;
}
.cc-card {
  pointer-events: auto;
  background: var(--bg);
  border: 1px solid var(--line-2);
  border-radius: 12px;
  padding: 18px 20px;
  max-width: 460px;
  box-shadow: 0 16px 40px -12px oklch(0.18 0.01 80 / 0.18);
  font-size: 13px;
  color: var(--ink-2);
  line-height: 1.55;
}
.cc-card-wide { max-width: 680px; }
.cc-cat { display: block; margin-top: 8px; }
.cc-actions {
  display: flex; gap: 8px; flex-wrap: wrap;
  margin-top: 14px;
}
.cc-btn {
  font-size: 12.5px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
  border: 1px solid var(--line-2);
  background: transparent;
  color: var(--ink-2);
  cursor: pointer;
  transition: background 0.12s, color 0.12s, border-color 0.12s;
}
.cc-btn:hover { color: var(--ink); border-color: var(--ink-3); }
.cc-btn-primary {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.cc-btn-primary:hover { background: oklch(0.27 0.01 80); color: var(--bg); }
.cc-btn-ghost { /* default ghost matches .cc-btn */ }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .hero { padding: 56px 0 44px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .hero-copy h1 { font-size: clamp(34px, 7vw, 48px); }
  .feature-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pricing-grid { grid-template-columns: 1fr; gap: 14px; }
  .plan-card--featured { transform: none; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px 24px;
    padding: 36px 0 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .stats-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; }
  .trust-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 14px; }
  .topbar-inner { height: 56px; gap: 10px; }
  .nav { gap: 0; }
  .nav-link { display: none; }
  .nav-lang { margin: 0 4px; padding: 4px 8px; }
  .nav-login { padding: 6px 10px; font-size: 12px; }
  .nav-cta { display: none; }
  .hero { padding: 44px 0 36px; }
  .hero-grid { gap: 28px; }
  .hero-copy h1 { font-size: clamp(30px, 8.5vw, 40px); }
  .lede { font-size: 15px; line-height: 1.55; }
  .cta-row { gap: 8px; }
  .cta-row .btn { flex: 1 1 100%; width: 100%; padding: 13px 18px; }
  .features, .why-gss, .how, .pricing, .faq { padding: 56px 0; }
  .section-head { margin-bottom: 28px; }
  .section-head h2 { font-size: clamp(24px, 6.5vw, 32px); }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { padding: 22px 20px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    padding: 40px 0 28px;
  }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-blurb { max-width: 100%; }
  .compliance-bar { padding: 16px 0; }
  .compliance-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .compliance-main { gap: 12px; align-items: flex-start; }
  .compliance-tag { font-size: 10px; padding: 5px 12px; }
  .copyright { padding: 14px 0; }
  .copyright p { font-size: 10.5px; }
  .age-pill { align-self: flex-start; }
  .trust-strip { gap: 6px 14px; font-size: 10px; }
  .faq-item summary { padding: 14px 16px; min-height: 48px; }
  .faq-item p { padding: 0 16px 14px; }
}

/* ============================================================
   STICKY MOBILE CTA — floating pill, ≤ 640 px, scroll-triggered.
   ============================================================ */
.mobile-cta-bar { display: none; }
@media (max-width: 640px) {
  .mobile-cta-bar {
    display: block;
    position: fixed;
    left: 50%;
    bottom: calc(14px + env(safe-area-inset-bottom));
    transform: translateX(-50%) translateY(16px);
    z-index: 40;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.22s cubic-bezier(.2,.7,.3,1);
  }
  .mobile-cta-bar.is-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }
  .mobile-cta-bar .btn {
    padding: 11px 22px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 999px;
    white-space: nowrap;
    box-shadow:
      0 10px 28px -12px oklch(0.18 0.01 80 / 0.4),
      0 2px 6px -1px oklch(0.18 0.01 80 / 0.15);
  }
}

/* ============================================================
   RESPONSIVE: ≤ 480 px — very narrow phones (iPhone SE, etc.)
   ============================================================ */
@media (max-width: 480px) {
  .topbar-inner { height: 52px; gap: 8px; }
  .brand-name { display: none; }
  .brand-logo { width: 28px; height: 28px; }
  .nav-lang { margin: 0 2px; padding: 3px 6px; font-size: 9.5px; gap: 3px; }
  .nav-login { padding: 5px 9px; font-size: 11.5px; }

  .hero { padding: 28px 0 32px; }
  .hero-grid { gap: 22px; }
  .hero-copy h1 { font-size: clamp(28px, 9vw, 36px); margin: 4px 0 14px; }
  .lede { font-size: 14px; margin-bottom: 22px; }
  .cta-row { flex-direction: column; gap: 8px; }
  .cta-row .btn { width: 100%; padding: 14px 18px; font-size: 14px; }

  .features, .why-gss, .how, .pricing, .faq,
  .vs-tipster, .screens, .league-strip { padding: 44px 0; }
  .section-head { margin-bottom: 22px; }
  .section-head h2 { font-size: clamp(22px, 7.5vw, 28px); letter-spacing: -0.02em; }
  .section-sub { font-size: 14px; }
  .eyebrow { font-size: 9.5px; letter-spacing: 0.12em; }

  .feature-card { padding: 18px 16px; }
  .feature-card h3 { font-size: 16px; }
  .feature-card p { font-size: 13px; line-height: 1.55; }
  .feature-icon { width: 22px; height: 22px; }

  .screen-mock { padding: 14px; font-size: 12px; }
  .mock-fixture { font-size: 18px; gap: 8px; }
  .mock-crest { width: 22px; height: 22px; }
  .mock-pick-outcome { font-size: 17px; }
  .mock-pick-odds { font-size: 20px; }
  figcaption { font-size: 12.5px; }

  .league-strip-scroll {
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scroll-behavior: smooth;
  }
  .league-strip-track {
    gap: 22px;
    animation: none;
  }
  .league-strip-track[aria-hidden="true"] { display: none; }
  .league-strip-track img {
    height: 24px;
    scroll-snap-align: start;
  }

  .live-ticker-row { font-size: 11px; gap: 6px 10px; justify-content: center; }

  .plan-card-v2 { padding: 22px 18px; }
  .plan-card-v2 .plan-amount { font-size: 30px; }
  .plan-card-v2 .plan-name { font-size: 19px; }
  .plan-card-v2 .plan-blurb { font-size: 12px; min-height: 0; }
  .plan-feats li { font-size: 12.5px; }

  .fm-banner { padding: 22px 18px; }
  .fm-banner-headline { font-size: 22px; }
  .fm-banner-blurb { font-size: 13px; }
  .fm-banner-prices { gap: 8px; flex-wrap: wrap; }
  .fm-price-chip { font-size: 11px; padding: 5px 10px; }
  .fm-perk { font-size: 11px; }
  .fm-banner-cta { width: 100%; text-align: center; }

  .pricing-trust-row { gap: 10px 14px; justify-content: center; }
  .pricing-trust-row .trust-item { font-size: 11px; }

  .faq-item summary { font-size: 14px; min-height: 48px; }
  .faq-item p { font-size: 13.5px; line-height: 1.6; }

  .site-footer { padding-top: 36px; }
  .footer-col h4 { font-size: 12px; margin: 0 0 10px; }
  .footer-col li { font-size: 13px; padding: 3px 0; }
  .footer-blurb { font-size: 12.5px; max-width: 100%; }
  .compliance-bar p { font-size: 11.5px; line-height: 1.55; }
  .copyright p { font-size: 11px; }
}

/* ============================================================
   LEAGUE-LOGO STRIP — directly under hero, before live ticker
   ============================================================ */
.league-strip {
  padding: 28px 0 28px;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
}
.league-strip .eyebrow {
  text-align: center;
  margin: 0 0 16px;
}
.league-strip-scroll {
  display: flex;
  overflow: hidden;
  scrollbar-width: none;
  /* Soft edge-fade so logos drift off-screen instead of cutting hard */
  mask-image: linear-gradient(90deg,
    transparent 0,
    #000 24px,
    #000 calc(100% - 24px),
    transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0,
    #000 24px,
    #000 calc(100% - 24px),
    transparent 100%);
}
.league-strip-scroll::-webkit-scrollbar { display: none; }
.league-strip-track {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-shrink: 0;
  padding: 4px 4px;
  animation: league-strip-marquee 50s linear infinite;
}
.league-strip-scroll:hover .league-strip-track,
.league-strip-scroll:focus-within .league-strip-track {
  animation-play-state: paused;
}
@keyframes league-strip-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}
@media (prefers-reduced-motion: reduce) {
  .league-strip-track { animation: none; }
}
.league-strip-scroll img,
.league-strip-track img {
  height: 32px;
  width: auto;
  flex: 0 0 auto;
  filter: grayscale(100%);
  opacity: 0.62;
  transition: filter 0.18s ease, opacity 0.18s ease;
  user-select: none;
}
.league-strip-scroll img:hover,
.league-strip-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}
.league-strip-more {
  flex: 0 0 auto;
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

/* ============================================================
   LIVE TICKER — replaces the old static stats strip
   ============================================================ */
.live-ticker {
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
}
.live-ticker[hidden] { display: none; }
.live-ticker-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 14px 0;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-2);
}
.live-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--pos);
  position: relative;
  flex-shrink: 0;
}
.live-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--pos);
  opacity: 0.35;
  animation: live-pulse 1.6s ease-in-out infinite;
}
@keyframes live-pulse {
  0%, 100% { transform: scale(1);   opacity: 0.35; }
  50%      { transform: scale(1.7); opacity: 0;    }
}
.live-label {
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--pos);
  margin-right: 4px;
}
.live-stat strong {
  color: var(--ink);
  font-weight: 600;
  margin-right: 4px;
}
.live-sep { color: var(--ink-3); }
.live-age {
  margin-left: auto;
  color: var(--ink-3);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  font-style: normal;
  white-space: nowrap;
}

/* ============================================================
   APP-SCREENSHOT TOUR
   ============================================================ */
.screens {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.screens-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.screen-card {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.screen-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 10px;
  transition: transform 0.18s ease;
}
.screen-card-link .screen-mock {
  transition: box-shadow 0.18s ease, border-color 0.18s ease;
}
.screen-card-link:hover {
  transform: translateY(-2px);
}
.screen-card-link:hover .screen-mock {
  box-shadow: 0 14px 32px -16px oklch(0.18 0.01 80 / 0.32);
  border-color: var(--line-2);
}
.screen-card-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}
.screen-card-link:hover ~ figcaption .screen-card-cta,
.screen-card:has(.screen-card-link:hover) figcaption .screen-card-cta {
  color: var(--accent);
}
.screen-card-cta {
  display: inline-block;
  margin-left: 6px;
  color: var(--ink-2);
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.02em;
  transition: color 0.15s ease;
}
.screen-img-wrap {
  position: relative;
  /* 16/9 fits the actual screenshot aspect ratios (~2.0–2.5:1) closer
     than the previous 16/10, reducing letterboxing. */
  aspect-ratio: 16 / 9;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px -16px oklch(0.18 0.01 80 / 0.18);
}
.screen-img {
  display: block;
  width: 100%;
  height: 100%;
  /* contain (not cover) so the entire UI is visible. The off-white
     `--bg-2` letterbox is barely visible against the screenshot's own
     off-white chrome, so it reads as one continuous card. */
  object-fit: contain;
  object-position: center;
  background: var(--bg);
}
.screen-img.screen-img-missing {
  display: none;
}
/* Placeholder is the "until you drop a PNG" fallback. Visible by default;
   hidden once a real image loads successfully (img doesn't get the
   .screen-img-missing class). */
.screen-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px;
  text-align: center;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease;
}
.screen-img-wrap:has(.screen-img-missing) .screen-placeholder {
  opacity: 1;
}
.screen-placeholder-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pos);
  font-weight: 600;
}
.screen-placeholder-body {
  font-size: 12px;
  color: var(--ink-3);
  line-height: 1.55;
  max-width: 220px;
}
.screen-card figcaption {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-3);
  line-height: 1.45;
}

/* ============================================================
   SCREEN MOCKUPS — HTML/CSS cards (no PNGs). Built so the layout
   reads like the real product UI but the actual picks are masked
   with ●●● placeholders, leaving only the proof numbers (ROI, edge,
   sample size) visible to public visitors.
   ============================================================ */
.screen-mock {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 8px 24px -16px oklch(0.18 0.01 80 / 0.18);
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  min-height: 0;
  /* The cards naturally vary in height because the verified-systems
     table has 5 rows; align tops so the figcaption lines stay even. */
  align-self: stretch;
}
.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.mock-meta {
  font-size: 12px;
}
.mock-mono {
  font-family: var(--mono);
  font-feature-settings: 'tnum';
  font-size: 10.5px;
  letter-spacing: 0.08em;
}
.mock-dim    { color: var(--ink-3); }
.mock-pos    { color: var(--pos); font-weight: 600; }
.mock-divider {
  height: 1px;
  background: var(--line);
  margin: 2px 0;
}
.mock-divider-thin {
  background: var(--line);
  opacity: 0.6;
  margin-top: 6px;
}
.mock-sub {
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: none;
}
.mock-pill {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 4px;
  border: 1px solid var(--line-2);
  background: var(--bg-2);
  color: var(--ink-2);
  white-space: nowrap;
}
.mock-pill-league {
  border-color: var(--line);
  background: var(--bg-2);
}
.mock-pill-league-sm {
  font-size: 9px;
  padding: 2px 6px;
  letter-spacing: 0.1em;
}
.mock-pill-conf {
  border: 1px solid var(--line-2);
  color: var(--ink-3);
  text-transform: lowercase;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.mock-fixture {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.mock-crest {
  width: 28px; height: 28px;
  display: block;
  flex-shrink: 0;
  /* No background tint — the badges already have transparent PNG cutouts. */
}
.mock-team {
  /* Inline serif team name pieces; min-width so long names can wrap if needed. */
  min-width: 0;
}
.mock-vs {
  color: var(--ink-3);
  margin: 0 4px;
  font-weight: 400;
}
/* Masked-pick segments — semi-transparent dot chain that reads as
   "subscribers see this part". Used in both Match Lab + Value Bets. */
.mock-mask {
  color: var(--ink-3);
  letter-spacing: 0.18em;
  font-weight: 600;
  user-select: none;
}

/* ─── Match Lab mockup — AI Pick card sub-block ─── */
.mock-pick {
  border: 1px solid var(--pos);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--pos-soft);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-pick-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mock-pick-label {
  color: var(--pos);
  font-size: 10px;
  letter-spacing: 0.14em;
  font-weight: 700;
}
.mock-pick-body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
}
.mock-pick-left { min-width: 0; }
.mock-pick-outcome {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--pos);
  line-height: 1.1;
  margin-top: 2px;
}
.mock-pick-right { text-align: right; }
.mock-pick-odds {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  line-height: 1;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.mock-pick-stats,
.mock-pick-probs {
  display: flex;
  gap: 14px;
  font-family: var(--mono);
  font-feature-settings: 'tnum';
  font-size: 11px;
  color: var(--ink-2);
}
.mock-pick-probs strong { color: var(--ink); font-weight: 600; }

/* ─── Verified Systems mockup — table ─── */
.mock-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
}
.mock-table th {
  font-family: var(--mono);
  font-size: 9.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  text-align: left;
  padding: 6px 4px;
  border-bottom: 1px solid var(--line);
}
.mock-table td {
  padding: 7px 4px;
  border-bottom: 1px solid var(--line);
  color: var(--ink-2);
  font-weight: 500;
}
.mock-table tr:last-child td { border-bottom: 0; }
.mock-cell-right { text-align: right; }

/* ─── Value Bets mockup — sanitised list ─── */
.mock-vb-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mock-vb-list li {
  display: grid;
  grid-template-columns: max-content 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--bg-2);
  font-size: 12px;
}
.mock-vb-list .mock-pos { font-size: 12.5px; }

/* Responsive — on narrower viewports the cards stack one-col anyway,
   shrink the inner type so the cards still feel proportionate. */
@media (max-width: 640px) {
  .screen-mock { padding: 14px; font-size: 12.5px; }
  .mock-fixture { font-size: 19px; }
  .mock-pick-outcome { font-size: 18px; }
  .mock-pick-odds { font-size: 22px; }
  .mock-table { font-size: 11.5px; }
}

/* ============================================================
   GSS vs TIPSTER COMPARISON TABLE
   ============================================================ */
.vs-tipster {
  padding: 72px 0;
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.vs-table-wrap {
  max-width: 880px;
  margin: 0 auto;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
}
.vs-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.vs-table th,
.vs-table td {
  padding: 16px 22px;
  text-align: left;
  vertical-align: top;
  border-top: 1px solid var(--line);
}
.vs-table thead th {
  background: var(--bg-2);
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 600;
  border-top: 0;
}
.vs-table thead th.vs-col-gss {
  color: var(--pos);
}
.vs-table tbody th[scope="row"] {
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-3);
  width: 28%;
  letter-spacing: 0;
  text-transform: none;
}
.vs-table tbody td {
  color: var(--ink-2);
  line-height: 1.55;
}
.vs-table .vs-cell-gss {
  background: var(--pos-soft);
  color: var(--ink);
  font-weight: 500;
  position: relative;
}
.vs-table .vs-cell-gss::before {
  content: '✓';
  color: var(--pos);
  font-weight: 700;
  margin-right: 8px;
  font-family: var(--sans);
}
.vs-table .vs-cell-them {
  color: var(--ink-3);
}
.vs-table .vs-cell-them::before {
  content: '×';
  color: var(--ink-3);
  font-weight: 700;
  margin-right: 8px;
  font-family: var(--sans);
}

/* ============================================================
   RESPONSIVE: ≤ 960 px → screens 1-col, live ticker wraps to 2-row
   ============================================================ */
@media (max-width: 960px) {
  .screens-grid { grid-template-columns: 1fr; gap: 20px; }
  .screen-img-wrap { aspect-ratio: 16 / 9; }
  .live-age { margin-left: 0; }
  .live-ticker-row { padding: 12px 0; }
}

/* ============================================================
   RESPONSIVE: ≤ 640 px — table → card stack
   ============================================================ */
@media (max-width: 640px) {
  .league-strip { padding: 22px 0; }
  .league-strip-track { gap: 26px; }
  .league-strip-track img { height: 26px; }

  .live-ticker-row { gap: 8px 12px; font-size: 11.5px; }
  .live-sep { display: none; }
  .live-label { width: 100%; text-align: center; margin: 0; }
  .live-age   { width: 100%; text-align: center; }

  .screens { padding: 56px 0; }

  .vs-tipster { padding: 56px 0; }
  .vs-table-wrap { border: 0; border-radius: 0; }
  .vs-table thead { display: none; }
  .vs-table tbody, .vs-table tr, .vs-table th, .vs-table td { display: block; }
  .vs-table tbody tr {
    border: 1px solid var(--line);
    border-radius: 10px;
    margin-bottom: 12px;
    background: var(--bg);
  }
  .vs-table tbody th[scope="row"] {
    width: auto;
    padding: 12px 16px 4px;
    font-family: var(--mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ink-3);
    border-top: 0;
  }
  .vs-table tbody td {
    padding: 8px 16px;
    border-top: 1px dashed var(--line);
  }
  .vs-table tbody td.vs-cell-gss {
    background: var(--pos-soft);
    border-top: 1px dashed var(--pos);
  }
  .vs-table tbody td.vs-cell-gss::before,
  .vs-table tbody td.vs-cell-them::before { margin-right: 6px; }
  .vs-table tbody td.vs-cell-gss::after {
    content: ' · GSS';
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--pos);
    margin-left: 6px;
  }
  .vs-table tbody td.vs-cell-them::after {
    content: ' · Tipster';
    font-family: var(--mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    color: var(--ink-3);
    margin-left: 6px;
  }
}

    html,body { margin: 0; padding: 0;
      background: oklch(0.985 0.004 85); color: oklch(0.18 0.01 80);
      font-family: 'Inter Tight',system-ui,sans-serif;
      font-feature-settings: 'ss01','cv11'; -webkit-font-smoothing: antialiased; }
    body { font-size: 14px; }
    a { color: oklch(0.18 0.01 80); }

/* ============================================================
   BLOG — index listing + single-post layout
   Inherits topbar/footer/typography tokens from above. Article
   body uses 16px Inter Tight + 1.75 line-height for long-form
   reading (vs 14px / browser-default on the landing surface).
   ============================================================ */
.blog-wrap { max-width: 880px; margin: 0 auto; padding: 56px 24px 64px; }
.blog-head { margin-bottom: 40px; text-align: left; }
.blog-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 10px;
}
.blog-title {
  font-family: var(--serif);
  font-size: clamp(32px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin: 0;
  color: var(--ink);
}
.blog-sub {
  font-size: 16px;
  color: var(--ink-2);
  margin: 14px 0 0;
  max-width: 620px;
  line-height: 1.6;
}

/* INDEX — post card list */
.blog-list { display: flex; flex-direction: column; gap: 0; margin: 0; padding: 0; list-style: none; }
.blog-card { padding: 26px 0; border-top: 1px solid var(--line); }
.blog-card:first-child { border-top: 0; padding-top: 0; }
.blog-card a { color: inherit; display: block; }
.blog-card a:hover .blog-card-title { color: var(--pos); }
.blog-card-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 8px;
}
.blog-card-meta .sep { margin: 0 8px; color: var(--line-2); }
.blog-card-title {
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 0 0 10px;
  color: var(--ink);
  transition: color 0.12s;
}
.blog-card-excerpt {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-2);
  margin: 0 0 12px;
  max-width: 640px;
}
.blog-card-link {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pos);
  font-weight: 600;
}
.blog-empty { padding: 32px 0; color: var(--ink-3); font-style: italic; }

/* POST — single article */
.post-wrap { max-width: 720px; margin: 0 auto; padding: 48px 24px 80px; }
.post-breadcrumb {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 16px;
}
.post-breadcrumb a { color: var(--ink-3); }
.post-breadcrumb a:hover { color: var(--ink); }
.post-breadcrumb .sep { margin: 0 8px; }
.post-title {
  font-family: var(--serif);
  font-size: clamp(30px, 4.5vw, 44px);
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.12;
  margin: 0 0 18px;
  color: var(--ink);
}
.post-lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--ink-2);
  margin: 0 0 28px;
  font-weight: 400;
}
.post-meta {
  font-family: var(--mono);
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-3);
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin: 0 0 36px;
}
.post-meta .sep { color: var(--line-2); }
.post-body {
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink);
}
.post-body p { margin: 0 0 20px; color: var(--ink-2); }
.post-body p strong { color: var(--ink); font-weight: 600; }
.post-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  line-height: 1.2;
  margin: 44px 0 14px;
  color: var(--ink);
}
.post-body h3 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 32px 0 10px;
  color: var(--ink);
}
.post-body ul, .post-body ol {
  margin: 0 0 22px;
  padding-left: 22px;
  color: var(--ink-2);
}
.post-body li { margin: 0 0 8px; line-height: 1.65; }
.post-body a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--line-2);
  text-underline-offset: 3px;
}
.post-body a:hover { text-decoration-color: var(--ink); }
.post-body blockquote {
  margin: 24px 0;
  padding: 4px 0 4px 18px;
  border-left: 3px solid var(--pos);
  color: var(--ink-2);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.55;
}
.post-body code {
  font-family: var(--mono);
  font-size: 13px;
  background: var(--bg-2);
  padding: 2px 6px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* End-of-article CTA card — funnels reader back to product */
.post-cta {
  margin: 44px 0 0;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--bg-2);
}
.post-cta-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 8px;
}
.post-cta-title {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  color: var(--ink);
}
.post-cta-blurb {
  font-size: 14px;
  color: var(--ink-2);
  margin: 0 0 16px;
  line-height: 1.55;
}

/* RESPONSIVE — match the landing breakpoints */
@media (max-width: 640px) {
  .blog-wrap { padding: 40px 18px 48px; }
  .blog-title { font-size: clamp(26px, 8vw, 34px); }
  .blog-card-title { font-size: 21px; }
  .post-wrap { padding: 32px 18px 60px; }
  .post-title { font-size: clamp(26px, 7vw, 34px); }
  .post-lede { font-size: 16px; }
  .post-body { font-size: 15.5px; line-height: 1.7; }
  .post-body h2 { font-size: 22px; margin: 36px 0 12px; }
  .post-body h3 { font-size: 17px; }
  .post-cta { padding: 22px; }
}

/* ============================================================
   PARTNER PAGE — /partners/
   Reuses .container, .btn, .step, .faq-item etc. New classes
   only where the partner page needs its own layout (hero split,
   feature grid, earnings cards, CTA strip).
   ============================================================ */
.partner-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
}
.partner-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}
.partner-hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5.6vw, 60px);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.032em;
  margin: 8px 0 18px;
  color: var(--ink);
}
.partner-hero-h1 em {
  color: var(--pos);
  font-style: normal;
  font-weight: 500;
}

.partner-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: 0 12px 36px oklch(0.10 0.02 264 / 0.12);
}
.partner-card-head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 14px;
}
.partner-card-tag {
  font-size: 10px; letter-spacing: 0.14em; color: var(--ink-3);
  font-weight: 600;
}
/* Calculator tag — same green-on-soft-green pill as the edge pill on the
   right, plus a pulsing dot to signal "this is interactive, try it". */
.partner-card-tag--live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 10px 5px 9px;
  background: var(--pos-soft);
  color: var(--accent);
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.10em;
}
.partner-card-tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  display: inline-block;
  box-shadow: 0 0 0 0 oklch(0.55 0.13 145 / 0.55);
  animation: partner-tag-pulse 1.8s ease-in-out infinite;
}
@keyframes partner-tag-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 oklch(0.55 0.13 145 / 0.55);
  }
  50% {
    transform: scale(0.85);
    box-shadow: 0 0 0 5px oklch(0.55 0.13 145 / 0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .partner-card-tag-dot { animation: none; }
}
.partner-card-edge {
  font-size: 12px; letter-spacing: 0.06em; font-weight: 700;
  color: var(--accent);
  background: var(--pos-soft);
  padding: 4px 10px; border-radius: 999px;
}
.partner-card-title { font-size: 19px; margin: 0 0 4px; font-weight: 600; }
.partner-card-meta { font-size: 10px; color: var(--ink-3); letter-spacing: 0.12em; margin: 0 0 18px; }
.partner-card-stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-bottom: 18px;
}
.partner-card-stats > div {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  display: flex; flex-direction: column; gap: 2px;
}
.pc-stat-lbl { font-size: 9.5px; color: var(--ink-3); letter-spacing: 0.12em; }
.pc-stat-val { font-size: 18px; font-weight: 700; color: var(--ink); font-variant-numeric: tabular-nums; }
.pc-stat-pos { color: var(--pos); }
.partner-card-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px; border-top: 1px dashed var(--line-2);
}
.pc-foot-lbl { font-size: 10px; letter-spacing: 0.12em; color: var(--ink-3); }
.pc-foot-val { font-size: 12.5px; font-weight: 600; color: var(--ink); }

@media (max-width: 920px) {
  .partner-hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .partner-hero-visual { max-width: 460px; margin: 0 auto; }
}

/* ── Program offer (feature grid) ─────────────────────────── */
.partner-program {
  padding: clamp(56px, 7vw, 96px) 0;
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.partner-feat {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
}
.partner-feat-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: var(--pos-soft);
  color: var(--accent);
  border-radius: 10px;
  font-size: 18px; font-weight: 700;
  margin-bottom: 14px;
}
.partner-feat h3 {
  font-size: 17px; font-weight: 700;
  margin: 0 0 8px;
}
.partner-feat p {
  font-size: 14px; color: var(--ink-2); margin: 0; line-height: 1.55;
}
@media (max-width: 920px) { .partner-grid { grid-template-columns: 1fr; max-width: 540px; margin: 0 auto; } }
@media (min-width: 921px) and (max-width: 1100px) { .partner-grid { grid-template-columns: repeat(2, 1fr); } }

/* ── Earnings cards ───────────────────────────────────────── */
.partner-earnings {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.earn-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1100px;
  margin: 0 auto;
}
.earn-card {
  position: relative;
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px 22px;
  display: flex; flex-direction: column; gap: 14px;
}
.earn-card--featured {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 32px oklch(0.10 0.02 264 / 0.18);
}
/* Top tier (Top tipster) — same green accent as featured, no separate
   colour. The big amount + badge label already distinguish it visually,
   so a second emphasis treatment beats a clashing purple/gradient. */
.earn-card--elite {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent), 0 12px 32px oklch(0.10 0.02 264 / 0.18);
}
.earn-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--bg);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.earn-badge--elite { background: var(--accent); }
.earn-tag {
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ink-3); font-weight: 700;
}
.earn-head h3 {
  font-size: 18px; font-weight: 700; margin: 6px 0 4px;
}
.earn-sub {
  font-size: 12.5px; color: var(--ink-3); margin: 0;
}
.earn-amount {
  font-size: 34px; font-weight: 700;
  color: var(--ink); letter-spacing: -0.01em;
  display: flex; align-items: baseline; gap: 4px;
}
.earn-period {
  font-size: 13px; font-weight: 500; color: var(--ink-3);
}
.earn-breakdown {
  list-style: none; padding: 0; margin: 0;
  border-top: 1px solid var(--line);
  font-size: 12px; color: var(--ink-2);
}
.earn-breakdown li {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line-2);
  font-variant-numeric: tabular-nums;
}
.earn-breakdown li:last-child { border-bottom: 0; }
.earn-total {
  font-weight: 700;
  color: var(--ink);
  margin-top: 4px;
  padding-top: 12px !important;
  border-top: 1px solid var(--line-2);
}
.earn-note {
  text-align: center;
  font-size: 11px;
  color: var(--ink-3);
  margin: 28px auto 0;
  max-width: 700px;
  letter-spacing: 0.04em;
}
@media (max-width: 1100px) { .earn-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .earn-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; } }

/* ── Steps grid (4 wide) ──────────────────────────────────── */
.partner-steps {
  padding: clamp(56px, 7vw, 96px) 0;
}
.steps.steps-4 {
  grid-template-columns: repeat(4, 1fr);
}
.partner-steps-cta {
  margin-top: 40px;
  text-align: center;
}
.partner-steps-cta .btn {
  padding: 14px 28px;
  font-size: 15px;
}
.partner-steps-cta-note {
  margin: 12px 0 0;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-3);
  text-transform: uppercase;
}
@media (max-width: 1100px) { .steps.steps-4 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin: 0 auto; } }
@media (max-width: 600px)  { .steps.steps-4 { grid-template-columns: 1fr; max-width: 460px; } }

/* ── Partner FAQ (reuses .faq-list/.faq-item from main FAQ) ── */
.partner-faq {
  padding: clamp(56px, 7vw, 96px) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}

/* ── Partner CTA strip ────────────────────────────────────── */
.partner-cta {
  padding: clamp(48px, 6vw, 88px) 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-top: 1px solid var(--line);
}
.partner-cta-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 36px;
  align-items: center;
}
.partner-cta-copy h2 {
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 10px;
}
.partner-cta-copy .lede {
  font-size: 15px; color: var(--ink-2); margin: 0;
  max-width: 540px;
}
.partner-cta-actions {
  display: flex; flex-direction: column; gap: 10px;
  align-items: stretch;
}
.partner-cta-actions .btn { justify-content: center; }
@media (max-width: 760px) {
  .partner-cta-inner { grid-template-columns: 1fr; gap: 22px; }
  .partner-cta-actions { flex-direction: row; flex-wrap: wrap; }
  .partner-cta-actions .btn { flex: 1 1 160px; }
}

/* ============================================================
   Partner earnings CALCULATOR (inside .partner-card on /partners/)
   The card hosts two number inputs; JS updates the share + total.
   ============================================================ */
.partner-card--calc { padding: 22px 22px 18px; }
.calc-row {
  padding: 12px 0 14px;
  border-bottom: 1px dashed var(--line);
}
.calc-row:first-of-type { padding-top: 10px; }
.calc-row:last-of-type {
  border-bottom: none;
  padding-bottom: 8px;
}
.calc-row-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}
.calc-row-lbl {
  font-size: 14px; font-weight: 500; color: var(--ink);
}
.calc-num {
  width: 96px; text-align: right;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 18px; font-weight: 700;
  color: var(--ink);
  background: var(--bg-2);
  border: 1px solid var(--line-2);
  border-radius: 8px;
  outline: none;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.15s, box-shadow 0.15s;
  -moz-appearance: textfield;
  appearance: textfield;
}
.calc-num::-webkit-outer-spin-button,
.calc-num::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.calc-num:focus {
  border-color: var(--pos);
  box-shadow: 0 0 0 3px oklch(0.55 0.13 145 / 0.18);
}
.calc-row-foot {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 11.5px;
  color: var(--ink-3);
  letter-spacing: 0.02em;
}
.calc-row-foot span:last-child {
  color: var(--pos);
  font-weight: 600;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}
.partner-card-foot.calc-total {
  margin-top: 6px;
  padding-top: 14px;
}
.partner-card-foot.calc-total .pc-foot-val {
  color: var(--pos);
  font-weight: 700;
  font-size: 16px;
  font-variant-numeric: tabular-nums;
}

/* Hand-drawn-style hint between the meta line and the first input.
   Subtle wiggle + tilt to feel personal/hand-noted rather than UI chrome.
   The label uses Fraunces italic for the "handwritten" feel; the arrow is
   a single SVG curved path with a chevron arrowhead. */
.partner-calc-hint {
  display: flex; align-items: center; justify-content: center;
  gap: 12px;
  margin: 6px 0 4px;
  color: var(--pos);
}
.partner-calc-hint-label {
  font-family: var(--serif);
  font-style: italic;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transform: rotate(-3deg);
  white-space: nowrap;
}
.partner-calc-hint-arrow {
  width: 26px;
  height: 32px;
  flex: 0 0 auto;
  transform-origin: top left;
  animation: partner-calc-hint-wiggle 1.8s ease-in-out infinite;
}
@keyframes partner-calc-hint-wiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  35%      { transform: translateY(2px) rotate(-3deg); }
  65%      { transform: translateY(4px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) {
  .partner-calc-hint-arrow { animation: none; }
}
