/* =========================================================
   THE UNFAIR ADVANTAGE — AI Academy
   Design system: dark cinematic + animated gradient
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@400;500;600;700&family=Inter:wght@400;500;600;700&family=Instrument+Serif:ital@0;1&family=Bungee&display=swap');

/* ---------- Tokens ---------- */
:root {
  --bg: #04050c;
  --bg-2: #080a16;
  --surface: rgba(255, 255, 255, 0.03);
  --surface-2: rgba(255, 255, 255, 0.05);
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);

  --text: #f4f5f8;
  --text-dim: #a7adbd;
  --text-faint: #6b7183;

  --violet: #7c5cff;
  --violet-2: #9d7bff;
  --cyan: #3b6cff;        /* deep royal / navy electric blue */
  --magenta: #5b8cff;     /* lighter sky-navy accent */
  --lime: #7fe0c0;        /* muted teal-mint, tuned to navy family */

  --grad: linear-gradient(120deg, #8b6dff 0%, #3b6cff 100%);
  --grad-soft: linear-gradient(120deg, #9d7bff, #5b8cff);

  --radius: 18px;
  --radius-sm: 12px;
  --radius-lg: 28px;

  --maxw: 1200px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.8);
  --glow-violet: 0 0 80px -20px rgba(124, 92, 255, 0.6);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

/* ---------- Ambient gradient background ---------- */
.bg-field {
  position: fixed;
  inset: 0;
  z-index: -2;
  overflow: hidden;
  pointer-events: none;
}
.bg-field .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  animation: drift 22s var(--ease) infinite alternate;
}
.orb.a { width: 620px; height: 620px; background: #4b3cd9; top: -180px; left: -120px; }
.orb.b { width: 540px; height: 540px; background: #1e3fa8; top: 30%; right: -160px; animation-delay: -6s; }
.orb.c { width: 480px; height: 480px; background: #2a2f8f; bottom: -180px; left: 30%; animation-delay: -12s; }
@keyframes drift {
  0%   { transform: translate(0, 0) scale(1); }
  100% { transform: translate(60px, -50px) scale(1.15); }
}
.bg-grid {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, #000 40%, transparent 100%);
}
.bg-noise::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
section { position: relative; padding: 74px 0; }
.section-sm { padding: 48px 0; }

/* ---------- Type ---------- */
h1, h2, h3, h4 { font-family: 'Space Grotesk', sans-serif; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; }
.display {
  font-size: clamp(2.6rem, 6.2vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.02;
}
h2.section-title { font-size: clamp(2rem, 4vw, 3.2rem); letter-spacing: -0.03em; }
.serif { font-family: 'Instrument Serif', serif; font-style: italic; font-weight: 400; letter-spacing: 0; }
.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.lead { font-size: clamp(1.05rem, 1.6vw, 1.3rem); color: var(--text-dim); max-width: 640px; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--violet-2);
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 100px;
  background: var(--surface);
  backdrop-filter: blur(10px);
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--violet); }
.center { text-align: center; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.98rem;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--grad);
  color: #0a0a12;
  box-shadow: 0 10px 40px -12px rgba(124, 92, 255, 0.7);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 18px 55px -12px rgba(124, 92, 255, 0.9); }
.btn-ghost {
  background: var(--surface-2);
  border: 1px solid var(--border-strong);
  color: var(--text);
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.25); }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }
.btn svg { width: 18px; height: 18px; }

/* ---------- Nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.4s, backdrop-filter 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(6, 7, 12, 0.72);
  backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid var(--border);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.12rem; letter-spacing: -0.02em; }
.brand .mark {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--grad);
  display: grid; place-items: center;
  color: #08080f; font-weight: 700; font-size: 1rem;
  box-shadow: var(--glow-violet);
}
.brand .mark span { transform: skewX(-8deg); }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  font-size: 0.92rem; color: var(--text-dim); font-weight: 500;
  padding: 9px 14px; border-radius: 10px; transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: 0.3s; }

.has-dropdown { position: relative; }
.dropdown {
  position: absolute; top: 100%; left: 0; margin-top: 6px;
  min-width: 260px; padding: 8px;
  background: rgba(10, 12, 20, 0.96);
  border: 1px solid var(--border); border-radius: 16px;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; transform: translateY(8px);
  transition: 0.25s var(--ease);
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown a { display: block; padding: 11px 13px; border-radius: 10px; }
.dropdown a strong { display: block; font-size: 0.92rem; color: var(--text); font-weight: 600; }
.dropdown a small { font-size: 0.8rem; color: var(--text-faint); }
.dropdown a:hover { background: var(--surface-2); }

/* ---------- Hero ---------- */
.hero { padding: 190px 0 90px; text-align: center; }
.hero .lead { margin: 26px auto 0; }
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 38px; }
.hero-sub { margin-top: 20px; font-size: 0.9rem; color: var(--text-faint); }

/* ---------- Marquee / logos ---------- */
.logos { padding: 46px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.logos-label { text-align: center; font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 28px; }
.marquee { overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent); }
.marquee-track { display: flex; gap: 64px; width: max-content; animation: scroll 34s linear infinite; }
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.5rem; color: var(--text-dim); opacity: 0.65; letter-spacing: -0.01em; white-space: nowrap; transition: opacity 0.3s, color 0.3s; }
.marquee-track span:hover { opacity: 1; color: var(--text); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s, background 0.4s;
  overflow: hidden;
}
.card:hover { transform: translateY(-4px); border-color: var(--border-strong); background: var(--surface-2); }
.card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.96rem; }
.card .ico {
  width: 50px; height: 50px; border-radius: 13px;
  display: grid; place-items: center; margin-bottom: 20px;
  background: var(--surface-2); border: 1px solid var(--border);
  font-size: 1.4rem;
}
.card.glow::before {
  content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1px;
  background: var(--grad);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: 0; transition: opacity 0.4s;
}
.card.glow:hover::before { opacity: 1; }

/* Program cards (larger, featured) */
.prog-card { padding: 36px; display: flex; flex-direction: column; }
.prog-card .tag { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 600; padding: 5px 11px; border-radius: 100px; margin-bottom: 18px; }
.tag.free { background: rgba(127,224,192,0.12); color: var(--lime); border: 1px solid rgba(127,224,192,0.25); }
.tag.flagship { background: rgba(124,92,255,0.15); color: var(--violet-2); border: 1px solid rgba(124,92,255,0.3); }
.tag.biz { background: rgba(59,108,255,0.12); color: var(--cyan); border: 1px solid rgba(59,108,255,0.25); }
.prog-card h3 { font-size: 1.7rem; }
.prog-card .meta { display: flex; gap: 16px; flex-wrap: wrap; margin: 16px 0 20px; font-size: 0.85rem; color: var(--text-faint); }
.prog-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.prog-card .card-foot { margin-top: auto; padding-top: 22px; }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stat { text-align: center; padding: 30px 18px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.stat .num { font-family: 'Space Grotesk'; font-size: clamp(2.2rem, 4vw, 3.2rem); font-weight: 700; letter-spacing: -0.03em; }
.stat .lbl { color: var(--text-dim); font-size: 0.9rem; margin-top: 6px; }

/* ---------- Feature split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.split.rev .split-media { order: -1; }
.feature-list { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.feature-list li { display: flex; gap: 14px; }
.feature-list .chk { flex-shrink: 0; width: 24px; height: 24px; border-radius: 7px; background: var(--surface-2); border: 1px solid var(--border); display: grid; place-items: center; color: var(--cyan); font-size: 0.8rem; margin-top: 2px; }
.feature-list strong { display: block; font-family: 'Space Grotesk'; font-weight: 600; }
.feature-list span.d { color: var(--text-dim); font-size: 0.92rem; }

/* Media panel */
.panel {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(124,92,255,0.12), rgba(59,108,255,0.05));
  padding: 34px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.panel::after { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 0%, rgba(124,92,255,0.25), transparent 60%); pointer-events: none; }

/* ---------- Curriculum / timeline ---------- */
.weeks { display: flex; flex-direction: column; gap: 14px; }
.week {
  display: grid; grid-template-columns: 90px 1fr; gap: 22px; align-items: start;
  padding: 24px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); transition: 0.3s var(--ease);
}
.week:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateX(4px); }
.week .wk { font-family: 'Space Grotesk'; font-weight: 700; font-size: 0.85rem; color: var(--violet-2); letter-spacing: 0.05em; }
.week .wk small { display: block; font-size: 2rem; color: var(--text); line-height: 1; margin-top: 4px; }
.week h4 { font-size: 1.2rem; margin-bottom: 6px; }
.week p { color: var(--text-dim); font-size: 0.93rem; }
.week .tools { display: flex; flex-wrap: wrap; gap: 7px; margin-top: 12px; }
.week .tools span { font-size: 0.75rem; padding: 4px 10px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text-dim); }

/* ---------- Mentors ---------- */
.mentor {
  border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden;
  background: var(--surface); transition: 0.4s var(--ease);
}
.mentor:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.mentor .photo {
  aspect-ratio: 4/4.4; position: relative; overflow: hidden;
  background: linear-gradient(160deg, #1a1533, #0a1420);
  display: grid; place-items: center;
}
.mentor .photo .initials { font-family: 'Space Grotesk'; font-size: 3.4rem; font-weight: 700; color: rgba(255,255,255,0.12); }
.mentor .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.mentor .info { padding: 20px; }
.mentor .info h4 { font-size: 1.2rem; }
.mentor .info .role { color: var(--violet-2); font-size: 0.85rem; font-weight: 600; margin: 3px 0 10px; }
.mentor .info p { color: var(--text-dim); font-size: 0.88rem; }

/* ---------- Testimonials ---------- */
.quote { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); display: flex; flex-direction: column; }
.quote .stars { color: var(--lime); letter-spacing: 2px; margin-bottom: 14px; font-size: 0.9rem; }
.quote p { color: var(--text); font-size: 1.02rem; line-height: 1.65; }
.quote .who { display: flex; align-items: center; gap: 12px; margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--border); }
.quote .who .av { width: 44px; height: 44px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #08080f; font-weight: 700; flex-shrink: 0; }
.quote .who .n { font-weight: 600; font-family: 'Space Grotesk'; font-size: 0.95rem; }
.quote .who .c { color: var(--text-faint); font-size: 0.82rem; }

/* ---------- FAQ ---------- */
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); margin-bottom: 12px; overflow: hidden; transition: border-color 0.3s; }
.faq-item.open { border-color: var(--border-strong); }
.faq-q { width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 22px 26px; font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.08rem; }
.faq-q .pm { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1px solid var(--border-strong); display: grid; place-items: center; transition: transform 0.3s, background 0.3s; }
.faq-item.open .pm { transform: rotate(45deg); background: var(--grad); color: #08080f; border-color: transparent; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.faq-a p { padding: 0 26px 24px; color: var(--text-dim); }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); padding: 70px 40px; position: relative; overflow: hidden; background: linear-gradient(160deg, rgba(124,92,255,0.14), rgba(59,108,255,0.06)); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(124,92,255,0.35), transparent 60%); pointer-events: none; }
.cta-band > * { position: relative; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--border); padding: 70px 0 40px; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; }
.footer .brand { margin-bottom: 16px; }
.footer p.about { color: var(--text-dim); font-size: 0.92rem; max-width: 300px; }
.footer h5 { font-family: 'Space Grotesk'; font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 16px; }
.footer-links a { display: block; color: var(--text-dim); font-size: 0.92rem; padding: 6px 0; transition: color 0.2s; }
.footer-links a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; margin-top: 50px; padding-top: 30px; border-top: 1px solid var(--border); color: var(--text-faint); font-size: 0.85rem; }
.socials { display: flex; gap: 10px; }
.socials a { width: 38px; height: 38px; border-radius: 10px; border: 1px solid var(--border); display: grid; place-items: center; color: var(--text-dim); transition: 0.3s; }
.socials a:hover { color: var(--text); border-color: var(--border-strong); background: var(--surface-2); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero { padding: 170px 0 60px; }
.page-hero .lead { margin-top: 22px; }
.breadcrumb { font-size: 0.82rem; color: var(--text-faint); margin-bottom: 20px; }
.breadcrumb a:hover { color: var(--text-dim); }

/* ---------- Pills / badges ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill { padding: 8px 16px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); font-size: 0.85rem; color: var(--text-dim); }

/* ---------- Reveal animation ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: 0.08s; }
[data-reveal].d2 { transition-delay: 0.16s; }
[data-reveal].d3 { transition-delay: 0.24s; }
[data-reveal].d4 { transition-delay: 0.32s; }

/* ---------- Apply / multi-step form ---------- */
.apply-shell { min-height: 100vh; display: grid; place-items: center; padding: 110px 24px 60px; }
.apply-card { width: 100%; max-width: 620px; }
.progress-bar { height: 4px; background: var(--surface-2); border-radius: 100px; overflow: hidden; margin-bottom: 40px; }
.progress-bar .fill { height: 100%; background: var(--grad); width: 12.5%; transition: width 0.5s var(--ease); border-radius: 100px; }
.step { display: none; animation: fadeStep 0.5s var(--ease); }
.step.active { display: block; }
@keyframes fadeStep { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }
.step .q-num { font-family: 'Space Grotesk'; color: var(--violet-2); font-weight: 600; font-size: 0.9rem; margin-bottom: 10px; }
.step h2 { font-size: clamp(1.6rem, 3.4vw, 2.3rem); margin-bottom: 8px; }
.step .hint { color: var(--text-dim); margin-bottom: 26px; }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.field input, .field select, .field textarea {
  width: 100%; padding: 15px 18px; border-radius: var(--radius-sm);
  background: var(--surface-2); border: 1px solid var(--border); color: var(--text);
  font-size: 1rem; font-family: inherit; transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--violet); background: rgba(124,92,255,0.06); }
.field textarea { resize: vertical; min-height: 120px; }
.opt-grid { display: grid; gap: 12px; }
.opt {
  display: flex; align-items: center; gap: 14px; padding: 16px 18px;
  border: 1px solid var(--border); border-radius: var(--radius-sm); background: var(--surface-2);
  cursor: pointer; transition: 0.25s var(--ease);
}
.opt:hover { border-color: var(--border-strong); }
.opt.sel { border-color: var(--violet); background: rgba(124,92,255,0.1); }
.opt .box { width: 22px; height: 22px; border-radius: 6px; border: 1.5px solid var(--border-strong); flex-shrink: 0; display: grid; place-items: center; transition: 0.25s; }
.opt.sel .box { background: var(--grad); border-color: transparent; color: #08080f; }
.opt .box svg { width: 13px; height: 13px; opacity: 0; }
.opt.sel .box svg { opacity: 1; }
.step-nav { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 14px; }
.step-nav .back { color: var(--text-dim); font-weight: 500; font-size: 0.95rem; padding: 12px 4px; }
.step-nav .back:hover { color: var(--text); }
.err { color: var(--magenta); font-size: 0.85rem; margin-top: 8px; display: none; }
.err.show { display: block; }

/* ---------- Thank you ---------- */
.ty-shell { min-height: 100vh; display: grid; place-items: center; text-align: center; padding: 120px 24px; }
.ty-check { width: 90px; height: 90px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; margin: 0 auto 30px; box-shadow: var(--glow-violet); }
.ty-check svg { width: 44px; height: 44px; color: #08080f; }

/* ---------- Utility ---------- */
.mt-s { margin-top: 14px; } .mt-m { margin-top: 26px; } .mt-l { margin-top: 44px; }
.mb-l { margin-bottom: 44px; }
.divider { height: 1px; background: var(--border); border: none; margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; gap: 40px; }
  .split.rev .split-media { order: 0; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links, .nav-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .nav.open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 74px; left: 0; right: 0;
    background: rgba(8,10,16,0.98); backdrop-filter: blur(20px);
    padding: 16px 24px 24px; border-bottom: 1px solid var(--border); gap: 2px;
  }
  .nav.open .nav-links a { padding: 14px; font-size: 1rem; }
  .has-dropdown .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; background: transparent; border: none; padding: 0 0 0 12px; margin: 0; }
  .has-dropdown .dropdown a small { display: none; }
}
@media (max-width: 620px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  section { padding: 80px 0; }
  .stats { grid-template-columns: 1fr 1fr; }
  .week { grid-template-columns: 1fr; gap: 10px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero { padding: 150px 0 70px; }
}

/* =========================================================
   MOTION SYSTEM — the "whoa" layer
   ========================================================= */

/* ---------- Scroll progress ---------- */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; width: 0%;
  background: var(--grad); z-index: 200; box-shadow: 0 0 12px rgba(124,92,255,0.8);
  transition: width 0.1s linear;
}

/* ---------- Aurora (living background) ---------- */
.aurora { position: fixed; inset: -20%; z-index: -2; pointer-events: none; filter: blur(60px); opacity: 0.55; }
.aurora span {
  position: absolute; border-radius: 50%; mix-blend-mode: screen;
  background: conic-gradient(from 0deg, #7c5cff, #3b6cff, #4f2fd6, #2a2f8f, #7c5cff);
  animation: spin var(--dur, 26s) linear infinite;
}
.aurora .l1 { width: 55vw; height: 55vw; top: -18vw; left: -12vw; --dur: 30s; opacity: 0.9; }
.aurora .l2 { width: 46vw; height: 46vw; top: 8vw; right: -14vw; --dur: 38s; animation-direction: reverse; }
.aurora .l3 { width: 40vw; height: 40vw; bottom: -16vw; left: 34vw; --dur: 46s; opacity: 0.7; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Cursor spotlight ---------- */
.spotlight {
  position: fixed; top: 0; left: 0; width: 640px; height: 640px; z-index: -1; pointer-events: none;
  transform: translate(-50%, -50%); border-radius: 50%;
  background: radial-gradient(circle, rgba(124,92,255,0.16), rgba(59,108,255,0.06) 40%, transparent 70%);
  transition: opacity 0.6s; will-change: transform;
}

/* ---------- Vignette to keep contrast ---------- */
.bg-vignette { position: fixed; inset: 0; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse 120% 90% at 50% -10%, transparent 40%, rgba(4,5,12,0.7) 100%); }

/* ---------- Shimmer sweep on gradient text ---------- */
.grad-text {
  background: linear-gradient(110deg, #9d7bff 0%, #5b8cff 30%, #ffffff 48%, #5b8cff 62%, #8b6dff 100%);
  background-size: 260% 100%;
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  animation: shimmer 7s ease-in-out infinite;
}
@keyframes shimmer { 0%,100% { background-position: 180% 0; } 50% { background-position: -20% 0; } }

/* ---------- HERO upgrade ---------- */
.hero { padding: 168px 0 70px; overflow: visible; }
.hero .display { position: relative; }
.hero-glow {
  position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%);
  width: 720px; height: 360px; z-index: -1; pointer-events: none;
  background: radial-gradient(ellipse at center, rgba(124,92,255,0.4), rgba(59,108,255,0.12) 45%, transparent 70%);
  filter: blur(30px); animation: breathe 6s ease-in-out infinite;
}
@keyframes breathe { 0%,100% { opacity: 0.65; transform: translate(-50%,-50%) scale(1); } 50% { opacity: 1; transform: translate(-50%,-50%) scale(1.08); } }

/* rotating word — sized wrapper so items never collapse into each other */
.rot-line { font-family: 'Space Grotesk', sans-serif; font-weight: 600; letter-spacing: -0.02em;
  font-size: clamp(1.3rem, 3vw, 2.1rem); color: var(--text-dim); margin-top: 16px; }
.rotator { position: relative; display: inline-block; vertical-align: bottom; }
.rot-size { visibility: hidden; white-space: nowrap; }
.rot-item { position: absolute; left: 0; top: 0; white-space: nowrap; transform-origin: bottom;
  opacity: 0; transform: translateY(16px) rotateX(-42deg); animation: rotword 9s infinite; }
.rot-item:nth-of-type(2) { animation-delay: 0s; }
.rot-item:nth-of-type(3) { animation-delay: 3s; }
.rot-item:nth-of-type(4) { animation-delay: 6s; }
@keyframes rotword {
  0% { opacity: 0; transform: translateY(16px) rotateX(-42deg); }
  5%, 28% { opacity: 1; transform: none; }
  34%, 100% { opacity: 0; transform: translateY(-16px) rotateX(42deg); }
}

/* floating proof chips */
.hero-chips { position: relative; height: 0; }
.float-chip {
  position: absolute; display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 16px; border-radius: 100px; font-size: 0.82rem; font-weight: 600;
  background: rgba(12,14,24,0.7); border: 1px solid var(--border-strong);
  backdrop-filter: blur(12px); box-shadow: var(--shadow); white-space: nowrap;
  animation: bob 6s ease-in-out infinite; color: var(--text);
}
.float-chip .d { width: 7px; height: 7px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 10px var(--violet); }
.float-chip.c1 { top: -260px; left: 4%; animation-delay: -1s; }
.float-chip.c2 { top: -200px; right: 5%; animation-delay: -3s; }
.float-chip.c3 { top: -70px; left: 9%; animation-delay: -2s; }
.float-chip.c4 { top: -30px; right: 8%; animation-delay: -4s; }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-14px); } }

/* ---------- Hero stage: live terminal ---------- */
.hero-stage { max-width: 820px; margin: 56px auto 0; perspective: 1400px; }
.terminal {
  border-radius: 18px; border: 1px solid var(--border-strong); overflow: hidden;
  background: linear-gradient(180deg, rgba(14,16,28,0.92), rgba(8,9,18,0.96));
  box-shadow: 0 40px 120px -40px rgba(124,92,255,0.5), var(--shadow);
  transform: rotateX(8deg); transform-origin: center top;
}
.terminal-bar { display: flex; align-items: center; gap: 8px; padding: 14px 18px; border-bottom: 1px solid var(--border); background: rgba(255,255,255,0.02); }
.terminal-bar .dots { display: flex; gap: 7px; }
.terminal-bar .dots i { width: 12px; height: 12px; border-radius: 50%; display: block; }
.terminal-bar .dots i:nth-child(1) { background: #ff5f56; }
.terminal-bar .dots i:nth-child(2) { background: #ffbd2e; }
.terminal-bar .dots i:nth-child(3) { background: #27c93f; }
.terminal-bar .title { font-family: 'Space Grotesk'; font-size: 0.8rem; color: var(--text-faint); margin-left: 8px; }
.terminal-bar .live { margin-left: auto; font-size: 0.72rem; color: var(--lime); display: inline-flex; align-items: center; gap: 6px; }
.terminal-bar .live::before { content: ''; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 8px var(--lime); animation: pulse 1.4s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.terminal-body { padding: 22px 24px; font-family: 'Space Grotesk', monospace; font-size: 0.92rem; line-height: 1.9; min-height: 172px; text-align: left; }
.terminal-body .line { white-space: pre-wrap; }
.terminal-body .prompt { color: var(--violet-2); }
.terminal-body .cmd { color: var(--text); }
.terminal-body .out { color: var(--text-faint); }
.terminal-body .ok { color: var(--lime); }
.terminal-body .cursor { display: inline-block; width: 9px; height: 1.05em; background: var(--grad); vertical-align: -2px; margin-left: 2px; animation: blink 1s steps(2) infinite; border-radius: 2px; }
@keyframes blink { 50% { opacity: 0; } }

/* ---------- Card 3D tilt ---------- */
.card.tilt, .prog-card.tilt { transform-style: preserve-3d; transition: transform 0.15s ease-out, border-color 0.4s, background 0.4s; }
.card .card-inner { transform: translateZ(30px); }

/* ---------- Richer reveal ---------- */
[data-reveal] { opacity: 0; transform: translateY(30px) scale(0.985); filter: blur(6px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease), filter 0.9s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; filter: none; }

/* ---------- Section divider glow line ---------- */
.beam-line { height: 1px; border: none; background: linear-gradient(90deg, transparent, rgba(124,92,255,0.5), rgba(59,108,255,0.5), transparent); margin: 0; }

/* ---------- Button shine ---------- */
.btn-primary { position: relative; overflow: hidden; }
.btn-primary::after {
  content: ''; position: absolute; top: 0; left: -80%; width: 60%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,0.5), transparent);
  transform: skewX(-20deg); animation: sheen 4.5s ease-in-out infinite;
}
@keyframes sheen { 0% { left: -80%; } 22%, 100% { left: 130%; } }

/* ---------- Marquee speed + glow ---------- */
.marquee-track { animation-duration: 28s; }

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .aurora span, .btn-primary::after, .grad-text, .hero-glow, .float-chip, .rotator > span, .terminal-body .cursor { animation: none !important; }
  [data-reveal] { transition-duration: 0.3s; }
}

@media (max-width: 720px) {
  .hero-chips { display: none; }
  .terminal { transform: none; }
  .hero-glow { width: 360px; }
}

/* =========================================================
   LOGOS + SPEAKERS + EXTRA CONTENT
   ========================================================= */

/* ---------- Real logo marquee ---------- */
.logos { padding: 40px 0; }
.logos-label { font-size: 0.82rem; letter-spacing: 0.2em; }
.marquee-track { align-items: center; gap: 60px; }
.logo-cell { display: inline-flex; align-items: center; height: 40px; }
.logo-img {
  height: 34px; width: auto; max-width: 160px; object-fit: contain;
  filter: grayscale(100%) brightness(0) invert(0.82);
  opacity: 0.72; transition: 0.35s var(--ease);
}
.logo-img:hover { filter: none; opacity: 1; transform: scale(1.06); }
.logo-word { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.6rem; color: var(--text-dim); opacity: 0.72; white-space: nowrap; letter-spacing: -0.01em; }

/* ---------- Speakers / guests ---------- */
.speaker {
  position: relative; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); overflow: hidden; transition: 0.4s var(--ease);
}
.speaker:hover { transform: translateY(-5px); border-color: var(--border-strong); }
.speaker .photo {
  aspect-ratio: 1/1; position: relative; display: grid; place-items: center;
  background: linear-gradient(150deg, #1a1740, #0a1230);
}
.speaker .photo .initials { font-family: 'Space Grotesk'; font-size: 2.6rem; font-weight: 700; color: rgba(255,255,255,0.16); }
.speaker .photo img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.speaker .info { padding: 16px 18px; }
.speaker .info h4 { font-size: 1.08rem; }
.speaker .info .role { color: var(--violet-2); font-size: 0.82rem; font-weight: 600; margin-top: 2px; }
.speaker .badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase; padding: 5px 10px; border-radius: 100px;
  background: rgba(8,10,18,0.7); border: 1px solid var(--border-strong); backdrop-filter: blur(8px);
}

/* ---------- Benefit / value rows (flagship) ---------- */
.value-row {
  display: grid; grid-template-columns: 64px 1fr; gap: 22px; align-items: start;
  padding: 26px; border: 1px solid var(--border); border-radius: var(--radius);
  background: var(--surface); transition: 0.35s var(--ease);
}
.value-row:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-3px); }
.value-row .vi { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; font-size: 1.5rem; background: linear-gradient(150deg, rgba(124,92,255,0.2), rgba(59,108,255,0.08)); border: 1px solid var(--border-strong); }
.value-row h4 { font-size: 1.22rem; margin-bottom: 6px; }
.value-row p { color: var(--text-dim); font-size: 0.96rem; }

@media (max-width: 620px) {
  .value-row { grid-template-columns: 1fr; gap: 14px; }
}

/* =========================================================
   V3 — CONVICTION LAYER (hero proof, build console, video, showcase)
   ========================================================= */

/* ---------- Hero proof row ---------- */
.hero-proof { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px 30px; margin-top: 26px; }
.hero-proof .hp { display: inline-flex; align-items: center; gap: 9px; font-size: 0.92rem; color: var(--text-dim); }
.hero-proof .hp b { font-family: 'Space Grotesk'; color: var(--text); font-weight: 700; }
.hero-proof .hp::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--grad); box-shadow: 0 0 8px var(--violet); }

/* ---------- Friendly build console (replaces code terminal) ---------- */
.build-console {
  border-radius: 20px; border: 1px solid var(--border-strong); overflow: hidden;
  background: linear-gradient(180deg, rgba(14,16,28,0.94), rgba(8,9,18,0.97));
  box-shadow: 0 45px 130px -45px rgba(124,92,255,0.55), var(--shadow);
  transform: rotateX(6deg); transform-origin: center top;
}
.console-body { padding: 30px 28px 14px; text-align: left; }
.console-kicker { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-faint); margin-bottom: 12px; }
.console-line { font-family: 'Space Grotesk', sans-serif; font-weight: 500; line-height: 1.45;
  font-size: clamp(1.1rem, 2.2vw, 1.6rem); color: var(--text); min-height: 2.5em; }
.console-line .build { font-style: italic; }
.console-status { margin-top: 14px; font-size: 0.92rem; color: var(--lime); display: inline-flex; align-items: center; gap: 8px; opacity: 0; transform: translateY(4px); transition: 0.4s var(--ease); }
.console-status.show { opacity: 1; transform: none; }
.build-tags { display: flex; flex-wrap: wrap; gap: 10px; padding: 18px 28px 26px; border-top: 1px solid var(--border); background: rgba(255,255,255,0.015); }
.build-tag { font-size: 0.82rem; padding: 8px 14px; border-radius: 100px; border: 1px solid var(--border);
  background: var(--surface-2); color: var(--text-dim); display: inline-flex; align-items: center; gap: 7px;
  transition: 0.35s var(--ease); }
.build-tag.active { color: #08080f; border-color: transparent; background: var(--grad); box-shadow: 0 8px 22px -6px rgba(124,92,255,0.75); transform: translateY(-2px); }
.build-tag .e { font-size: 0.95rem; }

/* ---------- Video / VSL ---------- */
.video-frame {
  position: relative; max-width: 940px; margin: 40px auto 0; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border-strong);
  background: linear-gradient(150deg, #16123f 0%, #0a1230 60%, #0a0c1c 100%);
  box-shadow: 0 55px 140px -50px rgba(124,92,255,0.6), var(--shadow); cursor: pointer;
}
.video-frame::before { content: ''; position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(circle at 50% 42%, rgba(124,92,255,0.3), transparent 62%);
  background-image: radial-gradient(rgba(255,255,255,0.04) 1px, transparent 1px); background-size: 26px 26px; }
.video-frame .v-badge { position: absolute; top: 20px; left: 22px; z-index: 3; }
.video-frame .v-label { position: absolute; bottom: 22px; left: 24px; right: 24px; z-index: 3;
  font-family: 'Space Grotesk'; font-weight: 600; color: var(--text); font-size: clamp(1rem,2vw,1.3rem); }
.video-frame .v-label span { display: block; font-family: 'Inter'; font-weight: 400; font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }
.video-play { position: absolute; top: 46%; left: 50%; transform: translate(-50%,-50%); z-index: 3;
  width: 92px; height: 92px; border-radius: 50%; background: var(--grad); display: grid; place-items: center;
  box-shadow: 0 0 0 0 rgba(124,92,255,0.5); animation: ping 2.6s infinite; }
.video-play svg { width: 34px; height: 34px; color: #08080f; margin-left: 5px; }
.video-frame:hover .video-play { transform: translate(-50%,-50%) scale(1.08); }
@keyframes ping { 0% { box-shadow: 0 0 0 0 rgba(124,92,255,0.55); } 70% { box-shadow: 0 0 0 30px rgba(124,92,255,0); } 100% { box-shadow: 0 0 0 0 rgba(124,92,255,0); } }
.video-frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; z-index: 6; }

/* ---------- Builds showcase ---------- */
.build-card { position: relative; overflow: hidden; }
.build-card .btag { align-self: flex-start; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--violet-2); padding: 5px 11px; border-radius: 100px; background: rgba(124,92,255,0.12); border: 1px solid rgba(124,92,255,0.25); margin-bottom: 16px; display: inline-block; }
.build-card .metric { margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border); font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.05rem; }
.build-card .metric .grad-text { font-size: 1.15rem; }

/* ---------- Audience band (17 to 80) ---------- */
.aud-band { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.aud-chip { padding: 12px 20px; border-radius: 100px; border: 1px solid var(--border); background: var(--surface); font-weight: 500; color: var(--text-dim); }
.aud-chip b { color: var(--text); font-family: 'Space Grotesk'; }

@media (max-width: 720px) {
  .build-console { transform: none; }
  .console-line { min-height: 3.4em; }
}

/* =========================================================
   V4 — HEADLINE, TWO-AUDIENCE SHOWCASE, LOGO WALL
   ========================================================= */

/* ---------- Bold, clearly-visible gradient headline emphasis ---------- */
.grad-strong {
  font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-style: normal; letter-spacing: -0.03em;
  background: linear-gradient(96deg, #c3b2ff 0%, #7c5cff 42%, #4f8bff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 30px rgba(124,92,255,0.4));
}
.hero .display { font-size: clamp(2.3rem, 5.3vw, 4.5rem); line-height: 1.06; }

/* ---------- Two-audience showcase ---------- */
.showcase-group { margin-top: 46px; }
.group-head { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px;
  padding: 9px 22px 9px 9px; border: 1px solid var(--border-strong); border-radius: 100px; background: var(--surface); }
.group-head .ge { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.group-head .gt { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.1rem; line-height: 1.2; }
.group-head .gt small { display: block; font-family: 'Inter'; font-weight: 400; font-size: 0.82rem; color: var(--text-faint); letter-spacing: 0; }
.yc-note { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9rem; color: var(--text-dim); margin-top: 14px; padding: 8px 16px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); }
.yc-note b { color: var(--text); font-family: 'Space Grotesk'; }

/* ---------- Logo wall (two opposing rows, like a lit stage) ---------- */
.logos { padding: 50px 0; overflow: hidden; }
.logo-rows { position: relative; display: flex; flex-direction: column; gap: 16px; margin-top: 30px; }
.logo-rows::before { content: ''; position: absolute; left: 50%; top: -18%; transform: translateX(-50%);
  width: 62%; height: 140%; z-index: -1; pointer-events: none; filter: blur(40px);
  background: radial-gradient(ellipse at center, rgba(124,92,255,0.3), rgba(59,108,255,0.12) 45%, transparent 72%); }
.logos .marquee { padding: 2px 0; }
.logos .marquee-track { gap: 16px; }
.marquee-track.rev { animation-direction: reverse; }
.logo-tile {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  min-width: 210px; height: 104px; padding: 0 36px; border-radius: 18px;
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,0.055), rgba(255,255,255,0.012));
  transition: 0.35s var(--ease);
}
.logo-tile:hover { border-color: var(--border-strong); transform: translateY(-3px);
  background: linear-gradient(180deg, rgba(124,92,255,0.14), rgba(255,255,255,0.02)); }
.logo-tile img { height: 34px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.86; transition: 0.35s var(--ease); }
.logo-tile:hover img { opacity: 1; }
.logo-tile .logo-word { color: #fff; opacity: 0.88; font-size: 1.35rem; font-family: 'Space Grotesk'; font-weight: 700; white-space: nowrap; }

@media (max-width: 620px) {
  .logo-tile { min-width: 150px; height: 84px; padding: 0 22px; }
  .logo-tile img { height: 26px; }
}

/* ---------- Minimal hero trust line ---------- */
.hero-trust { margin-top: 22px; font-size: 0.86rem; color: var(--text-faint); letter-spacing: 0.02em; }
.hero .lead { margin-top: 22px; }
.hero-stage { margin-top: 48px; }

/* =========================================================
   V5 — premium sub-hook, hero particles, program plans
   ========================================================= */

/* ---------- Two-line hero headline ---------- */
.hero .display { font-size: clamp(2.4rem, 5.6vw, 4.6rem); line-height: 1.08; }

/* ---------- Premium highlight/underline ---------- */
.hl { position: relative; color: var(--text); font-weight: 600; white-space: nowrap; }
.hl::after { content: ''; position: absolute; left: -1px; right: -1px; bottom: -3px; height: 3px;
  border-radius: 4px; background: var(--grad); box-shadow: 0 3px 16px rgba(124,92,255,0.6); }

/* ---------- Hero floating particles (minimal, premium) ---------- */
.hero-particles { position: absolute; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.hero-particles i { position: absolute; width: 4px; height: 4px; border-radius: 50%;
  background: var(--violet-2); box-shadow: 0 0 10px 2px rgba(124,92,255,0.55); opacity: 0; animation: floatUp linear infinite; }
@keyframes floatUp { 0% { transform: translateY(30px); opacity: 0; } 18% { opacity: 0.6; } 82% { opacity: 0.6; } 100% { transform: translateY(-90px); opacity: 0; } }
.hero-particles i:nth-child(1) { left: 13%; top: 34%; animation-duration: 9s; animation-delay: 0s; }
.hero-particles i:nth-child(2) { left: 24%; top: 64%; animation-duration: 11s; animation-delay: -3s; width: 3px; height: 3px; }
.hero-particles i:nth-child(3) { left: 77%; top: 28%; animation-duration: 10s; animation-delay: -5s; }
.hero-particles i:nth-child(4) { left: 88%; top: 56%; animation-duration: 13s; animation-delay: -1s; width: 3px; height: 3px; }
.hero-particles i:nth-child(5) { left: 49%; top: 20%; animation-duration: 12s; animation-delay: -7s; width: 3px; height: 3px; }
.hero-particles i:nth-child(6) { left: 34%; top: 78%; animation-duration: 10s; animation-delay: -2s; }
.hero-particles i:nth-child(7) { left: 66%; top: 72%; animation-duration: 14s; animation-delay: -4s; width: 3px; height: 3px; }

/* ---------- Program "plans" — distinct & lucrative ---------- */
.programs-band { position: relative; padding: 30px; border-radius: var(--radius-lg);
  border: 1px solid var(--border); background:
    radial-gradient(ellipse 80% 120% at 50% -10%, rgba(124,92,255,0.08), transparent 60%),
    rgba(255,255,255,0.012); }
.prog-feats { display: flex; flex-direction: column; gap: 9px; margin: 16px 0 6px; }
.prog-feats li { display: flex; gap: 10px; font-size: 0.9rem; color: var(--text-dim); align-items: flex-start; }
.prog-feats .ck { color: var(--violet-2); flex-shrink: 0; margin-top: 1px; }
.prog-card.featured { background: linear-gradient(165deg, rgba(124,92,255,0.16), rgba(59,108,255,0.05)); }
.prog-card.featured.glow::before { opacity: 1; padding: 1.5px; }
.prog-card.featured { box-shadow: 0 30px 90px -40px rgba(124,92,255,0.75); }
.flag-badge { position: absolute; top: 18px; right: 18px; z-index: 3; font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; padding: 6px 12px; border-radius: 100px;
  color: #08080f; background: var(--grad); box-shadow: 0 6px 18px -6px rgba(124,92,255,0.8); }
.prog-price { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.05rem; margin-top: 4px; }
.prog-price small { font-weight: 400; color: var(--text-faint); font-family: 'Inter'; font-size: 0.82rem; }

/* =========================================================
   V6 — typewriter headline
   ========================================================= */
.hero .display { font-size: clamp(2.05rem, 4.7vw, 3.7rem); line-height: 1.14; }
.type-word { display: inline-block; }
.type-caret {
  display: inline-block; width: 3px; height: 0.95em; margin-left: 5px; border-radius: 2px;
  background: var(--grad); vertical-align: -0.08em; box-shadow: 0 0 10px rgba(124,92,255,0.75);
  animation: blink 1s steps(2) infinite;
}

/* =========================================================
   V7 — hero trust row (authority)
   ========================================================= */
.hero-trust { display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 12px 14px; margin-top: 26px; font-size: 0.9rem; color: var(--text-faint); }
.trust-avatars { display: inline-flex; }
.trust-avatars i { width: 30px; height: 30px; border-radius: 50%; margin-left: -10px;
  border: 2px solid var(--bg); box-shadow: 0 2px 10px rgba(0,0,0,0.5); }
.trust-avatars i:first-child { margin-left: 0; }
.trust-avatars i:nth-child(1) { background: linear-gradient(150deg, #8b6dff, #5b8cff); }
.trust-avatars i:nth-child(2) { background: linear-gradient(150deg, #5b8cff, #22d3ee); }
.trust-avatars i:nth-child(3) { background: linear-gradient(150deg, #9d7bff, #7c5cff); }
.trust-avatars i:nth-child(4) { background: linear-gradient(150deg, #3b6cff, #8b6dff); }
.trust-avatars i:nth-child(5) { background: linear-gradient(150deg, #7c5cff, #4f8bff); }
.trust-main { color: var(--text-dim); }
.trust-main b { font-family: 'Space Grotesk'; font-weight: 700; color: var(--text); font-size: 1.05rem; letter-spacing: -0.01em; }
.trust-sep { width: 4px; height: 4px; border-radius: 50%; background: var(--text-faint); opacity: 0.55; }

/* =========================================================
   V8 — real avatar photos (placeholders) + MOBILE polish
   ========================================================= */

/* ---- Avatar photos (temporary placeholders — replace with real student pics) ---- */
.trust-avatars i { background-size: cover; background-position: center center; background-repeat: no-repeat; }
.trust-avatars i:nth-child(1) { background: url('https://randomuser.me/api/portraits/men/62.jpg') center/cover, linear-gradient(150deg,#8b6dff,#5b8cff); }
.trust-avatars i:nth-child(2) { background: url('https://randomuser.me/api/portraits/women/65.jpg') center/cover, linear-gradient(150deg,#5b8cff,#22d3ee); }
.trust-avatars i:nth-child(3) { background: url('https://randomuser.me/api/portraits/men/75.jpg') center/cover, linear-gradient(150deg,#9d7bff,#7c5cff); }
.trust-avatars i:nth-child(4) { background: url('https://randomuser.me/api/portraits/women/72.jpg') center/cover, linear-gradient(150deg,#3b6cff,#8b6dff); }
.trust-avatars i:nth-child(5) { background: url('https://randomuser.me/api/portraits/men/45.jpg') center/cover, linear-gradient(150deg,#7c5cff,#4f8bff); }

/* ---- Balanced headline wrapping everywhere ---- */
.display, h2.section-title { text-wrap: balance; }

/* =========================================================
   MOBILE (<= 640px) — tighten, rebalance, restore the polish
   ========================================================= */
@media (max-width: 640px) {
  section { padding: 58px 0; }
  .section-sm { padding: 38px 0; }
  .wrap { padding: 0 20px; }

  /* Hero */
  .hero { padding: 116px 0 52px; }
  .hero .display { font-size: clamp(1.72rem, 7.6vw, 2.3rem); line-height: 1.18; letter-spacing: -0.02em; }
  .hero .lead { font-size: 1rem; margin-top: 18px; }
  .hero-cta { gap: 10px; }
  .hero-cta .btn { flex: 1 1 auto; }
  .hero-glow { width: 300px; height: 220px; }
  .type-caret { height: 0.82em; }

  /* Hero trust row */
  .hero-trust { gap: 8px 12px; font-size: 0.8rem; margin-top: 22px; }
  .trust-avatars i { width: 26px; height: 26px; margin-left: -9px; }
  .trust-main b { font-size: 0.98rem; }
  .hero-trust > span:nth-child(4), .hero-trust > span:nth-child(6),
  .hero-trust .trust-sep { display: none; } /* keep only the authority number on tiny screens */

  /* Build console */
  .hero-stage { margin-top: 30px; }
  .build-console { transform: none; border-radius: 16px; }
  .terminal-bar .title { display: none; }
  .console-body { padding: 22px 18px 12px; }
  .console-kicker { font-size: 0.72rem; }
  .console-line { font-size: 1.08rem; min-height: 3.4em; }
  .build-tags { padding: 14px 16px 18px; gap: 8px; }
  .build-tag { font-size: 0.74rem; padding: 6px 11px; }

  /* Sections rhythm */
  .mb-l { margin-bottom: 30px; }
  .grid { gap: 16px; }
  .programs-band { padding: 14px; }
  .prog-card, .card { padding: 24px; }
  .cta-band { padding: 44px 22px; }
  .showcase-group { margin-top: 34px; }
  .value-row { padding: 22px; }

  /* Logo wall — smaller tiles, less dead space */
  .logos { padding: 40px 0; }
  .logo-rows { gap: 12px; margin-top: 22px; }
  .logo-rows .marquee-track { gap: 12px; }

  /* Video */
  .video-play { width: 68px; height: 68px; }
  .video-play svg { width: 26px; height: 26px; }
}

/* Extra-small phones */
@media (max-width: 380px) {
  .hero .display { font-size: 1.6rem; }
  .btn-lg { padding: 15px 22px; font-size: 0.98rem; }
}

/* =========================================================
   COHORT SALES PAGE (/cohort)
   ========================================================= */

/* ---- Hero split ---- */
.cohort-hero { padding: 150px 0 70px; position: relative; }
.hero-split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 50px; align-items: center; }
.hero-copy .display { font-size: clamp(2.2rem, 4.6vw, 3.8rem); line-height: 1.08; }
.hero-copy .lead { margin-left: 0; }

/* scarcity */
.scarcity-bar { height: 8px; border-radius: 100px; background: var(--surface-2); border: 1px solid var(--border); overflow: hidden; }
.scarcity-bar span { display: block; height: 100%; background: var(--grad); border-radius: 100px; box-shadow: 0 0 14px rgba(124,92,255,0.7); }
.scarcity-txt { margin-top: 9px; font-size: 0.86rem; color: var(--text-dim); }
.scarcity-txt b { color: var(--text); font-family: 'Space Grotesk'; }

/* ---- Application form ---- */
.apply-box { background: linear-gradient(180deg, rgba(16,18,30,0.9), rgba(9,10,20,0.96)); border: 1px solid var(--border-strong); border-radius: 22px; overflow: hidden; box-shadow: 0 45px 130px -45px rgba(124,92,255,0.6), var(--shadow); }
.apply-box-head { background: var(--grad); color: #08080f; font-weight: 700; font-family: 'Space Grotesk'; font-size: 0.9rem; text-align: center; padding: 13px 18px; }
.apply-form { padding: 24px; }
.af-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.af-field { margin-bottom: 13px; }
.af-field label { display: block; font-size: 0.8rem; color: var(--text-dim); margin-bottom: 6px; font-weight: 500; }
.af-field input, .af-field select { width: 100%; padding: 13px 15px; border-radius: 11px; background: var(--surface-2); border: 1px solid var(--border); color: var(--text); font-size: 0.98rem; font-family: inherit; transition: border-color 0.25s, background 0.25s; }
.af-field input:focus, .af-field select:focus { outline: none; border-color: var(--violet); background: rgba(124,92,255,0.06); }
.af-field select { appearance: none; background-image: linear-gradient(45deg, transparent 50%, var(--text-faint) 50%), linear-gradient(135deg, var(--text-faint) 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
.af-phone { display: flex; gap: 8px; }
.af-phone input { flex: 1; }
.af-otp { flex-shrink: 0; padding: 0 16px; font-size: 0.85rem; white-space: nowrap; }
.af-otp.sent { color: var(--lime); border-color: rgba(127,224,192,0.4); }
.af-otp-note { display: block; font-size: 0.78rem; color: var(--lime); margin-top: 6px; }
.af-submit { width: 100%; margin-top: 6px; }
.af-alt { text-align: center; font-size: 0.85rem; color: var(--text-faint); margin-top: 12px; }
.af-alt a { color: var(--violet-2); font-weight: 600; }

/* ---- Ikigai ---- */
.ikigai { max-width: 520px; margin: 0 auto; }
.ikigai svg { width: 100%; height: auto; overflow: visible; filter: drop-shadow(0 20px 60px rgba(124,92,255,0.3)); }
.ik-circles circle { mix-blend-mode: screen; }
.grad-svg { fill: #cbb8ff; }

/* ---- Weekly rhythm cards ---- */
.card.rhythm { text-align: left; }
.card.rhythm .rn { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.6rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 12px; }

/* ---- Phase headers (curriculum) ---- */
.phase-head { display: inline-flex; align-items: center; gap: 14px; margin-bottom: 22px; padding: 9px 22px 9px 9px; border: 1px solid var(--border-strong); border-radius: 100px; background: var(--surface); }
.phase-head .ge { width: 42px; height: 42px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; font-size: 1.2rem; flex-shrink: 0; }
.phase-head .gt { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.12rem; line-height: 1.2; }
.phase-head .gt small { display: block; font-family: 'Inter'; font-weight: 400; font-size: 0.82rem; color: var(--text-faint); }
.week .tools span { color: var(--violet-2); border-color: rgba(124,92,255,0.25); background: rgba(124,92,255,0.08); }

/* ---- Vault / surprise sessions ---- */
.vault { display: grid; grid-template-columns: 80px 1fr; gap: 24px; align-items: center; margin-top: 22px; padding: 30px; border-radius: var(--radius); border: 1px dashed var(--border-strong); background: radial-gradient(ellipse 60% 120% at 10% 50%, rgba(124,92,255,0.12), transparent 70%), var(--surface); }
.vault-lock { width: 72px; height: 72px; border-radius: 18px; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(150deg, rgba(124,92,255,0.25), rgba(59,108,255,0.08)); border: 1px solid var(--border-strong); }
.vault h3 { font-size: 1.4rem; }
.vault p { color: var(--text-dim); }

/* ---- Certificate mockup ---- */
.cert { border-radius: 18px; padding: 14px; background: linear-gradient(150deg, rgba(124,92,255,0.25), rgba(59,108,255,0.1)); box-shadow: var(--shadow); }
.cert-inner { border: 1px solid rgba(255,255,255,0.18); border-radius: 12px; padding: 34px 28px; text-align: center; background: linear-gradient(180deg, #0c0e1a, #090a14); }
.cert-top { font-family: 'Space Grotesk'; font-size: 0.72rem; letter-spacing: 0.28em; color: var(--violet-2); }
.cert-seal { width: 54px; height: 54px; margin: 18px auto 14px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; color: #08080f; font-size: 1.4rem; box-shadow: var(--glow-violet); }
.cert-title { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.7rem; line-height: 1.1; letter-spacing: -0.02em; }
.cert-sub { color: var(--text-dim); font-size: 0.82rem; margin-top: 12px; line-height: 1.6; }
.cert-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 26px; padding-top: 18px; border-top: 1px solid var(--border); font-size: 0.72rem; color: var(--text-faint); text-align: left; }
.cert-foot b { color: var(--text); font-family: 'Space Grotesk'; }
.cert-sig { text-align: right; font-family: 'Instrument Serif'; font-style: italic; font-size: 1.1rem; color: var(--text); }
.cert-sig small { font-family: 'Inter'; font-style: normal; font-size: 0.68rem; color: var(--text-faint); }

/* ---- Pricing ---- */
.pricing-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 24px; align-items: start; }
.value-stack { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
.value-stack .prog-feats li { font-size: 0.98rem; }
.price-card { position: relative; padding: 34px 30px; border-radius: var(--radius); border: 1px solid transparent; background: linear-gradient(165deg, rgba(124,92,255,0.16), rgba(59,108,255,0.05)); box-shadow: 0 30px 90px -40px rgba(124,92,255,0.75); text-align: center; overflow: hidden; }
.price-card::before { content: ''; position: absolute; inset: 0; border-radius: inherit; padding: 1.5px; background: var(--grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0); -webkit-mask-composite: xor; mask-composite: exclude; }
.price-anchor { color: var(--text-faint); text-decoration: line-through; font-size: 1.2rem; font-family: 'Space Grotesk'; }
.price-anchor small { text-decoration: none; }
.price-now { font-family: 'Space Grotesk'; font-weight: 700; font-size: clamp(2.4rem, 5vw, 3.4rem); letter-spacing: -0.03em; line-height: 1; margin-top: 4px; }
.price-now span { -webkit-text-fill-color: initial; font-size: 1.1rem; color: var(--text-dim); font-weight: 500; }
.price-sub { color: var(--text-dim); font-size: 0.9rem; margin-top: 10px; }

/* ---- Guarantee ---- */
.guarantee { text-align: center; padding: 44px 36px; border-radius: var(--radius-lg); border: 1px solid var(--border-strong); background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(124,92,255,0.14), transparent 60%), var(--surface); }
.g-seal { width: 74px; height: 74px; margin: 0 auto 18px; border-radius: 20px; display: grid; place-items: center; font-size: 2rem; background: linear-gradient(150deg, rgba(124,92,255,0.25), rgba(59,108,255,0.08)); border: 1px solid var(--border-strong); }
.guarantee h3 { font-size: 1.6rem; }
.guarantee p { color: var(--text-dim); max-width: 620px; margin: 12px auto 0; font-size: 1.02rem; }

/* ---- Admission steps ---- */
.admit-steps { display: flex; flex-direction: column; gap: 14px; }
.admit-step { display: flex; gap: 16px; align-items: center; padding: 20px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: 0.3s var(--ease); }
.admit-step:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateX(4px); }
.admit-step .as-ico { width: 48px; height: 48px; border-radius: 13px; display: grid; place-items: center; font-size: 1.4rem; background: linear-gradient(150deg, rgba(124,92,255,0.2), rgba(59,108,255,0.06)); border: 1px solid var(--border-strong); flex-shrink: 0; }
.admit-step h4 { font-size: 1.1rem; }
.admit-step p { color: var(--text-dim); font-size: 0.9rem; }

/* ---- Responsive ---- */
@media (max-width: 940px) {
  .hero-split { grid-template-columns: 1fr; gap: 34px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .vault { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}
@media (max-width: 620px) {
  .cohort-hero { padding: 120px 0 50px; }
  .af-row { grid-template-columns: 1fr; }
  .cert-title { font-size: 1.4rem; }
}

/* =========================================================
   COHORT V2 — FDE-style rich sections
   ========================================================= */

/* Hero meta chips */
.hero-meta { display: flex; flex-wrap: wrap; gap: 12px; }
.hm { padding: 12px 18px; border: 1px solid var(--border); border-radius: 14px; background: var(--surface); }
.hm-k { display: block; font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-faint); }
.hm-v { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.05rem; color: var(--text); }

/* Proof / press cards */
.proof-card { padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: 0.35s var(--ease); }
.proof-card:hover { border-color: var(--border-strong); background: var(--surface-2); }
.proof-card p { font-size: 1.08rem; color: var(--text); line-height: 1.6; }
.proof-src { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 20px; }
.proof-logo { font-family: 'Space Grotesk'; font-weight: 700; letter-spacing: 0.02em; color: var(--text-dim); font-size: 1.05rem; }
.proof-logo.serifp { font-family: 'Instrument Serif', serif; font-style: normal; font-size: 1.5rem; letter-spacing: 0; }
.proof-src .quo { font-family: 'Instrument Serif', serif; font-size: 3rem; line-height: 0.5; color: var(--border-strong); }

/* Operate steps (numbered) */
.op-step { position: relative; padding: 28px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: 0.35s var(--ease); }
.op-step:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-3px); }
.op-n { font-family: 'Space Grotesk'; font-weight: 700; font-size: 2.4rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 14px; }
.op-step h4 { font-size: 1.2rem; margin-bottom: 6px; }
.op-step p { color: var(--text-dim); font-size: 0.94rem; }

/* Horizontal scroll cards */
.hscroll { display: flex; gap: 18px; overflow-x: auto; padding: 6px 2px 20px; scroll-snap-type: x mandatory; -webkit-mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); mask-image: linear-gradient(90deg, transparent, #000 2%, #000 98%, transparent); }
.hscroll::-webkit-scrollbar { height: 6px; }
.hscroll::-webkit-scrollbar-thumb { background: var(--border-strong); border-radius: 100px; }
.hs-card { scroll-snap-align: start; flex: 0 0 300px; padding: 30px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); transition: 0.35s var(--ease); }
.hs-card:hover { border-color: var(--border-strong); background: var(--surface-2); transform: translateY(-4px); }
.hs-card .ico { width: 50px; height: 50px; border-radius: 13px; display: grid; place-items: center; font-size: 1.4rem; background: var(--surface-2); border: 1px solid var(--border); margin-bottom: 18px; }
.hs-card h3 { font-size: 1.25rem; margin-bottom: 8px; }
.hs-card p { color: var(--text-dim); font-size: 0.94rem; }

/* Curriculum split (left title / right weeks) */
.curriculum-split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 50px; align-items: start; }
.curriculum-split .cs-title { position: sticky; top: 100px; }
.week .wk small { font-size: 1.5rem; }

/* Avatar marquee */
.avatar-row .marquee-track { gap: 30px; animation-duration: 40s; }
.av-item { flex: 0 0 auto; width: 150px; text-align: center; }
.av-photo { display: block; width: 110px; height: 110px; margin: 0 auto 12px; border-radius: 50%; overflow: hidden; border: 2px solid var(--border-strong); background: linear-gradient(150deg,#1a1533,#0a1420); box-shadow: var(--glow-violet); }
.av-photo img { width: 100%; height: 100%; object-fit: cover; }
.av-item b { display: block; font-family: 'Space Grotesk'; font-size: 0.95rem; }
.av-item small { color: var(--text-faint); font-size: 0.78rem; }

/* Lab model columns */
.lab-col { position: relative; }
.lab-pill { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #08080f; background: var(--grad); padding: 5px 12px; border-radius: 100px; margin-bottom: 16px; }

/* Compensation cards */
.out-sub { font-family: 'Space Grotesk'; font-size: 1.2rem; margin-bottom: 18px; }
.comp-card { padding: 26px; border: 1px solid var(--border); border-radius: var(--radius); background: linear-gradient(160deg, rgba(124,92,255,0.08), rgba(255,255,255,0.01)); transition: 0.35s var(--ease); }
.comp-card.biz { background: linear-gradient(160deg, rgba(34,211,238,0.08), rgba(255,255,255,0.01)); }
.comp-card:hover { border-color: var(--border-strong); transform: translateY(-3px); }
.cc-role { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.cc-line { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; border-top: 1px solid var(--border); font-size: 0.92rem; }
.cc-line span { color: var(--text-faint); }
.cc-line b { font-family: 'Space Grotesk'; color: var(--text); }

/* Video testimonials */
.vtesti { border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--surface); transition: 0.35s var(--ease); }
.vtesti:hover { border-color: var(--border-strong); transform: translateY(-4px); }
.vt-media { aspect-ratio: 3/4; position: relative; display: grid; place-items: center; background: linear-gradient(160deg,#1a1533,#0a1420); }
.vt-play { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); display: grid; place-items: center; box-shadow: var(--glow-violet); }
.vt-play svg { width: 22px; height: 22px; color: #08080f; margin-left: 3px; }
.vt-info { padding: 14px 16px; }
.vt-info b { display: block; font-family: 'Space Grotesk'; font-size: 0.95rem; }
.vt-info small { color: var(--text-faint); font-size: 0.8rem; }

@media (max-width: 940px) {
  .curriculum-split { grid-template-columns: 1fr; gap: 30px; }
  .curriculum-split .cs-title { position: static; }
}
@media (max-width: 620px) {
  .hero-meta { gap: 8px; }
  .hm { flex: 1 1 auto; }
  .hs-card { flex-basis: 260px; }
}

/* =========================================================
   COHORT V3 — funnel nav, per-section colour, game font,
   rich curriculum, auto-marquee, press logos
   ========================================================= */

/* ---- Funnel nav (logo-only) ---- */
.nav-funnel .nav-inner { justify-content: space-between; }
.nav-funnel.scrolled { background: rgba(6,7,12,0.8); backdrop-filter: blur(20px) saturate(160%); border-bottom: 1px solid var(--border); }

/* ---- Brand accent + subtle elevation rhythm (old colours) ---- */
body[data-page="cohort.html"] section { --sec: #9d7bff; }
body[data-page="cohort.html"] section:nth-of-type(even) { background-color: rgba(255,255,255,0.015); }
body[data-page="cohort.html"] section.cohort-hero {
  background-image: radial-gradient(ellipse 90% 55% at 50% 0%, rgba(124,92,255,0.10), transparent 60%);
}

/* ---- Press logos ---- */
.press-logo { height: 26px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(0) invert(0.85); opacity: 0.85; transition: 0.3s; }
.proof-card:hover .press-logo { opacity: 1; filter: brightness(0) invert(1); }

/* ---- Rich curriculum week detail ---- */
.wk-detail { display: flex; flex-direction: column; gap: 7px; margin-top: 10px; }
.wk-detail > div { font-size: 0.92rem; color: var(--text-dim); line-height: 1.5; }
.wk-lbl { display: inline-block; min-width: 78px; font-family: 'Space Grotesk'; font-weight: 700; font-size: 0.7rem; letter-spacing: 0.06em; text-transform: uppercase; padding: 3px 9px; border-radius: 100px; margin-right: 10px; vertical-align: middle; }
.wk-lbl.m { color: #8b6dff; background: rgba(139,109,255,0.14); }
.wk-lbl.b { color: #22d3ee; background: rgba(34,211,238,0.14); }
.wk-lbl.o { color: #7fe0c0; background: rgba(127,224,192,0.14); }

/* ---- Auto-scroll "what makes different" ---- */
.diff-marquee .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.diff-track { gap: 18px; animation-duration: 48s; }
.diff-track .hs-card { flex: 0 0 300px; }
.diff-marquee:hover .diff-track { animation-play-state: paused; }

/* ---- Game / arcade font for the Lab Model ---- */
.game-font { font-family: 'Bungee', 'Space Grotesk', sans-serif; font-weight: 400; letter-spacing: 0.01em; line-height: 1.05; font-size: clamp(1.6rem, 3vw, 2.1rem); text-shadow: 0 3px 0 rgba(0,0,0,0.35); }
.lab-grid .lab-col { text-align: center; padding-top: 34px; }
.lab-grid .lab-col:nth-child(1) .game-font { color: #9d7bff; }
.lab-grid .lab-col:nth-child(2) .game-font { color: #6a8dff; }
.lab-grid .lab-col:nth-child(3) .game-font { color: #4fb8ff; }
.lab-grid .lab-col:nth-child(4) .game-font { color: #ffbf5e; }
.lab-n { font-family: 'Bungee', sans-serif; font-size: 0.9rem; color: var(--text-faint); margin-bottom: 12px; opacity: 0.7; }
.lab-col p { margin-top: 12px; }


/* =========================================================
   COHORT — WHITE (LIGHT) SECTIONS + white form (FDE-style)
   ========================================================= */
:root { --navy: #16265f; --navy-2: #24378a; }

/* ---- Light section theme ---- */
body[data-page="cohort.html"] section.sec-light {
  background-color: #f5f6fa !important;
  background-image: linear-gradient(180deg, #f7f8fb, #eceef4) !important;
  box-shadow: none;
  color: #12151f;
}
body[data-page="cohort.html"] section.sec-light .section-title,
body[data-page="cohort.html"] section.sec-light h2,
body[data-page="cohort.html"] section.sec-light h3,
body[data-page="cohort.html"] section.sec-light h4 { color: #0b0d16; }
body[data-page="cohort.html"] section.sec-light .lead,
body[data-page="cohort.html"] section.sec-light p { color: #565c6b; }
body[data-page="cohort.html"] section.sec-light .grad-strong {
  background: linear-gradient(96deg, #5b34e6, var(--navy)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: none;
}
body[data-page="cohort.html"] section.sec-light .eyebrow {
  color: var(--navy); background: #fff; border-color: rgba(0,0,0,0.1);
}
body[data-page="cohort.html"] section.sec-light .eyebrow .dot { background: var(--navy); box-shadow: 0 0 10px rgba(30,58,138,0.35); }

/* light: numbered steps */
body[data-page="cohort.html"] section.sec-light .op-step { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 12px 34px -20px rgba(20,30,70,0.35); }
body[data-page="cohort.html"] section.sec-light .op-step:hover { border-color: rgba(30,58,138,0.35); transform: translateY(-3px); }
body[data-page="cohort.html"] section.sec-light .op-n { color: var(--navy); -webkit-text-fill-color: var(--navy); background: none; }

/* light: generic cards (lab model, etc.) */
body[data-page="cohort.html"] section.sec-light .card,
body[data-page="cohort.html"] section.sec-light .lab-col { background: #fff; border-color: rgba(0,0,0,0.08); box-shadow: 0 12px 34px -20px rgba(20,30,70,0.3); }
body[data-page="cohort.html"] section.sec-light .card:hover,
body[data-page="cohort.html"] section.sec-light .lab-col:hover { border-color: rgba(30,58,138,0.35); }
body[data-page="cohort.html"] section.sec-light .card .ico { background: #eef1f8; border-color: rgba(0,0,0,0.06); }
body[data-page="cohort.html"] section.sec-light .lab-n { color: #9099ad; }
body[data-page="cohort.html"] section.sec-light .game-font { text-shadow: 0 2px 0 rgba(20,30,70,0.1); }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(1) .game-font { color: #6d3bff; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(2) .game-font { color: #2563eb; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(3) .game-font { color: #0e8f9e; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(4) .game-font { color: #7c3aed; }

/* light: FAQ */
body[data-page="cohort.html"] section.sec-light .faq-item { background: #fff; border-color: rgba(0,0,0,0.08); }
body[data-page="cohort.html"] section.sec-light .faq-item.open { border-color: rgba(30,58,138,0.35); }
body[data-page="cohort.html"] section.sec-light .faq-q { color: #0b0d16; }
body[data-page="cohort.html"] section.sec-light .faq-q .pm { border-color: rgba(0,0,0,0.2); color: #0b0d16; }
body[data-page="cohort.html"] section.sec-light .faq-item.open .pm { background: linear-gradient(120deg, #5b34e6, var(--navy)); color: #fff; border-color: transparent; }
body[data-page="cohort.html"] section.sec-light .faq-a p { color: #565c6b; }

/* ---- White application form with dark-navy buttons ---- */
body[data-page="cohort.html"] .apply-box { background: #ffffff; border-color: rgba(0,0,0,0.1); box-shadow: 0 40px 120px -40px rgba(0,0,0,0.7); }
body[data-page="cohort.html"] .apply-box-head { background: linear-gradient(120deg, var(--navy), var(--navy-2)); color: #fff; }
body[data-page="cohort.html"] .apply-box label { color: #3a4051; }
body[data-page="cohort.html"] .apply-box input,
body[data-page="cohort.html"] .apply-box select { background: #f4f5f8; border-color: rgba(0,0,0,0.13); color: #12151f; }
body[data-page="cohort.html"] .apply-box input::placeholder { color: #9aa0ad; }
body[data-page="cohort.html"] .apply-box input:focus,
body[data-page="cohort.html"] .apply-box select:focus { border-color: var(--navy-2); background: #fff; }
body[data-page="cohort.html"] .apply-box select { background-color: #f4f5f8; background-image: linear-gradient(45deg, transparent 50%, #6b7183 50%), linear-gradient(135deg, #6b7183 50%, transparent 50%); background-position: calc(100% - 20px) center, calc(100% - 15px) center; background-size: 5px 5px, 5px 5px; background-repeat: no-repeat; }
body[data-page="cohort.html"] .apply-box .af-submit,
body[data-page="cohort.html"] .apply-box .af-otp {
  background: linear-gradient(120deg, var(--navy-2), var(--navy)); color: #fff; border: none;
  box-shadow: 0 10px 30px -12px rgba(22,38,95,0.65);
}
body[data-page="cohort.html"] .apply-box .af-otp.sent { background: #1a7f5a; color: #fff; }
body[data-page="cohort.html"] .apply-box .af-alt { color: #6b7183; }
body[data-page="cohort.html"] .apply-box .af-alt a { color: var(--navy-2); }
body[data-page="cohort.html"] .apply-box .af-otp-note { color: #1a7f5a; }

/* =========================================================
   COHORT — deadline bar, press chips, ikigai hands, stripes,
   curriculum fade, bigger earnings, smaller creators, mario title
   ========================================================= */

/* ---- Deadline top bar ---- */
.topbar { position: fixed; top: 0; left: 0; right: 0; z-index: 210; height: 38px;
  display: flex; align-items: center; justify-content: center; gap: 12px; padding: 0 16px;
  font-size: 0.82rem; color: #fff; white-space: nowrap; overflow: hidden;
  background: linear-gradient(90deg, #7c3aed, #3b6cff); box-shadow: 0 2px 20px rgba(124,92,255,0.4); }
.topbar b { font-weight: 700; }
.topbar a { font-weight: 700; color: #fff; border-bottom: 1px solid rgba(255,255,255,0.7); }
.tb-pulse { width: 8px; height: 8px; border-radius: 50%; background: #fff; animation: tbpulse 1.6s infinite; flex-shrink: 0; }
@keyframes tbpulse { 0% { box-shadow: 0 0 0 0 rgba(255,255,255,0.6); } 70% { box-shadow: 0 0 0 8px rgba(255,255,255,0); } 100% { box-shadow: 0 0 0 0 rgba(255,255,255,0); } }
body[data-page="cohort.html"] .nav { top: 38px; }
@media (max-width: 620px) { .topbar { font-size: 0.7rem; gap: 8px; } }

/* ---- Press logos on white chips (as-featured-in) ---- */
.press-chip { display: inline-flex; align-items: center; justify-content: center; background: #fff; border-radius: 9px; padding: 9px 15px; box-shadow: 0 6px 18px -8px rgba(0,0,0,0.5); }
.press-chip img { height: 24px; width: auto; max-width: 160px; object-fit: contain; display: block; }

/* ---- Ikigai hands (placeholder emoji artifacts) ---- */
.ikigai-stage { position: relative; }
.ikigai-stage .ikigai { position: relative; z-index: 1; }
.ik-hand { position: absolute; z-index: 0; font-size: clamp(3rem, 7vw, 5.5rem); opacity: 0.55; pointer-events: none; filter: drop-shadow(0 10px 34px rgba(124,92,255,0.55)); }
.ik-hand.robot { left: 1%; bottom: 6%; animation: handRobot 6s ease-in-out infinite; }
.ik-hand.human { right: 1%; top: 6%; animation: handHuman 6.6s ease-in-out infinite; }
@keyframes handRobot { 0%,100% { transform: translateY(0) rotate(-16deg); } 50% { transform: translateY(-20px) rotate(-8deg); } }
@keyframes handHuman { 0%,100% { transform: translateY(0) rotate(146deg); } 50% { transform: translateY(20px) rotate(156deg); } }
@media (max-width: 940px) { .ik-hand { display: none; } }

/* ---- "What makes different": navy / white stripes ---- */
.diff-track .hs-card:nth-child(odd) { background: var(--navy); border-color: rgba(255,255,255,0.14); }
.diff-track .hs-card:nth-child(odd) h3 { color: #fff; }
.diff-track .hs-card:nth-child(odd) p { color: rgba(255,255,255,0.78); }
.diff-track .hs-card:nth-child(odd) .ico { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }
.diff-track .hs-card:nth-child(even) { background: #fff; border-color: rgba(0,0,0,0.08); }
.diff-track .hs-card:nth-child(even) h3 { color: #0b0d16; }
.diff-track .hs-card:nth-child(even) p { color: #565c6b; }
.diff-track .hs-card:nth-child(even) .ico { background: #eef1f8; border-color: rgba(0,0,0,0.06); }

/* ---- Mario/arcade font for the Lab Model TITLE only ---- */
.mario-font { font-family: 'Bungee', sans-serif !important; letter-spacing: 0.01em; }

/* ---- Curriculum: scroll dark → white transition ---- */
body[data-page="cohort.html"] #curriculum.curriculum-fade {
  background: linear-gradient(180deg, #060606 0%, #08080b 38%, #e6e8ef 66%, #f5f6fa 100%);
}
body[data-page="cohort.html"] .curriculum-fade .cs-title { position: static; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money { background: #fff; border-color: rgba(0,0,0,0.1); }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money .gt { color: #0b0d16; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money .gt small { color: #565c6b; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week { background: #fff; border-color: rgba(0,0,0,0.08); }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week h4 { color: #0b0d16; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week p,
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week .wk-detail > div { color: #565c6b; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week .wk,
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .weeks .week .wk small { color: var(--navy); }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .vault { background: #fff; border-color: rgba(0,0,0,0.15); }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .vault h3 { color: #0b0d16; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .vault p { color: #565c6b; }
body[data-page="cohort.html"] .curriculum-fade .phase-head.money ~ .vault .vault-lock { background: #eef1f8; }
/* smooth white → dark going into the masters section */
body[data-page="cohort.html"] section.masters-blend { background: linear-gradient(180deg, #f5f6fa 0%, var(--bg) 72px); }

/* ---- Earnings section: bigger, more special ---- */
body[data-page="cohort.html"] .earn .section-title { font-size: clamp(2.4rem, 5vw, 3.7rem); }
body[data-page="cohort.html"] .earn .out-sub { font-size: 1.5rem; }
body[data-page="cohort.html"] .earn .comp-card { padding: 34px; border-radius: 20px; }
body[data-page="cohort.html"] .earn .cc-role { font-size: 1.4rem; margin-bottom: 18px; }
body[data-page="cohort.html"] .earn .cc-line { padding: 13px 0; font-size: 1rem; }
body[data-page="cohort.html"] .earn .cc-line b { font-size: 1.5rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body[data-page="cohort.html"] .earn .comp-card.biz .cc-line b { background: linear-gradient(120deg, #22d3ee, #3b6cff); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
body[data-page="cohort.html"] .earn .comp-card:hover { transform: translateY(-5px); }

/* ---- Creators section: smaller ---- */
.spk-compact { max-width: 680px; margin: 0 auto; gap: 18px; }
.spk-compact .speaker .info { padding: 13px 15px; }
.spk-compact .speaker .info h4 { font-size: 1rem; }
.spk-compact .speaker .info .role { font-size: 0.78rem; }

/* =========================================================
   COHORT V4 — clean press logos, navy stripes, sticky-stack
   curriculum, event gallery, sticky funnel bar
   ========================================================= */

/* ---- Press logos (no chips) ---- */
.proof-src { align-items: center; }
.press-logo { height: 28px; width: auto; max-width: 185px; object-fit: contain; opacity: 0.92; }
.press-logo.inv { filter: brightness(0) invert(1); }
.press-logo.scr { mix-blend-mode: screen; }
.press-word { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.7rem; color: #fff; letter-spacing: -0.02em; }
.press-word .dl-dot { color: #86bc25; }

/* ---- "What makes different": white section, navy stripe cards ---- */
.diff-track .hs-card:nth-child(even) { background: var(--navy); border-color: rgba(255,255,255,0.14); }
.diff-track .hs-card:nth-child(even) h3 { color: #fff; }
.diff-track .hs-card:nth-child(even) p { color: rgba(255,255,255,0.78); }
.diff-track .hs-card:nth-child(even) .ico { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.18); }

/* ---- Curriculum: sticky-stacking cards ---- */
.cur-stack { max-width: 860px; margin: 0 auto; padding-bottom: 10px; }
.cur-card { position: sticky; top: calc(118px + var(--n,0) * 12px);
  background: linear-gradient(160deg, #14151f, #0c0d14); border: 1px solid var(--border-strong);
  border-radius: 22px; padding: 32px 34px; margin-bottom: 20px; box-shadow: 0 24px 70px -28px rgba(0,0,0,0.9); }
.cur-card:last-child { margin-bottom: 0; }
.cc-head { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-bottom: 14px; }
.cc-week { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.4rem; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.cc-phase { font-size: 0.78rem; color: var(--text-dim); padding: 6px 13px; border: 1px solid var(--border); border-radius: 100px; background: var(--surface); white-space: nowrap; }
.cc-phase.money { color: #7fe0c0; border-color: rgba(127,224,192,0.3); background: rgba(127,224,192,0.08); }
.cur-card h3 { font-size: clamp(1.3rem, 2.4vw, 1.75rem); margin-bottom: 18px; line-height: 1.15; }
.cc-rows { display: flex; flex-direction: column; gap: 11px; }
.cc-rows > div { color: var(--text-dim); font-size: 0.98rem; line-height: 1.5; }
.cur-card.surprise { border-style: dashed; background: radial-gradient(ellipse 70% 120% at 10% 0%, rgba(124,92,255,0.14), transparent 60%), linear-gradient(160deg,#14151f,#0c0d14); }
@media (max-width: 620px) { .cur-card { top: calc(96px + var(--n,0) * 8px); padding: 24px; } }

/* ---- Offline event gallery ---- */
.event-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 150px; gap: 14px; }
.ev-tile { border-radius: 16px; border: 1px solid var(--border); background: linear-gradient(150deg, #17123a, #0a1220); display: grid; place-items: center; color: var(--text-faint); font-size: 0.85rem; transition: 0.35s var(--ease); }
.ev-tile:hover { border-color: var(--border-strong); }
.ev-tile.big { grid-column: span 2; grid-row: span 2; }
@media (max-width: 620px) { .event-gallery { grid-template-columns: repeat(2,1fr); grid-auto-rows: 120px; } .ev-tile.big { grid-column: span 2; grid-row: span 1; } }

/* ---- Sticky bottom funnel bar (ticking clock + Apply) ---- */
.funnelbar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 200; transform: translateY(130%);
  transition: transform 0.45s var(--ease); display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 12px 22px; background: rgba(9,10,17,0.92); backdrop-filter: blur(20px) saturate(160%);
  border-top: 1px solid var(--border-strong); box-shadow: 0 -22px 60px -20px rgba(0,0,0,0.85); }
.funnelbar.show { transform: none; }
.fb-left { display: flex; align-items: center; gap: 18px; }
.fb-title { font-family: 'Space Grotesk'; font-weight: 600; font-size: 0.95rem; color: var(--text); }
.fb-title b { color: var(--violet-2); }
.fb-clock { display: flex; gap: 8px; }
.fb-clock span { display: flex; flex-direction: column; align-items: center; gap: 2px; font-size: 0.58rem; color: var(--text-faint); text-transform: uppercase; letter-spacing: 0.06em; min-width: 42px; padding: 7px 4px; border: 1px solid var(--border); border-radius: 11px; background: var(--surface); }
.fb-clock b { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.15rem; line-height: 1; background: var(--grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.funnelbar .btn { flex-shrink: 0; }
@media (max-width: 640px) { .fb-title { display: none; } .funnelbar { padding: 10px 14px; } .fb-clock span { min-width: 34px; padding: 6px 3px; } .fb-clock b { font-size: 1rem; } }

/* =========================================================
   COHORT V5 — ikigai split, curriculum split, fixed speaker
   cards on light, FDE-style admission timeline
   ========================================================= */

/* ---- Ikigai as left/right split (FDE-style) ---- */
.ikigai-split .split-media { display: flex; justify-content: center; }
.ikigai-split .ikigai { max-width: 500px; margin: 0; }

/* ---- Curriculum split: sticky title left, stacking cards right ---- */
body[data-page="cohort.html"] .cur-split .cs-title { position: sticky; top: 132px; align-self: start; }
.cur-split .cur-stack { max-width: none; margin: 0; }

/* ---- Fix speaker cards on the white creators section ---- */
body[data-page="cohort.html"] section.sec-light .speaker { background: #fff; border-color: rgba(0,0,0,0.08); }
body[data-page="cohort.html"] section.sec-light .speaker .info h4 { color: #0b0d16; }
body[data-page="cohort.html"] section.sec-light .speaker .info .role { color: var(--navy); }
body[data-page="cohort.html"] section.sec-light .speaker .badge { color: #fff; background: rgba(10,12,20,0.72); border-color: rgba(255,255,255,0.22); }

/* ---- Admission: FDE-style vertical connected timeline ---- */
body[data-page="cohort.html"] .admit-steps { position: relative; }
body[data-page="cohort.html"] .admit-steps::before { content: ''; position: absolute; left: 28px; top: 28px; bottom: 28px; width: 2px; background: linear-gradient(180deg, var(--violet), var(--cyan)); opacity: 0.5; }
body[data-page="cohort.html"] .admit-step { display: flex; align-items: center; gap: 22px; padding: 0 0 38px; background: none; border: none; border-radius: 0; }
body[data-page="cohort.html"] .admit-step:last-child { padding-bottom: 0; }
body[data-page="cohort.html"] .admit-step:hover { transform: none; background: none; border: none; }
body[data-page="cohort.html"] .admit-step .as-ico { width: 56px; height: 56px; border-radius: 50%; background: var(--grad); color: #08080f; box-shadow: var(--glow-violet); position: relative; z-index: 1; flex-shrink: 0; }
body[data-page="cohort.html"] .admit-step h4 { font-size: 1.15rem; margin-bottom: 2px; }

/* =========================================================
   COHORT V6 — bigger ikigai, mobile earnings/creators, week font
   ========================================================= */

/* ---- Larger ikigai on the right ---- */
.ikigai-split { grid-template-columns: 0.85fr 1.15fr; }
.ikigai-split .ikigai { max-width: 640px; width: 100%; margin: 0 auto; }

/* ---- Press logos: shown raw (original), a touch larger ---- */
.press-logo { height: 30px; border-radius: 4px; }

/* ---- "Week 01" in the arcade font ---- */
.cc-week { font-family: 'Bungee', sans-serif; font-size: 1.12rem; letter-spacing: 0.02em; }

/* ---- MOBILE: earnings section — stop wasting space ---- */
@media (max-width: 620px) {
  body[data-page="cohort.html"] .earn .section-title { font-size: 1.95rem; }
  body[data-page="cohort.html"] .earn .out-sub { font-size: 1.12rem; margin-bottom: 12px; }
  body[data-page="cohort.html"] .earn .grid { gap: 12px; }
  body[data-page="cohort.html"] .earn .comp-card { padding: 18px 20px; border-radius: 16px; }
  body[data-page="cohort.html"] .earn .cc-role { font-size: 1.08rem; margin-bottom: 10px; }
  body[data-page="cohort.html"] .earn .cc-line { padding: 8px 0; font-size: 0.88rem; }
  body[data-page="cohort.html"] .earn .cc-line b { font-size: 1.12rem; }
}

/* ---- MOBILE: creators — 2 in row one, 1 in row two, compact ---- */
@media (max-width: 620px) {
  .grid.spk-compact { grid-template-columns: 1fr 1fr; gap: 12px; }
  .spk-compact .speaker .info { padding: 10px 12px; }
  .spk-compact .speaker .info h4 { font-size: 0.9rem; }
  .spk-compact .speaker .info .role { font-size: 0.72rem; }
}


/* ---- Earnings comp cards: equal, natural heights (no clipping) ---- */
body[data-page="cohort.html"] .earn .grid { align-items: start; }
body[data-page="cohort.html"] .earn .comp-card { display: flex; flex-direction: column; }
