/**
 * Landing Page Styles
 * Scoped under .lp-page to prevent any conflict with the main theme.
 * Fonts: Inter (already loaded by theme) + DM Serif Display (already loaded by theme).
 */

/* ─── Font re-declarations (same paths as theme fonts.twig) ──────────────── */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Inter-Variable.ttf') format('truetype-variations');
}
@font-face {
  font-family: 'Inter';
  font-style: italic;
  font-weight: 100 900;
  font-display: swap;
  src: url('/assets/fonts/Inter-Variable-Italic.ttf') format('truetype-variations');
}
@font-face {
  font-family: 'DM Serif Display';
  font-display: swap;
  src: url('/assets/fonts/dm-serif-display/DMSerifDisplay-Regular.ttf') format('truetype');
}

/* ─── Design Tokens ──────────────────────────────────────────────────────── */
.lp-page {
  --blue:           #0da5fa;
  --blue-dark:      #1766b5;
  --blue-gradient:  linear-gradient(90deg, #0da5fa 25.68%, #1766b5 118.51%);
  --blue-subtle:    rgba(13, 165, 250, 0.08);
  --blue-border:    rgba(13, 165, 250, 0.25);
  --blue-light:     #cdeafa;
  --blue-xlight:    #e7edfe;

  --navy:           #002951;
  --navy-mid:       #1c2c4b;
  --navy-light:     #304069;

  --bg-base:        #ffffff;
  --bg-surface:     #f2f8fe;
  --bg-card:        #ffffff;
  --bg-footer:      #002951;

  --border:         #e7edfe;
  --border-dark:    rgba(255,255,255,0.12);

  --text-primary:   #1c2c4b;
  --text-secondary: #304069;
  --text-muted:     #7a8ba8;
  --text-white:     #ffffff;
  --text-white-dim: rgba(255,255,255,0.75);

  --shadow-sm:  0 1px 3px rgba(23,102,181,0.08), 0 1px 2px rgba(23,102,181,0.05);
  --shadow-md:  0 4px 16px rgba(23,102,181,0.10), 0 2px 6px rgba(23,102,181,0.06);
  --shadow-lg:  0 12px 40px rgba(23,102,181,0.14);

  --radius-xs:   5px;
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   16px;
  --radius-xl:   20px;
  --radius-pill: 100px;

  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, Arial, sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --max-w:      1100px;

  /* Section spacing */
  --section-y: 96px;
}

/* ─── Reset (scoped) ─────────────────────────────────────────────────────── */
.lp-page, .lp-page *, .lp-page *::before, .lp-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.lp-html { scroll-behavior: smooth; }
.lp-page {
  font-family: var(--font-sans);
  background: var(--bg-base);
  color: var(--text-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.lp-page img { max-width: 100%; display: block; }
.lp-page a { text-decoration: none; color: inherit; }

/* ─── Layout ─────────────────────────────────────────────────────────────── */
.lp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography Utilities ───────────────────────────────────────────────── */
.lp-page .lp-label {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 12px;
}
.lp-page .lp-label--white { color: rgba(255,255,255,0.65); }

.lp-page .lp-section-heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 4vw, 50px);
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}
.lp-page .lp-section-heading--white { color: #fff; }

.lp-page .lp-section-subheading {
  font-size: 20px;
  color: var(--text-secondary);
  max-width: 580px;
  line-height: 1.6;
}

.lp-page .lp-section-header { margin-bottom: 48px; }
.lp-page .lp-section-header--center { text-align: center; }
.lp-page .lp-section-header--center .lp-section-subheading { margin: 0 auto; }

.lp-page .lp-prose { color: var(--text-secondary); font-size: 20px; line-height: 1.7; }
.lp-page .lp-prose p { margin-bottom: 12px; }
.lp-page .lp-prose strong { color: var(--text-primary); font-weight: 700; }
.lp-page .lp-prose ul { padding-left: 20px; }
.lp-page .lp-prose li { margin-bottom: 6px; }

.lp-page .lp-blockquote {
  border-left: 3px solid var(--blue);
  padding: 12px 20px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-secondary);
  background: var(--blue-subtle);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.lp-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--blue-gradient);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: var(--radius-xs);
  border: none;
  cursor: pointer;
  transition: opacity 0.15s, transform 0.1s;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13,165,250,0.35);
}
.lp-page .btn-primary:hover { opacity: 0.9; transform: translateY(-1px); }
.lp-page .btn-primary:active { transform: translateY(0); }
.lp-page .btn-primary-lg { font-size: 18px; padding: 16px 36px; }

.lp-page .btn-outline-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  padding: 12px 24px;
  border-radius: var(--radius-xs);
  border: 2px solid rgba(255,255,255,0.4);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
  white-space: nowrap;
}
.lp-page .btn-outline-white:hover { border-color: rgba(255,255,255,0.8); background: rgba(255,255,255,0.08); }

.lp-page .btn-ghost-blue {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 16px;
  font-weight: 600;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  font-family: var(--font-sans);
  transition: gap 0.15s;
}
.lp-page .btn-ghost-blue:hover { gap: 9px; }

/* ─── Nav ────────────────────────────────────────────────────────────────── */
.lp-page .lp-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s ease, backdrop-filter 0.3s ease;
}
/* On scroll: body has both lp-page + is-scrolled — combine them, then target the nav */
.lp-page.is-scrolled .lp-nav {
  background: rgba(6, 26, 49, 0.95);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}
.lp-page .lp-nav__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-page .lp-nav__logo { display: flex; align-items: center; color: #fff; }
.lp-page .lp-nav__cta { /* inherits .btn-primary */ }

/* ─── Hero ───────────────────────────────────────────────────────────────── */
.lp-page .lp-hero {
  background: linear-gradient(65deg, #061A31 0%, #004B87 66%, #008DF3 100%);
  background-size: 180% 180%;
  animation: lp-gradient-animation 6s ease infinite;
  /* Pull the hero up behind the transparent nav so the gradient is seamless */
  margin-top: -78px;
  padding: calc(80px + 78px) 0 96px;
  position: relative;
  overflow: hidden;
}
.lp-page .lp-hero::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(13,165,250,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.lp-page .lp-hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-page .lp-hero__left { color: #fff; }
.lp-page .lp-hero__left .lp-label { color: rgba(255,255,255,0.65); font-size: 14px; }
.lp-page .lp-hero__headline {
  font-family: var(--font-serif);
  font-size: clamp(34px, 5vw, 54px);
  line-height: 1.1;
  color: #fff;
  margin: 12px 0 20px;
}
.lp-page .lp-hero__sub {
  font-size: 20px;
  color: var(--text-white-dim);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.lp-page .lp-hero__actions { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; margin-bottom: 28px; }
.lp-page .lp-hero__trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 100px;
  padding: 9px 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.12);
}
.lp-page .lp-hero__trust-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lp-page .lp-hero__trust-text {
  line-height: 1.2;
  white-space: nowrap;
}

/* Hero visual — funded account chart + withdrawal confirmation */
.lp-page .hero-visual {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-xl);
  overflow: hidden;
  backdrop-filter: blur(8px);
}
.lp-page .hero-visual-inner {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.lp-page .mini-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.lp-page .chart-wrap {
  height: 140px;
  position: relative;
}
.lp-page .payout-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
}
.lp-page .payout-row-left { display: flex; align-items: center; gap: 10px; }
.lp-page .payout-dot {
  width: 8px; height: 8px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(255,255,255,0.8);
  flex-shrink: 0;
}
.lp-page .payout-label { font-size: 15px; color: rgba(255,255,255,0.7); }
.lp-page .payout-amount { font-size: 17px; font-weight: 700; color: #fff; text-align: right; }
.lp-page .payout-time { font-size: 12px; color: rgba(255,255,255,0.5); text-align: right; }

/* Market hours visual (hero right, right_content=market_hours) */
.lp-page .hero-visual--market .hero-visual-inner {
  padding: 24px;
  gap: 18px;
}
.lp-page .hvm-rows {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-page .hvm-market-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}
.lp-page .hvm-market-row--open {
  background: rgba(34,197,94,0.07);
  border-color: rgba(34,197,94,0.18);
}
.lp-page .hvm-market-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.lp-page .hvm-market-name {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,0.35);
  white-space: nowrap;
}
.lp-page .hvm-market-row--open .hvm-market-name { color: #fff; }
.lp-page .hvm-market-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.25);
}
.lp-page .hvm-market-row--open .hvm-market-sub { color: rgba(255,255,255,0.5); }
.lp-page .hvm-badge {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 20px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}
.lp-page .hvm-badge--closed {
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.3);
}
.lp-page .hvm-badge--open {
  background: rgba(34,197,94,0.14);
  color: #4ade80;
  display: flex;
  align-items: center;
  gap: 6px;
}
.lp-page .hvm-live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: lp-pulse-green 2s ease-in-out infinite;
}
@keyframes lp-pulse-green {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0.5); }
  50%       { box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
.lp-page .hvm-stat-row {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.lp-page .hvm-stat-number {
  font-size: 46px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}
.lp-page .hvm-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

/* Rule compare visual (hero right, right_content=rule_compare) — white card on dark hero */
.lp-page .hero-visual--rules {
  background: #fff !important;
  border: none !important;
  backdrop-filter: none !important;
  box-shadow: 0 12px 48px rgba(0,20,60,0.35);
}
.lp-page .hero-visual--rules .hero-visual-inner { padding: 22px; gap: 16px; }
.lp-page .hero-visual--rules .mini-label { color: var(--blue); font-size: 16px; }
.lp-page .hrv-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.lp-page .hrv-col {
  border-radius: 10px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lp-page .hrv-col--other  { background: #f1f5f9; border: 1px solid #e2e8f0; }
.lp-page .hrv-col--breakout { background: #f0fdf4; border: 1px solid #bbf7d0; }
.lp-page .hrv-col-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-wrap: wrap;
}
.lp-page .hrv-col-name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.lp-page .hrv-col--other .hrv-col-name   { color: #94a3b8; }
.lp-page .hrv-col--breakout .hrv-col-name { color: #166534; }
.lp-page .hrv-count {
  font-size: 14px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}
.lp-page .hrv-count--many { background: #fee2e2; color: #dc2626; }
.lp-page .hrv-count--two  { background: #dcfce7; color: #16a34a; }
.lp-page .hrv-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.lp-page .hrv-col--other .hrv-list li { font-size: 16px; color: #94a3b8; line-height: 1.4; }
.lp-page .hrv-more { font-size: 14px !important; color: #cbd5e1 !important; font-style: italic; }
.lp-page .hrv-list--clean li {
  font-size: 17px;
  font-weight: 600;
  color: #0f2a1a;
  line-height: 1.4;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.lp-page .hrv-check { color: #16a34a; font-weight: 700; flex-shrink: 0; font-size: 18px; }
.lp-page .hrv-tagline { font-size: 14px; color: #94a3b8; font-style: italic; margin: 0; }
.lp-page .hrv-footer {
  border-top: 1px solid #e2e8f0;
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
}
.lp-page .hrv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: lp-pulse-green 2s ease-in-out infinite;
}

/* Email capture card (hero right) — white card that stands out on hero */
.lp-page .lp-capture-card {
  background: #fff;
  border: none;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.25);
}
.lp-page .lp-capture-card__heading {
  font-family: var(--font-serif);
  font-size: 30px;
  color: var(--navy);
  margin-bottom: 12px;
}
.lp-page .lp-capture-card__desc { font-size: 17px; color: var(--text-secondary); margin-bottom: 24px; }
.lp-page .lp-capture-card__footnote { font-size: 13px; color: var(--text-muted); margin-top: 12px; text-align: center; }
.lp-page .lp-capture-card__skip { display: block; text-align: center; font-size: 14px; color: var(--blue); margin-top: 20px; font-weight: 600; text-decoration: none; opacity: 0.8; }
.lp-page .lp-capture-card__skip:hover { opacity: 1; text-decoration: underline; }

/* ─── Proof Bar ──────────────────────────────────────────────────────────── */
.lp-page .lp-proof-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 30px 0;
}
.lp-page .lp-proof-bar__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 64px;
  list-style: none;
}
.lp-page .lp-proof-bar__item { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.lp-page .lp-proof-bar__value {
  font-family: var(--font-serif);
  font-size: 30px;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.lp-page .lp-proof-bar__highlight { font-size: 16px; font-family: var(--font-sans); color: var(--blue); font-weight: 600; }
.lp-page .lp-proof-bar__label { font-size: 14px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; }

/* ─── Content Block ──────────────────────────────────────────────────────── */
.lp-page .lp-content-block {
  padding: var(--section-y) 0;
  background: var(--bg-base);
}
.lp-page .lp-content-block:nth-child(even) { background: var(--bg-surface); }
.lp-page .lp-content-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-page .lp-content-block__right {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-self: center;
}

.lp-page .lp-content-block__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.lp-page .lp-content-block__card-header {
  padding: 16px 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-muted);
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
}

/* Facts card — Kraken-style header */
.lp-page .lp-content-block__card--facts .lp-content-block__card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 28px;
}
.lp-page .lp-facts-card-logo {
  display: flex;
  align-items: center;
  gap: 8px;
}
.lp-page .lp-facts-card-name {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--navy);
}
.lp-page .lp-facts-card-est {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

/* Facts card — vertical stat layout: large value → small muted label */
.lp-page .lp-facts-list {
  padding: 28px 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.lp-page .lp-facts-divider {
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}
.lp-page .lp-facts-list__item { /* no extra padding needed, gap handles spacing */ }
.lp-page .lp-facts-list__value {
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.lp-page .lp-facts-list__label {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.4;
}
/* Facts badge / tag at bottom of card */
.lp-page .lp-facts-tag {
  margin: 0 28px 28px;
  padding: 14px 18px;
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-sm);
  font-size: 16px;
  color: var(--blue-dark);
  font-weight: 600;
  line-height: 1.5;
}

/* Checklist card */
.lp-page .lp-checklist { list-style: none; padding: 4px 0; }
.lp-page .lp-checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 16px;
  color: var(--text-secondary);
}
.lp-page .lp-checklist__item:last-child { border-bottom: none; }
.lp-page .lp-checklist__icon { flex-shrink: 0; margin-top: 1px; }

/* Rules card — yes-card style: icon + title + description per item */
.lp-page .lp-rules-list { list-style: none; }
.lp-page .lp-rules-list__item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
}
.lp-page .lp-rules-list__item:last-child { border-bottom: none; }
.lp-page .lp-rules-list__icon {
  width: 36px; height: 36px;
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.lp-page .lp-rules-list__body { flex: 1; }
.lp-page .lp-rules-list__name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 4px;
}
.lp-page .lp-rules-list__desc {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

/* Rules proof card — rendered below the main rules card, outside it */
.lp-page .lp-rules-proof-card {
  background: var(--blue-subtle);
  border: 1px solid var(--blue-border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
}
.lp-page .lp-rules-proof-card p {
  font-size: 16px;
  color: var(--navy-light);
  line-height: 1.7;
  margin: 0;
}
.lp-page .lp-rules-proof-card strong { color: var(--navy); }

/* ─── Leaderboard ────────────────────────────────────────────────────────── */
.lp-page .lp-leaderboard {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
.lp-page .lp-leaderboard__table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-bottom: 48px;
}
.lp-page .lp-leaderboard__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.lp-page .lp-leaderboard__table thead tr {
  background: var(--navy);
  color: rgba(255,255,255,0.6);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.lp-page .lp-leaderboard__table th, .lp-page .lp-leaderboard__table td {
  padding: 16px 20px;
  text-align: left;
}
.lp-page .lp-leaderboard__row { border-bottom: 1px solid var(--border); }
.lp-page .lp-leaderboard__row:last-child { border-bottom: none; }
.lp-page .lp-leaderboard__row--top { background: rgba(13,165,250,0.04); }
.lp-page .lp-leaderboard__rank { font-weight: 700; }
.lp-page .lp-leaderboard__medal {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.lp-page .lp-leaderboard__medal--1 { background: linear-gradient(135deg, #FFD700, #FFA500); }
.lp-page .lp-leaderboard__medal--2 { background: linear-gradient(135deg, #C0C0C0, #A0A0A0); }
.lp-page .lp-leaderboard__medal--3 { background: linear-gradient(135deg, #CD7F32, #A0522D); }
.lp-page .lp-leaderboard__amount { font-weight: 700; color: var(--text-primary); }
.lp-page .lp-leaderboard__date { font-size: 15px; color: var(--text-muted); }

/* Proof cards */
.lp-page .lp-proof-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.lp-page .lp-proof-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.lp-page .lp-proof-card__icon { font-size: 28px; display: block; margin-bottom: 12px; }
.lp-page .lp-proof-card__title { font-size: 18px; font-weight: 700; color: var(--text-primary); margin-bottom: 8px; }
.lp-page .lp-proof-card__desc { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; }

/* ─── Pricing Module ─────────────────────────────────────────────────────── */
.lp-page .lp-pricing {
  padding: var(--section-y) 0;
  background: var(--bg-base);
}

/* Wider container so 4 cards fit comfortably */
.lp-page .lp-container--pricing {
  max-width: 1520px;
  padding: 0 40px;
}

/* Size selector label */
.lp-page .pt-sizes-label {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.7px;
  text-transform: uppercase;
  color: var(--text-muted);
  text-align: center;
  margin-bottom: 20px;
}

/* Size selector */
.lp-page .pt-sizes {
  display: flex;
  gap: 8px;
  margin-bottom: 44px;
  flex-wrap: wrap;
  justify-content: center;
}
.lp-page .pt-size-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
.lp-page .pt-size-pop {
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--blue-dark);
}
.lp-page .pt-size-btn {
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  color: var(--text-secondary);
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s;
  letter-spacing: -0.3px;
}
.lp-page .pt-size-btn:hover { border-color: var(--blue); color: var(--blue-dark); }
.lp-page .pt-size-btn.active {
  background: var(--blue-gradient);
  border-color: transparent;
  color: #fff;
  box-shadow: 0 2px 10px rgba(13,165,250,0.35);
}

/* Plan cards grid — column count tracks the live plan lineup. The wrapper
   PHP (template-parts/landing-page/pricing.php) sets --plan-count inline
   from count($plan_meta) so removing a plan from the matrix auto-centres
   the remaining cards. Mobile breakpoints below override to 2-col / 1-col. */
.lp-page .pt-plans {
  display: grid;
  grid-template-columns: repeat(var(--plan-count, 3), 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.lp-page .pt-plan {
  position: relative;
  border-radius: var(--radius-xl);
  border: 1.5px solid var(--border);
  background: var(--bg-card);
  transition: box-shadow 0.2s;
}
.lp-page .pt-plan:hover { box-shadow: 0 6px 28px rgba(0,41,81,0.10); }
.lp-page .pt-plan-featured {
  border-color: var(--blue);
  box-shadow: 0 4px 24px rgba(13,165,250,0.18);
}
.lp-page .pt-plan-unavailable {
  opacity: 0.38;
  pointer-events: none;
}

/* "Most Popular" badge above featured card */
.lp-page .pt-plan-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(13,165,250,0.35);
}
.lp-page .pt-plan-inner { padding: 32px 28px 28px; }
.lp-page .pt-plan-featured .pt-plan-inner { padding-top: 42px; }
.lp-page .pt-plan-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -0.2px;
  margin-bottom: 3px;
}
.lp-page .pt-plan-featured .pt-plan-name { color: var(--blue-dark); }
.lp-page .pt-plan-tag {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 24px;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.lp-page .pt-plan-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 12px;
}
.lp-page .pt-plan-fee {
  font-size: 46px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: -1.5px;
  line-height: 1;
}
.lp-page .pt-plan-featured .pt-plan-fee { color: var(--blue-dark); }
.lp-page .pt-plan-once {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 400;
}
.lp-page .pt-plan-upgrade {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 28px;
}
.lp-page .pt-plan-upgrade strong { color: var(--text-secondary); }

/* Spec list */
.lp-page .pt-plan-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  border-top: 1px solid var(--border);
}
.lp-page .pt-plan-specs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 13px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
  gap: 8px;
}
.lp-page .spec-label { color: var(--text-secondary); font-weight: 500; flex-shrink: 0; }
.lp-page .spec-val { color: var(--navy); font-weight: 700; text-align: right; }
.lp-page .pt-plan-featured .spec-val { color: var(--blue-dark); }

/* Info tooltips */
.lp-page .spec-tip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  border: 1.5px solid rgba(0,41,81,0.22);
  color: rgba(0,41,81,0.38);
  font-size: 8px;
  font-weight: 900;
  font-style: italic;
  cursor: help;
  position: relative;
  margin-left: 4px;
  vertical-align: middle;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  user-select: none;
  line-height: 1;
}
.lp-page .spec-tip:hover,
.lp-page .spec-tip:focus,
.lp-page .spec-tip.active { border-color: var(--blue); color: var(--blue-dark); background: rgba(13,165,250,0.09); outline: none; }
.lp-page .spec-tip::after {
  content: attr(data-tip);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  padding: 8px 11px;
  border-radius: 8px;
  white-space: normal;
  width: 200px;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  text-align: left;
  font-style: normal;
}
.lp-page .spec-tip::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 3px);
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--navy);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.15s;
  z-index: 200;
}
.lp-page .spec-tip:hover::after, .lp-page .spec-tip:hover::before,
.lp-page .spec-tip:focus::after, .lp-page .spec-tip:focus::before,
.lp-page .spec-tip.active::after, .lp-page .spec-tip.active::before { opacity: 1; }

/* Plan CTA buttons */
.lp-page .pt-plan-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.15s, background 0.15s;
  letter-spacing: 0.1px;
  box-sizing: border-box;
  border: none;
}
.lp-page .pt-plan-btn.primary {
  background: var(--blue-gradient);
  color: #fff;
  box-shadow: 0 4px 14px rgba(13,165,250,0.35);
}
.lp-page .pt-plan-btn.primary:hover { opacity: 0.88; }
.lp-page .pt-plan-btn.secondary {
  background: transparent;
  color: var(--blue-dark);
  border: 2px solid var(--blue);
}
.lp-page .pt-plan-btn.secondary:hover { background: var(--blue-subtle); }

/* Footnote / note */
.lp-page .pt-note {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.8;
}
.lp-page .lp-pricing__empty {
  text-align: center;
  font-size: 17px;
  color: var(--text-muted);
  padding: 48px 0;
}

/* Mobile swipe hint */
.lp-page .pt-plans-hint {
  display: none;
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.2px;
}

/* ─── Social Proof ───────────────────────────────────────────────────────── */
.lp-page .lp-social-proof {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
/* Trustpilot */
.lp-page .lp-trustpilot {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-content: center;
  margin-bottom: 56px;
  flex-wrap: wrap;
}
.lp-page .lp-trustpilot__stars { display: flex; gap: 4px; }
.lp-page .lp-trustpilot__meta { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.lp-page .lp-trustpilot__score { font-size: 22px; font-weight: 700; color: var(--text-primary); }
.lp-page .lp-trustpilot__reviews, .lp-page .lp-trustpilot__desc { font-size: 16px; color: var(--text-muted); }

/* Testimonials */
.lp-page .lp-testimonials {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.lp-page .lp-testimonial {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.lp-page .lp-testimonial__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lp-page .lp-testimonial__avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lp-page .lp-testimonial__meta { flex: 1; }
.lp-page .lp-testimonial__name { display: block; font-size: 16px; font-weight: 700; color: var(--text-primary); }
.lp-page .lp-testimonial__handle { display: block; font-size: 14px; color: var(--text-muted); }
.lp-page .lp-testimonial__platform-icon { color: var(--text-muted); margin-left: auto; flex-shrink: 0; }
.lp-page .lp-testimonial__body { font-size: 16px; color: var(--text-secondary); line-height: 1.6; margin-bottom: 12px; }
.lp-page .lp-testimonial__date { font-size: 13px; color: var(--text-muted); }

/* ─── Final CTA ──────────────────────────────────────────────────────────── */
.lp-page .lp-final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1c3a6b 100%);
  padding: var(--section-y) 0;
  text-align: center;
}
.lp-page .lp-final-cta__inner { display: flex; flex-direction: column; align-items: center; gap: 24px; }
.lp-page .lp-final-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(32px, 4vw, 52px);
  color: #fff;
  line-height: 1.15;
  max-width: 700px;
}
.lp-page .lp-final-cta__sub {
  font-size: 20px;
  color: var(--text-white-dim);
  max-width: 520px;
  line-height: 1.6;
}
.lp-page .lp-final-cta__verify {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 32px;
  justify-content: center;
  margin-top: 8px;
}
.lp-page .lp-final-cta__verify-link {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  text-decoration: underline;
  transition: color 0.15s;
}
.lp-page .lp-final-cta__verify-link:hover { color: rgba(255,255,255,0.8); }

/* ─── Capture CTA (email band) ───────────────────────────────────────────── */
.lp-page .lp-capture-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #0d1f40 100%);
  padding: 72px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-page .lp-capture-cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lp-page .lp-capture-cta__headline {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3vw, 40px);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 12px;
}
.lp-page .lp-capture-cta__desc { font-size: 18px; color: var(--text-white-dim); line-height: 1.6; margin-bottom: 16px; }
.lp-page .lp-capture-cta__skip {
  display: inline-block;
  font-size: 15px;
  color: rgba(255,255,255,0.45);
  text-decoration: underline;
  margin-top: 16px;
}
.lp-page .lp-capture-cta__skip:hover { color: rgba(255,255,255,0.7); }
.lp-page .lp-capture-cta__footnote { font-size: 13px; color: rgba(255,255,255,0.35); margin-top: 10px; }

/* ─── Math / Comparison ──────────────────────────────────────────────────── */
.lp-page .lp-math {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
.lp-page .lp-math__intro { margin-bottom: 56px; }
.lp-page .lp-math__body { font-size: 19px; color: var(--text-secondary); max-width: 560px; margin-top: 16px; }
.lp-page .lp-math__cards {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}
.lp-page .lp-math__card {
  flex: 1;
  min-width: 200px;
  background: var(--bg-card);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}
.lp-page .lp-math__card--highlight {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px var(--blue-subtle), var(--shadow-md);
}
.lp-page .lp-math__card-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue-gradient);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 12px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.lp-page .lp-math__card-label { font-size: 13px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 8px; }
.lp-page .lp-math__card-subtitle { font-size: 16px; color: var(--text-secondary); margin-bottom: 16px; }
.lp-page .lp-math__card-result { font-family: var(--font-serif); font-size: 36px; color: var(--text-primary); }
.lp-page .lp-math__card--highlight .lp-math__card-result { color: var(--blue); }
.lp-page .lp-math__connector {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-align: center;
  padding: 8px 16px;
  white-space: nowrap;
}
.lp-page .lp-math__callout {
  background: var(--navy);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
}
.lp-page .lp-math__callout .lp-label { color: rgba(255,255,255,0.5); }
.lp-page .lp-math__callout-number {
  font-family: var(--font-serif);
  font-size: 80px;
  color: var(--blue);
  line-height: 1;
  margin: 16px 0 12px;
}
.lp-page .lp-math__callout-unit { font-size: 36px; color: rgba(255,255,255,0.5); margin-left: 6px; }
.lp-page .lp-math__callout .lp-prose { color: #fff; font-size: 17px; line-height: 1.7; }
.lp-page .lp-math__callout .lp-prose strong { color: #fff; }

/* ─── FAQ — always-expanded individual card boxes ────────────────────────── */
.lp-page .lp-faq {
  padding: var(--section-y) 0;
  background: var(--bg-base);
}
.lp-page .lp-faq__list { margin-top: 0; }
.lp-page .lp-faq__list--cols-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lp-page .lp-faq__item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.lp-page .lp-faq__q {
  margin: 0 0 12px;
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.4;
}
.lp-page .lp-faq__a { }
.lp-page .lp-faq__a .lp-prose { font-size: 17px; color: var(--text-secondary); }

/* ─── Leverage ───────────────────────────────────────────────────────────── */
.lp-page .lp-leverage {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
.lp-page .lp-leverage__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.lp-page .lp-leverage__body { font-size: 18px; color: var(--text-secondary); margin: 16px 0 28px; line-height: 1.7; }
.lp-page .lp-leverage__features { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.lp-page .lp-leverage__feature { display: flex; align-items: flex-start; gap: 16px; }
.lp-page .lp-leverage__feat-icon { font-size: 22px; flex-shrink: 0; }
.lp-page .lp-leverage__feature strong { display: block; font-size: 17px; color: var(--text-primary); margin-bottom: 4px; }
.lp-page .lp-leverage__feature p { font-size: 16px; color: var(--text-secondary); margin: 0; }

/* ─── Leverage comparison table — dark navy card matching screenshot ──────── */
.lp-page .lp-leverage__right {
  background: var(--navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
  align-self: center;
  padding: 28px 28px 0;
}

/* Card title */
.lp-page .lp-leverage__table-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  line-height: 1.3;
}

/* Table */
.lp-page .lp-leverage__table {
  width: 100%;
  border-collapse: collapse;
  margin: 0 -28px;
  width: calc(100% + 56px);
}

/* Column headers */
.lp-page .lp-leverage__table-header td {
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  vertical-align: middle;
}
.lp-page .lp-leverage__table-header td:first-child {
  color: rgba(255,255,255,0.45);
  border-right: 1px solid rgba(255,255,255,0.1);
  padding-left: 28px;
}
.lp-page .lp-leverage__table-header td:last-child {
  color: var(--blue);
  text-align: right;
  padding-right: 28px;
}

/* Data rows */
.lp-page .lp-leverage__table-row td {
  padding: 16px 20px;
  font-size: 17px;
  vertical-align: middle;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.lp-page .lp-leverage__table-row:last-child td { border-bottom: none; }

/* Left col: muted grey */
.lp-page .lp-leverage__table-row td:first-child {
  color: rgba(255,255,255,0.4);
  font-weight: 400;
  border-right: 1px solid rgba(255,255,255,0.08);
  padding-left: 28px;
}

/* Right col: white bold, right-aligned */
.lp-page .lp-leverage__table-row td:last-child {
  color: #fff;
  font-weight: 600;
  text-align: right;
  padding-right: 28px;
}

/* ─── Video ──────────────────────────────────────────────────────────────── */
.lp-page .lp-video {
  padding: var(--section-y) 0;
  background: var(--bg-base);
}
.lp-page .lp-video__label { margin-bottom: 20px; }
.lp-page .lp-video__embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-lg);
}
.lp-page .lp-video__embed iframe { width: 100%; height: 100%; }
.lp-page .lp-video__callout {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin-top: 24px;
}
.lp-page .lp-video__callout-icon { font-size: 24px; flex-shrink: 0; }

/* ─── Guide Preview (iPad frame + text) ─────────────────────────────────── */
.lp-page .lp-guide-preview {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
.lp-page .lp-guide-preview__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Text column */
.lp-page .lp-guide-preview__text .lp-label { color: var(--blue); }
.lp-page .lp-guide-preview__text .lp-section-heading { color: var(--text-primary); }
.lp-page .lp-guide-preview__body {
  font-size: 18px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin: 16px 0 24px;
}
.lp-page .lp-guide-preview__list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.lp-page .lp-guide-preview__list li {
  font-size: 17px;
  color: var(--text-secondary);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
}
.lp-page .lp-guide-preview__list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--blue);
  font-weight: 700;
}
.lp-page .lp-guide-preview__cta { margin-bottom: 12px; }
.lp-page .lp-guide-preview__footnote {
  font-size: 14px;
  color: var(--text-muted);
  margin: 0;
}

/* Visual column */
.lp-page .lp-guide-preview__visual {
  display: flex;
  justify-content: center;
}

/* iPad frame */
.lp-page .lp-ipad-frame {
  background: #1a1a1e;
  border-radius: 24px;
  padding: 16px 16px 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
  max-width: 420px;
  width: 100%;
}
.lp-page .lp-ipad-frame__bezel-top {
  display: flex;
  justify-content: center;
  padding: 6px 0 12px;
}
.lp-page .lp-ipad-frame__camera {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #2a2a2e;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.08);
}
.lp-page .lp-ipad-frame__screen {
  border-radius: 8px;
  overflow: hidden;
  background: #0d0d11;
}
.lp-page .lp-ipad-frame__screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* ─── Email Capture (inline) ─────────────────────────────────────────────── */
.lp-page .lp-email-capture {
  padding: var(--section-y) 0;
  background: var(--bg-surface);
}
.lp-page .lp-email-capture__card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.lp-page .lp-email-capture__desc { font-size: 18px; color: var(--text-secondary); margin: 12px 0 28px; }

/* ─── Footer ─────────────────────────────────────────────────────────────── */
.lp-page .lp-footer {
  background: var(--bg-footer);
  padding: 40px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.lp-page .lp-footer__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.lp-page .lp-footer__logo { color: rgba(255,255,255,0.7); transition: color 0.15s; }
.lp-page .lp-footer__logo:hover { color: #fff; }
.lp-page .lp-footer__copy { font-size: 15px; color: rgba(255,255,255,0.4); }
.lp-page .lp-footer__copy a { color: rgba(255,255,255,0.5); text-decoration: underline; transition: color 0.15s; }
.lp-page .lp-footer__copy a:hover { color: rgba(255,255,255,0.8); }

/* ─── Email capture form (custom) ────────────────────────────────────────── */
.lp-page .lp-email-form { width: 100%; }
.lp-page .lp-email-form__row {
  display: flex;
  gap: 10px;
}
.lp-page .lp-email-form__input {
  flex: 1;
  min-width: 0;
  padding: 14px 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius-xs);
  font-family: var(--font-sans);
  font-size: 16px;
  color: var(--navy);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}
.lp-page .lp-email-form__input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(13,165,250,0.12);
}
.lp-page .lp-email-form__input::placeholder { color: #9ca3af; }
.lp-page .lp-email-form__btn {
  padding: 14px 28px;
  border: none;
  border-radius: var(--radius-xs);
  background: var(--blue-gradient);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(13,165,250,0.35);
  transition: opacity 0.15s, transform 0.1s;
}
.lp-page .lp-email-form__btn:hover { opacity: 0.92; }
.lp-page .lp-email-form__btn:active { transform: scale(0.98); }
.lp-page .lp-email-form__btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
/* Step 2: name + consent */
.lp-page .lp-email-form__step--2 {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* First + Last name side-by-side */
.lp-page .lp-email-form__name-row {
  display: flex;
  gap: 10px;
}
.lp-page .lp-email-form__name-row .lp-email-form__input {
  flex: 1;
  min-width: 0;
}
.lp-page .lp-email-form__step--2 .lp-email-form__btn { width: 100%; }
/* Consent checkbox */
.lp-page .lp-email-form__consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
  color: var(--text-muted);
  cursor: pointer;
}
.lp-page .lp-email-form__consent input[type="checkbox"] {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: var(--blue);
  cursor: pointer;
}
.lp-email-form--dark .lp-email-form__consent { color: rgba(255,255,255,0.55); }
/* Status messages */
.lp-page .lp-email-form__status {
  font-size: 14px;
  margin-top: 8px;
  min-height: 20px;
}
.lp-page .lp-email-form__status--error { color: #ef4444; }
/* Success state */
.lp-page .lp-email-form__success {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 600;
  padding: 14px 0;
}
/* Dark variant (hero capture card + capture CTA band) */
.lp-email-form--dark .lp-email-form__input {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
  color: #fff;
}
.lp-email-form--dark .lp-email-form__input::placeholder { color: rgba(255,255,255,0.4); }
.lp-email-form--dark .lp-email-form__input:focus {
  border-color: rgba(255,255,255,0.5);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
}
.lp-email-form--dark .lp-email-form__status--error { color: #fca5a5; }
.lp-email-form--dark .lp-email-form__success { color: #fff; }
/* Light context (email_capture inline card, lp-capture-card on hero) */
.lp-capture-card .lp-email-form__success,
.lp-email-capture .lp-email-form__success { color: var(--navy); }

/* ─── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-page { --section-y: 64px; }

  .lp-page .lp-hero__inner,
  .lp-page .lp-content-block__inner,
  .lp-page .lp-capture-cta__inner,
  .lp-page .lp-leverage__inner,
  .lp-page .lp-guide-preview__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .lp-page .lp-guide-preview__visual { order: -1; }
  .lp-page .lp-ipad-frame { max-width: 320px; }
  /* Hero: increase padding-top to compensate for -78px margin-top (nav overlap fix) */
  .lp-page .lp-hero { padding: 110px 0 56px; }
  /* Only reorder for dashboard/market_hours heroes (visuals hidden anyway) */
  .lp-page .lp-hero:not(.lp-hero--form) .lp-hero__right { order: -1; }
  .lp-page .hero-visual { display: none; }
  .lp-page .lp-hero__headline { font-size: 34px; }
  .lp-page .lp-hero__trust { font-size: 16px; padding: 9px 18px; }
  /* Email-capture heroes: hide CTA buttons + trust pill — too busy on mobile */
  .lp-page .lp-hero--form .lp-hero__actions { display: none; }
  .lp-page .lp-hero--form .lp-hero__trust { display: none; }
  .lp-page .lp-faq__list--cols-2 { grid-template-columns: 1fr; gap: 12px; }

  /* Pricing cards responsive — tablet: 2 columns */
  .lp-page .pt-plans { grid-template-columns: 1fr 1fr; }
  .lp-page .pt-sizes { gap: 6px; }
  .lp-page .pt-size-btn { padding: 8px 14px; font-size: 15px; }
  .lp-page .lp-container--pricing { padding: 0 24px; }
}

@media (max-width: 600px) {
  .lp-page { --section-y: 48px; }
  .lp-page .lp-container { padding: 0 16px; }
  .lp-page .lp-nav__inner { padding: 0 16px; }
  /* Proof bar: 2-column grid on small screens */
  .lp-page .lp-proof-bar__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 20px;
    text-align: center;
  }
  .lp-page .lp-proof-bar__item { align-items: center; }
  .lp-page .lp-proof-bar__value { font-size: 24px; justify-content: center; }
  .lp-page .lp-footer__inner { flex-direction: column; text-align: center; }
  .lp-page .lp-math__cards { flex-direction: column; }
  .lp-page .lp-math__connector { display: none; }
  .lp-page .lp-email-capture__card { padding: 28px 20px; }
  /* Math callout: scale down large number on phones */
  .lp-page .lp-math__callout { padding: 28px 20px; }
  .lp-page .lp-math__callout-number { font-size: 56px; }
  .lp-page .lp-math__callout-unit { font-size: 26px; }
  /* Capture CTA: reduce padding */
  .lp-page .lp-capture-cta { padding: 52px 0; }
  /* Email form: stack input + button on small screens */
  .lp-page .lp-email-form__row { flex-direction: column; }
  .lp-page .lp-email-form__btn { width: 100%; }
  /* Hero trust badge: allow wrapping on tiny screens */
  .lp-page .lp-hero__trust { flex-wrap: wrap; justify-content: center; text-align: center; }

  /* Pricing cards — mobile: horizontal scroll with snap */
  .lp-page .lp-container--pricing { padding: 0 16px; }
  .lp-page .pt-plans {
    grid-template-columns: unset;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 20px 20px 24px;
    margin: 0 -20px;
    scrollbar-width: none;
  }
  .lp-page .pt-plans::-webkit-scrollbar { display: none; }
  .lp-page .pt-plan { flex: 0 0 83%; scroll-snap-align: center; min-width: 0; }
  .lp-page .pt-plan-featured { flex: 0 0 86%; order: -1; }
  .lp-page .pt-plan-unavailable { display: none; }
  .lp-page .pt-plans-hint { display: block; }
  .lp-page .pt-size-pop { display: none; }
  .lp-page .pt-size-btn { padding: 14px 22px; font-size: 17px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   ADDITIONS — v2 design pass
   ═══════════════════════════════════════════════════════════════════════════ */

/* ─── Nav links ──────────────────────────────────────────────────────────── */
.lp-page .lp-nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}
.lp-page .lp-nav__links a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.65);
  transition: color 0.15s;
}
.lp-page .lp-nav__links a:hover { color: #fff; }
.lp-page .lp-nav__login { color: rgba(255,255,255,0.85) !important; }

/* ─── Hero visual — light green text ─────────────────────────────────────── */
.lp-page .mini-label { color: #4ade80; }
.lp-page .payout-label { color: #4ade80; }

/* ─── TrustPilot star — brand green ─────────────────────────────────────── */
.lp-page .lp-proof-bar__tp-star { color: #00b67a; }

/* ─── Payout contrast box (yellow/amber callout) ─────────────────────────── */
.lp-page .payout-contrast {
  margin-top: 20px;
  background: #fff8f0;
  border: 1px solid rgba(230,100,20,0.15);
  border-radius: var(--radius-sm);
  padding: 18px 22px;
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.lp-page .payout-contrast strong { color: var(--text-primary); }

/* ─── Checklist ci-icon pattern (yes/no) ────────────────────────────────── */
.lp-page .lp-checklist__item--ci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 24px;
  border-bottom: 1px solid var(--border);
  list-style: none;
}
.lp-page .lp-checklist__item--ci:last-child { border-bottom: none; }
.lp-page .ci-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.lp-page .ci-icon.yes {
  background: rgba(13,165,250,0.1);
  color: var(--blue-dark);
  border: 1px solid var(--blue-border);
}
.lp-page .ci-icon.no {
  background: rgba(239,68,68,0.08);
  color: #dc2626;
  border: 1px solid rgba(239,68,68,0.2);
}
.lp-page .ci-text {
  font-size: 16px;
  color: var(--text-primary);
  line-height: 1.45;
}
.lp-page .ci-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 1px;
}
.lp-page .ci-text small {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 2px;
  font-weight: 400;
}

/* ─── Leaderboard — card wrapper design ─────────────────────────────────── */
.lp-page .leaderboard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 40px;
}
.lp-page .leaderboard-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
}
.lp-page .leaderboard-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.4;
}
.lp-page .live-dot {
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp-live-pulse 2s ease-in-out infinite;
}
@keyframes lp-live-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(34,197,94,0.4); }
  50% { opacity: 0.8; box-shadow: 0 0 0 4px rgba(34,197,94,0); }
}
@keyframes lp-gradient-animation {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.lp-page .leaderboard-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 15px;
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
  transition: gap 0.15s;
}
.lp-page .leaderboard-link:hover { gap: 7px; }
.lp-page .leaderboard-table-wrap { overflow-x: auto; }
.lp-page .leaderboard-table {
  width: 100%;
  border-collapse: collapse;
}
.lp-page .leaderboard-table thead tr { background: var(--navy); }
.lp-page .leaderboard-table th {
  padding: 12px 20px;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.6);
}
.lp-page .leaderboard-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.lp-page .leaderboard-row:last-child td { border-bottom: none; }
.lp-page .leaderboard-row--top { background: rgba(13,165,250,0.03); }
.lp-page .rank-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  border-radius: var(--radius-xs);
  background: var(--bg-surface);
  border: 1px solid var(--border);
  font-size: 12px;
  font-weight: 700;
  color: var(--text-secondary);
}
.lp-page .rank-badge.gold {
  background: linear-gradient(135deg, #FFD700, #FFA500);
  border-color: transparent;
  color: #fff;
}
.lp-page .rank-badge.silver {
  background: linear-gradient(135deg, #C0C0C0, #909090);
  border-color: transparent;
  color: #fff;
}
.lp-page .rank-badge.bronze {
  background: linear-gradient(135deg, #CD7F32, #9C5A25);
  border-color: transparent;
  color: #fff;
}
.lp-page .trader-handle {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
  font-family: 'Courier New', monospace;
}
.lp-page .earned-amount {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
}
.lp-page .payout-date {
  font-size: 15px;
  color: var(--text-muted);
}
.lp-page .leaderboard-note {
  font-size: 14px;
  color: var(--text-muted);
  padding: 12px 24px;
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  line-height: 1.5;
}

/* ─── Math comparison — 2-column grid layout ─────────────────────────────── */
.lp-page .lp-math__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: stretch;
}
/* Override stacked intro + cards — now inside left column */
.lp-page .lp-math__intro { margin-bottom: 28px; }
.lp-page .lp-math__cards {
  flex-direction: column;
  gap: 0;
  margin-bottom: 0;
  align-items: stretch;
  flex-wrap: nowrap;
}
/* Card: horizontal layout — label/sub/badge on left, result on right */
.lp-page .lp-math__card {
  flex: none;
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  text-align: left;
  position: static;
}
.lp-page .lp-math__card-left { flex: 1; min-width: 0; }
.lp-page .lp-math__card-label { margin-bottom: 4px; font-size: 13px; }
.lp-page .lp-math__card-subtitle { font-size: 15px; margin-bottom: 6px; }
.lp-page .lp-math__card-badge {
  display: inline-block;
  position: static;
  transform: none;
  top: auto;
  left: auto;
  background: rgba(13,165,250,0.12);
  color: var(--blue-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
  margin-top: 4px;
  white-space: nowrap;
}
.lp-page .lp-math__card-result {
  font-family: var(--font-serif);
  font-size: 34px;
  color: var(--text-primary);
  white-space: nowrap;
  flex-shrink: 0;
  text-align: right;
}
.lp-page .lp-math__connector { padding: 6px 0; }
/* Right column: sticky callout — stretch to match left column height */
.lp-page .lp-math__right {
  position: sticky;
  top: 90px;
  display: flex;
  flex-direction: column;
  align-self: center;
}
.lp-page .lp-math__right .lp-math__callout {
  /* flex: 1 removed — box sizes to its content */
}

/* ─── Content block — full-width solo (card_type=none) ───────────────────── */
.lp-page .lp-content-block--solo .lp-container { /* already full-width */ }
/* Render ol inside body as horizontal step-card grid */
.lp-page .lp-content-block--solo .lp-prose ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
  padding-left: 0;
  counter-reset: lp-step-counter;
}
.lp-page .lp-content-block--solo .lp-prose ol li {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  counter-increment: lp-step-counter;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}
.lp-page .lp-content-block--solo .lp-prose ol li::before {
  content: counter(lp-step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--blue-gradient);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--font-sans);
  margin-bottom: 16px;
  box-shadow: 0 4px 10px rgba(13,165,250,0.3);
}
.lp-page .lp-content-block--solo .lp-prose ol li strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}
/* Callout box (from card_badge on none-type sections) */
.lp-page .lp-content-block__callout {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-top: 40px;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.65;
}
.lp-page .lp-content-block__callout-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 1px;
}
.lp-page .lp-content-block__callout p { margin: 0; }
.lp-page .lp-content-block__callout strong { color: var(--text-primary); }

/* ─── Responsive additions ───────────────────────────────────────────────── */
@media (max-width: 900px) {
  .lp-page .lp-nav__links { display: none; }
  .lp-page .lp-nav__cta { font-size: 13px; padding: 9px 14px; box-shadow: none; }
  .lp-page .lp-math__layout { grid-template-columns: 1fr; gap: 40px; }
  .lp-page .lp-math__right { position: static; }
  .lp-page .lp-content-block--solo .lp-prose ol { grid-template-columns: 1fr; }
  .lp-page .leaderboard-top { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 600px) {
  .lp-page .lp-content-block--solo .lp-prose ol { gap: 16px; }
  .lp-page .lp-math__card { flex-direction: column; align-items: flex-start; gap: 8px; }
  .lp-page .lp-math__card-result { font-size: 24px; }
}

/* ─── Hero kicker — live dot before label ───────────────────────────────── */
.lp-page .lp-hero__left .lp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 4px 14px 4px 10px;
  font-size: 14px;
  letter-spacing: 0.8px;
  text-transform: none;
  font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.lp-page .lp-hero__left .lp-label::before {
  content: '';
  width: 7px;
  height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
  animation: lp-live-pulse 2s ease-in-out infinite;
}

/* ─── No-list pills (rules section) ─────────────────────────────────────── */
.lp-page .lp-prose ul.no-list {
  list-style: none;
  padding-left: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.lp-page .lp-prose ul.no-list li {
  margin: 0;
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 16px;
  color: var(--text-secondary);
  font-weight: 500;
}
.lp-page .lp-prose ul.no-list li::before {
  /* override any inherited list markers */
  content: none;
}

/* ─── Trust guarantee list in prose ─────────────────────────────────────── */
.lp-page .lp-prose ul:not(.no-list) {
  padding-left: 0;
  list-style: none;
}
.lp-page .lp-prose ul:not(.no-list) li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.lp-page .lp-prose ul:not(.no-list) li:last-child { border-bottom: none; }
.lp-page .lp-prose ul:not(.no-list) li::before {
  content: '✓';
  color: var(--blue);
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 0;
}


/* ── "Is This Real?" eyebrow label — larger font for question eyebrows only ── */
.lp-page .lp-content-block--question .lp-content-block__text .lp-label {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
}
