/* ==========================================================================
   Career Next — Editorial-Energetic Design System
   ----------------------------------------------------------------------------
   Aesthetic direction: print-editorial confidence meets youth energy.
   Distinctive typography (Fraunces variable serif + Geist sans) replaces the
   default sans-on-white. Brand purple becomes structural ink; orange is the
   accent — used with intent rather than ambient glow. Hard offset shadows
   echo screen-print posters. The star from the brand logo recurs as
   typographic punctuation.

   Avoiding the AI-default look: no soft purple-on-white blob blurs, no
   pastel gradient meshes, no rounded glass cards.
   ========================================================================== */

/* ---------- Tokens ---------- */
:root {
  /* ---- Brand (sampled from logo) ---- */
  --purple-950: #1F0B3A;
  --purple-900: #2A1248;
  --purple-800: #3D1A5E;
  --purple-700: #5B2C8C;   /* primary purple */
  --purple-600: #7140A5;
  --purple-500: #8C5BC0;
  --purple-300: #C2A3E0;
  --purple-200: #E3D2F2;
  --purple-100: #F2E8FA;

  --orange-700: #C9460F;
  --orange-600: #E25214;
  --orange-500: #F26622;   /* primary orange */
  --orange-400: #F89A4F;
  --orange-100: #FEEBD8;
  --gold-500:   #FBB034;

  /* ---- Ink (warm-tinted near-blacks) ---- */
  --ink-950: #110A22;
  --ink-900: #1A1132;
  --ink-700: #423A5C;
  --ink-500: #6E6685;
  --ink-300: #B0AAC4;
  --ink-200: #DAD5E4;
  --ink-100: #ECE9F2;

  /* ---- Surfaces ---- */
  --paper:  #FFFCF6;        /* warm off-white, not sterile #FFF */
  --paper-2:#F7F2EA;        /* deeper paper for alternating sections */
  --rule:   #1A1132;        /* near-black for hard editorial rules */

  /* ---- Semantic ---- */
  --success: #1F8F4E;
  --danger:  #C92A3D;
  --warning: #C97A0A;

  /* ---- Editorial gradients (used sparingly) ---- */
  --grad-orange: linear-gradient(135deg, #FBB034 0%, #F26622 55%, #C9460F 100%);
  --grad-purple: linear-gradient(135deg, #8C5BC0 0%, #5B2C8C 55%, #2A1248 100%);

  /* ---- Shape ---- */
  --radius-xs: 4px;
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-pill: 999px;

  /* ---- Editorial hard shadows (no blur) ---- */
  --shadow-card-purple: 8px 8px 0 0 var(--purple-800);
  --shadow-card-orange: 8px 8px 0 0 var(--orange-600);
  --shadow-card-ink:    6px 6px 0 0 var(--ink-900);
  --shadow-soft:        0 18px 36px -18px rgba(31, 11, 58, 0.28);

  /* ---- Type scale (fluid, restrained) ---- */
  --fs-xs:  clamp(12px, 0.75rem + 0.06vw, 13px);
  --fs-sm:  clamp(13px, 0.82rem + 0.08vw, 15px);
  --fs-md:  clamp(14px, 0.88rem + 0.16vw, 16px);
  --fs-lg:  clamp(16px, 0.96rem + 0.34vw, 18px);
  --fs-xl:  clamp(18px, 1.04rem + 0.5vw, 22px);
  --fs-2xl: clamp(22px, 1.2rem + 1vw, 30px);
  --fs-3xl: clamp(26px, 1.4rem + 1.6vw, 40px);
  --fs-4xl: clamp(32px, 1.6rem + 2.2vw, 54px);
  --fs-display: clamp(34px, 1.8rem + 2.4vw, 60px);

  /* ---- Spacing (8pt rhythm) ---- */
  --s-1: 4px;
  --s-2: 8px;
  --s-3: 12px;
  --s-4: 16px;
  --s-5: 24px;
  --s-6: 32px;
  --s-7: 48px;
  --s-8: 64px;
  --s-9: 96px;
  --s-10: 128px;

  /* ---- Layout ---- */
  --container: 1240px;
  --container-narrow: 980px;

  /* ---- Motion ---- */
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.4, 0.64, 1);
}

html { color-scheme: light; }

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body, h1, h2, h3, h4, h5, p, ul, ol, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button {
  font: inherit; cursor: pointer; border: 0; background: none; color: inherit;
  -webkit-tap-highlight-color: transparent;
}
input, select, textarea { font: inherit; color: inherit; }
[tabindex]:focus,
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ---------- Base ---------- */
body {
  font-family: 'Geist', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  font-size: var(--fs-md);
  line-height: 1.6;
  color: var(--ink-900);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  font-feature-settings: 'ss01', 'cv11';
  touch-action: manipulation;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 48px);
}
.container-narrow { max-width: var(--container-narrow); }

/* ---------- Typography helpers ---------- */
.kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--purple-700);
}
.kicker::before {
  content: '';
  width: 28px; height: 1px;
  background: currentColor;
}
.kicker--orange { color: var(--orange-600); }

.eyebrow-num {
  font-family: 'Fraunces', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: var(--fs-md);
  font-weight: 600;
  font-style: italic;
  color: var(--orange-600);
  letter-spacing: -0.01em;
}

h1, h2, h3, h4, .display {
  font-family: 'Fraunces', 'Times New Roman', Georgia, serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 0;
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  text-wrap: balance;
}
h1 { font-size: var(--fs-display); line-height: 0.96; letter-spacing: -0.035em; }
h2 { font-size: var(--fs-3xl); line-height: 1.02; letter-spacing: -0.028em; }
h3 { font-size: var(--fs-xl); line-height: 1.18; letter-spacing: -0.018em; }

p { text-wrap: pretty; }

.italic-soft {
  font-style: italic;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
}

.serif-num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-feature-settings: 'tnum';
}

.tabular { font-variant-numeric: tabular-nums; }

.grad-orange {
  background: var(--grad-orange);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}
.grad-purple {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ---------- Brand star (echoes the logo, used as punctuation) ---------- */
.star {
  display: inline-block;
  width: 1em; height: 1em;
  background: currentColor;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  vertical-align: -0.1em;
}
.star--orange { color: var(--orange-500); }
.star--purple { color: var(--purple-700); }
.star--gold   { color: var(--gold-500); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 28px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: var(--fs-md);
  letter-spacing: -0.005em;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  transition: transform .2s var(--ease-spring), box-shadow .25s ease, background-color .25s ease, color .25s ease;
  white-space: nowrap;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  color: var(--paper);
  background: var(--ink-900);
  border-color: var(--ink-900);
}
.btn--primary:hover { background: var(--purple-800); border-color: var(--purple-800); }

.btn--orange {
  color: var(--paper);
  background: var(--orange-500);
  border-color: var(--orange-700);
  box-shadow: 4px 4px 0 0 var(--orange-700);
}
.btn--orange:hover {
  background: var(--orange-600);
  box-shadow: 5px 5px 0 0 var(--orange-700);
  transform: translate(-1px, -3px);
}
.btn--orange:active { box-shadow: 2px 2px 0 0 var(--orange-700); transform: translate(2px, 2px); }

.btn--ghost {
  color: var(--ink-900);
  background: transparent;
  border-color: var(--ink-900);
}
.btn--ghost:hover { background: var(--ink-900); color: var(--paper); }

.btn--lg { padding: 20px 36px; font-size: var(--fs-lg); }
.btn--block { width: 100%; }
.btn .arrow {
  display: inline-block;
  transition: transform .35s var(--ease-spring);
}
.btn:hover .arrow { transform: translateX(4px); }

/* ==========================================================================
   PAPER BACKDROP — recurring decorative grid
   ========================================================================== */
.paper-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(var(--purple-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--purple-200) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.55;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 35%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 35%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* ==========================================================================
   NAVBAR
   ========================================================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink-900);
  transition: box-shadow .25s ease;
}
.navbar.is-scrolled {
  box-shadow: 0 6px 0 -3px rgba(26, 17, 50, 0.1);
}
.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 14px;
  gap: 24px;
}
.navbar__logo img { height: clamp(40px, 4.4vw, 52px); width: auto; display: block; }
.navbar__pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-pill);
  font-size: var(--fs-xs);
  font-weight: 600;
  background: var(--paper);
}
.navbar__pill .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 3px rgba(31, 143, 78, 0.16);
  animation: pulseDot 2.4s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 3px rgba(31, 143, 78, 0.16); }
  50%      { box-shadow: 0 0 0 6px rgba(31, 143, 78, 0.05); }
}
.navbar__actions { display: flex; align-items: center; gap: 12px; }
.navbar__login {
  font-weight: 600;
  color: var(--ink-700);
  padding: 10px 14px;
  border-radius: var(--radius-pill);
}
.navbar__login:hover { color: var(--ink-900); text-decoration: underline; text-underline-offset: 4px; }
.navbar .btn { padding: 10px 18px; font-size: var(--fs-sm); }

/* ==========================================================================
   BANNER  — image-only strip at the very top (PRD §5.1 item 2)
   Desktop image 1920×700 (~2.74:1), Mobile image 480×600 (~0.80:1).
   Until admin uploads, a polished CSS placeholder holds the slot at the
   correct aspect ratio so the page still looks designed.
   ========================================================================== */
.banner {
  position: relative;
  background: linear-gradient(180deg, #F4ECFB 0%, #FBF4EE 100%);
  border-bottom: 1.5px solid var(--ink-900);
  overflow: hidden;
  text-align: center;
}
.banner img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.banner img.banner__img--desktop { display: none; }
.banner img.banner__img--mobile  { display: block; margin: 0 auto; }
@media (min-width: 768px) {
  .banner img.banner__img--desktop { display: block; margin: 0 auto; }
  .banner img.banner__img--mobile  { display: none; }
}

/* Placeholder — editorial dark slab with star texture, marked clearly as a
   replaceable banner so the design holds before assets land. */
.banner--placeholder {
  position: relative;
  isolation: isolate;
  background: var(--ink-950);
  color: var(--paper);
  /* Desktop aspect 1920×700 (PRD §5.1) — no height cap, scales with width. */
  aspect-ratio: 1920 / 700;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.banner--placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 12 L43 33 L62 36 L43 39 L40 60 L37 39 L18 36 L37 33 Z' fill='%23FBB034' opacity='0.07'/%3E%3C/svg%3E");
  background-size: 140px 140px;
  z-index: 0;
}
.banner--placeholder::after {
  content: '';
  position: absolute;
  inset: clamp(20px, 2.5vw, 36px);
  border: 1.5px dashed rgba(251, 176, 52, 0.35);
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: 1;
}
.banner__placeholder-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: clamp(20px, 3vw, 36px);
}
.banner__placeholder-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.6);
}
.banner__placeholder-label::before,
.banner__placeholder-label::after {
  content: '';
  width: 28px; height: 1px;
  background: rgba(255, 252, 246, 0.35);
}
.banner__placeholder-title {
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-3xl);
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: -0.025em;
  line-height: 1;
}
.banner__placeholder-note {
  margin-top: 14px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: rgba(255, 252, 246, 0.55);
  max-width: 38ch;
  margin-inline: auto;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .banner--placeholder {
    aspect-ratio: 480 / 600;
    max-height: none;
  }
}

/* ==========================================================================
   HERO  — split (copy left, registration form right) (PRD §5.1 item 3)
   ========================================================================== */
.hero {
  position: relative;
  padding: clamp(48px, 7vw, 96px) 0 clamp(56px, 8vw, 100px);
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink-900);
  overflow: hidden;
  isolation: isolate;
}
.hero__bgword {
  position: absolute;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-weight: 700;
  font-size: clamp(140px, 24vw, 300px);
  line-height: 1;
  color: var(--purple-100);
  bottom: -0.18em;
  right: -0.05em;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: center;
}
.hero__copy { max-width: 560px; }
.hero__lead {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-700);
}
.hero__lead .star { font-size: 14px; }
.hero__lead .marker {
  width: 36px; height: 1.5px;
  background: var(--ink-900);
}
.hero__title {
  margin-top: 16px;
  font-size: var(--fs-display);
  line-height: 0.98;
}
.hero__title .row { display: block; }
.hero__title .underline-orange {
  position: relative;
  display: inline-block;
  white-space: nowrap;
}
.hero__title .underline-orange::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0.08em;
  height: 0.18em;
  background: var(--orange-500);
  z-index: -1;
}
.hero__subtitle {
  margin-top: 18px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-md);
  line-height: 1.55;
  color: var(--ink-700);
  max-width: 52ch;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}
.hero__trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1.5px solid var(--ink-900);
}
.hero__trust li {
  padding-right: 14px;
}
.hero__trust li:last-child { padding-right: 0; }
.hero__trust strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: var(--fs-lg);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-900);
}
.hero__trust strong .grad-orange { font-style: normal; }
.hero__trust > li > span {
  display: block;
  margin-top: 2px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
}

/* Registration form card on the right of the hero */
.hero__form {
  position: relative;
  padding: clamp(26px, 3vw, 36px);
  background: var(--paper);
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card-orange);
}
.hero__form-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  background: var(--ink-900);
  color: var(--paper);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
}
.hero__form-tag .star { color: var(--gold-500); }
.hero__form h2 {
  font-size: var(--fs-xl);
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.hero__form .lede {
  margin-top: 6px;
  color: var(--ink-500);
  font-size: var(--fs-sm);
  font-family: 'Geist', sans-serif;
}
.hero__form-closed {
  margin-top: 22px;
  padding: 18px 16px;
  background: var(--paper-2);
  border: 1px dashed var(--ink-200);
  border-radius: var(--radius-md);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  line-height: 1.55;
}
.hero__form-closed a { color: var(--ink-900); text-decoration: underline; text-underline-offset: 3px; }

/* ==========================================================================
   FORM
   ========================================================================== */
.form { margin-top: 24px; display: grid; gap: 14px; }
.form__flash {
  padding: 12px 14px;
  border-radius: var(--radius-md);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.5;
  border: 1.5px solid var(--ink-200);
  background: var(--paper-2);
  color: var(--ink-900);
}
.form__flash[data-tone="ok"]    {
  background: #f0faf3;
  border-color: var(--success);
  color: #155233;
}
.form__flash[data-tone="warn"]  {
  background: var(--orange-100);
  border-color: var(--orange-600);
  color: var(--orange-700);
}
.form__flash[data-tone="error"] {
  background: #fff5f5;
  border-color: var(--danger);
  color: #7a1a25;
}
.form__row { display: grid; gap: 14px; }
.form__row--2 { grid-template-columns: 1fr 1fr; }
@media (max-width: 560px) { .form__row--2 { grid-template-columns: 1fr; } }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-700);
}
.field label .req { color: var(--orange-600); margin-left: 2px; }
.field input,
.field select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink-900);
  font-size: var(--fs-md);
  font-family: 'Geist', sans-serif;
  transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}
.field input::placeholder { color: var(--ink-300); }
.field input:hover, .field select:hover { background: var(--purple-100); }
.field input:focus, .field select:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 4px 4px 0 0 var(--orange-500);
}
.field--error input, .field--error select {
  border-color: var(--danger);
  box-shadow: 4px 4px 0 0 var(--danger);
}
.field__error {
  font-size: var(--fs-xs);
  color: var(--danger);
  font-weight: 600;
  font-family: 'Geist', sans-serif;
}
.field--select { position: relative; }
.field--select::after {
  content: '';
  position: absolute;
  right: 18px; top: 50%;
  width: 9px; height: 9px;
  border-right: 2px solid var(--ink-900);
  border-bottom: 2px solid var(--ink-900);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}
.field__hint { font-size: var(--fs-xs); color: var(--ink-500); }

.form__actions { margin-top: 6px; }
.form__legal {
  margin-top: 14px;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  text-align: center;
  line-height: 1.55;
}
.form__legal a { color: var(--ink-900); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* OTP step */
.form__otp { display: none; }
.form__otp.is-active { display: grid; gap: 14px; }
.otp-inputs {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}
.otp-inputs input {
  width: 100%;
  min-width: 0;
  appearance: none;
  -webkit-appearance: none;
  text-align: center;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: var(--fs-xl);
  font-weight: 700;
  letter-spacing: 0;
  padding: 12px 0;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-md);
  background: var(--paper);
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  transition: box-shadow .15s ease, border-color .15s ease, background-color .15s ease;
}
.otp-inputs input:hover { background: var(--purple-100); }
.otp-inputs input:focus {
  outline: none;
  border-color: var(--orange-500);
  box-shadow: 3px 3px 0 0 var(--orange-500);
}
.otp-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  color: var(--ink-500);
}
.otp-resend {
  background: none;
  color: var(--ink-900);
  font-weight: 700;
  padding: 0;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.otp-resend:disabled { color: var(--ink-300); cursor: not-allowed; text-decoration: none; }

/* ==========================================================================
   SECTION SCAFFOLDING
   ========================================================================== */
.section {
  position: relative;
  padding: clamp(72px, 9vw, 128px) 0;
}
.section--paper-2 { background: var(--paper-2); border-block: 1.5px solid var(--ink-900); }
.section--ink {
  background: var(--ink-950);
  color: var(--paper);
  border-block: 1.5px solid var(--ink-950);
}
.section--ink h2, .section--ink h3 { color: var(--paper); }

.section__head {
  max-width: 880px;
  margin: 0 auto clamp(48px, 6vw, 80px);
  text-align: center;
}
.section__head--left { text-align: left; margin-inline: 0; }
.section__head .eyebrow-num { display: block; margin-bottom: 14px; }
.section__head h2 { font-size: var(--fs-3xl); line-height: 1.02; }
.section__head h2 .italic-soft { color: var(--orange-600); }
.section__head p {
  margin-top: 18px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-lg);
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 640px;
  margin-inline: auto;
}
.section--ink .section__head p { color: rgba(255, 252, 246, 0.7); }
.section__head--left p { margin-inline: 0; }

/* ==========================================================================
   SPEAKER  — headline mentor section (Dr. Ujjwal Patni)
   ========================================================================== */
.speaker {
  background: var(--paper-2);
  border-bottom: 1.5px solid var(--ink-900);
  padding: clamp(64px, 9vw, 120px) 0;
  position: relative;
  overflow: hidden;
}
.speaker__layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.speaker__photo {
  margin: 0;
  position: relative;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  background: var(--ink-950);
  box-shadow: 12px 12px 0 0 var(--orange-500);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  transform: rotate(-1.4deg);
  transition: transform .5s var(--ease-out), box-shadow .35s ease;
}
.speaker__photo:hover {
  transform: rotate(0deg);
  box-shadow: 14px 14px 0 0 var(--gold-500);
}
.speaker__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.speaker__photo figcaption {
  position: absolute;
  top: 14px; left: 14px;
  padding: 6px 12px;
  background: var(--ink-900);
  color: var(--paper);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.speaker__photo figcaption .star { color: var(--gold-500); font-size: 10px; }
.speaker__copy { max-width: 640px; }
.speaker__copy h2 {
  margin-top: 14px;
  font-size: var(--fs-3xl);
  line-height: 1.02;
}
.speaker__copy h2 .italic-soft { color: var(--orange-600); }
.speaker__copy p {
  margin-top: 18px;
  font-family: 'Geist', sans-serif;
  color: var(--ink-700);
  font-size: var(--fs-md);
  line-height: 1.55;
}
.speaker__copy p em {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  color: var(--ink-900);
}
.speaker__stats {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1.5px solid var(--ink-900);
  padding-top: 18px;
}
.speaker__stats li {
  padding-right: 14px;
  border-right: 1px dashed var(--ink-200);
}
.speaker__stats li:last-child { border-right: 0; padding-right: 0; }
.speaker__stats strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  color: var(--ink-900);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.speaker__stats span {
  display: block;
  margin-top: 6px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 500;
  line-height: 1.3;
}
.speaker__cta { margin-top: 30px; }

/* ==========================================================================
   TRUST + PARTNERS  — institutional credibility strip with marquee
   ========================================================================== */
.trust {
  background: var(--paper);
  border-bottom: 1.5px solid var(--ink-900);
  padding: clamp(56px, 7vw, 96px) 0 clamp(36px, 5vw, 60px);
}
.trust__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}
.trust__head h2 {
  font-size: var(--fs-2xl);
  margin-top: 14px;
  line-height: 1.1;
}
.trust__head h2 .italic-soft { color: var(--purple-700); }
.trust__sub {
  margin-top: 14px;
  font-family: 'Geist', sans-serif;
  color: var(--ink-500);
  font-size: var(--fs-xs);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}
.trust__regulators {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  padding-bottom: 32px;
  border-bottom: 1px dashed var(--ink-200);
}
.trust__regulators span {
  font-family: 'Geist Mono', ui-monospace, 'Courier New', monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-pill);
  color: var(--ink-900);
  background: var(--paper);
  white-space: nowrap;
}
.trust__partners-wrap {
  overflow: hidden;
  position: relative;
  padding: 4px 0;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}
.trust__partners {
  display: flex;
  gap: 44px;
  width: max-content;
  animation: trustMarquee 60s linear infinite;
  align-items: center;
}
.trust__partners:hover { animation-play-state: paused; }
.trust__partners span {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--ink-700);
  letter-spacing: -0.012em;
  white-space: nowrap;
  transition: color .25s ease;
  cursor: default;
  user-select: none;
}
.trust__partners span:hover { color: var(--orange-600); }
@keyframes trustMarquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ==========================================================================
   WHERE CAREER NEXT LEADS  — tabbed program preview
   ========================================================================== */
.leads__tabs { position: relative; }
.leads__tabs > input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  top: -100px;
}
.leads__tabs-strip {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.leads__tab {
  padding: 12px 28px;
  font-family: 'Geist', sans-serif;
  font-weight: 600;
  font-size: var(--fs-sm);
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-pill);
  background: var(--paper);
  color: var(--ink-900);
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
  user-select: none;
}
.leads__tab:hover { background: var(--purple-100); }
.leads__tabs > input:focus-visible + .leads__tabs-strip .leads__tab,
.leads__tab:focus-visible {
  outline: 3px solid var(--orange-500);
  outline-offset: 3px;
}
#lt-science:checked  ~ .leads__tabs-strip [for="lt-science"],
#lt-commerce:checked ~ .leads__tabs-strip [for="lt-commerce"],
#lt-arts:checked     ~ .leads__tabs-strip [for="lt-arts"] {
  background: var(--ink-900);
  color: var(--paper);
  box-shadow: 4px 4px 0 0 var(--orange-500);
  transform: translate(-1px, -2px);
}
.leads__panels { position: relative; }
.leads__panel { display: none; }
#lt-science:checked  ~ .leads__panels [data-panel="science"],
#lt-commerce:checked ~ .leads__panels [data-panel="commerce"],
#lt-arts:checked     ~ .leads__panels [data-panel="arts"] {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  animation: leadsPanelIn .45s var(--ease-out) both;
}
@keyframes leadsPanelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.leads__card {
  background: var(--paper);
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  padding: clamp(20px, 2.4vw, 28px);
  box-shadow: 6px 6px 0 0 var(--purple-700);
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
  display: flex;
  flex-direction: column;
}
.leads__card:hover {
  transform: translate(-2px, -4px);
  box-shadow: 8px 10px 0 0 var(--orange-500);
}
.leads__partner {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-sm);
  color: var(--orange-600);
  letter-spacing: -0.005em;
}
.leads__card h3 {
  margin-top: 6px;
  font-size: var(--fs-lg);
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.leads__card ul {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--ink-200);
  display: grid;
  gap: 8px;
}
.leads__card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--ink-700);
  font-weight: 500;
  line-height: 1.45;
}
.leads__card li::before {
  content: '';
  flex: 0 0 12px;
  width: 12px; height: 12px;
  margin-top: 4px;
  background: var(--orange-500);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

/* ==========================================================================
   BEYOND THE BOOTCAMP  — academies + global skills grid
   ========================================================================== */
.beyond__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
}
.beyond__cell {
  position: relative;
  padding: clamp(28px, 3vw, 40px);
  background: var(--paper);
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 260px;
  transition: transform .25s var(--ease-spring);
}
.beyond__cell:hover { transform: translate(-2px, -4px); }
.beyond__cell::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.beyond__cell::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 12 L43 33 L62 36 L43 39 L40 60 L37 39 L18 36 L37 33 Z' fill='currentColor' opacity='0.05'/%3E%3C/svg%3E");
  background-size: 120px 120px;
  z-index: 0;
  color: var(--ink-900);
  pointer-events: none;
}
.beyond__cell--defence { box-shadow: 8px 8px 0 0 var(--purple-700); color: var(--purple-700); }
.beyond__cell--defence::before {
  background: radial-gradient(circle at 85% 15%, var(--purple-300) 0%, transparent 55%);
  opacity: 0.45;
}
.beyond__cell--drone { box-shadow: 8px 8px 0 0 var(--orange-600); color: var(--orange-600); }
.beyond__cell--drone::before {
  background: radial-gradient(circle at 15% 85%, var(--orange-400) 0%, transparent 55%);
  opacity: 0.4;
}
.beyond__cell--sports { box-shadow: 8px 8px 0 0 #8B2A8C; color: #8B2A8C; }
.beyond__cell--sports::before {
  background: radial-gradient(circle at 50% 50%, #C75AAB 0%, transparent 60%);
  opacity: 0.4;
}
.beyond__cell--global { box-shadow: 8px 8px 0 0 var(--gold-500); color: var(--gold-500); }
.beyond__cell--global::before {
  background: radial-gradient(circle at 80% 80%, var(--gold-500) 0%, transparent 55%);
  opacity: 0.32;
}
.beyond__chip {
  position: relative; z-index: 1;
  display: inline-flex;
  align-self: flex-start;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: var(--ink-900);
  color: var(--paper);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.beyond__chip::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-500);
}
.beyond__cell h3 {
  position: relative; z-index: 1;
  font-size: var(--fs-xl);
  letter-spacing: -0.018em;
  line-height: 1.15;
  color: var(--ink-900);
}
.beyond__cell p {
  position: relative; z-index: 1;
  margin-top: 12px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--ink-700);
  line-height: 1.55;
  max-width: 48ch;
}
.beyond__stat {
  position: relative; z-index: 1;
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 14px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
}
.beyond__stat strong {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: -0.025em;
  font-variant-numeric: tabular-nums;
  color: var(--ink-900);
}
.beyond__stat span {
  font-family: 'Geist', sans-serif;
  font-style: normal;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-500);
  font-weight: 600;
}

/* CTA track-record line */
.cta-band__track {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 18px;
  background: rgba(251, 176, 52, 0.08);
  border: 1px solid rgba(251, 176, 52, 0.32);
  border-radius: var(--radius-pill);
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  color: rgba(255, 252, 246, 0.85);
}
.cta-band__track strong { color: var(--gold-500); font-weight: 700; }
.cta-band__track .star { color: var(--gold-500); }

/* ==========================================================================
   STAT BAND  (between hero and "Who Can Join") — typographic, not gradient
   ========================================================================== */
.statband {
  background: var(--ink-950);
  color: var(--paper);
  border-bottom: 1.5px solid var(--ink-950);
}
.statband__inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding-block: clamp(28px, 3.4vw, 44px);
}
.statband__item {
  padding: 6px 24px;
  border-right: 1px solid rgba(255, 252, 246, 0.14);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.statband__item:last-child { border-right: 0; }
.statband__item strong {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--gold-500);
  font-variant-numeric: tabular-nums;
  line-height: 1;
}
.statband__item span {
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 252, 246, 0.6);
  font-weight: 500;
}

/* ==========================================================================
   STREAMS — Who Can Join? (offset-shadow editorial cards)
   ========================================================================== */
.streams {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}
.stream {
  --accent: var(--purple-700);
  --accent-tint: var(--purple-100);
  --shadow: var(--shadow-card-purple);
  position: relative;
  padding: clamp(28px, 3vw, 38px);
  background: var(--paper);
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transition: transform .25s var(--ease-spring), box-shadow .25s ease;
}
.stream:hover { transform: translate(-2px, -4px); box-shadow: 10px 12px 0 0 var(--accent); }
.stream__num {
  position: absolute;
  top: 22px; right: 22px;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 100, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-2xl);
  color: var(--accent);
  opacity: 0.9;
}
.stream__icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-md);
  background: var(--accent);
  color: var(--paper);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
}
.stream__icon svg { width: 28px; height: 28px; }
.stream h3 {
  font-size: var(--fs-xl);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.stream__lede {
  margin-top: 12px;
  font-family: 'Geist', sans-serif;
  color: var(--ink-700);
  line-height: 1.55;
}
.stream__list {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1.5px solid var(--ink-200);
  display: grid;
  gap: 12px;
}
.stream__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--ink-900);
  font-weight: 500;
  line-height: 1.45;
}
.stream__list li::before {
  content: '';
  flex: 0 0 16px;
  width: 16px; height: 16px;
  margin-top: 3px;
  background: currentColor;
  color: var(--accent);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.stream--science  { --accent: var(--purple-700); --accent-tint: var(--purple-100); --shadow: 8px 8px 0 0 var(--purple-700); }
.stream--commerce { --accent: var(--orange-600); --accent-tint: var(--orange-100); --shadow: 8px 8px 0 0 var(--orange-600); }
.stream--arts     { --accent: #8B2A8C;            --accent-tint: #F4E9F8;          --shadow: 8px 8px 0 0 #8B2A8C; }

/* ==========================================================================
   BENEFITS — One Session. Total Clarity. (editorial numbered list)
   ========================================================================== */
.benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  border-top: 1.5px solid var(--ink-900);
  border-left: 1.5px solid var(--ink-900);
}
.benefit {
  position: relative;
  padding: clamp(28px, 3vw, 44px);
  border-right: 1.5px solid var(--ink-900);
  border-bottom: 1.5px solid var(--ink-900);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  background: var(--paper);
  transition: background-color .3s ease;
}
.benefit:hover { background: var(--purple-100); }
.benefit__num {
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-3xl);
  font-weight: 700;
  line-height: 1;
  color: var(--orange-500);
  letter-spacing: -0.04em;
  font-variant-numeric: tabular-nums;
}
.benefit__body h3 {
  font-size: var(--fs-xl);
  letter-spacing: -0.018em;
  line-height: 1.15;
}
.benefit__body p {
  margin-top: 12px;
  font-family: 'Geist', sans-serif;
  color: var(--ink-700);
  font-size: var(--fs-sm);
  line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.step {
  padding: 28px;
  border: 1.5px solid var(--ink-900);
  border-radius: var(--radius-lg);
  background: var(--paper);
  position: relative;
  transition: transform .3s var(--ease-spring), box-shadow .3s ease;
}
.step:hover { transform: translate(-2px, -4px); box-shadow: var(--shadow-card-ink); }
.step__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  font-style: italic;
  font-size: var(--fs-xl);
  font-weight: 700;
  width: 44px; height: 44px;
  border: 1.5px solid var(--ink-900);
  border-radius: 50%;
  color: var(--orange-600);
}
.step:nth-child(odd) .step__chip { color: var(--purple-700); }
.step h4 {
  margin-top: 22px;
  font-size: var(--fs-lg);
  font-family: 'Fraunces', serif;
  font-variation-settings: 'opsz' 144, 'SOFT' 30, 'WONK' 1;
  letter-spacing: -0.014em;
}
.step p {
  margin-top: 8px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.55;
}

/* ==========================================================================
   CLOSING CTA — bold ink slab with star punctuation
   ========================================================================== */
.cta-band {
  position: relative;
  background: var(--ink-950);
  color: var(--paper);
  padding: clamp(72px, 9vw, 128px) 0;
  border-top: 1.5px solid var(--ink-950);
  overflow: hidden;
  isolation: isolate;
}
.cta-band__stars {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80' height='80' viewBox='0 0 80 80'%3E%3Cpath d='M40 12 L43 33 L62 36 L43 39 L40 60 L37 39 L18 36 L37 33 Z' fill='%23FBB034' opacity='0.06'/%3E%3C/svg%3E");
  background-size: 160px 160px;
  pointer-events: none;
  z-index: -1;
}
.cta-band__inner { text-align: center; max-width: 920px; margin-inline: auto; padding-inline: clamp(20px, 4vw, 48px); }
.cta-band .kicker { color: var(--gold-500); }
.cta-band .kicker::before { background: var(--gold-500); }
.cta-band h2 {
  margin-top: 20px;
  font-size: var(--fs-4xl);
  color: var(--paper);
  line-height: 0.98;
  text-wrap: balance;
}
.cta-band h2 .italic-soft { color: var(--gold-500); }
.cta-band p {
  margin-top: 24px;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-lg);
  color: rgba(255, 252, 246, 0.7);
  max-width: 600px;
  margin-inline: auto;
  line-height: 1.55;
}
.cta-band .btn { margin-top: 36px; }
.cta-band .btn--orange:hover { box-shadow: 5px 5px 0 0 var(--gold-500); }

/* ==========================================================================
   FOOTER  (minimal — logo + tagline + program credit)
   ========================================================================== */
.footer {
  background: var(--paper);
  color: var(--ink-700);
  padding: clamp(48px, 6vw, 80px) 0 clamp(28px, 4vw, 44px);
  border-top: 1.5px solid var(--ink-900);
}
.footer__simple {
  text-align: center;
  max-width: 600px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer__logo {
  height: clamp(48px, 6vw, 100px);
  width: auto;
}
.footer__desc {
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-sm);
  color: var(--ink-500);
  line-height: 1.55;
  max-width: 52ch;
}
.footer__credit {
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px dashed var(--ink-200);
  width: 100%;
  font-family: 'Geist', sans-serif;
  font-size: var(--fs-xs);
  color: var(--ink-500);
  letter-spacing: 0.04em;
}
.footer__credit strong {
  color: var(--ink-900);
  font-weight: 700;
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .hero__layout { grid-template-columns: 1fr; gap: 40px; }
  .hero__form { order: 1; }
  .hero__copy { order: 2; max-width: 100%; }
  .hero__bgword { font-size: clamp(100px, 22vw, 200px); }
  .statband__inner { grid-template-columns: repeat(2, 1fr); }
  .statband__item:nth-child(2) { border-right: 0; }
  .statband__item:nth-child(-n+2) { border-bottom: 1px solid rgba(255,252,246,0.14); padding-bottom: 18px; }
  .statband__item:nth-child(n+3) { padding-top: 18px; }
  .streams { grid-template-columns: 1fr; }
  .benefits { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }

  .speaker__layout { grid-template-columns: 1fr; gap: 36px; }
  .speaker__photo  { max-width: 360px; margin-inline: auto; transform: rotate(-1deg); }
  .speaker__stats  { grid-template-columns: repeat(2, 1fr); gap: 14px 0; padding-top: 14px; }
  .speaker__stats li:nth-child(2) { border-right: 0; }
  .speaker__stats li:nth-child(-n+2) { border-bottom: 1px dashed var(--ink-200); padding-bottom: 12px; }
  .speaker__stats li:nth-child(n+3) { padding-top: 4px; }

  #lt-science:checked  ~ .leads__panels [data-panel="science"],
  #lt-commerce:checked ~ .leads__panels [data-panel="commerce"],
  #lt-arts:checked     ~ .leads__panels [data-panel="arts"] {
    grid-template-columns: 1fr;
  }

  .beyond__grid { grid-template-columns: 1fr; grid-template-rows: auto; }
}
@media (max-width: 560px) {
  .hero__trust { grid-template-columns: 1fr 1fr; }
  .hero__trust li:nth-child(3) {
    grid-column: 1 / -1;
    padding-top: 12px;
    margin-top: 10px;
  }
  .navbar__login { display: none; }
  .steps { grid-template-columns: 1fr; }
  .trust__regulators { gap: 6px; }
  .trust__regulators span { font-size: 10px; padding: 6px 10px; letter-spacing: 0.1em; }
  .trust__partners span { font-size: var(--fs-lg); }
  .trust__partners { gap: 28px; }
}
@media (prefers-reduced-motion: reduce) {
  .trust__partners { animation: none; flex-wrap: wrap; justify-content: center; width: 100%; }
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; top: -40px; left: 16px; z-index: 100;
  background: var(--ink-900); color: var(--paper);
  padding: 10px 16px; border-radius: var(--radius-md);
  font-weight: 600; font-size: var(--fs-sm);
}
.skip-link:focus { top: 16px; }

/* Entry animation — CSS-only. No JS dependency, no blank-page failure mode.
   Only applied to elements explicitly marked .reveal so the rest renders eagerly. */
.reveal {
  animation: revealUp .7s var(--ease-out) both;
}
.reveal-1 { animation-delay: 0.05s; }
.reveal-2 { animation-delay: 0.18s; }
.reveal-3 { animation-delay: 0.32s; }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .hero__bgword { display: none; }
}
