/* ==========================================================================
   Pinnacle LTO — Brand Spec v1.0
   Sister product to Pinnacle 1031 Exchange and Pinnacle Cost Seg.
   Editorial, restrained, institutional. Sotheby's meets Cereal Magazine.
   Display: Cormorant Garamond · Body: Inter Tight · Mono: JetBrains Mono
   ========================================================================== */

/* Survey-funnel-matched typography: Inter for headings, Instrument Sans for
   body, JetBrains Mono for kicker/code text. Cormorant Garamond retained
   only for legacy `.serif` opt-in class. */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Instrument+Sans:ital,wght@0,400;0,500;0,600;1,400;1,500&family=JetBrains+Mono:wght@400;500;600&family=Cormorant+Garamond:ital,wght@0,400;1,400&display=swap');

:root {
  /* Navy system — primary background + surfaces */
  --navy-950:       #050A14;
  --navy-900:       #0A1628;
  --navy-800:       #0F1C36;
  --navy-700:       #132240;
  --navy-600:       #1B2D4A;
  --navy-500:       #243A5C;
  --navy-400:       #3A4A63;

  /* Aliases used throughout the codebase */
  --bg:             var(--navy-900);
  --bg-soft:        var(--navy-800);
  --card:           var(--navy-700);
  --card-hover:     var(--navy-500);
  --border:         var(--navy-600);
  --border-strong:  var(--navy-500);

  /* Electric blue accent system */
  --primary:        #3B82F6;
  --primary-light:  #60A5FA;
  --primary-dark:   #1D4ED8;
  --primary-soft:   rgba(59, 130, 246, 0.7);
  --cyan:           #22D3EE;
  --cyan-200:       #6BC0F0;
  --cyan-100:       #E4F1FB;

  /* Supporting accents — used sparingly */
  --emerald:        #10B981;
  --gold:           #F59E0B;
  --red:            #FB2C36;

  /* Text palette */
  --text:           #F0F1F3;        /* off-white headlines */
  --text-muted:     #C4CCD8;        /* light body copy */
  --text-dim:       #7A8A9E;        /* silver kicker text */
  --ivory:          #F0F1F3;
  --white:          #FFFFFF;

  /* Radii — geometric */
  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      12px;

  /* Shadows — minimal */
  --shadow-card:    0 1px 0 0 rgba(255,255,255,0.02) inset, 0 8px 24px -14px rgba(0,0,0,0.5);
  --ring-primary:   inset 0 0 0 1px rgba(59, 130, 246, 0.25);

  /* Fonts — editorial serif + tight sans */
  --font-hero:      'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  /* Survey-funnel typography:
     - Heading: Inter weight 600, very tight letter-spacing (-0.03em) — modern, geometric, NOT italic, NOT serif.
     - Body:    Instrument Sans 400 — clean modern sans with subtle character.
     - Mono:    JetBrains Mono — kicker/eyebrow/UI labels.
     The legacy 'Cormorant Garamond' stays loaded for the .serif opt-in
     class only, in case you want to bring back a serif accent on a
     specific element. */
  --font-heading:   'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-body:      'Instrument Sans', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  --font-mono:      'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  background: var(--bg);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}

main, header, footer, section, .container, .container-narrow, .container-content {
  position: relative;
  z-index: 1;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; display: block; }

/* ---------- Layout ---------- */

.container        { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.container-narrow { width: 100%; max-width: 760px;  margin: 0 auto; padding: 0 1.5rem; }
.container-content{ width: 100%; max-width: 960px;  margin: 0 auto; padding: 0 1.5rem; }

.section { padding: 6rem 0; position: relative; }
.section-tight { padding: 3rem 0; }
.section-dark { background: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* ---------- Urgency bar — top-of-page funnel banner ---------- */

.urgency-bar {
  position: sticky;
  top: 0;
  z-index: 60;
  background: linear-gradient(135deg, #0a1530 0%, #0e1424 100%);
  border-bottom: 1px solid rgba(96, 165, 250, 0.25);
  color: var(--text);
  padding: 0.75rem 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.875rem;
  letter-spacing: -0.005em;
}
.urgency-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.urgency-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-light);
}
.urgency-label::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
  animation: urgencyPulse 1.6s ease-in-out infinite;
}
@keyframes urgencyPulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18); }
  50%      { box-shadow: 0 0 0 5px rgba(96, 165, 250, 0.05); }
}
.urgency-pitch {
  font-weight: 400;
  color: var(--text);
}
.urgency-pitch em {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.urgency-countdown {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-muted);
  font-size: 0.8125rem;
}
.urgency-countdown #countdown-display {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: 0.06em;
  color: #ffffff;
  text-shadow: 0 0 14px rgba(96, 165, 250, 0.6);
}
.urgency-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff !important;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 4px;
  padding: 0.5rem 1.125rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.urgency-cta:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  border-color: rgba(147, 197, 253, 0.85);
  transform: translateY(-1px);
}
.urgency-cta::after {
  content: " →";
  font-weight: 300;
}

@media (max-width: 720px) {
  .urgency-bar { padding: 0.625rem 0; }
  .urgency-bar-inner { gap: 0.75rem; flex-direction: column; }
  .urgency-label { font-size: 0.625rem; }
  .urgency-pitch { font-size: 0.8125rem; text-align: center; }
  .urgency-cta { width: 100%; justify-content: center; }
}

/* ---------- Header ---------- */

.site-header {
  padding: 1.25rem 0;
  background: var(--bg);
  position: relative;
  z-index: 40;
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s ease, padding 0.3s ease;
}
/* Floating-pill state when scrolled — matches the cost-seg live site */
.site-header.is-scrolled {
  border-bottom-color: var(--border);
}
.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: all 0.3s ease;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.brand-mark {
  width: 40px;
  height: 40px;
  display: block;
  flex-shrink: 0;
}
/* Wordmark per spec: "Pinnacle [PRODUCT]" — Inter Tight 600, -0.035em.
   "Pinnacle " solid off-white, "[PRODUCT]" carries the signature gradient. */
.brand-wordmark {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: -0.035em;
  line-height: 1.25;
  color: var(--text);
}
.brand-wordmark .accent {
  font-weight: 600;
  background: linear-gradient(135deg, #E4F1FB 0%, #6BC0F0 50%, #2E6FE8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
/* Kicker — JetBrains Mono uppercase 0.22em silver at 42% opacity per spec */
.brand-sub {
  display: block;
  margin-top: 4px;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(122, 138, 158, 0.85);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.875rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--text-muted);
}
.site-nav a { transition: color 0.2s ease; }
.site-nav a:hover { color: var(--text); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.nav-meta {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* ---------- Typography — editorial, matching pinnacle1031ai ---------- */

/* Section eyebrow stack (Roman numeral + hairline + sans-serif label).
   Replaces the legacy single-line .eyebrow when used as
   <div class="section-eyebrow"><span class="roman-num">II</span><div class="hairline"></div><span class="eyebrow-mute">The Arsenal</span></div> */

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin: 0 0 1.5rem;
}
.section-eyebrow.is-centered { justify-content: center; }

.roman-num {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 0.875rem;
  color: var(--primary-light);
  letter-spacing: 0.1em;
  line-height: 1;
  display: inline-block;
}

.hairline {
  display: inline-block;
  height: 1px;
  width: 2.5rem;
  background: var(--primary-light);
  opacity: 0.7;
}
.hairline-wide { width: 100%; }

.eyebrow-mute {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  line-height: 1;
}

/* Legacy .eyebrow class — keep functional but restyle to mute */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0 0 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
}
.eyebrow-centered { justify-content: center; }
.eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--primary-light);
  opacity: 0.7;
}
.eyebrow.no-rule::after { display: none; }

/* Roman-numeral prefix on legacy eyebrow */
.eyebrow[data-roman]::before {
  content: attr(data-roman);
  display: inline-block;
  padding-right: 0.875rem;
  margin-right: 0.625rem;
  border-right: 1px solid rgba(96, 165, 250, 0.3);
  color: var(--primary-light);
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1em;
  letter-spacing: 0.06em;
}

/* Hero headline — Cormorant Garamond 300 with italic accents per spec */
.hero-headline {
  font-family: var(--font-hero);
  font-weight: 300;
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.98;
  letter-spacing: -0.01em;
  color: var(--text);
  margin: 0 0 2rem;
}
/* Italic accent emphasis per spec — never bold for emphasis.
   Signature gradient: linear-gradient(135deg, #E4F1FB → #6BC0F0 → #2E6FE8) */
.hero-headline em,
.hero-headline .accent,
h1 em, h1 .accent,
h2 em, h2 .accent,
h3 em, h3 .accent {
  font-style: italic;
  font-weight: inherit;
  letter-spacing: inherit;
  background: linear-gradient(135deg, #E4F1FB 0%, #6BC0F0 50%, #2E6FE8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Lede — Inter Tight 400 at 1.125rem per spec */
.hero-sub {
  font-family: var(--font-body);
  font-size: 1.125rem;
  line-height: 1.625;
  font-weight: 400;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 0 2.5rem;
}

/* Section headings — Cormorant Garamond 300, italic emphasis per spec */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--text);
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0 0 1rem;
  font-weight: 600;
  font-style: normal;
}
h1 { letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 5vw, 4rem); font-weight: 600; letter-spacing: -0.03em; }
h3 { font-size: clamp(1.375rem, 2.4vw, 2rem); font-weight: 600; letter-spacing: -0.025em; }
h4 { font-size: 1.25rem; font-weight: 600; letter-spacing: -0.02em; }

/* Italic accent words inside headings (e.g. "Ten <em>instruments</em>") —
   in the survey funnel these are not actually italic, just colored. We honor
   that by dropping italic globally and using the sky-blue accent color. */
h1 em, h2 em, h3 em, h4 em,
h1 .accent, h2 .accent, h3 .accent, h4 .accent {
  font-style: normal;
  font-weight: inherit;
  color: #7DCEFF;
  text-shadow:
    0 0 24px rgba(125, 224, 255, 0.55),
    0 0 1px rgba(125, 224, 255, 0.3);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

p {
  margin: 0 0 1rem;
  font-weight: 400;
  line-height: 1.625;
  color: var(--text-muted);
}
p.lead {
  font-size: 1.125rem;
  color: #D5DCE6;
  line-height: 1.625;
  font-weight: 400;
}
p.lead em, p.lead .accent {
  font-style: normal;
  font-weight: 500;
  color: #7DCEFF;
  text-shadow:
    0 0 16px rgba(125, 224, 255, 0.45),
    0 0 1px rgba(125, 224, 255, 0.3);
}

.primary   { color: var(--primary-light); }
.emerald   { color: var(--emerald); }
.gold      {
  color: var(--gold);
  text-shadow:
    0 0 14px rgba(245, 158, 11, 0.4),
    0 0 1px rgba(245, 158, 11, 0.3);
}
.dim       { color: var(--text-muted); }
.subtle    { color: var(--text-dim); }
.mono      { font-family: var(--font-mono); }
.italic    { font-style: italic; }
.serif     { font-family: var(--font-heading); font-weight: 300; }
.center    { text-align: center; }
.text-center { text-align: center; }
.text-left   { text-align: left; }

.num {
  font-family: var(--font-heading);
  font-weight: 400;
  font-feature-settings: "lnum", "tnum";
  letter-spacing: -0.02em;
}
.num-xl {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--primary-light);
  letter-spacing: -0.02em;
  line-height: 1;
}
.strike { text-decoration: line-through; color: var(--text-dim); }

/* Lead-word flourish — italic serif in blue */
.lead-word {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--primary-light);
  font-weight: 400;
}

/* ---------- Pill badge — editorial, quiet ---------- */

/* Eyebrow / pill — JetBrains Mono 11pt uppercase 0.22em silver per spec */
.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--navy-600);
  border-radius: 999px;
  background: rgba(15, 28, 54, 0.5);
  color: var(--text-dim);
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.pill::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--primary-light);
  flex-shrink: 0;
}
.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.hero-pills { margin-top: 2.25rem; }

.header-signin {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(240, 241, 243, 0.3);
  transition: border-color 0.2s ease;
}
.header-signin:hover { border-bottom-color: var(--primary-light); }

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text);
  padding: 0 0 6px 0;
  border-bottom: 1px solid rgba(240, 241, 243, 0.3);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.btn-text-link::before {
  content: "▶";
  font-size: 0.55rem;
  color: var(--primary-light);
}
.btn-text-link:hover { color: var(--primary-light); border-bottom-color: var(--primary-light); }

.hero-corner-meta {
  position: absolute;
  top: 2.5rem;
  right: 2.5rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
  line-height: 1.8;
  z-index: 2;
}
.hero-corner-meta .primary { color: var(--primary-light); }

/* Volume marker + city ticker — editorial opening strip */
.hero-issue {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 1rem 0;
  margin-bottom: 3rem;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  color: var(--text-muted);
}
.hero-issue .cities { color: var(--text-dim); font-size: 0.75rem; letter-spacing: 0.06em; }
@media (max-width: 640px) {
  .hero-issue { flex-direction: column; align-items: flex-start; gap: 0.375rem; }
}

@media (max-width: 768px) {
  .hero-corner-meta { display: none; }
  .site-nav { display: none; }
  .header-signin { display: none; }
}

/* ---------- Hero ---------- */

.hero { padding: 5rem 0 4rem; position: relative; }
.hero-large { padding: 7rem 0 5rem; }

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-dim);
}

.ornament { color: var(--text-dim); margin: 1.5rem 0; }
.ornament-centered { text-align: center; }
.ornament-symbol { font-size: 0.875rem; letter-spacing: 0.6em; }

/* ---------- Buttons — text-link style (matches 1031 "Begin Your Exchange") ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0 0 8px 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.5);
  border-radius: 0;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  text-align: left;
  white-space: nowrap;
}
.btn:hover { color: var(--primary-light); border-bottom-color: var(--primary-light); }

/* Primary, outline, ghost, link — all collapse to the same text-link visual */
.btn-primary,
.btn-outline,
.btn-ghost,
.btn-link {
  background: transparent;
  color: var(--text);
  border: 0;
  border-bottom: 1px solid rgba(96, 165, 250, 0.5);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 0 0 8px 0;
}
.btn-primary:hover,
.btn-outline:hover,
.btn-ghost:hover,
.btn-link:hover {
  color: var(--primary-light);
  border-bottom-color: var(--primary-light);
}

.btn-xl {
  padding: 0 0 8px 0;
  font-size: 0.6875rem;
}
.btn-block { width: 100%; }
.btn-arrow::after { content: ""; display: none; }
.btn-link::after { content: ""; display: none; }

/* CTA — large Framer-style shaded blue button.
   Layered gradient (blue-light → blue → blue-dark), inset highlight,
   outer blue halo glow. Uses the full brand blue palette. */
.btn-cta,
.btn.btn-cta,
.btn-primary.btn-cta {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 55%, #1D4ED8 100%);
  color: var(--white);
  border: 1px solid rgba(147, 197, 253, 0.55);
  border-radius: 14px;
  padding: 1.5rem 3.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: -0.005em;
  text-transform: none;
  white-space: nowrap;
  text-align: center;
  min-height: 0;
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, 0.18) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.25) inset,
    0 0 0 1px rgba(59, 130, 246, 0.18),
    0 12px 32px -8px rgba(59, 130, 246, 0.55),
    0 24px 60px -12px rgba(29, 78, 216, 0.5);
  transition: transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
              background 0.3s ease,
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease;
}
/* Soft outer halo behind the button — sits beyond the border, bloom */
.btn-cta::before,
.btn-primary.btn-cta::before {
  content: "";
  position: absolute;
  inset: -22px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.45), transparent 70%);
  filter: blur(20px);
  opacity: 0.7;
  z-index: -1;
  transition: opacity 0.35s ease, inset 0.35s ease;
  pointer-events: none;
}
.btn-cta:hover,
.btn-primary.btn-cta:hover {
  background: linear-gradient(180deg, #93C5FD 0%, #60A5FA 50%, #3B82F6 100%);
  color: var(--white);
  border-color: rgba(147, 197, 253, 0.85);
  transform: translateY(-2px);
  box-shadow:
    0 0 0 1px rgba(147, 197, 253, 0.3) inset,
    0 1px 0 0 rgba(255, 255, 255, 0.35) inset,
    0 0 0 1px rgba(96, 165, 250, 0.3),
    0 16px 36px -8px rgba(59, 130, 246, 0.7),
    0 32px 80px -12px rgba(29, 78, 216, 0.6);
}
.btn-cta:hover::before,
.btn-primary.btn-cta:hover::before {
  inset: -32px;
  opacity: 1;
}
.btn-cta:active,
.btn-primary.btn-cta:active { transform: translateY(0); }

.btn-cta::after,
.btn-primary.btn-cta::after {
  content: " →";
  display: inline-block;
  font-weight: 400;
  transition: transform 0.2s ease;
}
.btn-cta:hover::after { transform: translateX(3px); }

.btn-cta-block {
  display: inline-flex;
  width: auto;
  max-width: none;
  margin: 2rem 0 0;
  /* VSL CTA — significantly larger than default to drive click urgency */
  padding: 2.25rem 5rem;
  font-size: 1.875rem;
  letter-spacing: 0.01em;
  border-radius: 20px;
}

/* Subtext under the CTA — inherits text-align from parent so it works
   left-aligned in the hero and centered inside the checkout card */
.cta-subtext {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-dim);
  letter-spacing: -0.005em;
}

@media (max-width: 720px) {
  .btn-cta { font-size: 0.625rem; }
}

.btn-subtext {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: none;
  color: var(--text-dim);
  font-style: italic;
}
/* Centered hero — text and inline groups all center to the page */
.hero .container-content { text-align: center; }
.hero .container-content .hero-sub { margin-left: auto; margin-right: auto; max-width: 38rem; }
.hero .container-content .hero-ctas {
  display: inline-flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  justify-content: center;
}
.hero .container-content .pill-row {
  justify-content: center;
}
.hero .container-content .vsl-wrap { margin-left: auto; margin-right: auto; }
.hero-issue { width: 100%; }

/* Hero illustration — editorial skyline above the H1 */
.hero-illustration {
  display: block;
  margin: 0 auto 2.25rem;
  width: 240px;
  max-width: 80%;
  opacity: 0.95;
}

/* Hero background photo slot — drop a photo at assets/images/hero-bg.jpg
   The img is full-cover with a top-down navy fade so text stays readable */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  filter: saturate(0.85);
}
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 10, 20, 0.55) 0%, rgba(5, 10, 20, 0.85) 60%, var(--bg) 100%);
}
.hero { position: relative; }
.hero > .container-content { position: relative; z-index: 1; }

/* Testimonial open-quote glyph */
.testimonial { position: relative; padding-top: 2.75rem; }
.testimonial::before {
  content: "\201C"; /* curly opening quote */
  position: absolute;
  top: 0.875rem;
  left: 1.75rem;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 4rem;
  line-height: 1;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  opacity: 0.85;
  pointer-events: none;
}

/* Patrick avatar — large initial circle with blue gradient ring */
.bio-avatar {
  display: block;
  margin: 0 auto 2rem;
  width: 144px;
  height: 144px;
  border-radius: 50%;
  background: var(--card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.bio-avatar::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
}
.bio-avatar-initial {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 5.5rem;
  letter-spacing: -0.02em;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.bio-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  display: block;
}

.bio-caption {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: center;
  margin: 0 0 2rem;
}

/* Testimonial avatar — small initials circle */
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--bg-soft);
  border: 1px solid var(--border);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.25rem;
  letter-spacing: -0.01em;
  background-clip: padding-box;
  background-image:
    linear-gradient(var(--bg-soft), var(--bg-soft)),
    linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
  background-origin: border-box;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-right: 0.875rem;
}
.testimonial-avatar img {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}
.testimonial-attrib {
  display: flex;
  align-items: center;
}
.testimonial-attrib > span:not(.testimonial-avatar) {
  flex: 1;
}

/* ---------- Cards ---------- */

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.875rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.card:hover {
  background: var(--card-hover);
  border-color: var(--border-strong);
}
.card-accent {
  position: relative;
  border-color: rgba(96, 165, 250, 0.3);
  background: var(--card);
  overflow: hidden;
}
.card-accent > * { position: relative; z-index: 1; }
.card-number {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  text-transform: none;
  margin-bottom: 1rem;
}

/* Stat card — borderless value in serif, mono label */
.stat {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.stat-value {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(2.5rem, 4.5vw, 3.75rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: #ffffff;
  text-shadow: 0 0 24px rgba(96, 165, 250, 0.45);
}
.stat-value .accent {
  font-style: italic;
  font-weight: 400;
  background: linear-gradient(135deg, #93c5fd 0%, #60a5fa 50%, #3b82f6 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.stat-label {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Stat grid — 4 cols, borderless-inside style matching cost-seg */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--card);
}
.stat-grid .stat {
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 0;
  padding: 2rem 1.5rem;
  background: transparent;
}
.stat-grid .stat:last-child { border-right: 0; }
@media (max-width: 860px) {
  .stat-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-grid .stat:nth-child(2) { border-right: 0; }
  .stat-grid .stat:nth-child(1), .stat-grid .stat:nth-child(2) { border-bottom: 1px solid var(--border); }
}

/* ---------- Grids ---------- */

.grid { display: grid; gap: 1.25rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-narrow { gap: 1rem; }
@media (max-width: 860px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

.stack > * + * { margin-top: 1rem; }
.stack-tight > * + * { margin-top: 0.5rem; }
.stack-loose > * + * { margin-top: 1.75rem; }

/* ---------- Checklist ---------- */

.checklist { list-style: none; padding: 0; margin: 0; }
.checklist li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.875rem;
  color: #D5DCE6;
  font-size: 1rem;
  line-height: 1.65;
  font-weight: 400;
}
.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.0625rem;
  width: 0.4375rem;
  height: 0.4375rem;
  border-radius: 50%;
  background: #7DCEFF;
  box-shadow:
    0 0 12px rgba(125, 224, 255, 0.7),
    0 0 1px rgba(125, 224, 255, 0.5);
}
.checklist li::after { content: none; }

/* ---------- Pull quote — editorial, large serif ---------- */

.pull-quote {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.625rem, 3.2vw, 2.5rem);
  line-height: 1.35;
  color: var(--text);
  max-width: 34ch;
  margin: 0 auto 2rem;
  text-align: center;
  letter-spacing: -0.02em;
}
.pull-quote .accent { color: var(--primary-light); }

/* ---------- Arsenal ledger — editorial row layout ---------- */

.arsenal-ledger {
  border-top: 1px solid var(--border);
  margin-top: 1rem;
}
.arsenal-row {
  position: relative;
  display: grid;
  grid-template-columns: 3rem 4rem 1fr auto;
  gap: 1.75rem 2.5rem;
  align-items: baseline;
  padding: 2.25rem 1.5rem 2.25rem 0;
  border-bottom: 1px solid var(--border);
  transition: background 0.3s ease, padding-left 0.3s ease;
}

/* Arsenal icon — 32px line glyph in blue gradient */
.arsenal-icon {
  width: 32px;
  height: 32px;
  display: block;
  align-self: center;
  flex-shrink: 0;
  color: var(--primary-light);
}
.arsenal-icon path,
.arsenal-icon circle,
.arsenal-icon line,
.arsenal-icon polyline {
  stroke: url(#arsenalGrad);
}
.arsenal-row::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 0;
  background: linear-gradient(180deg, transparent, var(--primary-light) 30%, var(--primary-light) 70%, transparent);
  transition: height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
.arsenal-row:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.05), transparent 70%);
  padding-left: 1.5rem;
}
.arsenal-row:hover::before { height: 70%; }

.arsenal-roman {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--primary-light);
  line-height: 0.9;
  letter-spacing: -0.02em;
  align-self: start;
  padding-top: 0.5rem;
  opacity: 0.85;
}

.arsenal-body {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.arsenal-category {
  font-family: var(--font-mono);
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.arsenal-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  color: var(--text);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin: 0;
}
.arsenal-name em {
  font-style: italic;
  font-weight: 300;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.arsenal-desc {
  margin: 0.25rem 0 0;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  color: var(--text-muted);
  max-width: 58ch;
  line-height: 1.7;
}

.arsenal-value {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.25rem;
  color: var(--text-dim);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  letter-spacing: -0.01em;
}
.arsenal-value strong {
  font-weight: 300;
  color: var(--primary-light);
  font-style: italic;
  font-size: 1.5rem;
}
.arsenal-value-label {
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 300;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Bundle savings line — sits below the ledger */
.arsenal-summary {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
}
.arsenal-summary-line {
  font-family: var(--font-heading);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(1.25rem, 2vw, 1.625rem);
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0;
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.4);
}
.arsenal-summary-line .strike {
  color: #94A6BD;
  font-style: normal;
  text-decoration: line-through;
  margin-right: 0.5rem;
  font-size: 0.85em;
  opacity: 0.8;
}
.arsenal-summary-line .now {
  color: #7DCEFF;
  font-weight: 400;
  text-shadow:
    0 0 22px rgba(125, 224, 255, 0.55),
    0 0 1px rgba(125, 224, 255, 0.35);
}

@media (max-width: 720px) {
  .arsenal-row {
    grid-template-columns: 2.25rem 1fr;
    gap: 0.75rem 1.25rem;
    padding-right: 0;
  }
  .arsenal-roman {
    grid-column: 2;
    font-size: 2.25rem;
    padding-top: 0;
  }
  .arsenal-value {
    grid-column: 2;
    align-self: start;
    padding-top: 0.5rem;
  }
  .arsenal-icon { width: 24px; height: 24px; align-self: start; padding-top: 0.5rem; }
}

/* ---------- Testimonial — editorial, quieter ---------- */

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.25rem 2rem;
  position: relative;
}
.testimonial-headline {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.35;
  letter-spacing: -0.015em;
}
.testimonial-body {
  font-family: var(--font-body);
  color: var(--text-muted);
  line-height: 1.7;
  font-size: 0.9375rem;
  font-weight: 300;
  margin: 0;
}
.testimonial-attrib {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
  text-transform: none;
  color: var(--text-dim);
}

/* ---------- FAQ ---------- */

.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.375rem;
  color: var(--text);
  padding: 0.25rem 0;
  letter-spacing: -0.015em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.75rem;
  color: var(--primary-light);
  transition: transform 0.2s ease;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { color: var(--primary-light); }
.faq-answer {
  padding: 1rem 0 0;
  color: var(--text-muted);
  line-height: 1.75;
  font-size: 0.9375rem;
  max-width: 62ch;
  font-weight: 300;
}

/* ---------- Pricing bar — editorial, no gradient glow ---------- */

.price-strip {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1rem 0;
}
.price-strip .strike {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.625rem;
  color: #94A6BD;
  text-decoration: line-through;
  text-decoration-color: rgba(96, 165, 250, 0.55);
  text-decoration-thickness: 1.5px;
  letter-spacing: -0.01em;
  opacity: 0.85;
}
.price-strip .price {
  position: relative;
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: clamp(3.5rem, 7vw, 5.75rem);
  color: #ffffff;
  letter-spacing: -0.03em;
  line-height: 1;
  text-shadow:
    0 1px 0 rgba(0, 0, 0, 0.4),
    0 0 28px rgba(96, 165, 250, 0.55),
    0 0 80px rgba(59, 130, 246, 0.35);
}
.price-strip .price em,
.price-strip .price .accent {
  font-style: italic;
  color: #7DCEFF;
  text-shadow:
    0 0 24px rgba(125, 224, 255, 0.55),
    0 0 1px rgba(125, 224, 255, 0.35);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}
.price-strip .save {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  padding: 0.5rem 1rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.4), rgba(59, 130, 246, 0.18));
  border: 1px solid rgba(96, 165, 250, 0.65);
  border-radius: 999px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  box-shadow:
    0 0 24px -6px rgba(59, 130, 246, 0.6),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
}

/* ---------- Tool card — editorial ---------- */

.tool-card {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.875rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.tool-card:hover {
  border-color: var(--border-strong);
  background: var(--card-hover);
}
.tool-card .tool-number {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  color: var(--primary-light);
  letter-spacing: 0.06em;
  font-weight: 400;
  text-transform: none;
  display: inline-flex;
  align-items: baseline;
  gap: 0.625rem;
}
.tool-card .tool-number::before {
  content: "";
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-3px);
}
.tool-card h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 300;
  margin: 0;
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}
.tool-card p {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 0.9375rem;
  font-weight: 300;
  margin: 0;
  line-height: 1.7;
}
.tool-card .tool-price {
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.8125rem;
  color: var(--text-dim);
  letter-spacing: 0.04em;
}
.tool-card .tool-price strong { color: var(--primary-light); font-weight: 400; font-style: italic; }

/* Upsell hero icon — large version of the matching arsenal glyph */
.upsell-icon {
  width: 56px;
  height: 56px;
  display: block;
  margin: 0 auto 1.5rem;
  color: var(--primary-light);
}
.upsell-icon path,
.upsell-icon circle,
.upsell-icon rect,
.upsell-icon line,
.upsell-icon polyline {
  stroke: url(#arsenalGrad);
}

/* ---------- Upsell hero card — editorial ---------- */

.upsell-hero {
  position: relative;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2.75rem;
  text-align: center;
  overflow: hidden;
}
.upsell-hero > * { position: relative; z-index: 1; }
.upsell-hero .eyebrow { justify-content: center; }
.upsell-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 400;
  margin: 0.5rem auto 1.5rem;
  max-width: 26ch;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
}
.upsell-hero h1 em, .upsell-hero h1 .accent {
  font-style: italic;
  color: #7DCEFF;
  font-weight: 300;
  text-shadow:
    0 0 24px rgba(125, 224, 255, 0.5),
    0 0 1px rgba(125, 224, 255, 0.3);
}
.upsell-hero .hook {
  color: #D5DCE6;
  max-width: 54ch;
  margin: 0 auto 1.75rem;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.65;
}

/* Stack the upsell Yes/No CTAs vertically with auto width so each
   button is sized to its text instead of stretching full container */
.upsell-hero .btn-primary,
.upsell-hero .btn-link {
  display: table;        /* auto-width block-level */
  width: auto;
  margin-left: auto;
  margin-right: auto;
}
.upsell-hero .btn-primary { color: var(--text); margin-top: 1.75rem; }
.upsell-hero .btn-link {
  color: var(--text-dim);
  border-bottom-color: rgba(122, 138, 158, 0.4);
  margin-top: 1.5rem;
}
.upsell-hero .btn-link:hover { color: var(--text); border-bottom-color: var(--text-muted); }

/* ---------- VSL — editorial, no glow ---------- */

.vsl-wrap {
  width: 100%;
  max-width: 860px;
  margin: 2.5rem auto 0;
}
.vsl-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
}
.vsl-frame iframe,
.vsl-frame video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.vsl-poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  color: var(--text);
  font-family: var(--font-body);
  transition: background 0.2s ease;
}
.vsl-poster:hover { background: rgba(59,130,246,0.04); }
.vsl-play {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: var(--primary-light);
  transition: border-color 0.25s ease, background 0.25s ease;
}
.vsl-play svg { margin-left: 4px; }
.vsl-poster:hover .vsl-play {
  border-color: var(--primary-light);
  background: rgba(59, 130, 246, 0.08);
}
.vsl-poster-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
.vsl-poster-text .mono {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.vsl-poster-text span:last-child {
  font-family: var(--font-heading);
  font-size: clamp(1.125rem, 1.8vw, 1.375rem);
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  letter-spacing: -0.01em;
}
.vsl-caption {
  margin-top: 1.5rem;
  text-align: center;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Footer ---------- */

.site-footer {
  padding: 5rem 0;
  border-top: 1px solid #1b2d4a;
  background: transparent;
}
.site-footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.site-footer-meta {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-dim);
  text-align: right;
  line-height: 1.8;
}
.site-footer .disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.65;
  max-width: 70ch;
}

/* ---------- Animations ---------- */

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both; }
.fade-up-delay-1 { animation-delay: 0.08s; }
.fade-up-delay-2 { animation-delay: 0.18s; }
.fade-up-delay-3 { animation-delay: 0.28s; }
.fade-up-delay-4 { animation-delay: 0.38s; }

/* ---------- Utilities ---------- */

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 2.5rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* ==========================================================================
   Funnel elements: sticky CTA bar, exit-intent modal, social proof toast
   ========================================================================== */

/* ---------- Sticky bottom CTA bar ---------- */

.sticky-cta-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 50;
  background: linear-gradient(180deg, rgba(14, 20, 36, 0.96), rgba(5, 10, 20, 0.98));
  border-top: 1px solid rgba(96, 165, 250, 0.3);
  backdrop-filter: blur(14px);
  /* iOS safe-area: keep bar above the home indicator without clipping content */
  padding: 0.875rem 1.25rem calc(0.875rem + env(safe-area-inset-bottom, 0px));
  transform: translateY(120%);
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.sticky-cta-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.sticky-cta-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.sticky-cta-product { flex: 1; min-width: 0; }
.sticky-cta-label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-light);
  display: block;
  margin-bottom: 2px;
}
.sticky-cta-name {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.0625rem;
  color: var(--text);
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-cta-name em {
  font-style: italic;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.sticky-cta-price {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.5rem;
  color: var(--text);
  white-space: nowrap;
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
}
.sticky-cta-price .strike {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-decoration: line-through;
}
.sticky-cta-button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 4px;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.8125rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.sticky-cta-button:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-1px);
}
.sticky-cta-button::after { content: " →"; font-weight: 300; }
.sticky-cta-close {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 1.25rem;
  cursor: pointer;
  padding: 0.25rem 0.5rem;
  line-height: 1;
  transition: color 0.2s ease;
}
.sticky-cta-close:hover { color: var(--text); }

@media (max-width: 720px) {
  .sticky-cta-bar { padding: 0.75rem 1rem; }
  .sticky-cta-bar-inner { gap: 0.75rem; flex-wrap: wrap; }
  .sticky-cta-product { width: 100%; flex: none; }
  .sticky-cta-name { font-size: 0.9375rem; }
  .sticky-cta-price { font-size: 1.25rem; }
  .sticky-cta-button {
    flex: 1;
    justify-content: center;
    padding: 0.875rem 1rem;
    font-size: 0.75rem;
  }
}

/* ---------- Exit-intent modal ---------- */

.exit-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(5, 10, 20, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: exitFade 0.25s ease;
}
.exit-modal.is-active { display: flex; }
@keyframes exitFade { from { opacity: 0; } to { opacity: 1; } }

.exit-modal-card {
  position: relative;
  max-width: 540px;
  width: 100%;
  background: var(--card);
  border: 1px solid rgba(96, 165, 250, 0.3);
  border-radius: 4px;
  padding: 3.25rem 2.75rem 3rem;
  text-align: center;
  animation: exitRise 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes exitRise {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.exit-modal-eyebrow {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin: 0 0 1rem;
}
.exit-modal-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 2.25rem;
  color: var(--text);
  margin: 0 0 1rem;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.exit-modal-headline em {
  font-style: italic;
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 50%, #60a5fa 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.exit-modal-body {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin: 0 0 1.75rem;
  max-width: 38ch;
  margin-left: auto;
  margin-right: auto;
}
.exit-modal-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  border: 1px solid rgba(147, 197, 253, 0.5);
  border-radius: 4px;
  padding: 1rem 2rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  white-space: nowrap;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
}
.exit-modal-cta:hover {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  transform: translateY(-1px);
}
.exit-modal-cta::after { content: " →"; font-weight: 300; }
.exit-modal-decline {
  display: block;
  margin-top: 1.25rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: var(--text-dim);
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
.exit-modal-decline:hover { color: var(--text-muted); }
.exit-modal-close {
  position: absolute;
  top: 0.75rem;
  right: 0.875rem;
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.25rem 0.5rem;
  transition: color 0.2s ease;
}
.exit-modal-close:hover { color: var(--text); }

@media (max-width: 540px) {
  .exit-modal-card { padding: 2.5rem 1.5rem 2rem; }
  .exit-modal-headline { font-size: 1.75rem; }
}

/* ---------- Social proof toast (bottom-left rotating) ---------- */

.social-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 40;
  max-width: 320px;
  background: var(--card);
  border: 1px solid rgba(96, 165, 250, 0.25);
  padding: 0.875rem 1.125rem;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.8125rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  transform: translateY(160%);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  pointer-events: none;
}
.social-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
}
.social-toast-icon {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border: 1px solid rgba(96, 165, 250, 0.5);
  color: var(--primary-light);
  font-size: 0.875rem;
  font-weight: 500;
}
.social-toast-text {
  flex: 1;
  line-height: 1.45;
  color: var(--text-muted);
}
.social-toast-text strong {
  color: var(--text);
  font-weight: 500;
}

@media (max-width: 720px) {
  .social-toast {
    left: 1rem;
    right: 1rem;
    bottom: 5.5rem; /* keep clear of sticky-cta-bar on mobile */
    max-width: none;
  }
}

/* When sticky bar is visible on desktop, lift the toast above it */
.sticky-cta-bar.is-visible ~ .social-toast,
body.has-sticky-cta .social-toast {
  bottom: 5.5rem;
}

/* ==========================================================================
   Framer-style polish layer
   Aurora bg, hover lifts on cards, glow halos, animated gradient text,
   subtle film grain. Layered on top of the editorial type system without
   touching the Cormorant + Inter Tight foundation.
   ========================================================================== */

/* ---------- Aurora background ---------- */

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(140px);
  will-change: transform;
}
/* Aurora orbs and film grain stripped to match pinnacle1031ai's flat
   editorial bg. The page now sits on solid var(--bg) navy. */
body::before, body::after { content: none !important; }

main, header, footer, section, .container, .container-narrow, .container-content {
  position: relative;
  z-index: 1;
}

/* Cost-seg gradient text on accent words is defined above (white→cyan→blue) */

/* ---------- Tool / Arsenal row hover lift ---------- */

.arsenal-row {
  transition: background 0.4s ease,
              padding-left 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.arsenal-row:hover {
  background: linear-gradient(90deg, rgba(59, 130, 246, 0.07), rgba(59, 130, 246, 0.02) 60%, transparent 100%);
  padding-left: 1.75rem;
}
.arsenal-row:hover .arsenal-icon {
  transform: scale(1.08);
}
.arsenal-icon {
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Card hover lift + halo (testimonial, generic .card, upsell-hero) ---------- */

.card,
.testimonial,
.upsell-hero {
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.4s ease,
    border-color 0.4s ease,
    box-shadow 0.4s ease;
  will-change: transform;
}
.card:hover,
.testimonial:hover,
.upsell-hero:hover {
  transform: translateY(-4px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 0 32px -8px rgba(59, 130, 246, 0.4),
    0 30px 60px -22px rgba(0, 0, 0, 0.6);
}

/* ---------- VSL frame glow ---------- */

.vsl-frame {
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.05) inset,
    0 0 0 1px rgba(96, 165, 250, 0.1),
    0 0 60px -8px rgba(59, 130, 246, 0.4),
    0 40px 100px -30px rgba(0, 0, 0, 0.8);
}

/* ---------- Big CTA shine sweep ---------- */

.btn-cta {
  position: relative;
  overflow: hidden;
}
.btn-cta::before {
  content: "";
  position: absolute;
  inset: -50% -10%;
  background: linear-gradient(
    115deg,
    transparent 35%,
    rgba(255, 255, 255, 0.18) 50%,
    transparent 65%
  );
  transform: translateX(-100%);
  transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}
.btn-cta:hover::before { transform: translateX(100%); }

/* Glow halo behind primary CTA */
.btn-cta {
  isolation: isolate;
}
.btn-cta::after {
  content: "";
  position: absolute;
  inset: -24px;
  border-radius: inherit;
  background: radial-gradient(closest-side, rgba(59, 130, 246, 0.45), transparent 70%);
  filter: blur(22px);
  opacity: 0.7;
  z-index: -1;
  transition: opacity 0.4s ease, inset 0.4s ease;
}
.btn-cta:hover::after { opacity: 1; inset: -34px; }

/* ---------- Section divider — gradient hairline ---------- */

.section-dark {
  border-top: 0;
  border-bottom: 0;
  position: relative;
}
.section-dark::before,
.section-dark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(96, 165, 250, 0.35) 50%,
    transparent 100%
  );
  pointer-events: none;
}
.section-dark::before { top: 0; }
.section-dark::after  { bottom: 0; }

/* ---------- Reveal-on-scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Brand mark breathing animation ---------- */

/* Brand mark stays static — matches 1031's logo treatment */

/* ---------- Pricing card glow ---------- */

.card-accent {
  position: relative;
}
.card-accent::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(96, 165, 250, 0.5),
    rgba(59, 130, 246, 0.15) 50%,
    rgba(96, 165, 250, 0.5)
  );
  background-size: 200% 200%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  animation: gradientShift 11s ease-in-out infinite;
  pointer-events: none;
}

/* ==========================================================================
   Checkout page — centered Framer-style enrollment design
   ========================================================================== */

.checkout-shell {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.checkout-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin: 0 auto 1.5rem;
}
.checkout-eyebrow::before,
.checkout-eyebrow::after {
  content: "";
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: var(--primary-light);
  opacity: 0.6;
}

.checkout-headline {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--text);
  margin: 0 auto 1.25rem;
}
.checkout-headline em {
  font-style: italic;
  font-weight: 300;
}

.checkout-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 38rem;
  margin: 0 auto 3rem;
}

/* The big enrollment card — animated gradient border (uses .card-accent
   from the existing system). Centered + spaced. */
.checkout-card {
  text-align: center;
  padding: 3.5rem 2.5rem !important;
  border-radius: 6px;
}
.checkout-card-title {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  color: var(--primary-light);
  margin: 0 0 1rem;
}
.checkout-card-product {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  letter-spacing: -0.02em;
  color: var(--text);
  margin: 0 auto 1.5rem;
  max-width: 20ch;
}
.checkout-card-product em { font-style: italic; }

.checkout-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(96, 165, 250, 0.3) 50%, transparent 100%);
  margin: 2rem auto;
  max-width: 80%;
}

.checkout-checklist {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  max-width: 520px;
  text-align: left;
}
.checkout-checklist li {
  position: relative;
  padding: 0.25rem 0 0.25rem 1.875rem;
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
}
.checkout-checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.625rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: rgba(59, 130, 246, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.5);
}
.checkout-checklist li::after {
  content: "";
  position: absolute;
  left: 0.32rem;
  top: 0.78rem;
  width: 0.3rem;
  height: 0.55rem;
  border-right: 1.5px solid var(--primary-light);
  border-bottom: 1.5px solid var(--primary-light);
  transform: rotate(45deg);
}

@media (max-width: 540px) {
  .checkout-checklist { grid-template-columns: 1fr; max-width: 320px; }
  .checkout-card { padding: 2.5rem 1.5rem !important; }
}

/* Trust badges row under the card */
.trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.5rem;
  margin: 3rem auto 0;
}
.trust-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.trust-item svg {
  width: 18px;
  height: 18px;
  stroke: var(--primary-light);
  flex-shrink: 0;
}
@media (max-width: 540px) {
  .trust-row { gap: 1rem 1.75rem; }
}

/* ---------- Pre-checkout MODAL (two-step pattern) ---------- */
/* Triggered by clicking a $149 CTA on landing pages. Captures
   name/email/phone, posts to Solarian, redirects to Stripe. */
.lto-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(5, 12, 24, 0.78);
  backdrop-filter: blur(8px) saturate(120%);
  -webkit-backdrop-filter: blur(8px) saturate(120%);
  padding: 1.25rem;
  opacity: 0;
  transition: opacity 0.22s ease;
}
.lto-modal.is-open {
  display: flex;
  opacity: 1;
}
.lto-modal-card {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: linear-gradient(180deg, var(--navy-800) 0%, var(--navy-900) 100%);
  border: 1px solid rgba(96, 165, 250, 0.28);
  border-radius: 12px;
  padding: 2.5rem 2rem 2rem;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 0 1px rgba(96, 165, 250, 0.08) inset,
    0 0 60px rgba(59, 130, 246, 0.15);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.28s cubic-bezier(0.2, 0.8, 0.2, 1), opacity 0.28s ease;
}
.lto-modal.is-open .lto-modal-card {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.lto-modal-close {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 0;
  border-radius: 50%;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.lto-modal-close:hover {
  background: rgba(96, 165, 250, 0.12);
  color: var(--text);
}
.lto-modal-eyebrow {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-light);
  margin: 0 0 0.5rem;
  text-align: center;
}
.lto-modal-heading {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  margin: 0 0 0.625rem;
}
.lto-modal-heading em { font-style: italic; }
.lto-modal-sub {
  font-family: var(--font-body);
  font-weight: 300;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-muted);
  text-align: center;
  margin: 0 auto 1.625rem;
  max-width: 28rem;
}
.lto-modal-price-strip {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.625rem;
  margin: 0 0 1.5rem;
  font-family: var(--font-heading);
}
.lto-modal-price-strip .strike {
  font-weight: 300;
  font-size: 1.125rem;
  color: var(--text-dim, var(--text-muted));
  text-decoration: line-through;
  opacity: 0.6;
}
.lto-modal-price-strip .price {
  font-weight: 300;
  font-size: 2rem;
  color: var(--text);
  letter-spacing: -0.02em;
}
.lto-modal-price-strip .save {
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary-light);
  background: rgba(59, 130, 246, 0.14);
  border: 1px solid rgba(96, 165, 250, 0.4);
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  margin-left: 0.375rem;
}
.lto-modal-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.875rem 1.25rem;
  margin: 1.25rem 0 0;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.625rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.85;
}
.lto-modal-trust span { white-space: nowrap; }
@media (max-width: 540px) {
  .lto-modal-card { padding: 2rem 1.5rem 1.5rem; }
  .lto-modal-trust { gap: 0.625rem 1rem; font-size: 0.5625rem; }
}

/* ---------- Pre-checkout lead capture form ---------- */
.precheckout-form {
  display: grid;
  gap: 0.875rem;
  max-width: 26rem;
  margin: 0 auto;
  text-align: left;
}
.precheckout-form .form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.875rem;
}
.precheckout-form label {
  display: block;
  font-family: var(--font-mono);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 0.4rem 0.125rem;
}
.precheckout-form input {
  width: 100%;
  padding: 0.875rem 1rem;
  background: rgba(10, 22, 40, 0.55);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  color: var(--text);
  transition: border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.precheckout-form input::placeholder {
  color: rgba(196, 204, 216, 0.45);
  font-weight: 300;
}
.precheckout-form input:hover {
  border-color: rgba(96, 165, 250, 0.55);
}
.precheckout-form input:focus {
  outline: none;
  border-color: var(--primary-light);
  background: rgba(10, 22, 40, 0.85);
  box-shadow: 0 0 0 3px rgba(96, 165, 250, 0.18);
}
.precheckout-form input:invalid:not(:placeholder-shown) {
  border-color: rgba(239, 68, 68, 0.6);
}
.precheckout-form button[type="submit"] {
  margin-top: 0.5rem;
  border: 0;
  cursor: pointer;
  font: inherit;
  width: 100%;
}
.precheckout-privacy {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 0.6875rem;
  letter-spacing: 0.05em;
  color: var(--text-dim, var(--text-muted));
  text-align: center;
  margin: 0.625rem 0 0;
  opacity: 0.75;
}
@media (max-width: 540px) {
  .precheckout-form .form-row-2 {
    grid-template-columns: 1fr;
  }
}

/* Social proof line below trust */
.checkout-quote {
  margin: 3rem auto 0;
  max-width: 42rem;
  text-align: center;
  position: relative;
}
.checkout-quote::before {
  content: "\201C";
  display: block;
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 5rem;
  line-height: 0.5;
  background: linear-gradient(135deg, #1d4ed8, #3b82f6, #60a5fa);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin: 0 auto 1rem;
  opacity: 0.7;
}
.checkout-quote p {
  font-family: var(--font-heading);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem);
  line-height: 1.5;
  color: var(--text);
  letter-spacing: -0.015em;
  margin: 0 0 1rem;
}
.checkout-quote cite {
  font-family: var(--font-body);
  font-weight: 300;
  font-style: normal;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* ---------- Hero footer strip — bottom rule with editorial markers ---------- */
.hero-footer-strip {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 0 0;
  margin-top: 3rem;
  border-top: 1px solid rgba(96, 165, 250, 0.22);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.6875rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.hero-footer-strip .right { color: var(--primary-light); }

@media (max-width: 720px) {
  .hero-footer-strip { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}

/* ==========================================================================
   Arsenal grid — 4-across Framer-style cards (replaces the long ledger)
   ========================================================================== */

.arsenal-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1rem;
}

.arsenal-card {
  --mx: 50%;
  --my: 50%;
  position: relative;
  background: linear-gradient(180deg, rgba(20, 25, 42, 0.92), rgba(15, 28, 54, 0.96));
  border: 1px solid var(--navy-600);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.03) inset,
    0 8px 24px -16px rgba(5, 10, 20, 0.8);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Cursor-tracking spotlight — radial blue glow that follows the mouse */
.arsenal-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    480px circle at var(--mx) var(--my),
    rgba(96, 165, 250, 0.18),
    rgba(96, 165, 250, 0.06) 30%,
    transparent 65%
  );
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

/* Animated gradient border */
.arsenal-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    var(--bg-angle, 140deg),
    rgba(96, 165, 250, 0.05) 0%,
    rgba(96, 165, 250, 0.55) 35%,
    rgba(125, 224, 255, 0.55) 55%,
    rgba(96, 165, 250, 0.05) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  z-index: 2;
}

/* Card direct children sit above ::before spotlight but below ::after rim */
.arsenal-card > * { position: relative; z-index: 1; }

.arsenal-card:hover {
  transform: translateY(-6px);
  border-color: rgba(96, 165, 250, 0.5);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 0 0 1px rgba(96, 165, 250, 0.18),
    0 0 48px -8px rgba(59, 130, 246, 0.5),
    0 32px 56px -20px rgba(5, 10, 20, 0.85);
}
.arsenal-card:hover::before { opacity: 1; }
.arsenal-card:hover::after  { opacity: 1; }

/* (Staggered reveal entrance dropped — was finicky across renderers. Cards
   render at their normal opacity/transform and rely on hover effects for
   their Framer-style polish.) */

.arsenal-card .arsenal-icon {
  width: 36px;
  height: 36px;
  align-self: flex-start;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.45s ease;
}
.arsenal-card:hover .arsenal-icon {
  transform: scale(1.12) translateY(-1px);
  filter: drop-shadow(0 0 14px rgba(96, 165, 250, 0.55));
}

/* ── Arsenal card typography — crisp solid colors + Framer glow shading ──
   Gradient-text on small type clipped poorly on dark navy (low contrast,
   anti-aliased mush). Replaced with solid bright sky-blue + soft text-shadow
   glow for the lit-from-within Framer aesthetic. Sizes bumped on labels and
   description for readability. */

.arsenal-card-meta {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.arsenal-card-meta .arsenal-roman {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #9EC8FA;
  text-shadow:
    0 0 18px rgba(96, 165, 250, 0.55),
    0 0 1px rgba(96, 165, 250, 0.3);
  -webkit-text-fill-color: currentColor;
}
.arsenal-card-meta .arsenal-card-category {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94A6BD;
}

.arsenal-card-name {
  font-family: var(--font-heading);
  font-weight: 400;
  font-size: 1.4375rem;
  letter-spacing: -0.015em;
  line-height: 1.18;
  color: var(--text);
  text-shadow: 0 1px 0 rgba(0, 0, 0, 0.45);
  margin: 0;
}
.arsenal-card-name em {
  font-style: italic;
  font-weight: 300;
  color: #7DCEFF;
  text-shadow:
    0 0 18px rgba(125, 224, 255, 0.5),
    0 0 1px rgba(125, 224, 255, 0.35);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.arsenal-card-desc {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #D5DCE6;
  margin: 0;
  flex: 1;
}

.arsenal-card-value {
  position: relative;
  margin-top: auto;
  padding-top: 1rem;
  border-top: 1px solid rgba(96, 165, 250, 0.2);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
}
/* Animated luminous divider — fades in on hover for that Framer "lit" feel */
.arsenal-card-value::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 20%;
  right: 20%;
  height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(125, 224, 255, 0.65) 50%,
    transparent 100%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
}
.arsenal-card:hover .arsenal-card-value::before { opacity: 1; }

.arsenal-card-value .price {
  font-family: var(--font-heading);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4375rem;
  letter-spacing: -0.01em;
  color: #9EC8FA;
  text-shadow:
    0 0 16px rgba(96, 165, 250, 0.5),
    0 0 1px rgba(96, 165, 250, 0.3);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}
.arsenal-card-value .label {
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #94A6BD;
}

@media (max-width: 1100px) {
  .arsenal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 820px) {
  .arsenal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 540px) {
  .arsenal-grid { grid-template-columns: 1fr; }
  .arsenal-card { padding: 1.5rem 1.25rem; }
}

/* ==========================================================================
   Framer-style hover treatment — applied to all card surfaces beyond Arsenal
   ========================================================================== */

.testimonial,
.faq-item,
.card-accent,
.checkout-card,
.bio-avatar {
  --mx: 50%;
  --my: 50%;
}

/* Cursor spotlight — radial blue gradient that follows the mouse */
.testimonial::before,
.faq-item::before,
.card-accent::before,
.checkout-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(
    520px circle at var(--mx) var(--my),
    rgba(96, 165, 250, 0.16),
    rgba(96, 165, 250, 0.05) 28%,
    transparent 65%);
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}
.testimonial > *,
.faq-item > *,
.card-accent > *,
.checkout-card > * {
  position: relative;
  z-index: 1;
}

.testimonial,
.faq-item,
.card-accent,
.checkout-card {
  position: relative;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease,
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.testimonial:hover,
.faq-item:hover,
.card-accent:hover,
.checkout-card:hover {
  transform: translateY(-3px);
  border-color: rgba(96, 165, 250, 0.4);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.04) inset,
    0 0 32px -10px rgba(59, 130, 246, 0.4),
    0 24px 48px -18px rgba(5, 10, 20, 0.7);
}
.testimonial:hover::before,
.faq-item:hover::before,
.card-accent:hover::before,
.checkout-card:hover::before {
  opacity: 1;
}

/* Bio avatar — gentler treatment since it's smaller */
.bio-avatar {
  position: relative;
  isolation: isolate;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.45s ease;
}
.bio-avatar:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 32px -8px rgba(96, 165, 250, 0.45);
}

/* ==========================================================================
   Sticky bottom buy button — slides up after scrolling past the hero
   ========================================================================== */

.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  pointer-events: none;
  padding: 0.875rem 1rem 1rem;
  transform: translateY(120%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  opacity: 0;
  display: flex;
  justify-content: center;
  background: linear-gradient(180deg,
    transparent 0%,
    rgba(5, 10, 20, 0.85) 30%,
    rgba(5, 10, 20, 0.95) 100%);
  backdrop-filter: blur(12px) saturate(1.1);
}
.sticky-buy-bar.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sticky-buy-bar-inner {
  width: 100%;
  max-width: 720px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 0.875rem 1.125rem;
  background: linear-gradient(180deg, rgba(20, 25, 42, 0.95), rgba(15, 28, 54, 0.98));
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 14px;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.06) inset,
    0 0 32px -8px rgba(59, 130, 246, 0.45),
    0 24px 56px -16px rgba(5, 10, 20, 0.85);
}
.sticky-buy-bar-product {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  min-width: 0;
}
.sticky-buy-bar-product .label {
  font-family: var(--font-mono);
  font-size: 0.625rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary-light);
}
.sticky-buy-bar-product .price-line {
  font-family: var(--font-heading);
  font-weight: 300;
  font-size: 1.0625rem;
  line-height: 1.2;
  color: var(--text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.sticky-buy-bar-product .price-line .strike {
  color: var(--text-dim);
  font-size: 0.85em;
  text-decoration: line-through;
  margin-right: 0.5rem;
}
.sticky-buy-bar-product .price-line em {
  font-style: italic;
  background: linear-gradient(135deg, #E4F1FB 0%, #6BC0F0 50%, #2E6FE8 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
}
.sticky-buy-bar-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(180deg, #60A5FA 0%, #3B82F6 60%, #1D4ED8 100%);
  color: var(--white);
  border: 1px solid rgba(147, 197, 253, 0.6);
  border-radius: 10px;
  padding: 0.75rem 1.25rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: -0.005em;
  white-space: nowrap;
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 20px -8px rgba(59, 130, 246, 0.65);
  transition: transform 0.2s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.sticky-buy-bar-cta:hover {
  transform: translateY(-1px);
  background: linear-gradient(180deg, #93C5FD 0%, #60A5FA 60%, #3B82F6 100%);
  box-shadow:
    0 1px 0 0 rgba(255, 255, 255, 0.3) inset,
    0 12px 28px -8px rgba(59, 130, 246, 0.8);
}
.sticky-buy-bar-cta::after {
  content: " →";
  font-weight: 400;
}
.sticky-buy-bar-close {
  background: transparent;
  border: 0;
  color: var(--text-dim);
  font-size: 1.125rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 6px;
  transition: color 0.2s ease, background 0.2s ease;
}
.sticky-buy-bar-close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 540px) {
  .sticky-buy-bar { padding: 0.5rem 0.625rem 0.625rem; }
  .sticky-buy-bar-inner { padding: 0.75rem 0.875rem; gap: 0.5rem; border-radius: 12px; }
  .sticky-buy-bar-product .label { font-size: 0.5625rem; }
  .sticky-buy-bar-product .price-line { font-size: 0.9375rem; }
  .sticky-buy-bar-cta { padding: 0.625rem 0.875rem; font-size: 0.8125rem; }
  .sticky-buy-bar-close { display: none; }
}

/* ==========================================================================
   SURVEY-FUNNEL TYPOGRAPHY OVERRIDE
   ==========================================================================
   The original LTO theme used Cormorant Garamond italic 300 as its hero font
   (an elegant serif vibe). This block flips all the high-impact headings,
   product names, modal titles, and price callouts to Inter 600 / Instrument
   Sans — matching the Pinnacle survey funnel's clean modern style.

   Italic-on-headings is replaced with a sky-blue accent color (no italic),
   exactly how the survey funnel handles emphasis.
   ========================================================================== */

/* Hero section h1 and similar — punchier weight, tighter letter-spacing */
.hero h1,
.hero-large h1,
.upsell-hero h1,
.checkout-headline {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.05;
}

.hero h1 em, .hero h1 .accent,
.hero-large h1 em, .hero-large h1 .accent,
.upsell-hero h1 em, .upsell-hero h1 .accent,
.checkout-headline em, .checkout-headline .accent {
  font-style: normal;
  font-weight: 600;
  color: #7DCEFF;
  text-shadow:
    0 0 28px rgba(125, 224, 255, 0.55),
    0 0 1px rgba(125, 224, 255, 0.3);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

/* Product / card / section headings — keep the punch but a touch lighter */
.checkout-card-product,
.arsenal-card-name,
.lto-modal-heading,
.faq-item h3,
.tool-card-name {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.checkout-card-product em, .checkout-card-product .accent,
.arsenal-card-name em, .arsenal-card-name .accent,
.lto-modal-heading em, .lto-modal-heading .accent {
  font-style: normal;
  font-weight: 600;
  color: #7DCEFF;
  text-shadow:
    0 0 22px rgba(125, 224, 255, 0.5),
    0 0 1px rgba(125, 224, 255, 0.3);
  background: none;
  -webkit-background-clip: initial;
          background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

/* Roman numerals on arsenal cards — kill italic, keep glow */
.arsenal-card-meta .arsenal-roman {
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* Price typography — drop italic on big prices and price-strip accents */
.price-strip .price,
.checkout-card .price,
.lto-modal-price-strip .price,
.arsenal-card-value .price,
.sticky-buy-bar-price {
  font-family: var(--font-heading);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.03em;
}
.price-strip .price em,
.price-strip .price .accent {
  font-style: normal;
  font-weight: 600;
  color: #7DCEFF;
}

/* Body / hero copy — Instrument Sans with comfortable weight */
.hero h1 + p, .hero .lead,
.hero-large p,
.upsell-hero .hook,
.checkout-sub,
.lto-modal-sub,
p.lead,
.arsenal-card-desc {
  font-family: var(--font-body);
  font-style: normal;
}

/* Quotes / testimonials — these can keep italic since pull-quote italic is
   genuine editorial styling, not Cormorant-specific. */
.checkout-quote p,
blockquote.testimonial,
.testimonial-quote {
  font-family: var(--font-body);
  font-style: italic;
  font-weight: 400;
}

/* ==========================================================================
   ORDER BUNDLE BOX — Framer-style luminous container
   ==========================================================================
   Dramatic glow + animated gradient border on the .checkout-card and the
   pre-checkout modal card. Higher specificity than the base .checkout-card
   rules so these win.
   ========================================================================== */

section.hero .checkout-card,
section .checkout-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(96, 165, 250, 0.12), transparent 55%),
    linear-gradient(180deg, #0F1C36 0%, #0A1628 100%);
  border: 1px solid rgba(96, 165, 250, 0.32);
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.06) inset,
    0 1px 0 rgba(255, 255, 255, 0.04) inset,
    0 36px 80px -28px rgba(5, 10, 24, 0.85),
    0 0 80px -16px rgba(59, 130, 246, 0.45),
    0 0 160px -40px rgba(125, 224, 255, 0.35);
  overflow: visible;
}
/* Animated gradient rim that shimmers around the card */
section .checkout-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 224, 255, 0.65) 0%,
    rgba(96, 165, 250, 0.4) 30%,
    rgba(46, 111, 232, 0.55) 50%,
    rgba(96, 165, 250, 0.4) 70%,
    rgba(125, 224, 255, 0.65) 100%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: ltoCardRim 9s linear infinite;
}
/* Outer ambient glow halo behind the card — gives the Framer "lit-up" feel */
section .checkout-card::after {
  content: "";
  position: absolute;
  inset: -36px;
  border-radius: 36px;
  background: radial-gradient(
    closest-side at 50% 50%,
    rgba(96, 165, 250, 0.22) 0%,
    rgba(96, 165, 250, 0.05) 55%,
    transparent 80%);
  filter: blur(28px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.85;
}
@keyframes ltoCardRim {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Same treatment for the pre-checkout modal card */
.lto-modal-card {
  position: relative;
  isolation: isolate;
  border-radius: 18px !important;
  background:
    radial-gradient(140% 100% at 50% 0%, rgba(96, 165, 250, 0.16), transparent 55%),
    linear-gradient(180deg, #0F1C36 0%, #0A1628 100%) !important;
  border: 1px solid rgba(96, 165, 250, 0.36) !important;
  box-shadow:
    0 0 0 1px rgba(96, 165, 250, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.05) inset,
    0 30px 60px -22px rgba(5, 10, 24, 0.85),
    0 0 70px -14px rgba(59, 130, 246, 0.5),
    0 0 140px -36px rgba(125, 224, 255, 0.4) !important;
}
.lto-modal-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(
    135deg,
    rgba(125, 224, 255, 0.7) 0%,
    rgba(96, 165, 250, 0.45) 30%,
    rgba(46, 111, 232, 0.6) 50%,
    rgba(96, 165, 250, 0.45) 70%,
    rgba(125, 224, 255, 0.7) 100%);
  background-size: 220% 220%;
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask-composite: exclude;
  pointer-events: none;
  z-index: 2;
  animation: ltoCardRim 9s linear infinite;
}

/* ==========================================================================
   HUGE FRAMER-STYLE UPSELL CTA BUTTONS
   ==========================================================================
   The upsell page primary "Yes" button is HEROIC — big, glowing, gradient,
   with the survey-funnel sky-blue → cyan look. The "No thanks" downsell
   stays subtle as a quiet text link, preserving hierarchy.
   ========================================================================== */

.upsell-hero .btn-primary {
  /* display: flex (block-level) instead of inline-flex so margin: auto
     centers it. Inline elements ignore horizontal auto margins. */
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  min-width: 320px;
  max-width: 560px;
  padding: 1.5rem 3rem !important;
  margin: 2rem auto 0.5rem !important;

  font-family: var(--font-body) !important;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
  line-height: 1.2 !important;
  white-space: normal;
  text-align: center;

  color: #05070B !important;
  background: linear-gradient(135deg, #2E6FE8 0%, #41A3DD 55%, #6BC0F0 100%) !important;
  background-size: 180% 180%;
  border: 0 !important;
  border-radius: 18px !important;

  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 16px 36px -8px rgba(46, 111, 232, 0.55),
    0 0 60px -8px rgba(125, 224, 255, 0.4) !important;

  transform: translateY(0);
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    background-position 0.45s ease;
}
.upsell-hero .btn-primary::after { content: none; }   /* override editorial arrow if any */
.upsell-hero .btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 100%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 22px 44px -8px rgba(46, 111, 232, 0.65),
    0 0 80px -6px rgba(125, 224, 255, 0.55) !important;
}
.upsell-hero .btn-primary:active {
  transform: translateY(-1px);
}

/* "No thanks" downsell link stays subtle — Framer hierarchy: huge YES, tiny no.
   Block-level so it appears on its own line BELOW the YES button. fit-content
   width lets margin: auto center it. */
.upsell-hero .btn-link {
  display: block !important;
  width: fit-content;
  margin: 1.5rem auto 0 !important;
  padding: 0.5rem 0.75rem !important;
  font-family: var(--font-body) !important;
  font-size: 0.8125rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  color: #94A6BD !important;
  background: transparent !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(148, 166, 189, 0.3) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.upsell-hero .btn-link:hover {
  color: #D5DCE6 !important;
  border-bottom-color: rgba(213, 220, 230, 0.6) !important;
}

@media (max-width: 540px) {
  .upsell-hero .btn-primary {
    min-width: 0;
    width: 100%;
    padding: 1.25rem 1.5rem !important;
    font-size: 1.0625rem !important;
    border-radius: 14px !important;
  }
}

/* ==========================================================================
   TWO-STEP CHECKOUT — progress indicator (ClickFunnels-style)
   ==========================================================================
   Lives at the top of /checkout.html. Two numbered dots connected by a
   gradient bar. The "current" dot glows; the "complete" dot is filled.
   ========================================================================== */
.two-step-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.875rem;
  list-style: none;
  padding: 0;
  margin: 0 auto 2.5rem;
  max-width: 28rem;
}
.two-step-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.6875rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #94A6BD;
  transition: color 0.3s ease;
}
.two-step-progress-item.is-current { color: #F0F1F3; }
.two-step-progress-item.is-complete { color: #7DCEFF; }
.two-step-progress-dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(15, 28, 54, 0.6);
  border: 1px solid rgba(96, 165, 250, 0.35);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0;
  color: inherit;
  transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.two-step-progress-item.is-current .two-step-progress-dot {
  background: linear-gradient(135deg, #2E6FE8 0%, #41A3DD 55%, #6BC0F0 100%);
  color: #05070B;
  border-color: rgba(125, 224, 255, 0.7);
  box-shadow:
    0 0 0 4px rgba(96, 165, 250, 0.18),
    0 0 18px rgba(125, 224, 255, 0.55);
}
.two-step-progress-item.is-complete .two-step-progress-dot {
  background: rgba(125, 224, 255, 0.18);
  border-color: rgba(125, 224, 255, 0.6);
  color: #7DCEFF;
}
.two-step-progress-bar {
  flex: 1;
  height: 2px;
  max-width: 80px;
  background: rgba(96, 165, 250, 0.2);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
  list-style: none;
}
.two-step-progress-bar-fill {
  display: block;
  position: absolute;
  inset: 0 auto 0 0;
  width: 50%;
  background: linear-gradient(90deg, #7DCEFF 0%, #41A3DD 100%);
  border-radius: inherit;
  transition: width 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.two-step-progress[data-current-step="2"] .two-step-progress-bar-fill { width: 100%; }
.two-step-progress[data-current-step="1"] .two-step-progress-bar-fill { width: 50%; }

@media (max-width: 540px) {
  .two-step-progress-label { display: none; }
  .two-step-progress-bar { max-width: 56px; }
}

/* ==========================================================================
   Stacked price strip variants — vertical column, all items centered.
   Used on /upgrade-vip.html top hero + bottom summary so every "dollar item"
   (strike value, big price, descriptor) sits centered on its own line.
   ========================================================================== */
.price-strip-stacked {
  flex-direction: column !important;
  align-items: center !important;
  gap: 0.6rem !important;
  margin: 1.75rem auto !important;
  text-align: center;
}
.price-strip-stacked .strike { font-size: 1.75rem; }
.price-strip-stacked .price  { font-size: clamp(4rem, 8vw, 6rem); margin: 0.25rem auto; }
.price-strip-stacked .save   { margin-top: 0.5rem; font-size: 0.9375rem; padding: 0.625rem 1.5rem; }

.arsenal-summary-stacked {
  flex-direction: column !important;
  align-items: center !important;
  text-align: center;
  gap: 1.5rem !important;
}
.arsenal-summary-stacked .arsenal-summary-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  margin: 0 auto;
}
.arsenal-summary-stacked .arsenal-summary-line .strike { font-style: normal; }

/* When .arsenal-summary-stacked contains a btn-primary, apply the same huge
   Framer treatment as .upsell-hero .btn-primary so the bottom CTA on
   /upgrade-vip.html matches the top YES button. */
.arsenal-summary-stacked .btn-primary {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  width: fit-content !important;
  min-width: 320px !important;
  max-width: 560px !important;
  padding: 1.5rem 3rem !important;
  margin: 0 auto !important;

  font-family: var(--font-body) !important;
  font-size: clamp(1.125rem, 1.6vw, 1.375rem) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -0.01em !important;
  text-transform: none !important;
  line-height: 1.2 !important;
  text-align: center !important;
  text-decoration: none !important;
  border-bottom: 0 !important;

  color: #05070B !important;
  background: linear-gradient(135deg, #2E6FE8 0%, #41A3DD 55%, #6BC0F0 100%) !important;
  background-size: 180% 180%;
  border: 0 !important;
  border-radius: 18px !important;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08) inset,
    0 1px 0 rgba(255, 255, 255, 0.25) inset,
    0 16px 36px -8px rgba(46, 111, 232, 0.55),
    0 0 60px -8px rgba(125, 224, 255, 0.4) !important;

  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              background-position 0.45s ease;
}
.arsenal-summary-stacked .btn-primary::after,
.arsenal-summary-stacked .btn-primary::before { content: none !important; }
.arsenal-summary-stacked .btn-primary:hover {
  transform: translateY(-3px);
  background-position: 100% 100%;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 1px 0 rgba(255, 255, 255, 0.3) inset,
    0 22px 44px -8px rgba(46, 111, 232, 0.65),
    0 0 80px -6px rgba(125, 224, 255, 0.55) !important;
}
@media (max-width: 540px) {
  .arsenal-summary-stacked .btn-primary {
    min-width: 0 !important;
    width: 100% !important;
    padding: 1.25rem 1.5rem !important;
    font-size: 1.0625rem !important;
    border-radius: 14px !important;
  }
}

/* ────────────────────────────────────────────────────────────────────────────
   Cookie consent banner
   ──────────────────────────────────────────────────────────────────────────── */
#pln-consent {
  position: fixed;
  left: 50%;
  bottom: 1rem;
  transform: translateX(-50%);
  z-index: 9999;
  width: calc(100% - 2rem);
  max-width: 720px;
  background: rgba(10, 22, 40, 0.96);
  color: var(--text);
  border: 1px solid rgba(96, 165, 250, 0.35);
  border-radius: 12px;
  backdrop-filter: blur(16px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom, 0px));
  font-family: var(--font-body);
  font-size: 0.875rem;
  line-height: 1.45;
  animation: pln-consent-slide-in 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes pln-consent-slide-in {
  from { opacity: 0; transform: translate(-50%, 16px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.pln-consent-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.pln-consent-text {
  flex: 1 1 280px;
  min-width: 0;
  color: var(--text-muted);
}
.pln-consent-text strong { color: var(--text); }
.pln-consent-text a { color: var(--primary-light); text-decoration: underline; }
.pln-consent-actions {
  display: flex;
  gap: 0.5rem;
  flex: 0 0 auto;
}
.pln-consent-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.pln-consent-reject {
  background: transparent;
  color: var(--text-muted);
  border-color: rgba(255, 255, 255, 0.18);
}
.pln-consent-reject:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.32);
}
.pln-consent-accept {
  background: var(--primary-light);
  color: #07142a;
  font-weight: 600;
}
.pln-consent-accept:hover { filter: brightness(1.1); }

@media (max-width: 540px) {
  #pln-consent { font-size: 0.8125rem; }
  .pln-consent-actions { width: 100%; }
  .pln-consent-btn { flex: 1; padding: 0.625rem 0.875rem; }
}
