/* ============================================================
   Leveraged Creator — Webinar Landing Page
   Dark, Apple-style hero. Violet -> magenta accent system.
   Design tokens mirror colors_and_type.css from the handoff.
   ============================================================ */

:root {
  --bg-0: #050608;
  --bg-1: #0a0c10;
  --fg: #f5f7fa;
  --fg-dim: rgba(245, 247, 250, 0.62);
  --fg-dimmer: rgba(245, 247, 250, 0.38);
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  /* Default accent: violet -> magenta */
  --accent-grad: linear-gradient(95deg, #a78bfa 0%, #c084fc 50%, #ec4899 100%);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg-0);
  color: var(--fg);
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  min-height: 100vh;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

/* Branded selection — the one accent moment everywhere */
::selection {
  background: rgba(192, 132, 252, 0.30);
  color: #fff;
}

/* ------------------------------------------------------------------ */
/* Root                                                                */
/* ------------------------------------------------------------------ */
.lc-root {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow-x: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% -20%, rgba(167, 139, 250, 0.18), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(236, 72, 153, 0.10), transparent 60%),
    var(--bg-0);
}

/* Aurora blobs */
.lc-aurora {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.lc-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.55;
  mix-blend-mode: screen;
}
.lc-blob-1 {
  width: 620px; height: 620px;
  background: radial-gradient(circle, #a78bfa 0%, rgba(167,139,250,0) 65%);
  top: -180px; left: 50%; transform: translateX(-50%);
  animation: drift1 18s ease-in-out infinite alternate;
}
.lc-blob-2 {
  width: 520px; height: 520px;
  background: radial-gradient(circle, #c084fc 0%, rgba(192,132,252,0) 65%);
  bottom: -160px; left: 18%;
  animation: drift2 22s ease-in-out infinite alternate;
}
.lc-blob-3 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #ec4899 0%, rgba(236,72,153,0) 65%);
  bottom: -180px; right: 12%;
  animation: drift3 26s ease-in-out infinite alternate;
}
@keyframes drift1 { from { transform: translate(-50%, 0) } to { transform: translate(-46%, 30px) } }
@keyframes drift2 { from { transform: translate(0, 0) } to { transform: translate(60px, -20px) } }
@keyframes drift3 { from { transform: translate(0, 0) } to { transform: translate(-50px, -10px) } }

/* ------------------------------------------------------------------ */
/* Hero                                                                */
/* ------------------------------------------------------------------ */
.lc-hero {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 72px 32px 80px;
  text-align: center;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
}

/* Brand mark */
.lc-brandmark {
  margin-bottom: 26px;
}
.lc-logo {
  width: 46px;
  height: auto;
  display: block;
  filter: drop-shadow(0 8px 28px rgba(167, 139, 250, 0.42));
}

/* Trust badge */
.lc-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 999px;
  backdrop-filter: blur(10px);
  margin-bottom: 28px;
  font-size: 12.5px;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
  white-space: nowrap;
}
.lc-trust-stars { display: inline-flex; gap: 2px; }
.lc-trust-star { position: relative; width: 15px; height: 15px; display: inline-block; }
.lc-trust-text { display: inline-flex; align-items: center; gap: 5px; font-feature-settings: 'tnum'; }
.lc-trust-text strong { color: #fff; font-weight: 600; }
.lc-trust-brand {
  color: #00b67a;
  font-weight: 600;
  margin-left: 2px;
}

/* Headline */
.lc-headline {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: clamp(36px, 4.8vw, 68px);
  line-height: 1.04;
  letter-spacing: -0.035em;
  font-weight: 700;
  margin: 0 0 24px;
  max-width: 24ch;
  text-wrap: balance;
}
.lc-head-pre { color: rgba(255,255,255,0.98); }
.lc-head-accent {
  /* subtle violet -> rose-pink, with a touch more luminosity + glow
     so the brand phrase reads as the hero's focal moment */
  background: linear-gradient(95deg, #c2adf7 0%, #dcaeee 50%, #f2a8ce 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline;
  filter: drop-shadow(0 2px 20px rgba(192, 132, 252, 0.22));
}

/* Sub */
.lc-sub {
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.5;
  color: var(--fg-dim);
  max-width: 58ch;
  margin: 0 auto 24px;
  font-weight: 400;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}

/* Meta line */
.lc-meta-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12.5px;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 32px;
  font-weight: 500;
}
.lc-live-dot {
  display: inline-block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #d8564e;
  margin-right: 8px;
  vertical-align: middle;
  box-shadow: 0 0 0 0 rgba(216,86,78,0.4);
  animation: pulse 2.1s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(216,86,78,0.40); }
  70%  { box-shadow: 0 0 0 6px rgba(216,86,78,0); }
  100% { box-shadow: 0 0 0 0 rgba(216,86,78,0); }
}
.lc-meta-line-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

/* Date */
.lc-date {
  font-size: 12px;
  color: var(--fg-dimmer);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 18px;
  font-feature-settings: 'tnum';
}

/* ------------------------------------------------------------------ */
/* Countdown — subtle inline panel                                     */
/* ------------------------------------------------------------------ */
/* Countdown — Apple "Liquid Glass": floating frosted tiles, one per unit.
   Each tile refracts the violet aurora behind it (backdrop-filter), with a
   bright specular top rim, soft inner glow, and a float shadow. */
.lc-timer {
  position: relative;
  display: inline-flex;
  align-items: stretch;
  gap: 12px;
  padding: 0;
  margin-bottom: 40px;
  border: none;
  background: none;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum', 'ss01';
}
.lc-timer-cell {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 11px 7px;
  min-width: 54px;
  min-height: 80px;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 100%);
  -webkit-backdrop-filter: blur(16px) saturate(125%);
  backdrop-filter: blur(16px) saturate(125%);
  border: 1px solid rgba(255,255,255,0.055);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.09),    /* faint top highlight */
    0 8px 22px -16px rgba(0,0,0,0.5);         /* soft dark shadow */
  transition: transform 0.32s cubic-bezier(.2,.7,.2,1), box-shadow 0.32s ease, border-color 0.32s ease;
}
/* whisper-soft top highlight (no diagonal glare) */
.lc-timer-cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.04) 0%, transparent 36%);
  pointer-events: none;
}
.lc-timer-cell:hover {
  transform: translateY(-1px);
  border-color: rgba(255,255,255,0.09);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.13),
    0 12px 28px -18px rgba(0,0,0,0.55);
}
.lc-timer-label {
  position: relative;
  z-index: 2;
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
.lc-digit {
  position: relative;
  z-index: 2;
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-size: clamp(30px, 3.4vw, 40px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
  text-shadow: none;
}
/* separators not used with floating tiles */
.lc-timer-sep { display: none; }

/* Live-now state (timer hit zero) */
.lc-live-now {
  font-size: 22px;
  color: #34d399;
  margin-bottom: 28px;
}

/* ------------------------------------------------------------------ */
/* CTA                                                                 */
/* ------------------------------------------------------------------ */
.lc-cta-cluster {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.lc-cta {
  position: relative;
  display: inline-block;
  text-decoration: none;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: #0a0a0a;
  border: none;
  border-radius: 999px;
  padding: 0;
  transition: transform 0.22s cubic-bezier(.2,.7,.2,1), box-shadow 0.22s;
  cursor: pointer;
}
.lc-cta-inner {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 22px 44px;
  border-radius: 999px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
.lc-cta:hover { transform: translateY(-1px); }
.lc-cta:active { transform: translateY(0); }

.lc-cta-gradient {
  background: var(--accent-grad);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.1) inset,
    0 24px 70px -14px rgba(167, 139, 250, 0.7),
    0 12px 32px -8px rgba(236, 72, 153, 0.45);
  transition: background-position 0.6s ease, transform 0.22s, box-shadow 0.22s;
}
.lc-cta-gradient:hover {
  background-position: 100% 50%;
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.16) inset,
    0 30px 80px -10px rgba(167, 139, 250, 0.85),
    0 14px 36px -6px rgba(236, 72, 153, 0.6);
}

/* ------------------------------------------------------------------ */
/* Learn section                                                       */
/* ------------------------------------------------------------------ */
.lc-learn {
  position: relative;
  z-index: 2;
  padding: 80px 32px 100px;
  /* soft center-bright hairline instead of a hard template seam */
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line-strong) 50%, transparent) 1;
  background:
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(167, 139, 250, 0.07), transparent 70%),
    rgba(8, 9, 12, 0.4);
}
.lc-learn-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.lc-learn-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  font-weight: 600;
  margin-bottom: 16px;
  text-align: center;
}
.lc-learn-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: rgba(255,255,255,0.98);
  text-align: center;
  margin: 0 auto 56px;
  max-width: 22ch;
  text-wrap: balance;
}
.lc-learn-accent {
  /* same softer violet -> rose-pink gradient as the hero headline accent */
  background: linear-gradient(95deg, #c2adf7 0%, #dcaeee 50%, #f2a8ce 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 2px 20px rgba(192, 132, 252, 0.22));
}
.lc-learn-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.lc-learn-card {
  position: relative;
  padding: 28px 28px 26px;
  background: rgba(255,255,255,0.025);
  border: 1px solid var(--line);
  border-radius: 22px;
  backdrop-filter: blur(10px);
  transition: background 0.25s ease, border-color 0.25s ease,
              transform 0.25s cubic-bezier(.2,.7,.2,1), box-shadow 0.25s ease;
}
.lc-learn-card:hover {
  background: rgba(255,255,255,0.05);
  border-color: var(--line-strong);
  transform: translateY(-3px);
  box-shadow: 0 22px 48px -28px rgba(167, 139, 250, 0.55);
}
.lc-learn-n {
  font-family: 'SF Mono', ui-monospace, 'JetBrains Mono', monospace;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  margin-bottom: 14px;
}
.lc-learn-title-row {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: rgba(255,255,255,0.96);
  margin-bottom: 8px;
  line-height: 1.3;
}
.lc-learn-desc {
  font-size: 14px;
  line-height: 1.55;
  color: var(--fg-dim);
  letter-spacing: -0.003em;
  text-wrap: pretty;
}

/* Learn bonus line */
.lc-learn-bonus {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--fg-dim);
  letter-spacing: -0.005em;
}
.lc-learn-bonus-tag {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.22em;
  font-weight: 600;
  padding: 3px 8px;
  margin-right: 10px;
  border-radius: 6px;
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: 1px solid var(--line-strong);
}

/* ------------------------------------------------------------------ */
/* Footer — minimal                                                    */
/* ------------------------------------------------------------------ */
.lc-foot {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 22px 40px 28px;
  font-size: 12px;
  color: var(--fg-dimmer);
}
.lc-foot a {
  color: var(--fg-dim);
  text-decoration: none;
  padding: 0 14px;
  transition: color 0.2s;
}
.lc-foot a:hover { color: var(--fg); }
.lc-foot-sep {
  width: 1px;
  height: 12px;
  background: var(--line-strong);
}

/* ------------------------------------------------------------------ */
/* Responsive — phones (was force-mobile in the prototype)             */
/* ------------------------------------------------------------------ */
@media (max-width: 720px) {
  /* Hero spacing is tightened so the first CTA clears the fold on
     every phone (incl. SE-class with browser chrome). */
  .lc-hero {
    padding: 36px 18px 36px;
    justify-content: flex-start;
  }

  .lc-brandmark { margin-bottom: 14px; }
  .lc-logo { width: 36px; }

  .lc-trust {
    font-size: 11px;
    padding: 6px 11px;
    gap: 7px;
    margin-bottom: 16px;
  }
  .lc-trust-stars svg { width: 12px; height: 12px; }
  .lc-trust-star { width: 12px; height: 12px; }

  .lc-headline {
    font-size: 29px;
    line-height: 1.07;
    letter-spacing: -0.03em;
    max-width: 18ch;
    margin-bottom: 14px;
  }

  .lc-sub {
    font-size: 14.5px;
    line-height: 1.5;
    max-width: 38ch;
    margin-bottom: 16px;
  }

  .lc-meta-line {
    font-size: 11px;
    gap: 9px;
    margin-bottom: 16px;
  }

  .lc-date {
    font-size: 10.5px;
    letter-spacing: 0.1em;
    margin-bottom: 10px;
  }

  /* Timer — Liquid Glass tiles */
  .lc-timer {
    gap: 7px;
    margin-bottom: 22px;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 296px;
  }
  .lc-timer-cell {
    min-width: 0;
    flex: 1 1 0;
    justify-content: center;
    padding: 10px 4px;
    min-height: 72px;
    gap: 4px;
    border-radius: 15px;
  }
  .lc-digit {
    font-size: 26px;
    letter-spacing: -0.035em;
  }
  .lc-timer-label {
    font-size: 8px;
    letter-spacing: 0.12em;
  }

  /* CTA */
  .lc-cta-cluster { width: 100%; gap: 16px; }
  .lc-cta {
    width: 100%;
    max-width: 340px;
    font-size: 17px;
  }
  .lc-cta-inner {
    padding: 19px 32px;
    justify-content: center;
    width: 100%;
    gap: 10px;
  }

  /* Learn */
  .lc-learn { padding: 48px 18px 56px; }
  .lc-learn-title { font-size: 24px; margin-bottom: 32px; }
  .lc-learn-grid { grid-template-columns: 1fr; gap: 12px; }
  .lc-learn-card { padding: 22px 22px 20px; border-radius: 18px; }
  .lc-learn-title-row { font-size: 16px; }
  .lc-learn-desc { font-size: 13.5px; }
  .lc-learn-bonus { font-size: 13px; margin-top: 22px; }

  .lc-foot { padding: 18px 20px 26px; }

  /* Aurora — calmer */
  .lc-blob { opacity: 0.35; filter: blur(80px); }
  .lc-blob-1 { width: 380px; height: 380px; top: -120px; }
  .lc-blob-2 { width: 320px; height: 320px; bottom: -120px; }
  .lc-blob-3 { width: 320px; height: 320px; bottom: -140px; }
}

/* Small phones (SE-class) */
@media (max-width: 380px) {
  .lc-headline { font-size: 26px; }
  .lc-digit { font-size: 28px; }
  .lc-timer-label { font-size: 8.5px; letter-spacing: 0.14em; }
}

/* ------------------------------------------------------------------ */
/* Focus states — keyboard accessibility                               */
/* ------------------------------------------------------------------ */
.lc-cta:focus-visible,
.lc-foot a:focus-visible,
.lc-learn-card:focus-visible {
  outline: 2px solid #c084fc;
  outline-offset: 4px;
  border-radius: 999px;
}
.lc-learn-card:focus-visible { border-radius: 22px; }

/* ------------------------------------------------------------------ */
/* CTA note — urgency + risk reversal under the button                 */
/* ------------------------------------------------------------------ */
.lc-cta-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  color: var(--fg-dimmer);
  font-weight: 500;
}
.lc-dot-sep {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
}

/* ------------------------------------------------------------------ */
/* Generic section scaffolding (Host / Proof / Final)                  */
/* ------------------------------------------------------------------ */
.lc-section {
  position: relative;
  z-index: 2;
  padding: 76px 32px;
  /* soft center-bright hairline between sections */
  border-top: 1px solid transparent;
  border-image: linear-gradient(90deg, transparent, var(--line-strong) 50%, transparent) 1;
}
.lc-section-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.lc-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--fg-dimmer);
  font-weight: 600;
  text-align: center;
  margin-bottom: 16px;
}
.lc-sec-title {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, system-ui, sans-serif;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: rgba(255,255,255,0.98);
  text-align: center;
  margin: 0 auto 14px;
  max-width: 24ch;
  text-wrap: balance;
}

/* Avatar — circular gradient fallback with initials (brand: no photos) */
.lc-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #a78bfa, #ec4899);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  box-shadow: 0 12px 32px -12px rgba(167, 139, 250, 0.6);
  flex-shrink: 0;
}
/* ------------------------------------------------------------------ */
/* Your Host                                                           */
/* ------------------------------------------------------------------ */
.lc-host { text-align: center; }
.lc-host-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
}
.lc-host-name {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', system-ui, sans-serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #fff;
  margin: 0;
}
.lc-host-cred {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 52ch;
  margin: 0;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.lc-host-note {
  display: block;
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.02em;
  color: rgba(245, 247, 250, 0.28);
  font-style: italic;
}

/* ------------------------------------------------------------------ */
/* Final — urgency + second CTA                                        */
/* ------------------------------------------------------------------ */
.lc-final {
  text-align: center;
  background:
    radial-gradient(ellipse 60% 60% at 50% 120%, rgba(236, 72, 153, 0.10), transparent 70%),
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(167, 139, 250, 0.07), transparent 70%);
}
.lc-final .lc-cta-cluster { margin: 0 auto; }
.lc-final-sub {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-dim);
  max-width: 48ch;
  margin: 0 auto 32px;
  letter-spacing: -0.005em;
  text-wrap: pretty;
}
.lc-final-date {
  color: rgba(255,255,255,0.92);
  font-weight: 500;
  white-space: nowrap;
}

/* ------------------------------------------------------------------ */
/* Responsive — new sections                                           */
/* ------------------------------------------------------------------ */
@media (max-width: 720px) {
  .lc-cta-note { font-size: 11.5px; gap: 8px; }
  .lc-section { padding: 48px 18px; }
  .lc-sec-title { font-size: 24px; }
  .lc-avatar { width: 64px; height: 64px; font-size: 20px; }
  .lc-host-name { font-size: 20px; }
  .lc-host-cred { font-size: 14px; }
  .lc-final-sub { font-size: 14px; }
}

/* ------------------------------------------------------------------ */
/* Reduced motion                                                      */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  .lc-blob-1, .lc-blob-2, .lc-blob-3 { animation: none; }
  .lc-live-dot { animation: none; }
  .lc-cta, .lc-cta-gradient, .lc-learn-card { transition: none; }
}

/* Pre-headline (VSL-style lead-in above the main headline) */
.lc-prehead {
  font-size: clamp(15px, 1.9vw, 19px);
  font-style: italic;
  font-weight: 500;
  line-height: 1.42;
  letter-spacing: -0.01em;
  color: var(--fg-dim);
  max-width: 30ch;
  margin: 0 auto 20px;
  text-wrap: balance;
}
@media (max-width: 720px) { .lc-prehead { font-size: 15px; max-width: 32ch; margin-bottom: 16px; } }

/* Hero eyebrow + asterisk disclaimer footnote (copy rebuild) */
.lc-eyebrow-hero { margin-bottom: 18px; color: var(--fg-dim); }
.lc-disclaimer {
  margin: 22px auto 0;
  max-width: 64ch;
  font-size: 11.5px;
  line-height: 1.55;
  color: var(--fg-dimmer);
  text-align: center;
  letter-spacing: 0.005em;
}
.lc-disclaimer a { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 720px) { .lc-disclaimer { font-size: 11px; max-width: 90%; } }

/* ============================================================
   Registration popup (shared across all landers)
   ============================================================ */
body.lc-modal-open { overflow: hidden; }
.lc-modal-overlay {
  position: fixed; inset: 0; z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  background: rgba(3, 4, 8, 0.72);
  -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  opacity: 0; visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}
.lc-modal-overlay.open { opacity: 1; visibility: visible; }
.lc-modal {
  position: relative; width: 100%; max-width: 440px;
  background: linear-gradient(180deg, #0e1017 0%, #0a0c10 100%);
  border: 1px solid var(--line-strong);
  border-radius: 22px;
  padding: 32px 26px 24px;
  box-shadow: 0 40px 120px -24px rgba(0,0,0,0.85);
  transform: translateY(16px) scale(0.98);
  transition: transform .32s cubic-bezier(.32,.72,0,1);
  max-height: calc(100dvh - 40px); overflow-y: auto;
}
.lc-modal-overlay.open .lc-modal { transform: none; }
.lc-modal-close {
  position: absolute; top: 14px; right: 14px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06); border: 1px solid var(--line);
  color: var(--fg-dim); cursor: pointer;
  transition: background .2s, color .2s;
}
.lc-modal-close:hover { background: rgba(255,255,255,0.12); color: var(--fg); }
.lc-modal-eyebrow { font-size: 11px; letter-spacing: .22em; text-transform: uppercase; color: var(--fg-dimmer); font-weight: 600; text-align: center; }
.lc-modal-title { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); text-align: center; margin: 10px 0 5px; }
.lc-modal-sub { font-size: 13.5px; line-height: 1.5; color: var(--fg-dim); text-align: center; margin: 0 auto 22px; max-width: 34ch; }
.lc-form { display: flex; flex-direction: column; gap: 13px; }
.lc-form-row { display: flex; gap: 12px; }
.lc-form-row > .lc-field { flex: 1; min-width: 0; }
.lc-field { display: flex; flex-direction: column; gap: 6px; }
.lc-field label { font-size: 11px; letter-spacing: .04em; color: var(--fg-dimmer); font-weight: 500; padding-left: 2px; }
.lc-input {
  width: 100%; box-sizing: border-box; min-width: 0;
  padding: 13px 14px; font-size: 16px; /* 16px = no iOS zoom on focus */
  color: var(--fg); background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-strong); border-radius: 12px;
  font-family: inherit; -webkit-appearance: none;
  transition: border-color .2s, background .2s;
}
.lc-input::placeholder { color: rgba(245,247,250,0.28); }
.lc-input:focus { outline: none; border-color: #c084fc; background: rgba(192,132,252,0.06); }
.lc-input.err { border-color: #f0617a; background: rgba(240,97,122,0.06); }
.lc-form .lc-cta { width: 100%; margin-top: 6px; }
.lc-form .lc-cta[disabled] { opacity: .65; pointer-events: none; }
.lc-form-fine { font-size: 11px; line-height: 1.45; color: var(--fg-dimmer); text-align: center; margin: 6px 0 0; }
.lc-confirm { text-align: center; padding: 18px 6px 10px; }
.lc-confirm-check { width: 56px; height: 56px; margin: 0 auto 18px; border-radius: 50%; background: var(--accent-grad); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 32px -12px rgba(192,132,252,0.6); }
.lc-confirm-title { font-size: 23px; font-weight: 700; letter-spacing: -0.02em; color: var(--fg); margin: 0 0 9px; }
.lc-confirm-sub { font-size: 14px; line-height: 1.55; color: var(--fg-dim); margin: 0 auto; max-width: 32ch; }
@media (max-width: 420px) {
  .lc-modal { padding: 28px 18px 20px; border-radius: 20px; }
  .lc-form-row { flex-direction: column; gap: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .lc-modal-overlay, .lc-modal { transition: none; }
}

/* ---- Registration popup: reference-style title / date / phone ---- */
.lc-modal-title { font-size: 25px; font-weight: 800; letter-spacing: -0.02em; line-height: 1.14; color: var(--fg); text-align: center; margin: 2px 0 0; }
.lc-modal-date {
  display: block; text-align: center; margin: 18px 0 22px;
  padding: 13px 16px;
  border: 1.5px dashed rgba(192,132,252,0.45); border-radius: 14px;
  background: rgba(192,132,252,0.05);
  font-size: 15px; font-weight: 700; letter-spacing: -0.01em; color: #ead9ff;
}
.lc-form-submit { margin-top: 4px; }
.lc-form-submit .lc-cta-inner { font-size: 18px; font-weight: 700; }
.lc-form-fine a { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }
@media (max-width: 420px) {
  .lc-modal-title { font-size: 22px; }
  .lc-modal-date { font-size: 14px; padding: 12px 14px; }
}

.lc-disc-foot { padding: 8px 20px 10px; }
.lc-disc-foot .lc-disclaimer { margin-top: 0; }

/* Full earnings disclaimer block at the bottom of each lander */
.lc-disc-foot { padding: 40px 22px 12px; }
.lc-legal-full { max-width: 760px; margin: 0 auto; }
.lc-legal-full h3 { font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--fg-dimmer); font-weight: 600; margin: 0 0 14px; text-align: center; }
.lc-legal-full p { font-size: 11.5px; line-height: 1.6; color: var(--fg-dimmer); margin: 0 0 12px; }
.lc-legal-full strong { color: var(--fg-dim); }
.lc-legal-full a { color: var(--fg-dim); text-decoration: underline; text-underline-offset: 2px; }
.lc-legal-links { text-align: center; margin-top: 16px !important; letter-spacing: .04em; }

.lc-legal-links { text-align: center; margin: 0 0 18px; font-size: 12.5px; letter-spacing: .03em; }

/* Submit-button loading spinner (form -> redirect) */
.lc-spinner { display: inline-block; width: 20px; height: 20px; border-radius: 50%; border: 2.5px solid rgba(26,10,30,0.30); border-top-color: #1a0a1e; animation: lc-spin .7s linear infinite; }
@keyframes lc-spin { to { transform: rotate(360deg); } }

@media (prefers-reduced-motion: reduce) { .lc-spinner { animation-duration: 1.6s; } }

/* intl-tel-input — dark theme + fit the modal field */
.lc-field .iti { width: 100%; display: block; }
.iti__selected-flag { border-radius: 12px 0 0 12px; padding: 0 8px 0 12px; }
.iti--separate-dial-code .iti__selected-flag { background: rgba(255,255,255,0.06); }
.iti--separate-dial-code .iti__selected-dial-code { color: var(--fg); font-size: 15px; }
.iti__arrow { border-top-color: var(--fg-dimmer); }
.iti__arrow--up { border-bottom-color: var(--fg-dimmer); }
.iti__country-list { background: #0e1017; border: 1px solid var(--line-strong); color: var(--fg);
  box-shadow: 0 18px 44px -12px rgba(0,0,0,0.75); border-radius: 12px; }
.iti__country { color: var(--fg); padding: 9px 12px; }
.iti__country.iti__highlight { background: rgba(255,255,255,0.08); }
.iti__dial-code { color: var(--fg-dimmer); }
.iti__divider { border-bottom-color: var(--line); }

/* intl-tel-input's own CSS is injected AFTER lander.css, so force the dark
   dropdown to win regardless of cascade order */
.iti__country-list, .iti__dropdown-content { background: #0e1017 !important; border: 1px solid var(--line-strong) !important; color: var(--fg) !important; }
.iti__country, .iti__country-name { color: var(--fg) !important; }
.iti__country.iti__highlight, .iti__country:hover { background-color: rgba(255,255,255,0.08) !important; }
.iti__dial-code { color: var(--fg-dimmer) !important; }
.iti__divider { border-bottom-color: var(--line) !important; }
.iti__search-input { background: #0e1017 !important; color: var(--fg) !important; border-color: var(--line-strong) !important; }
