/* ==========================================================================
   apolloeleven.css — Clicked Academy Landing Page Redesign
   ========================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand colours */
  --primary:    #0080FF;
  --secondary:  #115FFB;
  --tertiary:   #5540FB;
  --warm:       #FF6B35;
  --success:    #18A957;
  --error:      #DF1642;

  /* Dark zone tokens */
  --dark-bg:      #0a0a0f;
  --dark-bg-alt:  #0d0d18;
  --text-1:       #ffffff;
  --text-2:       rgba(255,255,255,0.72);
  --text-3:       rgba(255,255,255,0.42);
  --border-dark:  rgba(255,255,255,0.12);

  /* Light zone tokens — text on gradient background */
  --light-bg:     #ffffff;
  --light-bg-alt: #eef2ff;
  --light-text-1: #ffffff;
  --light-text-2: rgba(255,255,255,0.82);
  --light-text-3: rgba(255,255,255,0.55);
  --border-light: rgba(255,255,255,0.18);

  /* Neutral zone tokens */
  --neutral-bg:   #111122;

  /* Layout */
  --max-width: 1160px;
  --section-pad: 96px 0;
  --inner-pad: 0 48px;
}

html { scroll-behavior: smooth; }

html, body {
  min-height: 100vh;
  font-family: 'DM Sans', sans-serif;
  -webkit-font-smoothing: antialiased;
}

/* ─── Nav ──────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(0,0,0,0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.5s ease, border-color 0.5s ease, backdrop-filter 0.5s ease;
}

nav.nav-scrolled {
  background: rgba(0,60,180,0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dark);
}

.nav-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-2);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover,
.nav-link.active { color: var(--text-1); }

.nav-login {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 9px 24px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.nav-login:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.9);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-early-access {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 9px 24px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  background: rgba(255,255,255,0.08);
  transition: background 0.2s, border-color 0.2s;
}

.nav-early-access:hover {
  background: rgba(255,255,255,0.18);
  border-color: rgba(255,255,255,0.9);
}

.nav-actions .nav-login {
  border-radius: 8px;
}

/* ── Hamburger (hidden on desktop) ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 0;
  cursor: pointer;
  width: 36px;
  height: 32px;
}

.nav-hamburger span {
  display: block;
  width: 14px;
  height: 1px;
  background: #ffffff;
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ── Mobile dropdown menu ── */
.nav-mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  right: 20px;
  background: rgba(10,10,30,0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  padding: 8px;
  min-width: 140px;
  z-index: 200;
}

.nav-mobile-menu.open { display: block; }

.nav-mobile-login {
  display: block;
  padding: 4px 16px;
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  border-radius: 7px;
  transition: background 0.2s;
}

.nav-mobile-login:hover { background: rgba(255,255,255,0.1); }

/* ─── Layout helpers ────────────────────────── */
.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--inner-pad);
}

.centered-block {
  text-align: center;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── Zone wrappers ─────────────────────────── */
.zone-dark {
  background: linear-gradient(180deg, #04040e 0%, #080818 40%, #0d0d22 100%);
  position: relative;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
}

/* Subtle radial glow accents in the dark zone */
.zone-dark::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0,128,255,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.zone-dark::after {
  content: '';
  position: absolute;
  bottom: 5%;
  left: -5%;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(85,64,251,0.06) 0%, transparent 70%);
  pointer-events: none;
}

/* ─── Scroll-snap sections (first 4 viewports) ── */
.section-reskilling-hero,
.section-hook,
.section-hook-pivot,
.section-problem {
  height: 100vh;
  box-sizing: border-box;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  padding-top: 80px; /* clear fixed nav */
}

/* ─── Reskilling hero ───────────────────────── */
.section-reskilling-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* ─── Hook pivot ─────────────────────────────── */
.section-hook-pivot {
  display: flex;
  align-items: center;
}

.reskilling-hero-text {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.25;
  margin: 0;
}

.zone-light {
  background: linear-gradient(176deg,
    #0080ff 0%,
    #115ffb 25%,
    #5540fb 50%,
    #b620e0 75%,
    #f7b500 100%);
  background-attachment: fixed;
}

.zone-light-gradient {
  background: linear-gradient(176deg,
    #0080ff 0%,
    #115ffb 25%,
    #5540fb 50%,
    #b620e0 75%,
    #f7b500 100%);
  background-attachment: fixed;
}

.zone-dark-neutral {
  background: linear-gradient(176deg,
    #0080ff 0%,
    #115ffb 25%,
    #5540fb 50%,
    #b620e0 75%,
    #f7b500 100%);
  background-attachment: fixed;
}

/* ─── Section tags ──────────────────────────── */
.section-tag {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 20px;
  display: block;
}

.section-tag-light {
  font-family: 'Quicksand', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
  display: block;
}

/* ─── Section headings ──────────────────────── */
.section-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-1);
  margin-bottom: 24px;
}

.light-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(42px, 3.7vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--light-text-1);
  margin-bottom: 16px;
}

.inline-logo {
  height: 1.8em;
  vertical-align: middle;
  display: inline-block;
  position: relative;
  top: -0.1em;
  margin-left: 42px;
}

.light-sub {
  font-size: 17px;
  font-weight: 300;
  color: var(--light-text-2);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ══════════════════════════════════════════════
   1 & 2. HOOK + PROBLEM
══════════════════════════════════════════════ */

/* Hook */
.section-hook {
  display: flex;
  align-items: center;
}

.hook-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  margin-bottom: 64px;
}

.hook-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hook-line {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.hook-line.revealed { opacity: 1; transform: none; }
.hook-line:nth-child(2) { transition-delay: 0.1s; }
.hook-line:nth-child(3) { transition-delay: 0.2s; }
.hook-line:nth-child(4) { transition-delay: 0.3s; }

.hook-line-emphasis {
  color: var(--primary);
  font-weight: 700;
}

.hook-image {
  display: flex;
  justify-content: center;
  align-items: center;
}

.jake-img {
  width: 100%;
  max-width: 480px;
  border-radius: 16px;
  display: block;
}

.hook-pivot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hook-pivot-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: left;
}

.hook-pivot-line {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
}

.hook-pivot-stat {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  line-height: 1;
}

.hook-highlight {
  color: var(--primary);
  font-weight: 700;
}

/* Problem */
.section-problem {
  display: flex;
  align-items: center;
}

.problem-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.problem-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.problem-line {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--text-2);
  line-height: 1.4;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.problem-line.revealed { opacity: 1; transform: none; }
.problem-line:nth-child(2) { transition-delay: 0.15s; }

.problem-stat {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
}

.problem-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.problem-visual-placeholder {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 1;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-dark);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hex grid placeholder */
.hex-grid {
  display: grid;
  grid-template-columns: repeat(3, 64px);
  gap: 8px;
}
.hex {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,0.06);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}
.hex-accent {
  background: rgba(0,128,255,0.25);
}

/* ══════════════════════════════════════════════
   3, 4, 5. OPPORTUNITY + OUTCOME + CONCEPT
══════════════════════════════════════════════ */

.section-opportunity {
  padding: 96px 0 48px;
}

.breaking-news {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  justify-content: center;
}

.breaking-badge {
  background: #DF1642;
  color: #ffffff;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  padding: 4px 10px;
  border-radius: 4px;
  text-transform: uppercase;
}

.breaking-ticker {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.light-statement {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(26px, 4vw, 52px);
  font-weight: 700;
  color: var(--light-text-1);
  line-height: 1.2;
}

.light-statement-accent {
  color: rgba(255, 255, 255, 0.6);
}

.opportunity-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--light-text-1);
  margin-top: 28px;
  letter-spacing: 0.03em;
}

.section-outcome {
  padding: 48px 0;
}

.outcome-headline {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 700;
  color: var(--light-text-1);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.section-concept {
  padding: 48px 0 96px;
}

.concept-headline {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 600;
  color: var(--light-text-2);
  margin-bottom: 40px;
}

.workflow-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.step-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--light-text-3);
}
.step-dot-final {
  background: #22c55e;
  box-shadow: 0 0 6px 2px rgba(34, 197, 94, 0.5), 0 0 12px 4px rgba(34, 197, 94, 0.2);
  animation: greenPulse 2s ease-in-out infinite;
}

@keyframes greenPulse {
  0%, 100% { box-shadow: 0 0 6px 2px rgba(34, 197, 94, 0.5), 0 0 12px 4px rgba(34, 197, 94, 0.2); }
  50%       { box-shadow: 0 0 10px 4px rgba(34, 197, 94, 0.7), 0 0 20px 8px rgba(34, 197, 94, 0.3); }
}

.workflow-step span {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--light-text-2);
}

.workflow-arrow {
  font-size: 18px;
  color: var(--light-text-3);
  margin-top: -18px;
  padding: 0 4px;
}

/* ══════════════════════════════════════════════
   6 & 7. ECONOMIC SHIFT + PRODUCT DEFINITION
══════════════════════════════════════════════ */

.section-economic {
  padding: 96px 0 64px;
}

.economic-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  color: var(--light-text-1);
  margin-bottom: 20px;
  line-height: 1.2;
}

.economic-block {
  padding: 40px 0 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  margin-bottom: 32px;
}

.comparison-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0;
  border: 1px solid var(--border-light);
  border-radius: 16px;
  overflow: hidden;
  margin: 32px 0;
  background: rgba(255,255,255,0.12);
  box-shadow: 0 4px 32px rgba(0,0,0,0.15);
}

.comparison-col {
  padding: 40px 48px;
}

.comparison-col-ai {
  background: rgba(255,255,255,0.08);
}

.comparison-divider {
  width: 1px;
  background: var(--border-light);
}

.comparison-label {
  font-family: 'Quicksand', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--light-text-3);
  margin-bottom: 20px;
}

.comparison-label-ai {
  color: rgba(255, 255, 255, 0.6);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.comparison-list li {
  font-size: 15px;
  color: var(--light-text-2);
  line-height: 1.5;
  padding-left: 16px;
  position: relative;
}
.comparison-col-traditional .comparison-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--light-text-3);
}
.comparison-col-ai .comparison-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.comparison-conclusion {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 700;
  color: var(--light-text-1);
  text-align: center;
  padding: 24px 0;
}

/* Product Definition */
.section-product {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 96px 0 96px;
}

.section-product .light-heading,
.section-product .light-sub {
  text-align: center;
}

.product-layout {
  display: grid;
  grid-template-columns: 7fr 2fr;
  gap: 64px;
  align-items: center;
}

.product-image-placeholder {
  width: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-image-placeholder span {
  font-size: 13px;
  color: var(--light-text-3);
  font-style: italic;
}

.product-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-features li {
  font-size: 16px;
  color: var(--light-text-2);
  line-height: 1.5;
  padding-left: 28px;
  position: relative;
}
.product-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
}

/* ══════════════════════════════════════════════
   8. COMPETITIVE POSITION
══════════════════════════════════════════════ */

.section-competitive {
  padding: 96px 0 64px;
}

.competitive-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 40px 0;
}

.competitive-item {
  background: rgba(255,255,255,0.22);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.competitive-item.revealed { opacity: 1; transform: none; }
.competitive-item:nth-child(2) { transition-delay: 0.1s; }
.competitive-item:nth-child(3) { transition-delay: 0.2s; }

.competitive-icon {
  font-size: 28px;
  margin-bottom: 16px;
}

.competitive-item h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.competitive-item p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

.competitive-position-statement {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  padding: 32px 0 0;
  border-top: 1px solid rgba(255,255,255,0.25);
}

/* ══════════════════════════════════════════════
   9. CTA — WHO ARE YOU?
══════════════════════════════════════════════ */

.section-cta {
  padding: 250px 0 96px;
}

.cta-who-heading {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-1);
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: -0.02em;
}

.audience-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

.audience-card {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}
.audience-card:hover {
  background: rgba(255,255,255,0.2);
  border-color: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}
.audience-card.active {
  background: rgba(0,128,255,0.12);
  border-color: var(--primary);
}

.audience-card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.audience-card-desc {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Audience panels */
.audience-panel {
  display: none;
  border-top: 1px solid rgba(255,255,255,0.25);
  padding-top: 48px;
  animation: panelIn 0.35s ease;
}
.audience-panel.active { display: block; }

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: none; }
}

.audience-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.investor-layout {
  grid-template-columns: 1fr;
  gap: 10px;
}

/* Panel copy */
.panel-copy h3,
.investor-intro h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 24px;
  line-height: 1.25;
}

.panel-tagline {
  font-size: 15px;
  color: var(--text-2);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
}

.panel-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.panel-points li {
  font-size: 18px;
  color: var(--text-2);
  line-height: 1.6;
  padding-left: 24px;
  position: relative;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.panel-points li.revealed { opacity: 1; transform: none; }

.panel-points li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: rgba(255, 255, 255, 0.6);
  font-weight: 700;
}

.panel-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-panel-primary {
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s;
}
.btn-panel-primary:hover { background: var(--secondary); }

.btn-panel-secondary {
  background: transparent;
  color: var(--text-1);
  border: 1px solid var(--border-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: background 0.2s, border-color 0.2s;
}
.btn-panel-secondary:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.25);
}

/* Panel form (Training Providers) */
.panel-form { max-width: 400px; }

.creator-early-access {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.creator-early-access-text {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--text-1);
  line-height: 1.4;
}

.creator-early-access-btn {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  font-family: 'Quicksand', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary);
  background: #ffffff;
  border: none;
  border-radius: 10px;
  padding: 16px 32px;
  cursor: pointer;
  letter-spacing: 0.01em;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.creator-early-access-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.24);
}

.panel-form-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 24px;
}

.panel-copy-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Creator step-through */
.panel-steps {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.creator-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.creator-step.revealed { opacity: 1; transform: none; }
.creator-step:nth-child(2) { transition-delay: 0.05s; }
.creator-step:nth-child(3) { transition-delay: 0.1s; }
.creator-step:nth-child(4) { transition-delay: 0.15s; }
.creator-step:nth-child(5) { transition-delay: 0.2s; }
.creator-step:nth-child(6) { transition-delay: 0.25s; }

.creator-step-num {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.6);
  font-family: 'Quicksand', sans-serif;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.creator-step-content strong {
  display: block;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-1);
  margin-bottom: 4px;
}

.creator-step-content p {
  font-size: 13px;
  color: var(--text-2);
  line-height: 1.5;
}

/* Investor panel */
.investor-intro {
  padding-bottom: 0;
  border-bottom: 1px solid var(--border-dark);
  text-align: center;
}

.investor-intro .panel-points {
  display: inline-block;
  text-align: left;
}

.investor-team {
  padding: 40px 0;
  border-bottom: 1px solid var(--border-dark);
}

.investor-team h4 {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-3);
  margin-bottom: 28px;
}

.investor-pitch {
  padding-top: 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.investor-pitch-text {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(20px, 3vw, 32px);
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 16px;
}

.investor-pitch-sub {
  font-size: 20px;
  color: var(--text-2);
  line-height: 1.75;
  margin-bottom: 32px;
}

.btn-invest {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  padding: 14px 28px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.btn-invest:hover { background: var(--secondary); }
.btn-invest svg { width: 16px; height: 16px; }

.investor-email {
  font-size: 13px;
  color: var(--text-3);
}

/* ─── Team grid (inside investor panel) ──── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-member { text-align: center; }

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 12px;
  border: 2px solid var(--border-dark);
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-name {
  font-family: 'Quicksand', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 4px;
}

.team-role {
  font-size: 12px;
  color: var(--text-3);
}

/* ─── Forms ──────────────────────────────── */
.form-group {
  margin-bottom: 16px;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid var(--border-dark);
  border-radius: 8px;
  color: var(--text-1);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  padding: 12px 16px;
  transition: border-color 0.2s, background 0.2s;
  outline: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: rgba(0,128,255,0.06);
}
.form-input::placeholder,
.form-textarea::placeholder { color: var(--text-3); }

.form-error {
  display: none;
  font-size: 12px;
  color: var(--error);
  margin-top: 6px;
}

.form-submit {
  width: 100%;
  background: var(--primary);
  color: #fff;
  border: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, opacity 0.2s;
  margin-top: 8px;
}
.form-submit:hover:not(:disabled) { background: var(--secondary); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }

/* Form success state */
.form-success {
  text-align: center;
  padding: 32px 0;
}

.form-success-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid var(--success);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.form-success-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--success);
  stroke-width: 2.5;
  fill: none;
}

.form-success h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-1);
  margin-bottom: 8px;
}

.form-success p {
  font-size: 14px;
  color: var(--text-2);
  line-height: 1.6;
}

/* ─── Footer ─────────────────────────────── */
footer {
  background: linear-gradient(176deg,
    #0080ff 0%,
    #115ffb 25%,
    #5540fb 50%,
    #b620e0 75%,
    #f7b500 100%);
  background-attachment: fixed;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 28px 48px;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-logo img {
  height: 32px;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.45;
}

.footer-copy {
  font-size: 12px;
  color: var(--text-3);
}

.footer-email {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--text-2); }

.footer-policy {
  font-size: 12px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-policy:hover { color: var(--text-2); }

/* ─── Responsive ─────────────────────────── */
@media (max-width: 1024px) {
  nav { padding: 0 32px; }
  .section-inner { padding: 0 32px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .comparison-col { padding: 32px 28px; }
}

@media (max-width: 768px) {
  nav { padding: 12px 20px; }
  .nav-links { display: none; }
  .nav-logo img { height: 32px; }
  .nav-actions .nav-login { display: none; }
  .nav-hamburger { display: flex; }
  .nav-early-access { font-size: 13px; padding: 7px 16px; }
  .section-inner { padding: 0 20px; }

  .hook-top { grid-template-columns: 1fr; gap: 32px; }
  .hook-image { order: -1; }
  .jake-img { max-width: 100%; }

  .hook-pivot { grid-template-columns: 1fr; gap: 32px; }
  .hook-pivot-text { order: -1; }

  .problem-layout { grid-template-columns: 1fr; gap: 32px; }
  .problem-text { text-align: center; }

  .light-heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
  }
  .inline-logo { margin-left: 0; }

  .comparison-card { grid-template-columns: 1fr; }
  .comparison-divider { width: auto; height: 1px; }

  .product-layout { grid-template-columns: 1fr; gap: 32px; }

  .competitive-grid { grid-template-columns: 1fr; }

  .audience-cards { grid-template-columns: 1fr; }

  .audience-panel-inner { grid-template-columns: 1fr; gap: 40px; }

  .team-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .team-photo { width: 72px; height: 72px; }

  .footer-inner { flex-direction: column; text-align: center; }

  .workflow-steps { gap: 6px; }
  .workflow-step span { font-size: 12px; }
  .workflow-arrow { font-size: 14px; }
}

/* ==========================================================================
   Early Access page  (body.ea-page)
   All rules scoped so they don't affect the main index page.
   ========================================================================== */

/* ── Override body background ── */
body.ea-page {
  background: linear-gradient(176deg, #0080ff 0%, #115ffb 25%, #5540fb 50%, #b620e0 75%, #f7b500 100%);
  background-attachment: fixed;
}

/* ── Nav overrides ── */
body.ea-page nav {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  padding: 16px 58px;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
  transition: none;
}

body.ea-page nav.nav-scrolled {
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom: none;
}

body.ea-page .nav-logo {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

body.ea-page .nav-logo img {
  height: 48px;
}

.nav-logo-sub {
  font-family: 'Quicksand', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.35em;
  color: rgba(255,255,255,0.75);
  text-transform: uppercase;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 40px 48px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-copy { color: #ffffff; }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
}

.hero-eyebrow-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #FF6B35;
  animation: ea-pulse 2s ease-in-out infinite;
}

@keyframes ea-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.8); }
}

.hero-headline {
  font-family: 'Quicksand', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #ffffff;
}

.hero-headline em {
  font-style: normal;
  background: linear-gradient(90deg, #ffffff 0%, rgba(255,255,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.8);
  margin-bottom: 16px;
  max-width: 400px;
}

.hero-sub strong {
  color: #ffffff;
  font-weight: 500;
}

.hero-spots {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.03em;
  margin-top: 8px;
}

/* ── Form card ── */
.hero-card {
  background: rgba(255,255,255,0.97);
  border-radius: 20px;
  padding: 24px 32px;
  box-shadow:
    0 32px 80px rgba(0,0,0,0.25),
    0 0 0 1px rgba(255,255,255,0.2);
  backdrop-filter: blur(20px);
  animation: ea-cardIn 0.6s cubic-bezier(0.22,1,0.36,1) both;
  animation-delay: 0.1s;
}

@keyframes ea-cardIn {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.card-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
  text-align: center;
}

.card-desc {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 24px;
}

.card-desc strong { color: #374151; }

/* ── Form inputs ── */
.form-group { margin-bottom: 12px; }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  color: #1a1a2e;
  background: #f9fafb;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
}

.form-input::placeholder,
.form-textarea::placeholder { color: #9ca3af; }

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,128,255,0.1);
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-select-wrap { position: relative; }

.form-select-wrap::after {
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #9ca3af;
  pointer-events: none;
}

.form-textarea {
  resize: none;
  height: 80px;
  line-height: 1.5;
}

/* ── Submit button ── */
.form-submit {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--tertiary) 100%);
  color: #ffffff;
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 8px;
  transition: opacity 0.2s, transform 0.15s;
  letter-spacing: 0.02em;
}

.form-submit:hover:not(:disabled) {
  opacity: 0.92;
  transform: translateY(-1px);
}

.form-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Form fine print ── */
.card-fine {
  margin-top: 16px;
  text-align: center;
}

.card-fine p {
  font-size: 11px;
  color: #9ca3af;
  line-height: 1.6;
}

.card-fine strong { color: #6b7280; }

/* ── Success state ── */
.form-success {
  display: none;
  text-align: center;
  padding: 20px 0;
}

.form-success-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #18A957, #0f7a3d);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.form-success-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  stroke-width: 2.5;
  fill: none;
}

body.ea-page .form-success h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin-bottom: 8px;
}

body.ea-page .form-success p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Form error ── */
.form-error {
  font-size: 12px;
  color: #DF1642;
  margin-top: 4px;
  display: none;
}

/* ── Footer override ── */
body.ea-page footer {
  background: transparent;
  text-align: center;
  padding: 4px 48px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.02em;
}

body.ea-page footer .footer-inner { display: none; }

/* ── Responsive ── */
@media (max-width: 768px) {
  body.ea-page nav { padding: 20px 24px; }

  .hero {
    grid-template-columns: 1fr;
    padding: 24px 24px 40px;
    gap: 40px;
  }

  .hero-headline { font-size: 36px; }
  .hero-sub { max-width: 100%; }
  .hero-card { padding: 28px 24px; }
}
