/* ==========================================================================
   Fundraising Unlocked — Site Stylesheet
   Single source of truth for design tokens, base element styles,
   and reusable component classes. Mobile-friendly by default.

   Rule of thumb: if you're copying the same CSS to a second page,
   promote it into this file instead of inlining it.
   ========================================================================== */

/* ---------- FONTS ---------- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,500;1,9..144,600&family=Inter:wght@400;500;600;700;800&display=swap');

/* ---------- DESIGN TOKENS ---------- */
:root {
  /* Brand colours */
  --navy: #001b46;
  --deep: #001030;
  --surface: #011a3a;
  --gold: #fcbd5d;
  --gold-l: #fdd49a;
  --coral: #e8453c;
  --green: #6dffb0;
  --white: #ffffff;

  /* Depth tones (navy family) — added for richer surfaces */
  --base: #00102e;          /* near-black navy page base */
  --card-bg: #061c40;       /* card surface */
  --card-bg-2: #0a2350;     /* card surface, lifted */
  --gold-glow: rgba(252, 189, 93, 0.5);

  /* Typography families */
  --display: 'Fraunces', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', system-ui, sans-serif;

  /* Text & borders */
  --text-primary: rgba(255, 255, 255, 0.9);
  --text-body: rgba(255, 255, 255, 0.7);
  --text-muted: rgba(255, 255, 255, 0.35);
  --text-faint: rgba(255, 255, 255, 0.25);
  --border: rgba(255, 255, 255, 0.08);
  --border-soft: rgba(255, 255, 255, 0.05);

  /* Type scale — desktop */
  --fs-h1: 35px;
  --fs-h2: 26px;
  --fs-h3: 20px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-micro: 13px;
  --fs-eyebrow: 10px;

  /* Layout */
  --max-main: 1100px;
  --max-narrow: 800px;
  --space-section: 80px;
  --space-section-lg: 96px;
  --radius: 8px;
  --radius-lg: 12px;

  /* ---- DERIVED TOKENS (component system) — all from the navy/gold family ---- */
  --ink: #ffffff;                                  /* solid heading/text on dark */
  --accent-text: var(--gold);                      /* gold for links / numbers / accents */
  --icon-tile: rgba(255,255,255,0.04);             /* small rounded icon-tile fill */
  --chip-bg: rgba(255,255,255,0.04);               /* pill / chip / segmented fill */
  --card-highlight-bg: rgba(252,189,93,0.07);      /* "popular"/featured card tint */
  --card-highlight-border: rgba(252,189,93,0.38);
  --green-bg: rgba(109,255,176,0.08);  --green-border: rgba(109,255,176,0.32);
  --coral-bg: rgba(232,69,60,0.10);    --coral-border: rgba(232,69,60,0.42);

  /* Navy-derived neutral ramp (layered surfaces / avatars / dividers) */
  --n-50:#0a2350; --n-100:#143161; --n-200:#1f3f72;
  --n-300:#2c4d83; --n-400:#3d5e95; --n-500:#5673ac;

  /* Display scale + spacing scale */
  --fs-hero: clamp(40px, 6vw, 66px);
  --space-1:4px; --space-2:8px; --space-3:12px; --space-4:16px;
  --space-5:24px; --space-6:32px; --space-8:48px;

  /* Shape (radius-btn kept at the site's 8px, not the reference's 10px) */
  --radius-sm: 6px; --radius-btn: 8px; --radius-card: 14px; --radius-pill: 999px;

  /* Elevation */
  --shadow-soft: 0 30px 70px -40px rgba(0,0,0,0.9);
  --shadow-card: 0 20px 50px -30px rgba(0,0,0,0.8);
  --shadow-glow: 0 12px 30px -12px rgba(252,189,93,0.5);

  /* Ambient signature background (the "gold aurora") as a reusable token */
  --ambient:
    radial-gradient(1100px 600px at 80% -10%, rgba(252,189,93,0.08), transparent 60%),
    radial-gradient(900px 700px at 5% 8%, rgba(20,58,128,0.45), transparent 55%),
    linear-gradient(180deg, #00102e 0%, #00153a 52%, #000c24 100%);
}

/* ---------- RESET ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  background: var(--base);
  color: var(--white);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

/* Layered ambient background — soft gold aurora over deep navy.
   Fixed, behind everything, pointer-events off so it never interferes. */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(1100px 600px at 80% -10%, rgba(252, 189, 93, 0.08), transparent 60%),
    radial-gradient(900px 700px at 5% 8%, rgba(20, 58, 128, 0.45), transparent 55%),
    linear-gradient(180deg, #00102e 0%, #00153a 52%, #000c24 100%);
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea { font-family: inherit; }

/* ---------- BASE TYPOGRAPHY ----------
   Headings: Fraunces display serif, mixed case (editorial, premium).
   Body & UI labels: Inter (set per-component). */
h1, .h1 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--fs-h1);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.025em;
  text-transform: none;
  margin-bottom: 20px;
}

h2, .h2 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--fs-h2);
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--gold);
  margin-top: 40px;
  margin-bottom: 14px;
}

h3, .h3 {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--fs-h3);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  text-transform: none;
  margin-bottom: 12px;
}

p {
  font-size: var(--fs-body);
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 16px;
}

p b, p strong { color: var(--white); font-weight: 700; }

/* Highlight word — wrap a word in <span class="hl"> to gold-highlight it */
.hl { color: var(--gold); }

/* Eyebrow label (small uppercased gold label that sits above a heading) */
.eyebrow {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Subtitle / lead sentence under a hero headline */
.subtitle {
  font-size: 18px;
  font-weight: 500;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.5;
  margin-bottom: 32px;
  max-width: 560px;
}

/* ---------- CONTAINERS ---------- */
.container       { max-width: var(--max-narrow); margin: 0 auto; padding: 0 24px; }
.container-wide  { max-width: var(--max-main);   margin: 0 auto; padding: 0 24px; }

/* ---------- TWO-COLUMN LAYOUT (sales page + sticky card) ---------- */
.two-col {
  max-width: var(--max-main);
  margin: 0 auto;
  padding: 60px 40px 80px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

/* ---------- SECTION ---------- */
.section        { padding: var(--space-section) 0; }
.section-dark   { background: var(--deep); }
.section-tag    {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: var(--fs-h1);
  font-weight: 600;
  text-transform: none;
  letter-spacing: -0.025em;
  color: var(--white);
  line-height: 1.06;
  margin-bottom: 16px;
}
.section-title .hl { color: var(--gold); font-style: italic; font-weight: 500; }

/* ---------- PROOF STRIP (big numbers row) ---------- */
.proof-strip {
  display: flex;
  gap: 28px;
  margin: 32px 0;
  flex-wrap: wrap;
}
.proof-num {
  font-family: var(--display);
  font-optical-sizing: auto;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--gold);
  line-height: 1;
}
.proof-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- LISTS ---------- */
.bullet-list, .not-list {
  margin-bottom: 24px;
}
.bullet-list li, .not-list li {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.7;
  padding: 12px 0 12px 22px;
  border-bottom: 1px solid var(--border);
  position: relative;
  text-align: left;
}
.bullet-list li::before,
.not-list li::before {
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: 700;
  line-height: 1.7;
}
.bullet-list li::before {
  content: '→';
  color: var(--gold);
}
.not-list li::before {
  content: '✗';
  color: var(--coral);
}
.bullet-list li b, .not-list li b { color: var(--white); }

/* ---------- BONUS CARDS (stacked list with gold tag) ---------- */
.bonus-card {
  border-top: 1px solid var(--border);
  padding: 24px 0;
}
.bonus-card:last-of-type {
  border-bottom: 1px solid var(--border);
}
.bonus-tag {
  display: inline-block;
  font-size: var(--fs-eyebrow);
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--navy);
  background: var(--gold);
  padding: 4px 12px;
  border-radius: 4px;
  margin-bottom: 10px;
}
.bonus-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 8px;
  line-height: 1.3;
}
.bonus-card p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ---------- HOST BLOCK (photo + name footer) ---------- */
.host {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 0;
  margin-top: 24px;
  border-top: 1px solid var(--border);
}
.host-photo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(252, 189, 93, 0.3);
  object-fit: cover;
  object-position: center top;
  flex-shrink: 0;
}
.host-name  { font-size: var(--fs-small); font-weight: 700; }
.host-title { font-size: 11px; color: var(--text-muted); }

/* ---------- FORM CARD (email gate, white card on navy) ---------- */
.form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 40px;
  color: var(--navy);
}
.form-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 6px;
}
.form-sub {
  font-size: var(--fs-micro);
  color: #888;
  text-align: center;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 14px; }
.form-label {
  font-size: 11px;
  font-weight: 700;
  color: #555;
  letter-spacing: 0.04em;
  margin-bottom: 5px;
  display: block;
}
.form-input {
  width: 100%;
  padding: 14px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-size: var(--fs-small);
  font-weight: 500;
  color: var(--navy);
  outline: none;
  transition: border-color 0.2s;
}
.form-input::placeholder { color: #bbb; }
.form-input:focus  { border-color: var(--gold); }
.form-input.err    { border-color: var(--coral); }

.form-error {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  margin-top: 4px;
  display: none;
}
.form-error.show { display: block; }

.form-btn {
  width: 100%;
  padding: 16px;
  margin-top: 8px;
  background: var(--gold);
  color: var(--navy);
  font-size: var(--fs-small);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, transform 0.15s;
}
.form-btn:hover    { background: var(--gold-l); transform: translateY(-1px); }
.form-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }

.form-price { text-align: center; margin-top: 14px; font-size: 11px; color: #999; }
.form-price b { color: var(--navy); font-size: var(--fs-micro); }

.form-privacy { text-align: center; margin-top: 10px; font-size: 10px; color: #bbb; }
.form-privacy a { color: var(--gold); }

.form-spots {
  text-align: center;
  margin-top: 16px;
  font-size: 11px;
  font-weight: 700;
  color: var(--coral);
  letter-spacing: 0.04em;
}

/* Form success state */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}
.form-success.show { display: block; }
.form-success .check-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(109, 255, 176, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: #2d9f5f;
}
.form-success h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
  text-transform: none;
}
.form-success p {
  font-size: var(--fs-micro);
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}
.form-success .pay-btn {
  display: inline-block;
  padding: 16px 40px;
  background: var(--navy);
  color: var(--white);
  font-size: var(--fs-micro);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.form-success .pay-btn:hover { background: #002a6b; transform: translateY(-1px); }
.form-success .pay-price {
  font-size: 12px;
  color: #999;
  margin-top: 10px;
}

/* ---------- PAY CARD (Stripe checkout card) ---------- */
.pay-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  position: sticky;
  top: 40px;
  text-align: center;
  color: var(--navy);
}
.pay-title {
  font-size: 22px;
  font-weight: 900;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 4px;
}
.pay-sub {
  font-size: var(--fs-micro);
  color: #888;
  margin-bottom: 8px;
}
.pay-price-tag {
  font-size: 48px;
  font-weight: 900;
  color: var(--navy);
  margin: 16px 0 4px;
  line-height: 1;
}
.pay-price-label {
  font-size: 12px;
  color: #888;
  margin-bottom: 28px;
}
.pay-details {
  font-size: 11px;
  color: #aaa;
  line-height: 1.6;
}
.pay-details b { color: #555; }

.stripe-embed { margin-bottom: 20px; }

.secure-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  font-size: 11px;
  color: #aaa;
}
.secure-badge svg { width: 14px; height: 14px; opacity: 0.4; }

/* Guarantee strip inside the pay card (light variant) */
.pay-card .guarantee {
  margin-top: 24px;
  padding: 16px;
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  text-align: left;
}
.pay-card .guarantee .guarantee-text  { font-size: 12px; color: #888; line-height: 1.6; }
.pay-card .guarantee .guarantee-text b { color: #555; }

/* ---------- GUARANTEE BOX (on navy background) ---------- */
.guarantee {
  margin-top: 32px;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.guarantee-icon { font-size: 20px; flex-shrink: 0; }
.guarantee-text {
  font-size: var(--fs-micro);
  color: var(--text-body);
  line-height: 1.6;
}
.guarantee-text b { color: var(--white); font-weight: 700; }

/* ---------- COUNTDOWN BAR ---------- */
.countdown-bar {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px;
  text-align: center;
}
.countdown-label {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}
.countdown {
  display: flex;
  justify-content: center;
  gap: 16px;
}
.cd-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cd-num {
  font-size: 32px;
  font-weight: 900;
  color: var(--white);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
}
.cd-txt {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- STATUS BAR (progress strip at top of funnel pages) ---------- */
.status-bar {
  background: var(--deep);
  border-bottom: 1px solid var(--border);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.status-check {
  width: 22px;
  height: 22px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.status-check svg { width: 13px; height: 13px; }
.status-text {
  font-size: var(--fs-micro);
  font-weight: 600;
  color: var(--text-body);
}
.status-text b { color: var(--white); font-weight: 700; }

/* ---------- STEP LABEL (e.g. "Step 2 of 2") ---------- */
.step-label {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ---------- "What's included" list (pay page) ---------- */
.included-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.get-item {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  align-items: baseline;
}
.get-item:last-of-type { border-bottom: 1px solid var(--border); }
.get-icon {
  font-size: 16px;
  flex-shrink: 0;
  width: 24px;
  text-align: center;
}
.get-text {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.6;
}
.get-text b { color: var(--white); font-weight: 700; }

/* ---------- HERO (single-column centered hero for lead-magnet / dashboard pages) ---------- */
.hero {
  max-width: var(--max-narrow);
  margin: 0 auto;
  padding: 72px 24px 40px;
  text-align: center;
}
.hero .eyebrow {
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.hero h1 { text-align: center; }
.hero .subtitle {
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  font-style: normal;
}

/* ---------- FULL-SCREEN EMAIL GATE (overlay before content is revealed) ---------- */
.gate-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: transparent; /* let homepage body::after gradient show through */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 24px;
  text-align: center;
  overflow-y: auto;
}
.gate-overlay.hidden { display: none; }
.gate-inner {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gate-inner h1 {
  text-align: center;
  margin-bottom: 16px;
}
.gate-inner .subtitle {
  max-width: 480px;
  margin: 0 auto 28px;
  text-align: center;
  font-style: normal;
}

/* Tool pills row — small icon + label mini-cards shown above the gate form */
.gate-pills {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 32px;
}
.gate-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.gate-pill-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: rgba(252, 189, 93, 0.08);
  border: 1px solid rgba(252, 189, 93, 0.18);
}
.gate-pill-name {
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 600;
}

/* Gate form variant — dark form on navy (alternative to the white .form-card) */
.gate-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
  max-width: 420px;
}
.gate-form .name-row {
  display: flex;
  gap: 10px;
}
.gate-input {
  width: 100%;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  color: var(--white);
  font-family: inherit;
  font-size: var(--fs-small);
  font-weight: 500;
  outline: none;
  transition: border-color 0.15s;
}
.gate-input::placeholder { color: rgba(255, 255, 255, 0.25); }
.gate-input:focus { border-color: rgba(252, 189, 93, 0.6); }
.gate-input.err { border-color: var(--coral); }
.gate-error {
  font-size: 11px;
  font-weight: 600;
  color: var(--coral);
  display: none;
}
.gate-error.show { display: block; }
.gate-btn {
  padding: 16px 40px;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}
.gate-btn:hover { background: var(--gold-l); transform: translateY(-1px); }
.gate-btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; }
.gate-privacy {
  font-size: 10px;
  color: var(--text-faint);
  margin-top: 16px;
}
.gate-privacy a { color: var(--gold); }

/* ---------- TOOL GRID & TOOL CARDS (lead-magnet dashboards) ---------- */
.tool-grid {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.tool-card {
  background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 50px -34px rgba(0, 0, 0, 0.85);
  transition: border-color 0.2s, transform 0.18s, box-shadow 0.2s;
}
.tool-card:hover {
  border-color: rgba(252, 189, 93, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 28px 60px -34px rgba(0, 0, 0, 0.9);
}
.tool-num {
  font-size: var(--fs-eyebrow);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.tool-num::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(252, 189, 93, 0.18);
}
.tool-icon { font-size: 30px; margin-bottom: 14px; }
.tool-name {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.2;
  margin-bottom: 10px;
}
.tool-name .hl { color: var(--gold); }
.tool-tagline {
  font-size: var(--fs-micro);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
  flex: 1;
}
.tool-tagline b, .tool-tagline strong { color: var(--white); font-weight: 700; }
.tool-btn {
  display: inline-block;
  padding: 14px 24px;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s, transform 0.15s;
}
.tool-btn:hover { background: var(--gold-l); transform: translateY(-1px); }

/* ---------- PROMPT CARD (copyable Claude prompt block) ---------- */
.prompt-section {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: none;
}
.prompt-section.visible { display: block; }
.prompt-card {
  background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 20px 50px -34px rgba(0, 0, 0, 0.85);
}
.prompt-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  flex-wrap: wrap;
  gap: 12px;
}
.prompt-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}
.prompt-copy-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--navy);
  font-family: inherit;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s;
}
.prompt-copy-btn:hover { background: var(--gold-l); }
.prompt-copy-btn.copied { background: var(--green); }
.prompt-instructions {
  font-size: var(--fs-micro);
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 20px;
}
.prompt-instructions strong { color: var(--white); }
.prompt-instructions ol {
  padding-left: 22px;
  margin-top: 8px;
  list-style: decimal;
}
.prompt-instructions li { margin-bottom: 6px; }
.prompt-box {
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  max-height: 400px;
  overflow-y: auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: 'SF Mono', 'Fira Code', Consolas, monospace;
}
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  margin-bottom: 24px;
  transition: color 0.2s;
  background: none;
  border: none;
  font-family: inherit;
}
.back-link:hover { color: var(--white); }

/* ---------- SKILLS LIST (stacked prompt cards for lead-magnet pages) ---------- */
.skills-list {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px 80px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 860px) {
  .skills-list { padding: 0 20px 60px; gap: 20px; }
}

/* Dual action row (Copy + Download .md) inside a prompt-card header */
.skill-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.skill-actions .prompt-copy-btn {
  padding: 10px 16px;
}
.skill-actions .prompt-copy-btn.secondary {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
}
.skill-actions .prompt-copy-btn.secondary:hover {
  background: rgba(219, 168, 77, 0.1);
}
.skill-actions .prompt-copy-btn.secondary.copied {
  background: var(--green);
  color: var(--navy);
  border-color: var(--green);
}

/* Shared setup-steps card ("How to set up a Claude Project") */
.setup-card {
  max-width: 880px;
  margin: 0 auto 40px;
  padding: 32px 32px 28px;
  background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 50px -34px rgba(0, 0, 0, 0.85);
}
.setup-card h2 {
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
}
.setup-card p {
  font-size: var(--fs-small);
  color: var(--text-body);
  line-height: 1.7;
  margin: 0 0 16px;
}
.setup-card ol {
  margin: 0 0 12px 0;
  padding-left: 22px;
  color: var(--text-body);
  font-size: var(--fs-small);
  line-height: 1.75;
}
.setup-card ol li { margin-bottom: 8px; }
.setup-card ol li b { color: var(--white); }
.setup-card .setup-footnote {
  font-size: var(--fs-micro);
  color: var(--text-muted);
  margin-top: 14px;
  margin-bottom: 0;
  font-style: italic;
}
@media (max-width: 860px) {
  .setup-card {
    margin: 0 20px 32px;
    padding: 26px 22px 22px;
  }
}

/* ---------- VIDEO EMBED (16:9 responsive, for Cloudflare Stream VSLs) ---------- */
.video-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 28px;
}
.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- WORKSHOP DATE BLOCK (inside .pay-card) ---------- */
.pay-when {
  margin: 0 0 22px;
  padding: 16px 18px;
  background: rgba(252, 189, 93, 0.08);
  border: 1px solid rgba(252, 189, 93, 0.22);
  border-radius: 10px;
  text-align: center;
}
.pay-when-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.pay-when-date {
  font-size: 22px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 6px;
  letter-spacing: 0.01em;
}
.pay-when-times {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-body);
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media (max-width: 500px) {
  .pay-when-date { font-size: 20px; }
  .pay-when-times { font-size: 10.5px; }
}

/* ---------- STICKY MOBILE BUY BAR (long-form sales pages) ---------- */
.mobile-buy-bar { display: none; }

@media (max-width: 860px) {
  .mobile-buy-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    background: var(--deep);
    border-top: 1px solid rgba(252, 189, 93, 0.22);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.45);
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    transform: translateY(0);
    transition: transform 0.25s ease;
  }
  .mobile-buy-bar.hidden { transform: translateY(110%); }
  .mbb-price {
    font-size: 12px;
    color: var(--text-body);
    line-height: 1.3;
  }
  .mbb-price b {
    color: var(--white);
    font-weight: 800;
    font-size: 17px;
    margin-right: 6px;
    letter-spacing: 0.01em;
  }
  .mbb-btn {
    padding: 12px 20px;
    background: var(--gold);
    color: var(--navy);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 6px;
    white-space: nowrap;
    text-decoration: none;
    transition: background 0.15s;
  }
  .mbb-btn:hover, .mbb-btn:active { background: var(--gold-l); }
  /* Reserve space so sticky bar doesn't cover the bottom of the page */
  body.has-buy-bar { padding-bottom: 78px; }
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 32px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.footer-text {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ==========================================================================
   MOBILE — everything stacks, centers, and stays readable
   ========================================================================== */
@media (max-width: 860px) {
  :root {
    --fs-h1: 32px;
    --fs-h2: 22px;
  }

  .two-col {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 40px 20px 60px;
    justify-items: center;
  }

  .col-main {
    width: 100%;
    max-width: 560px;
    text-align: center;
  }

  /* Hero elements centre on mobile */
  .col-main h1,
  .col-main h2,
  .col-main .subtitle,
  .col-main .eyebrow,
  .col-main .step-label {
    text-align: center;
  }
  .col-main .eyebrow { justify-content: center; }
  .col-main .subtitle { margin-left: auto; margin-right: auto; }

  /* But long-form copy stays left-aligned for readability */
  .col-main p,
  .col-main .bullet-list,
  .col-main .not-list,
  .col-main .bonus-card p,
  .col-main .get-item,
  .col-main .guarantee {
    text-align: left;
  }

  .proof-strip {
    justify-content: center;
    gap: 20px;
  }

  .host { justify-content: center; }

  .bonus-card { text-align: center; }

  /* Form & pay cards: constrain width and centre on mobile */
  .form-card, .pay-card {
    position: static;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
  }

  .countdown .cd-num {
    width: 58px;
    height: 58px;
    font-size: 30px;
  }
  .countdown-label {
    font-size: 13px;
    letter-spacing: 0.15em;
  }
  .countdown-bar { padding: 16px 20px; }

  .section { padding: 60px 0; }

  /* Hero (single-column) shrinks hero padding on mobile */
  .hero { padding: 48px 20px 32px; }
  .hero .subtitle { font-size: 15px; }

  /* Tool grid collapses to 1 column */
  .tool-grid {
    grid-template-columns: 1fr;
    padding: 0 20px 60px;
    gap: 16px;
  }
  .tool-card { padding: 28px 22px; }

  /* Gate overlay: name row stacks, pills wrap tightly */
  .gate-form .name-row { flex-direction: column; }
  .gate-pills { gap: 16px; margin-bottom: 24px; }
  .gate-pill-icon { width: 40px; height: 40px; font-size: 18px; }

  /* Prompt card tighter padding */
  .prompt-section { padding: 0 20px 60px; }
  .prompt-card { padding: 28px 22px; }
}

@media (max-width: 500px) {
  :root {
    --fs-h1: 26px;
    --fs-h2: 20px;
  }
  .two-col      { padding: 28px 20px 50px; }
  .col-main     { max-width: 440px; }
  .form-card,
  .pay-card     { padding: 28px 20px; }
  .container,
  .container-wide { padding: 0 16px; }

  /* Subtitle: narrower so it visibly centers inside the column */
  .col-main .subtitle {
    font-size: 16px;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 24px;
  }

  /* Proof strip: smaller numbers + tighter gap so the row clusters in the middle */
  .proof-strip  { gap: 14px; margin: 24px 0; }
  .proof-num    { font-size: 22px; }
  .proof-label  { font-size: 8px; }

  /* Section-title headers (if present) also shrink */
  .section-title { font-size: 26px; }
}

/* ==========================================================================
   COMPONENT LIBRARY — canonical, reusable across all pages & businesses.
   Promoted from the design-system reference. Use these everywhere it makes
   sense. All use the tokens above; button radius stays at the site's 8px.
   ========================================================================== */

/* ---------- BUTTONS ---------- */
.btn { font-family: var(--sans); font-weight: 800; font-size: var(--fs-small);
  letter-spacing: 0.09em; text-transform: uppercase; border-radius: var(--radius-btn);
  padding: 14px 26px; border: 1px solid transparent; cursor: pointer; display: inline-flex;
  align-items: center; justify-content: center; gap: 9px; position: relative; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
  transition: transform .32s cubic-bezier(.34,1.56,.64,1), box-shadow .2s ease, background .2s ease, border-color .2s ease, color .2s ease; }
@media (hover:hover) { .btn:hover { transform: scale(1.02); } }
.btn:active { transform: scale(.93); transition: transform .11s ease; }
.btn-primary { background: linear-gradient(180deg, var(--gold-l), var(--gold)); color: #00102e; box-shadow: var(--shadow-glow); }
.btn-primary:hover { box-shadow: 0 18px 40px -14px var(--gold-glow); }
.btn-secondary { background: transparent; color: var(--accent-text); border-color: var(--accent-text); }
.btn-secondary:hover { background: rgba(252,189,93,0.1); }
.btn:disabled, .btn.is-disabled { opacity: .4; cursor: not-allowed; box-shadow: none; transform: none; filter: grayscale(.3); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.state-tag { font: 600 11px/1 var(--sans); color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; }
@media (prefers-reduced-motion: reduce) { .btn:hover, .btn:active { transform: none; } }

/* ---------- FORM FIELD ---------- */
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.field label { font: 600 var(--fs-micro)/1 var(--sans); color: var(--text-body); letter-spacing: 0.02em; }
.field .input { background: rgba(255,255,255,0.05); border: 1px solid var(--border);
  border-radius: var(--radius-btn); padding: 14px 16px; font: 400 var(--fs-body)/1 var(--sans);
  color: var(--ink); transition: border-color .2s ease, box-shadow .2s ease; width: 100%; }
.field .input::placeholder { color: var(--text-faint); }
.field .input:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(252,189,93,0.12); }
.field .input.is-error { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(232,69,60,0.09); }
.field .hint { font-size: 11px; color: var(--text-muted); }
.field .hint.err { color: var(--coral); }

/* ---------- CARD ---------- */
.card { background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border: 1px solid var(--border); border-radius: var(--radius-card); padding: 24px; box-shadow: var(--shadow-card); }
.card h4 { font-family: var(--display); font-size: var(--fs-h3); font-weight: 600; margin-bottom: 8px; }
.card p { font-size: var(--fs-small); color: var(--text-body); }
.icon-tile { width: 42px; height: 42px; border-radius: var(--radius); background: var(--icon-tile);
  border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--accent-text); margin-bottom: 14px; }
.icon-tile svg { width: 20px; height: 20px; }

/* ---------- BADGES / PILLS / CHIPS ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; align-items: center; }
.pill { display: inline-flex; align-items: center; gap: 6px; font: 600 var(--fs-micro)/1 var(--sans);
  padding: 7px 13px; border-radius: var(--radius-pill); border: 1px solid var(--border); background: var(--chip-bg); color: var(--text-body); }
.pill.gold { background: rgba(252,189,93,0.12); border-color: var(--card-highlight-border); color: var(--accent-text); }
.pill.success { background: var(--green-bg); border-color: var(--green-border); color: var(--green); }
.pill.error { background: var(--coral-bg); border-color: var(--coral-border); color: var(--coral); }
.pill .d { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.chips { display: flex; flex-wrap: wrap; gap: 0; align-items: center; border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 6px; background: var(--chip-bg); width: fit-content; }
.chips .c { display: inline-flex; align-items: center; gap: 7px; padding: 6px 16px;
  font: 600 var(--fs-micro)/1 var(--sans); color: var(--text-body); border-right: 1px solid var(--border); }
.chips .c:last-child { border-right: none; }
.chips .c svg { width: 14px; height: 14px; color: var(--accent-text); }

/* ---------- SEGMENTED CONTROL ---------- */
.segmented { display: inline-flex; background: var(--chip-bg); border: 1px solid var(--border);
  border-radius: var(--radius-pill); padding: 5px; gap: 4px; }
.segmented button { appearance: none; -webkit-appearance: none; border: none; background: none; cursor: pointer;
  font: 600 var(--fs-micro)/1 var(--sans); letter-spacing: 0.04em; color: var(--text-body);
  padding: 9px 18px; border-radius: var(--radius-pill); transition: color .2s ease, background .2s ease, box-shadow .2s ease; }
.segmented button.active { background: linear-gradient(180deg, var(--gold-l), var(--gold)); color: #00102e; box-shadow: var(--shadow-glow); }
.segmented button:not(.active):hover { color: var(--ink); }

/* ---------- TABS ---------- */
.tabs { border-bottom: 1px solid var(--border); display: flex; gap: 26px; }
.tabs button { appearance: none; -webkit-appearance: none; border: none; background: none; cursor: pointer;
  font: 600 var(--fs-small)/1 var(--sans); color: var(--text-muted); padding: 0 0 14px; position: relative; transition: color .2s ease; }
.tabs button.active { color: var(--ink); }
.tabs button.active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 2px; background: var(--gold); border-radius: 2px; }
.tabs button:not(.active):hover { color: var(--text-body); }
.tabpanel { padding-top: 18px; font-size: var(--fs-small); color: var(--text-body); }
.tabpanel[hidden] { display: none; }

/* ---------- STAT STRIP ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px,1fr));
  gap: var(--space-5); text-align: center; padding: var(--space-6) 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stat .num { font-family: var(--display); font-weight: 600; font-size: 46px; color: var(--accent-text); letter-spacing: -0.03em; line-height: 1; }
.stat .lab { font: 700 var(--fs-eyebrow)/1.4 var(--sans); letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-muted); margin-top: 10px; }
@media (max-width: 560px) { .stat-strip { grid-template-columns: 1fr; gap: var(--space-4); } }

/* ---------- TESTIMONIALS ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(258px,1fr)); gap: var(--space-4); }
.tcard { background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg)); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 24px; box-shadow: var(--shadow-card); display: flex; flex-direction: column; gap: 16px;
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease; }
.tcard:hover { transform: translateY(-4px); border-color: var(--card-highlight-border); box-shadow: var(--shadow-soft); }
.tstars, .stars { color: var(--gold); letter-spacing: 3px; font-size: 14px; }
.tquote { font-family: var(--display); font-weight: 400; font-size: 18px; line-height: 1.5; letter-spacing: -0.01em; color: var(--text-primary); }
.tperson { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.avatar { width: 46px; height: 46px; border-radius: 50%; flex: none; overflow: hidden;
  background: linear-gradient(145deg, var(--n-300), var(--n-100)); border: 2px solid var(--card-highlight-border);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--gold) 12%, transparent);
  display: flex; align-items: center; justify-content: center; font: 700 var(--fs-small)/1 var(--sans); color: var(--gold); }
.avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tname { font: 600 var(--fs-small)/1.25 var(--sans); color: var(--ink); }
.trole { font: 500 var(--fs-micro)/1.25 var(--sans); color: var(--text-muted); }
.tfeature { position: relative; display: grid; grid-template-columns: auto 1fr; gap: 30px; align-items: center;
  border-radius: var(--radius-card); padding: 36px; overflow: hidden; border: 1px solid var(--card-highlight-border); box-shadow: var(--shadow-soft);
  background: linear-gradient(180deg, var(--card-highlight-bg), transparent 60%), linear-gradient(180deg, var(--card-bg-2), var(--card-bg)); }
.tfeature::before { content: "\201C"; position: absolute; top: -26px; right: 18px; font-family: var(--display); font-weight: 600;
  font-size: 180px; line-height: 1; color: var(--gold); opacity: 0.12; pointer-events: none; }
.tfeature .photo { width: 104px; height: 104px; border-radius: 50%; flex: none; overflow: hidden;
  background: linear-gradient(145deg, var(--n-300), var(--n-50)); border: 2px solid var(--card-highlight-border);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--gold) 12%, transparent);
  display: flex; align-items: center; justify-content: center; font-family: var(--display); font-weight: 600; font-size: 34px; color: var(--gold); }
.tfeature .photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tfeature blockquote { margin: 0; font-family: var(--display); font-weight: 400; font-style: italic; font-size: 24px; line-height: 1.42; letter-spacing: -0.015em; color: var(--ink); }
.tfeature .by { margin-top: 16px; display: flex; align-items: center; gap: 10px; font: 500 var(--fs-micro)/1 var(--sans); color: var(--text-muted); }
.tfeature .by b { color: var(--ink); font-weight: 600; }
.tfeature .by .dotsep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); }
@media (max-width: 560px) { .tfeature { grid-template-columns: 1fr; text-align: center; } .tfeature .photo { margin: 0 auto; } .tfeature .by { justify-content: center; } }

/* ---------- ALERTS ---------- */
.alert { display: flex; gap: 13px; align-items: flex-start; border-radius: var(--radius-lg); padding: 15px 18px; font-size: var(--fs-small); border: 1px solid; }
.alert svg { width: 18px; height: 18px; flex: none; margin-top: 1px; }
.alert.success { background: var(--green-bg); border-color: var(--green-border); }
.alert.success svg { color: var(--green); } .alert.success b { color: var(--ink); }
.alert.error { background: var(--coral-bg); border-color: var(--coral-border); }
.alert.error svg { color: var(--coral); } .alert.error b { color: var(--ink); }
.alert span { color: var(--text-body); }

/* ---------- DATA TABLE ---------- */
table.ds { width: 100%; border-collapse: collapse; font-size: var(--fs-small); background: var(--card-bg);
  border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
table.ds thead th { text-align: left; font: 700 var(--fs-micro)/1 var(--sans); letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-muted); padding: 14px 18px; background: var(--card-bg-2); border-bottom: 1px solid var(--border); }
table.ds td { padding: 14px 18px; border-bottom: 1px solid var(--border-soft); color: var(--text-body); }
table.ds tbody tr:last-child td { border-bottom: none; }
table.ds td.num { color: var(--accent-text); font-weight: 600; font-family: var(--display); }
table.ds td b { color: var(--ink); font-weight: 600; }

/* ---------- ACCORDION ---------- */
.accordion { display: flex; flex-direction: column; }
.ac-row { background: var(--card-bg); border: 1px solid var(--border); border-radius: 0;
  transition: margin-top .5s cubic-bezier(.34,1.3,.5,1), border-radius .55s cubic-bezier(.34,1.5,.45,1); }
.ac-row.r-top { border-top-left-radius: var(--radius-lg); border-top-right-radius: var(--radius-lg); }
.ac-row.r-bot { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }
.ac-row.sep { margin-top: 12px; }
.ac-trigger { appearance: none; -webkit-appearance: none; background: none; border: none; width: 100%; cursor: pointer;
  display: flex; align-items: center; gap: 14px; padding: 16px 18px; text-align: left; font: 600 var(--fs-small)/1.3 var(--sans); color: var(--ink); transition: background .2s ease; }
.ac-trigger:hover { background: rgba(255,255,255,0.025); }
.ac-chev { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; color: var(--text-muted); flex: none; transition: transform .42s cubic-bezier(.34,1.6,.5,1); }
.ac-chev svg { width: 16px; height: 16px; }
.ac-row.is-open .ac-chev { transform: rotate(180deg); }
.ac-content { height: 0; overflow: hidden; transition: height .52s cubic-bezier(.34,1.25,.5,1); }
.ac-inner { padding: 0 18px 18px 18px; font-size: var(--fs-small); color: var(--text-body); opacity: 0; transition: opacity .2s ease; }
.ac-row.is-open .ac-inner { opacity: 1; transition: opacity .22s ease .12s; }

/* ---------- NAVBAR (opt-in component — not auto-added to landing pages) ---------- */
.navbar { display: flex; align-items: center; gap: 24px; padding: 14px 22px;
  background: color-mix(in srgb, var(--navy) 70%, transparent); border: 1px solid var(--border);
  border-radius: var(--radius-pill); box-shadow: var(--shadow-card); }
.navbar .logo { font-family: var(--display); font-weight: 600; font-size: 17px; color: var(--ink); letter-spacing: -0.02em; }
.navbar .logo b { color: var(--accent-text); }
.navbar nav { display: flex; gap: 22px; margin: 0 auto; }
.navbar nav a { font: 500 var(--fs-small)/1 var(--sans); color: var(--text-body); }
.navbar nav a:hover { color: var(--ink); }
@media (max-width: 640px) { .navbar nav { display: none; } }

/* ---------- MEDIA FRAME ---------- */
.media { position: relative; border-radius: var(--radius-card); border: 1px solid var(--border); overflow: hidden; aspect-ratio: 16/9;
  background: radial-gradient(140% 120% at 80% 0%, rgba(252,189,93,0.16), transparent 55%), linear-gradient(150deg, var(--card-bg-2), var(--n-100)); }
.media .play { position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border-radius: 50%;
  background: linear-gradient(180deg, var(--gold-l), var(--gold)); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-glow); }
.media .play svg { width: 22px; height: 22px; color: #00102e; margin-left: 3px; }

/* ---------- MODAL / OVERLAY ---------- */
.overlay { position: fixed; inset: 0; z-index: 60; display: none; align-items: center; justify-content: center; padding: 24px;
  background: color-mix(in srgb, var(--base) 55%, transparent); backdrop-filter: blur(6px); }
.overlay.open { display: flex; animation: fadeUp .25s ease; }
.modal { width: 100%; max-width: 440px; background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border: 1px solid var(--border); border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-soft); }
.modal h3 { font-family: var(--display); font-size: var(--fs-h2); font-weight: 600; color: var(--accent-text); margin: 10px 0 8px; }
.modal p { font-size: var(--fs-small); color: var(--text-body); margin-bottom: 20px; }
.modal .x { float: right; cursor: pointer; color: var(--text-muted); background: none; border: none; font-size: 20px; line-height: 1; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }

/* ---------- PRICING ---------- */
.pricing { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: var(--space-5); max-width: 760px; margin: 0 auto; align-items: stretch; }
.price-card { background: linear-gradient(180deg, var(--card-bg-2), var(--card-bg)); border: 1px solid var(--border);
  border-radius: var(--radius-card); padding: 30px; box-shadow: var(--shadow-card); position: relative; display: flex; flex-direction: column; }
.price-card.popular { background: linear-gradient(180deg, var(--card-highlight-bg), transparent), linear-gradient(180deg, var(--card-bg-2), var(--card-bg));
  border-color: var(--card-highlight-border); box-shadow: var(--shadow-soft); }
.price-card .flag { position: absolute; top: -12px; left: 30px; font: 700 var(--fs-eyebrow)/1 var(--sans); letter-spacing: 0.18em; text-transform: uppercase;
  color: #00102e; background: linear-gradient(180deg, var(--gold-l), var(--gold)); padding: 6px 12px; border-radius: var(--radius-pill); box-shadow: var(--shadow-glow); }
.price-card .plan { font: 700 var(--fs-micro)/1 var(--sans); letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); }
.price-card h3 { font-family: var(--display); font-weight: 600; font-size: var(--fs-h3); margin: 10px 0 16px; }
.price-card .price { font-family: var(--display); font-weight: 600; font-size: 44px; color: var(--ink); letter-spacing: -0.03em; line-height: 1; }
.price-card .price small { font-family: var(--sans); font-size: var(--fs-small); font-weight: 500; color: var(--text-muted); }
.price-card ul { list-style: none; padding: 0; margin: 22px 0; display: flex; flex-direction: column; gap: 12px; flex: 1 1 auto; }
.price-card li { display: flex; gap: 10px; font-size: var(--fs-small); color: var(--text-body); }
.price-card li svg { width: 17px; height: 17px; color: var(--accent-text); flex: none; margin-top: 2px; }
.price-card .btn { width: 100%; justify-content: center; }

/* ---------- TEXT LINK / PROSE ---------- */
a.link { color: var(--accent-text); text-decoration: none; border-bottom: 1px solid color-mix(in srgb, var(--accent-text) 32%, transparent); transition: border-color .2s ease; }
a.link:hover { border-color: var(--accent-text); }
.prose { font-size: var(--fs-body); color: var(--text-body); line-height: 1.7; margin: 0; }
.prose strong { color: var(--ink); font-weight: 700; }
.prose em { color: var(--text-primary); }

/* ---------- VISIBLE FOCUS RING (accessibility) ---------- */
.btn:focus-visible, a.link:focus-visible, .tabs button:focus-visible, .segmented button:focus-visible,
.field .input:focus-visible, .ac-trigger:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--gold) 45%, transparent); outline-offset: 3px; border-radius: var(--radius-sm); }
