/* ============================================================
   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: 7px; height: 7px;
  border-radius: 50%;
  background: #ef4444;
  margin-right: 2px;
  box-shadow: 0 0 0 0 rgba(239,68,68,0.7);
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(239,68,68,0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,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                                     */
/* ------------------------------------------------------------------ */
.lc-timer {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 10px 4px;
  margin-bottom: 40px;
  border-radius: 18px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.07);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum', 'ss01';
}
.lc-timer-cell {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 4px 22px;
  min-width: 78px;
}
.lc-timer-label {
  font-size: 9.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  font-weight: 500;
}
.lc-digit {
  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: rgba(255,255,255,0.94);
  font-variant-numeric: tabular-nums;
  font-feature-settings: 'tnum';
}
.lc-timer-sep {
  width: 1px;
  align-self: stretch;
  margin: 10px 0;
  background: rgba(255,255,255,0.07);
}

/* 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-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 {
  background: var(--accent-grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: saturate(1.15);
}
.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 */
  .lc-timer {
    gap: 0;
    margin-bottom: 22px;
    padding: 8px 2px;
    border-radius: 14px;
    width: 100%;
    max-width: 320px;
  }
  .lc-timer-cell {
    min-width: 0;
    flex: 1 1 0;
    padding: 4px 6px;
    gap: 3px;
  }
  .lc-digit {
    font-size: 26px;
    letter-spacing: -0.035em;
  }
  .lc-timer-label {
    font-size: 8.5px;
    letter-spacing: 0.16em;
  }
  .lc-timer-sep { margin: 6px 0; }

  /* 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; } }
