/* =========================================================
   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: #121212;
  --bg-2: #171717;
  --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: #c9ad6a;      /* antique gold (accent) */
  --violet-2: #e9c979;    /* light gold */
  --cyan: #a8874a;        /* deep gold */
  --magenta: #d9b86a;
  --lime: #e9c979;

  --grad: linear-gradient(120deg, #f0d48a 0%, #c9ad6a 100%);
  --grad-soft: linear-gradient(120deg, #e9c979, #c9ad6a);

  --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(201, 173, 106, 0.45);
}

/* ---------- 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: #6b5520; top: -180px; left: -120px; }
.orb.b { width: 540px; height: 540px; background: #3a2f14; top: 30%; right: -160px; animation-delay: -6s; }
.orb.c { width: 480px; height: 480px; background: #2c2410; 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(233,201,121,0.12); color: var(--lime); border: 1px solid rgba(233,201,121,0.25); }
.tag.flagship { background: rgba(201,173,106,0.15); color: var(--violet-2); border: 1px solid rgba(201,173,106,0.3); }
.tag.biz { background: rgba(168,135,74,0.12); color: var(--cyan); border: 1px solid rgba(168,135,74,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(201,173,106,0.12), rgba(168,135,74,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(201,173,106,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(201,173,106,0.14), rgba(168,135,74,0.06)); }
.cta-band::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,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, #c9ad6a, #a8874a, #4f2fd6, #2c2410, #c9ad6a);
  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(201,173,106,0.16), rgba(168,135,74,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, #e9c979 0%, #d9b86a 30%, #ffffff 48%, #d9b86a 62%, #e9c979 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(201,173,106,0.4), rgba(168,135,74,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(201,173,106,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(201,173,106,0.5), rgba(168,135,74,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(201,173,106,0.2), rgba(168,135,74,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(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,0.55); } 70% { box-shadow: 0 0 0 30px rgba(201,173,106,0); } 100% { box-shadow: 0 0 0 0 rgba(201,173,106,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(201,173,106,0.12); border: 1px solid rgba(201,173,106,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%, #c9ad6a 42%, #4f8bff 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 3px 30px rgba(201,173,106,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(201,173,106,0.3), rgba(168,135,74,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(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,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(201,173,106,0.16), rgba(168,135,74,0.05)); }
.prog-card.featured.glow::before { opacity: 1; padding: 1.5px; }
.prog-card.featured { box-shadow: 0 30px 90px -40px rgba(201,173,106,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(201,173,106,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(201,173,106,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, #e9c979, #d9b86a); }
.trust-avatars i:nth-child(2) { background: linear-gradient(150deg, #d9b86a, #22d3ee); }
.trust-avatars i:nth-child(3) { background: linear-gradient(150deg, #e9c979, #c9ad6a); }
.trust-avatars i:nth-child(4) { background: linear-gradient(150deg, #a8874a, #e9c979); }
.trust-avatars i:nth-child(5) { background: linear-gradient(150deg, #c9ad6a, #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,#e9c979,#d9b86a); }
.trust-avatars i:nth-child(2) { background: url('https://randomuser.me/api/portraits/women/65.jpg') center/cover, linear-gradient(150deg,#d9b86a,#22d3ee); }
.trust-avatars i:nth-child(3) { background: url('https://randomuser.me/api/portraits/men/75.jpg') center/cover, linear-gradient(150deg,#e9c979,#c9ad6a); }
.trust-avatars i:nth-child(4) { background: url('https://randomuser.me/api/portraits/women/72.jpg') center/cover, linear-gradient(150deg,#a8874a,#e9c979); }
.trust-avatars i:nth-child(5) { background: url('https://randomuser.me/api/portraits/men/45.jpg') center/cover, linear-gradient(150deg,#c9ad6a,#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(201,173,106,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(201,173,106,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(201,173,106,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(233,201,121,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(201,173,106,0.3)); }
.ik-circles circle { mix-blend-mode: screen; }
.grad-svg { fill: #e9c979; }

/* ---- 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(201,173,106,0.25); background: rgba(201,173,106,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(201,173,106,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(201,173,106,0.25), rgba(168,135,74,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(201,173,106,0.25), rgba(168,135,74,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(201,173,106,0.16), rgba(168,135,74,0.05)); box-shadow: 0 30px 90px -40px rgba(201,173,106,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(201,173,106,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(201,173,106,0.25), rgba(168,135,74,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(201,173,106,0.2), rgba(168,135,74,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(201,173,106,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: #e9c979; }
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(201,173,106,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: #e9c979; background: rgba(139,109,255,0.14); }
.wk-lbl.b { color: #22d3ee; background: rgba(34,211,238,0.14); }
.wk-lbl.o { color: #e9c979; background: rgba(233,201,121,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: #e9c979; }
.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: #3a2f14; --navy-2: #5a4820; }

/* ---- 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, #a8874a, 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: #a8874a; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(2) .game-font { color: #8a6d35; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(3) .game-font { color: #8a6d35; }
body[data-page="cohort.html"] section.sec-light .lab-grid .lab-col:nth-child(4) .game-font { color: #c9ad6a; }

/* 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, #a8874a, 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, #c9ad6a, #a8874a); box-shadow: 0 2px 20px rgba(201,173,106,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(201,173,106,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, #a8874a); -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: #e9c979; border-color: rgba(233,201,121,0.3); background: rgba(233,201,121,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(201,173,106,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; }

/* =========================================================
   HOME — $100M EDTECH PASS
   Light sections (global), monochrome logo wall, brand film
   ========================================================= */
:root { --ink: #0b0a08; --ink-2: #565040; --ink-3: #8b8574; --paper: #f4f1e9; --paper-2: #ece8dd; --line: rgba(11,10,8,0.09); --line-2: rgba(11,10,8,0.16); --gold: #a8874a; --gold-2: #c9ad6a; }

section.sec-light { position: relative; z-index: 1; background: var(--paper); color: var(--ink); }
section.sec-light.tint { background: var(--paper); }
section.sec-light + section.sec-light { border-top: 1px solid var(--line); }
section.sec-light h1, section.sec-light h2, section.sec-light h3, section.sec-light h4, section.sec-light .section-title { color: var(--ink); }
section.sec-light .lead, section.sec-light p, section.sec-light .card p { color: var(--ink-2); }
section.sec-light .grad-text, section.sec-light .grad-strong { background: linear-gradient(96deg, #a8874a, #8a6d35); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; filter: none; }
section.sec-light .eyebrow { color: #a8874a; background: #fff; border-color: var(--line-2); box-shadow: 0 6px 20px -12px rgba(20,30,70,0.25); }
section.sec-light .eyebrow .dot { background: #a8874a; box-shadow: 0 0 10px rgba(168,135,74,0.35); }

/* cards on paper */
section.sec-light .card, section.sec-light .quote, section.sec-light .stat, section.sec-light .panel {
  background: #fff; border-color: var(--line); box-shadow: 0 18px 50px -30px rgba(20,30,70,0.35);
}
section.sec-light .card:hover, section.sec-light .quote:hover { border-color: rgba(168,135,74,0.35); background: #fff; box-shadow: 0 30px 70px -34px rgba(168,135,74,0.4); }
section.sec-light .card .ico { background: var(--paper-2); border-color: var(--line); }
section.sec-light .card.glow::before { opacity: 0; }
section.sec-light .card h3, section.sec-light .quote p, section.sec-light .quote .who .n { color: var(--ink); }
section.sec-light .quote .who { border-top-color: var(--line); }
section.sec-light .quote .who .c { color: var(--ink-3); }
section.sec-light .quote .stars { color: #f5b301; }
section.sec-light .quote .who .av { color: #fff; }
section.sec-light .prog-card.featured { background: linear-gradient(165deg, #f6f1e4, #ffffff 60%); border-color: rgba(168,135,74,0.35); box-shadow: 0 34px 80px -40px rgba(168,135,74,0.5); }
section.sec-light .prog-price { color: var(--ink); }
section.sec-light .prog-price small, section.sec-light .prog-card .meta { color: var(--ink-3); }
section.sec-light .prog-feats li { color: var(--ink-2); }
section.sec-light .tag.free { background: #e9faf3; color: #0b7a55; border-color: #bfeedd; }
section.sec-light .tag.flagship { background: #f1e9d6; color: #a8874a; border-color: #e3d3a8; }
section.sec-light .tag.biz { background: #e9efff; color: #2547c9; border-color: #c9d6ff; }
section.sec-light .btn-ghost { color: var(--ink); background: #fff; border-color: var(--line-2); }
section.sec-light .btn-ghost:hover { background: var(--paper-2); border-color: rgba(11,13,22,0.3); }
section.sec-light .btn-primary { box-shadow: 0 16px 40px -16px rgba(168,135,74,0.6); }
section.sec-light .yc-note { color: var(--ink-2); }
section.sec-light .yc-note b { color: var(--ink); }
section.sec-light .build-card .btag { background: #f1e9d6; color: #a8874a; border-color: #e3d3a8; }
section.sec-light .build-card .metric { border-top-color: var(--line); color: var(--ink); }
section.sec-light .group-head .gt { color: var(--ink); }
section.sec-light .group-head .gt small { color: var(--ink-3); }
section.sec-light .group-head .ge { color: #fff; }
section.sec-light .aud-chip { background: #fff; border-color: var(--line); color: var(--ink-2); }
section.sec-light .aud-chip b { color: var(--ink); }
section.sec-light .feature-list .chk { background: var(--paper-2); border-color: var(--line); color: #8a6d35; }
section.sec-light .feature-list span.d { color: var(--ink-2); }
section.sec-light .stat .lbl { color: var(--ink-3); }
section.sec-light .stat .num { color: var(--ink); }

/* ---- Logo wall: monochrome, editorial, no boxes ---- */
section.logos.sec-light { padding: 54px 0 58px; border-top: 0; border-bottom: 1px solid var(--line); overflow: hidden; }
section.logos.sec-light .logos-label { color: var(--ink-3); margin-bottom: 8px; }
section.logos.sec-light .logo-rows { gap: 6px; margin-top: 26px; }
section.logos.sec-light .logo-rows::before { display: none; }
section.logos.sec-light .marquee { -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
section.logos.sec-light .marquee-track { gap: 0; animation-duration: 46s; }
section.logos.sec-light .marquee-track.rev { animation-duration: 52s; }
section.logos.sec-light .logo-tile {
  min-width: 0; height: 84px; padding: 0 44px; border: 0; background: none; border-radius: 0; box-shadow: none;
}
section.logos.sec-light .logo-tile img {
  height: 30px; width: auto; max-width: 150px; object-fit: contain; display: block;
  filter: brightness(0) opacity(0.62); transition: filter 0.35s var(--ease), transform 0.35s var(--ease);
}
section.logos.sec-light .logo-tile img.lg { height: 38px; max-width: 170px; }
section.logos.sec-light .logo-tile img.sm { height: 24px; }
section.logos.sec-light .logo-tile:hover img { filter: none; transform: translateY(-2px) scale(1.04); }
section.logos.sec-light .logo-word { color: var(--ink); opacity: 0.7; }
section.logos.sec-light .logos-foot { text-align: center; margin-top: 26px; font-size: 0.86rem; color: var(--ink-3); }
section.logos.sec-light .logos-foot b { color: var(--ink); font-family: 'Space Grotesk'; }

/* ---- Brand film (native video) ---- */
.film { position: relative; max-width: 1020px; margin: 44px auto 0; aspect-ratio: 16/9; border-radius: var(--radius-lg); overflow: hidden;
  background: #0b0d16; box-shadow: 0 60px 140px -50px rgba(20,30,70,0.55), 0 20px 50px -30px rgba(168,135,74,0.35); cursor: pointer; }
.film video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.film .film-shade { position: absolute; inset: 0; z-index: 2; background: linear-gradient(180deg, rgba(11,13,22,0.15), rgba(11,13,22,0.05) 45%, rgba(11,13,22,0.55)); transition: opacity 0.4s; pointer-events: none; }
.film .film-badge { position: absolute; top: 22px; left: 24px; z-index: 3; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px; border-radius: 100px;
  background: rgba(255,255,255,0.12); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.22); color: #fff; font-size: 0.74rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; }
.film .film-badge svg { width: 12px; height: 12px; color: #ffd34d; filter: drop-shadow(0 0 6px rgba(255,211,77,0.8)); }
.film .film-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); z-index: 3; width: 96px; height: 96px; border-radius: 50%;
  background: #fff; display: grid; place-items: center; box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 0 rgba(255,255,255,0.45); animation: filmping 2.6s infinite; transition: transform 0.3s var(--ease); }
.film .film-play svg { width: 32px; height: 32px; color: var(--ink); margin-left: 5px; }
.film:hover .film-play { transform: translate(-50%,-50%) scale(1.07); }
@keyframes filmping { 0% { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 0 rgba(255,255,255,0.5); } 70% { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 28px rgba(255,255,255,0); } 100% { box-shadow: 0 20px 60px -20px rgba(0,0,0,0.6), 0 0 0 0 rgba(255,255,255,0); } }
.film .film-label { position: absolute; left: 26px; right: 26px; bottom: 24px; z-index: 3; color: #fff; font-family: 'Space Grotesk'; font-weight: 600; font-size: clamp(1rem, 2vw, 1.25rem); text-shadow: 0 2px 20px rgba(0,0,0,0.5); pointer-events: none; }
.film .film-label span { display: block; font-family: 'Inter'; font-weight: 400; font-size: 0.85rem; color: rgba(255,255,255,0.78); margin-top: 3px; }
.film.playing .film-shade, .film.playing .film-play, .film.playing .film-label, .film.playing .film-badge { opacity: 0; pointer-events: none; }
.film.playing { cursor: default; }
.film-proof { display: flex; justify-content: center; gap: 34px; flex-wrap: wrap; margin-top: 30px; }
.film-proof div { text-align: center; }
.film-proof .k { font-family: 'Space Grotesk'; font-weight: 700; font-size: 1.5rem; color: var(--ink); letter-spacing: -0.02em; }
.film-proof .k i { font-style: normal; background: linear-gradient(96deg, #a8874a, #8a6d35); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.film-proof .l { font-size: 0.8rem; color: var(--ink-3); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 2px; }

@media (max-width: 720px) {
  section.logos.sec-light .logo-tile { height: 64px; padding: 0 26px; }
  section.logos.sec-light .logo-tile img { height: 24px; max-width: 120px; }
  section.logos.sec-light .logo-tile img.lg { height: 30px; }
  .film { border-radius: 18px; margin-top: 30px; }
  .film .film-play { width: 72px; height: 72px; }
  .film .film-play svg { width: 24px; height: 24px; }
  .film .film-label { left: 18px; right: 18px; bottom: 16px; }
  .film-proof { gap: 20px; }
}
section.logos.sec-light .logo-tile img.solid { height: 30px; filter: grayscale(1) brightness(1.05) opacity(0.6); border-radius: 3px; }
section.logos.sec-light .logo-tile:hover img.solid { filter: none; }

/* ---- Nav dropdown: icon tiles, locked programs, badges ---- */
.dropdown { min-width: 320px; padding: 8px; }
.dropdown .dd-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 12px; border-radius: 12px; transition: background 0.2s; }
.dropdown a.dd-item:hover { background: var(--surface-2); }
.dropdown .dd-ico { flex: 0 0 34px; width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; border: 1px solid var(--border); background: var(--surface-2); color: var(--text-dim); margin-top: 1px; }
.dropdown .dd-ico svg { width: 16px; height: 16px; }
.dropdown .dd-ico.violet { background: linear-gradient(135deg, rgba(201,173,106,0.35), rgba(168,135,74,0.2)); border-color: rgba(201,173,106,0.45); color: #e9c979; }
.dropdown .dd-ico.gold { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); border-color: rgba(201,173,106,0.55); color: #c9ad6a; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.dropdown .dd-ico.steel { background: linear-gradient(180deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)); border-color: rgba(255,255,255,0.12); color: #c3c8d6; box-shadow: inset 0 1px 0 rgba(255,255,255,0.06); }
.dropdown a.dd-item:hover .dd-ico.steel { border-color: rgba(201,173,106,0.5); color: #fff; box-shadow: inset 0 1px 0 rgba(255,255,255,0.08), 0 0 18px -8px rgba(201,173,106,0.6); }
.dropdown .dd-ico svg { transition: transform 0.25s var(--ease); }
.dropdown a.dd-item:hover .dd-ico svg { transform: translateY(-1px) scale(1.06); }
.dropdown .dd-body { min-width: 0; }
.dropdown .dd-item strong { display: flex; align-items: center; flex-wrap: wrap; gap: 6px; font-size: 0.93rem; color: var(--text); font-weight: 600; line-height: 1.2; }
.dropdown .dd-item small { display: block; font-size: 0.8rem; color: var(--text-faint); margin-top: 3px; }
.dropdown .dd-locked { cursor: default; }
.dropdown .dd-locked.gold { background: none; }
.dropdown .dd-locked.gold strong { color: var(--text); }
.dropdown .dd-locked.steel strong { color: var(--text-dim); }
.dd-badge { font-style: normal; font-size: 0.58rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; padding: 3px 7px; border-radius: 100px; line-height: 1; border: 1px solid transparent; }
.dd-badge.gold { background: transparent; color: #c9ad6a; border-color: rgba(201,173,106,0.5); }
.dd-badge.muted { background: transparent; color: var(--text-faint); border-color: var(--border-strong); }
.dd-badge.steel { background: transparent; color: var(--text-faint); border-color: var(--border-strong); }
.footer-links .muted { color: var(--text-faint); cursor: default; }
.programs-note { color: var(--text-faint); font-size: 0.92rem; }
.programs-note b { color: var(--text-dim); font-family: 'Space Grotesk'; }

/* ---- Announcement bar (homepage) ---- */
.announce { position: fixed; top: 0; left: 0; right: 0; z-index: 101; height: 38px; display: flex; align-items: center; justify-content: center; gap: 10px; padding: 0 16px;
  font-size: 0.82rem; color: var(--text); background: rgba(10,10,10,0.7); border-bottom: 1px solid rgba(201,173,106,0.25); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); white-space: nowrap; overflow: hidden; }
.announce .a-tag { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 8px; border-radius: 100px; background: #ffd34d; color: #1a1200; }
.announce .a-txt { color: var(--text-dim); overflow: hidden; text-overflow: ellipsis; }
.announce .a-txt b { color: var(--text); font-weight: 600; }
.announce .a-arrow { color: var(--violet-2); transition: transform 0.25s; }
.announce:hover .a-arrow { transform: translateX(4px); }
body.has-announce .nav { top: 38px; }
body.has-announce .hero { padding-top: 206px; }
body.has-announce .nav.open .nav-links { top: 74px; }
@media (max-width: 900px) {
  .has-dropdown .dropdown .dd-item small { display: none; }
  .has-dropdown .dropdown .dd-ico { display: none; }
  .announce { font-size: 0.76rem; gap: 8px; }
  .announce .a-txt { max-width: 70vw; }
}
/* ---- Brand wordmark (official transparent PNG) ---- */
.brand.wordmark { gap: 0; }
.brand.wordmark img { height: 26px; width: auto; display: block; }
.footer .brand.wordmark img { height: 24px; }
@media (max-width: 900px) { .brand.wordmark img { height: 21px; } }

/* ---- Hire our graduates: request form ---- */
.hire-form { padding: 32px; position: relative; }
section.sec-light .hire-form .field label { color: var(--ink-2); }
section.sec-light .hire-form .field input, section.sec-light .hire-form .field textarea { background: #fff; border-color: var(--line-2); color: var(--ink); }
section.sec-light .hire-form .field input::placeholder, section.sec-light .hire-form .field textarea::placeholder { color: #a3a8b6; }
section.sec-light .hire-form .field input:focus, section.sec-light .hire-form .field textarea:focus { border-color: #a8874a; background: #fff; box-shadow: 0 0 0 4px rgba(168,135,74,0.1); }
.hire-form .form-note { font-size: 0.78rem; color: var(--ink-3); margin-top: 12px; text-align: center; }
.hire-form .form-err { margin-top: 12px; padding: 10px 14px; border-radius: 10px; background: #fff1f0; border: 1px solid #ffc9c4; color: #b3261e; font-size: 0.88rem; }
.hire-form .form-done { text-align: center; padding: 12px 0; }
.hire-form .form-done .ico { margin: 0 auto 16px; }
.hire-form .form-done h3 { margin-bottom: 8px; }
section.sec-light .feature-list strong { color: var(--ink); }
section.sec-light .split .lead { color: var(--ink-2); }
@media (max-width: 720px) { .hire-form { padding: 22px; } }

/* ---- Section seams: soft dissolves between dark and white ---- */
section.sec-light.seam-top { padding-top: 70px; margin-top: -56px; border-radius: 44px 44px 0 0; z-index: 3;
  box-shadow: 0 -30px 80px -30px rgba(4,5,12,0.75), 0 -1px 0 rgba(255,255,255,0.35) inset; }
@media (max-width: 720px) { section.sec-light.seam-top { border-radius: 26px 26px 0 0; margin-top: -30px; } }
body[data-page="index.html"] .hero { padding-bottom: 150px; }
/* aurora: slow light drifting along the hero's lower edge */
body[data-page="index.html"] .hero .seam-light { position: absolute; left: 0; right: 0; bottom: 0; height: 320px; overflow: hidden; pointer-events: none; z-index: 0; }
body[data-page="index.html"] .hero .seam-light i { position: absolute; bottom: -120px; width: 46vw; height: 260px; border-radius: 50%; filter: blur(70px); opacity: 0.8; will-change: transform; }
body[data-page="index.html"] .hero .seam-light i:nth-child(1) { left: -8vw; background: radial-gradient(circle, rgba(201,173,106,0.55), transparent 65%); animation: auroraA 18s ease-in-out infinite alternate; }
body[data-page="index.html"] .hero .seam-light i:nth-child(2) { left: 32vw; background: radial-gradient(circle, rgba(168,135,74,0.5), transparent 65%); animation: auroraB 22s ease-in-out infinite alternate; }
body[data-page="index.html"] .hero .seam-light i:nth-child(3) { left: 66vw; background: radial-gradient(circle, rgba(201,173,106,0.35), transparent 65%); animation: auroraA 26s ease-in-out infinite alternate-reverse; }
@keyframes auroraA { from { transform: translate3d(0,0,0) scale(1); } to { transform: translate3d(14vw,-30px,0) scale(1.15); } }
@keyframes auroraB { from { transform: translate3d(0,-20px,0) scale(1.1); } to { transform: translate3d(-12vw,10px,0) scale(0.95); } }
@media (prefers-reduced-motion: reduce) { body[data-page="index.html"] .hero .seam-light i { animation: none; } }
section.sec-light.seam-bottom { padding-bottom: 110px; }
section.sec-light.seam-bottom::after { content: ''; position: absolute; left: 0; right: 0; bottom: -200px; height: 200px; pointer-events: none; z-index: 2;
  background: linear-gradient(180deg, #f4f1e9 0%, rgba(244,241,233,0.92) 10%, rgba(244,241,233,0.68) 24%, rgba(244,241,233,0.36) 42%, rgba(244,241,233,0.14) 60%, rgba(244,241,233,0.04) 80%, rgba(244,241,233,0) 100%); }
section.after-seam { padding-top: 250px; }
section.sec-light + section.sec-light { border-top: 0; }
section.sec-light .ink { color: var(--ink); }
section.sec-light .mini-stat { flex: 1; text-align: center; padding: 16px; border: 1px solid var(--line); border-radius: 12px; background: #fff; }
.mini-stat-l { font-size: 0.8rem; color: var(--text-faint); }
section.sec-light .mini-stat-l { color: var(--ink-3); }
section.sec-light .panel { background: linear-gradient(160deg, #f6f1e4, #ffffff 60%); border-color: rgba(168,135,74,0.18); box-shadow: 0 30px 80px -40px rgba(168,135,74,0.35); }
section.sec-light .panel::after { background: radial-gradient(circle at 30% 0%, rgba(201,173,106,0.14), transparent 60%); }
section.sec-light .pill { background: #fff; border-color: var(--line-2); }
section.sec-light .split .lead { color: var(--ink-2); }
section.sec-light .feature-list strong { color: var(--ink); }
section.sec-light .stats .stat { background: #fff; }
@media (max-width: 720px) {
  section.sec-light.seam-top { padding-top: 70px; }
  section.sec-light.seam-top::before, section.sec-light.seam-bottom::after { height: 110px; }
  section.sec-light.seam-top::before { top: -110px; }
  section.sec-light.seam-bottom::after { bottom: -110px; }
  section.after-seam { padding-top: 160px; }
}


/* =========================================================
   QUIET INSTITUTION — light block restraint (brochure language)
   No gradient text, no glow, hairlines over boxes, antique gold accent
   ========================================================= */
section.sec-light .grad-text, section.sec-light .grad-strong { background: none; -webkit-text-fill-color: currentColor; color: var(--gold); }
section.sec-light .eyebrow { background: transparent; border-color: var(--line-2); color: var(--ink-2); box-shadow: none; font-weight: 600; }
section.sec-light .eyebrow .dot { background: var(--gold); box-shadow: none; }
section.sec-light .card, section.sec-light .quote, section.sec-light .stat, section.sec-light .panel { background: transparent; border-color: var(--line); box-shadow: none; }
section.sec-light .card:hover, section.sec-light .quote:hover { background: rgba(255,255,255,0.35); border-color: var(--line-2); box-shadow: none; transform: none; }
section.sec-light .aud-chip { background: transparent; border-color: var(--line-2); }
section.sec-light .aud-chip b { color: var(--ink); }
section.sec-light .stats .stat { background: transparent; border: 0; border-left: 1px solid var(--line-2); border-radius: 0; text-align: left; padding: 6px 0 6px 22px; }
section.sec-light .stats .stat:first-child { border-left: 0; padding-left: 0; }
section.sec-light .stat .num { color: var(--ink); }
section.sec-light .stat .num span { background: none; -webkit-text-fill-color: currentColor; color: var(--ink); }
section.sec-light .stat .lbl { color: var(--ink-3); letter-spacing: 0.06em; text-transform: uppercase; font-size: 0.74rem; }
section.logos.sec-light { border-bottom: 0; }
section.logos.sec-light .logos-label { color: var(--ink-3); }
section.logos.sec-light .logos-foot { color: var(--ink-3); }
section.logos.sec-light .logos-foot b { color: var(--ink); }
section.logos.sec-light .logo-tile img { filter: brightness(0) opacity(0.55); }
section.logos.sec-light .logo-tile img.solid { filter: grayscale(1) brightness(1.05) opacity(0.55); }
section.sec-light .film { box-shadow: 0 50px 120px -50px rgba(11,10,8,0.55); }
.film-proof .k i { background: none; -webkit-text-fill-color: currentColor; color: var(--ink); }
.film-proof .l { color: var(--ink-3); }
section.sec-light .btn-primary { background: var(--ink); color: var(--paper); box-shadow: none; }
section.sec-light .btn-ghost { background: transparent; border-color: var(--line-2); color: var(--ink); }
section.sec-light .programs-note b { color: var(--ink); }

/* ---- Method + what our builders ship (compact, dark) ---- */
.method { padding-bottom: 90px; }
.method-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.mstep { display: flex; gap: 18px; padding: 30px 28px; border-left: 1px solid var(--border); }
.mstep:first-child { border-left: 0; padding-left: 0; }
.mstep .mn { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 2rem; line-height: 1; color: var(--gold-2); min-width: 34px; }
.mstep strong { display: block; font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.08rem; margin-bottom: 4px; }
.mstep span { color: var(--text-dim); font-size: 0.92rem; }
.ships { margin-top: 64px; }
.ships-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 22px; }
.ships-note { color: var(--text-faint); font-size: 0.9rem; }
.ships-grid { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--border); border-left: 1px solid var(--border); }
.ship { padding: 24px 24px 26px; border-right: 1px solid var(--border); border-bottom: 1px solid var(--border); transition: background 0.3s; }
.ship:hover { background: var(--surface-2); }
.ship b { display: block; font-family: 'Space Grotesk'; font-weight: 600; font-size: 1.02rem; margin-bottom: 6px; }
.ship span { color: var(--text-dim); font-size: 0.9rem; line-height: 1.5; }
@media (max-width: 900px) {
  .method-steps { grid-template-columns: 1fr; }
  .mstep { border-left: 0; border-top: 1px solid var(--border); padding: 22px 0; }
  .mstep:first-child { border-top: 0; }
  .ships-grid { grid-template-columns: 1fr; }
  section.sec-light .stats .stat { border-left: 0; padding-left: 0; }
}

/* ---- Testimonial photos, flagship tag row ---- */
.quote .who .av { overflow: hidden; background: var(--surface-2); border: 1px solid var(--border-strong); width: 54px; height: 54px; }
.quote .who .av img { width: 100%; height: 100%; object-fit: cover; display: block; }
.prog-card .tag-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 18px; }
.prog-card .tag-row .tag { margin-bottom: 0; white-space: nowrap; }
.flag-badge.inline { position: static; }
body[data-page="index.html"] .hero > .wrap { position: relative; z-index: 1; }

/* =========================================================
   ABOUT — modeled on the consulting.com flow: smoke hero, proof grid,
   ecosystem, alternating team rows, film, smoke closing band
   ========================================================= */
body[data-page="about.html"] { background: #121212; }
.ab-hero { position: relative; min-height: 92vh; display: flex; align-items: center; padding: 150px 0 110px; overflow: hidden; background: #121212; }
.smoke { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: #121212; }
.smoke video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; filter: contrast(1.05); }
.smoke::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.35) 0%, rgba(10,10,10,0.15) 35%, rgba(10,10,10,0.6) 72%, #121212 100%); }
.smoke-fallback { position: absolute; inset: -20%; background: radial-gradient(ellipse at 30% 40%, rgba(255,255,255,0.10), transparent 55%), radial-gradient(ellipse at 70% 60%, rgba(255,255,255,0.07), transparent 55%); filter: blur(60px); animation: smokeDrift 24s ease-in-out infinite alternate; }
@keyframes smokeDrift { from { transform: translate3d(-4%, 0, 0) rotate(0deg); } to { transform: translate3d(4%, -3%, 0) rotate(3deg); } }
.ab-hero-in { position: relative; z-index: 2; }
.ab-h1 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(2.4rem, 5.2vw, 4.6rem); line-height: 1.08; letter-spacing: -0.01em;
  background: linear-gradient(90deg, #8d8d8d 0%, #ffffff 35%, #ffffff 65%, #8d8d8d 100%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.ab-sub { max-width: 620px; margin: 26px auto 34px; color: #c9c9c9; font-size: 1.05rem; line-height: 1.65; }
.btn-gold { background: linear-gradient(180deg, #f5d27a, #e0aa2b); color: #1a1200; border: 1px solid rgba(255,220,120,0.6); box-shadow: 0 10px 30px -12px rgba(224,170,43,0.7), inset 0 1px 0 rgba(255,255,255,0.5); font-weight: 600; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 40px -14px rgba(224,170,43,0.9), inset 0 1px 0 rgba(255,255,255,0.5); }
.ab-h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(1.9rem, 3.4vw, 2.9rem); line-height: 1.15; color: #fff; letter-spacing: -0.005em; }
.ab-h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.2rem); line-height: 1.18; color: #fff; }
.ab-lead { max-width: 720px; margin: 18px auto 0; color: #b9b9b9; font-size: 1rem; line-height: 1.65; }
.ab-body { color: #b9b9b9; line-height: 1.7; margin-top: 16px; }
.ab-body b { color: #fff; font-weight: 600; }
.ab-kicker { font-size: 0.74rem; letter-spacing: 0.18em; text-transform: uppercase; color: #c9ad6a; margin-bottom: 14px; }
.ab-proof { padding: 110px 0; background: #121212; }
.ab-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 44px; text-align: left; }
.ab-box { border: 1px solid rgba(255,255,255,0.09); border-radius: 12px; padding: 26px 24px 24px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); transition: border-color 0.3s, transform 0.3s; }
.ab-box:hover { border-color: rgba(201,173,106,0.45); transform: translateY(-2px); }
.ab-ico { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 9px; border: 1px solid rgba(201,173,106,0.45); color: #c9ad6a; margin-bottom: 22px; }
.ab-ico svg { width: 18px; height: 18px; }
.ab-box h5 { font-family: 'Inter', system-ui, sans-serif; font-weight: 500; font-size: 0.98rem; line-height: 1.45; color: #ededed; }
.ab-note { max-width: 760px; margin: 40px auto 0; color: #8f8f8f; font-size: 0.95rem; line-height: 1.65; }
.ab-eco { padding: 100px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.ab-eco-in { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.ab-org { border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 44px 28px 30px; background: radial-gradient(ellipse at 50% 0%, rgba(201,173,106,0.10), transparent 60%), #171717; text-align: center; }
.org-root img { height: 22px; width: auto; display: inline-block; }
.org-line { width: 1px; height: 34px; margin: 18px auto; background: linear-gradient(180deg, rgba(201,173,106,0.7), rgba(201,173,106,0.1)); }
.org-row { display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; }
.org-node { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; color: #e6d6ad; padding: 9px 12px; border-radius: 100px; border: 1px solid rgba(201,173,106,0.5); background: rgba(201,173,106,0.06); }
.org-cap { margin-top: 26px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7a7a7a; }
.ab-checks { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.ab-checks li { position: relative; padding-left: 26px; color: #d6d6d6; font-size: 0.98rem; }
.ab-checks li::before { content: '✓'; position: absolute; left: 0; top: 0; color: #c9ad6a; font-weight: 700; }
.ab-team { padding: 110px 0 60px; background: #121212; }
.ab-members { margin-top: 54px; display: flex; flex-direction: column; gap: 60px; }
.ab-member { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: center; }
.ab-photo { aspect-ratio: 1/1; border-radius: 14px; overflow: hidden; background: #161616; border: 1px solid rgba(255,255,255,0.08); }
.ab-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.85) contrast(1.05); }
.ab-bio h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(1.6rem, 2.6vw, 2.2rem); color: #e9c979; }
.ab-bio h3 span { color: #e9c979; }
.ab-bio p { margin-top: 14px; color: #b9b9b9; line-height: 1.75; max-width: 640px; }
.ab-film { padding: 60px 0 100px; background: #121212; }
.ab-film-in { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; border: 1px solid rgba(255,255,255,0.08); border-radius: 18px; padding: 32px; background: #171717; }
.ab-film-thumb { position: relative; display: block; border-radius: 12px; overflow: hidden; aspect-ratio: 16/9; background: #000; }
.ab-film-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: 0.9; }
.ab-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 64px; height: 64px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 20px 50px -18px rgba(0,0,0,0.8); }
.ab-play svg { width: 24px; height: 24px; color: #121212; margin-left: 3px; }
.ab-film .btn-gold { margin-top: 24px; }
.ab-close { padding: 20px 0 110px; background: #121212; }
.ab-band { position: relative; overflow: hidden; border-radius: 20px; border: 1px solid rgba(255,255,255,0.08); padding: 90px 40px; text-align: center; background: #121212; }
.smoke.small video { opacity: 0.45; }
.ab-band-in { position: relative; z-index: 2; }
.ab-band .ab-lead { margin-top: 16px; margin-bottom: 30px; }
body[data-page="about.html"] .footer { margin-top: 0; }
@media (max-width: 900px) {
  .ab-hero { min-height: 0; padding: 130px 0 80px; }
  .ab-grid { grid-template-columns: 1fr; }
  .ab-eco-in { grid-template-columns: 1fr; gap: 36px; }
  .ab-member { grid-template-columns: 1fr; gap: 20px; }
  .ab-photo { max-width: 320px; }
  .ab-film-in { grid-template-columns: 1fr; padding: 20px; }
  .ab-band { padding: 60px 22px; }
}


/* ---- Second segue: paper → dark as a rising sheet with drifting light ---- */
section.sec-light.paper-end { padding-bottom: 150px; }
section.sheet-dark { position: relative; z-index: 3; margin-top: -56px; border-radius: 44px 44px 0 0; background: var(--bg); overflow: hidden;
  box-shadow: 0 -30px 80px -30px rgba(11,10,8,0.55), 0 1px 0 rgba(255,255,255,0.06) inset; padding-top: 110px; }
section.sheet-dark .seam-light.dark { position: absolute; left: 0; right: 0; top: 0; height: 300px; overflow: hidden; pointer-events: none; z-index: 0; }
section.sheet-dark .seam-light.dark i { position: absolute; top: -140px; width: 46vw; height: 260px; border-radius: 50%; filter: blur(70px); opacity: 0.7; will-change: transform; }
section.sheet-dark .seam-light.dark i:nth-child(1) { left: -8vw; background: radial-gradient(circle, rgba(201,173,106,0.5), transparent 65%); animation: auroraA 20s ease-in-out infinite alternate; }
section.sheet-dark .seam-light.dark i:nth-child(2) { left: 32vw; background: radial-gradient(circle, rgba(168,135,74,0.45), transparent 65%); animation: auroraB 24s ease-in-out infinite alternate; }
section.sheet-dark .seam-light.dark i:nth-child(3) { left: 66vw; background: radial-gradient(circle, rgba(201,173,106,0.35), transparent 65%); animation: auroraA 28s ease-in-out infinite alternate-reverse; }
section.sheet-dark > .wrap { position: relative; z-index: 1; }
@media (max-width: 720px) { section.sheet-dark { border-radius: 26px 26px 0 0; margin-top: -30px; padding-top: 70px; } section.sec-light.paper-end { padding-bottom: 90px; } }
@media (prefers-reduced-motion: reduce) { section.sheet-dark .seam-light.dark i { animation: none; } }

/* ---- About v2: softer smoke, typewriter, larger icons, globe, board ---- */
.smoke video { opacity: 0.38; filter: blur(2px) contrast(1.05); transform: scale(1.03); }
.smoke.small video { opacity: 0.32; }
.smoke::after { background: radial-gradient(ellipse at 50% 50%, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.3) 30%, rgba(10,10,10,0.65) 70%, #121212 100%); }
.ab-type { color: #e9c979; white-space: nowrap; }
.ab-caret { display: inline-block; width: 2px; height: 0.9em; background: #e9c979; margin-left: 3px; vertical-align: -0.08em; animation: abblink 1s steps(1) infinite; }
@keyframes abblink { 50% { opacity: 0; } }
.ab-ico { width: 54px; height: 54px; border-radius: 12px; margin-bottom: 24px; }
.ab-ico svg { width: 26px; height: 26px; }
.ab-org { position: relative; overflow: hidden; min-height: 360px; display: flex; flex-direction: column; justify-content: center; }
.globe { position: absolute; inset: 0; display: grid; place-items: center; pointer-events: none; z-index: 0; }
.globe-svg { width: 118%; height: auto; max-width: none; opacity: 0.9; }
.globe-lon { transform-origin: 200px 200px; animation: globeSpin 40s linear infinite; }
@keyframes globeSpin { from { transform: rotateY(0deg); } to { transform: rotateY(360deg); } }
.globe-svg .gp { animation: gpPulse 3.2s ease-in-out infinite; }
.globe-svg .gp:nth-child(2) { animation-delay: 0.6s; } .globe-svg .gp:nth-child(3) { animation-delay: 1.2s; } .globe-svg .gp:nth-child(4) { animation-delay: 1.8s; } .globe-svg .gp:nth-child(5) { animation-delay: 2.4s; }
@keyframes gpPulse { 0%,100% { opacity: 0.35; } 50% { opacity: 1; } }
.ab-org .org-root, .ab-org .org-line, .ab-org .org-row, .ab-org .org-cap { position: relative; z-index: 1; }
.ab-org .org-node { background: rgba(10,10,10,0.75); backdrop-filter: blur(6px); }
.ab-photo-pending { display: grid; place-items: center; background: radial-gradient(ellipse at 50% 30%, rgba(201,173,106,0.14), transparent 60%), #141414; }
.ab-photo-pending span { font-family: 'Instrument Serif', Georgia, serif; font-size: 3rem; color: rgba(233,201,121,0.55); letter-spacing: 0.04em; }
@media (prefers-reduced-motion: reduce) { .globe-lon, .globe-svg .gp, .ab-caret { animation: none; } }


/* =========================================================
   INSTITUTION THEME — black + antique gold, serif display
   ========================================================= */
h1.display, h2.section-title, .page-hero h1, .cta-band h2 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; letter-spacing: -0.005em; }
h1.display { font-size: clamp(2.6rem, 5.4vw, 4.8rem); line-height: 1.06; }
h2.section-title { font-size: clamp(2rem, 3.8vw, 3.1rem); line-height: 1.12; }
.serif { font-style: italic; }
.grad-strong, .grad-text { background: linear-gradient(90deg, #f0d48a, #c9ad6a); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.btn-primary { color: #1a1200; border: 1px solid rgba(255,220,120,0.55); box-shadow: 0 10px 30px -12px rgba(224,170,43,0.6), inset 0 1px 0 rgba(255,255,255,0.45); }
.btn-primary:hover { box-shadow: 0 16px 40px -14px rgba(224,170,43,0.85), inset 0 1px 0 rgba(255,255,255,0.45); }
.eyebrow { color: #e9c979; border-color: rgba(201,173,106,0.28); background: rgba(201,173,106,0.05); }
.eyebrow .dot { background: #c9ad6a; box-shadow: 0 0 10px rgba(201,173,106,0.6); }
.nav-links a.active { color: #fff; }
.announce .a-tag { background: #c9ad6a; color: #1a1200; }
.announce .a-arrow { color: #e9c979; }
.quote .stars { color: #e9c979; }
.quote .who .av { color: #1a1200; }
.tag.free { background: rgba(201,173,106,0.10); color: #e9c979; border-color: rgba(201,173,106,0.3); }
.tag.flagship { background: rgba(201,173,106,0.14); color: #e9c979; border-color: rgba(201,173,106,0.4); }
.tag.biz { background: rgba(255,255,255,0.05); color: #d8d8d8; border-color: rgba(255,255,255,0.14); }
.flag-badge { color: #1a1200; }
.prog-card.featured { background: linear-gradient(165deg, rgba(201,173,106,0.12), rgba(201,173,106,0.03)); box-shadow: 0 30px 90px -40px rgba(201,173,106,0.55); }
.mstep .mn, .ab-kicker { color: #e9c979; }
.trust-avatars i { border-color: #121212; }
.hero .hl { color: #fff; }
.bg-field .orb { opacity: 0.5; }
.build-tags .tag-chip.on, .console-status { color: #e9c979; }
section.sec-light .btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); box-shadow: none; }

/* ---- About v3: dot globe, board cards, philanthropy ---- */
.globe-canvas { width: 130%; height: auto; max-width: none; opacity: 0.85; display: block; }
.ab-org { min-height: 380px; background: #171717; }
.ab-board { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 54px; }
.ab-card { border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 18px 18px 26px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); transition: border-color 0.3s, transform 0.3s; }
.ab-card:hover { border-color: rgba(201,173,106,0.4); transform: translateY(-3px); }
.ab-card .ab-photo { aspect-ratio: 4/4.4; border-radius: 12px; }
.ab-card h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.7rem; color: #e9c979; margin-top: 20px; }
.ab-card p { margin-top: 10px; color: #b9b9b9; line-height: 1.7; font-size: 0.95rem; }
.ab-give { padding: 40px 0 100px; background: #121212; }
.ab-give .ab-kicker { margin-bottom: 6px; }
.ab-give-card { display: grid; grid-template-columns: 1.1fr 1fr; gap: 40px; align-items: center; margin-top: 34px; border: 1px solid rgba(255,255,255,0.08); border-radius: 16px; padding: 34px; background: #171717; }
.ab-give-text h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.8rem; color: #e9c979; }
.ab-give-text p { margin-top: 12px; color: #b9b9b9; line-height: 1.75; }
.ab-give-photo { aspect-ratio: 4/3; border-radius: 12px; overflow: hidden; background: #161616; }
.ab-give-photo img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
@media (max-width: 900px) { .ab-board { grid-template-columns: 1fr; } .ab-give-card { grid-template-columns: 1fr; padding: 20px; } }


/* =========================================================
   TEMPLE BASE + GOLD WITH PRECISION
   charcoal ground, one soft light, gold on the few things that matter
   ========================================================= */
body { background: #121212; }
.bg-field .orb { display: none; }
.bg-field::before { content: ''; position: absolute; inset: 0; background: radial-gradient(1300px 950px at 6% -4%, #303030 0%, #1d1d1d 40%, #121212 72%); }
.bg-field::after { opacity: 0.55; }
.hero-glow { background: radial-gradient(ellipse at center, rgba(201,173,106,0.16), rgba(201,173,106,0.05) 45%, transparent 70%); }
/* Temple button: brushed gold, dark ink, soft bevel */
.btn-primary, .btn-gold {
  background: linear-gradient(180deg, #f1d68f 0%, #d9b665 48%, #b8923f 100%);
  color: #1a1200; border: 1px solid rgba(255,225,150,0.55);
  box-shadow: 0 1px 0 rgba(255,255,255,0.45) inset, 0 -1px 0 rgba(0,0,0,0.25) inset, 0 14px 34px -14px rgba(217,182,101,0.55);
  text-shadow: 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover, .btn-gold:hover { background: linear-gradient(180deg, #f6dd9a 0%, #e0bd6c 48%, #c19a45 100%); transform: translateY(-2px); box-shadow: 0 1px 0 rgba(255,255,255,0.5) inset, 0 -1px 0 rgba(0,0,0,0.25) inset, 0 20px 44px -16px rgba(217,182,101,0.75); }
.btn-ghost { color: #ece8e0; border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.03); }
/* headline voice: bone-white, gold only on the accent phrase */
:root { --text: #f0ece4; --text-dim: #b8b4ad; --text-faint: #7e7b75; }
h1.display .grad-strong, h2.section-title .grad-strong, .page-hero h1 .grad-strong, .cta-band h2 .grad-strong, h1.display .type-word { font-family: inherit; font-weight: inherit; font-style: italic; }
.type-caret { background: #e9c979; }
/* surfaces sit just above the ground */
.card, .quote, .mentor, .panel, .stat, .prog-card, .build-console { background: rgba(255,255,255,0.03); }
.prog-card.featured { background: linear-gradient(165deg, rgba(201,173,106,0.10), rgba(201,173,106,0.02)); }
.dropdown { background: rgba(22,22,22,0.97); }
.announce { background: rgba(18,18,18,0.72); border-bottom: 1px solid rgba(201,173,106,0.22); }
section.sheet-dark { background: #121212; }
.smoke, .ab-hero, .ab-proof, .ab-eco, .ab-team, .ab-film, .ab-close, .ab-give { background-color: #121212; }
.ab-band, .ab-film-in, .ab-give-card, .ab-org { background-color: #171717; }

/* =========================================================
   HOME — rebuilt in the Temple language. Charcoal, smoke, serif, hairlines.
   Gold: buttons, numerals, kickers. Nothing else.
   ========================================================= */
body[data-page="index.html"] { background: #121212; }
body[data-page="index.html"] .bg-field { display: none; }
body[data-page="index.html"] .announce { display: none; }
body[data-page="index.html"].has-announce .nav { top: 0; }
.hp-hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 150px 0 120px; overflow: hidden; background: #121212; }
.hp-hero .smoke video { opacity: 0.42; filter: blur(1.5px) contrast(1.05); }
.hp-hero .smoke::after { background: radial-gradient(ellipse at 50% 50%, rgba(18,18,18,0.45) 0%, rgba(18,18,18,0.25) 35%, rgba(18,18,18,0.7) 72%, #121212 100%); }
.hp-hero-in { position: relative; z-index: 2; }
.hp-kicker { font-size: 0.72rem; letter-spacing: 0.22em; text-transform: uppercase; color: #c9ad6a; margin-bottom: 22px; }
.hp-h1 { font-size: clamp(2.5rem, 5.6vw, 5rem); }
.hp-type { color: #e9c979; white-space: nowrap; font-style: italic; }
.hp-cta { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: wrap; }
.hp-link { color: #c9c9c9; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.18); padding-bottom: 2px; transition: color 0.3s, border-color 0.3s; }
.hp-link:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
.hp-trust { margin-top: 30px; font-size: 0.8rem; letter-spacing: 0.06em; color: #8f8f8f; }
.hp-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: #7a7a7a; }
.hp-logos { padding: 56px 0 50px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); background: #121212; overflow: hidden; }
.hp-logos .logo-rows { margin-top: 26px; gap: 4px; }
.hp-logos .logo-rows::before { display: none; }
.hp-logos .marquee-track { gap: 0; animation-duration: 48s; }
.hp-logos .marquee-track.rev { animation-duration: 54s; }
.hp-logos .logo-tile { min-width: 0; height: 78px; padding: 0 42px; border: 0; background: none; box-shadow: none; border-radius: 0; }
.hp-logos .logo-tile img { height: 28px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.5); transition: filter 0.35s; }
.hp-logos .logo-tile img.lg { height: 36px; max-width: 170px; }
.hp-logos .logo-tile img.sm { height: 22px; }
.hp-logos .logo-tile img.solid { filter: grayscale(1) brightness(1.2) opacity(0.55); border-radius: 3px; }
.hp-logos .logo-tile:hover img { filter: brightness(0) invert(1) opacity(0.95); }
.hp-logos .logo-tile:hover img.solid { filter: none; }
.hp-film { padding: 120px 0 90px; background: #121212; }
.hp-film .film { margin-top: 44px; box-shadow: 0 60px 140px -50px rgba(0,0,0,0.9); }
.hp-numbers { padding: 30px 0 110px; background: #121212; }
.hp-stats { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid rgba(255,255,255,0.08); }
.hp-stats > div { padding: 34px 0 6px 26px; border-left: 1px solid rgba(255,255,255,0.08); }
.hp-stats > div:first-child { border-left: 0; padding-left: 0; }
.hp-stats b { display: block; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: clamp(2.4rem, 4vw, 3.6rem); line-height: 1; color: #f0ece4; letter-spacing: -0.01em; }
.hp-stats span:not([data-count]) { display: block; margin-top: 10px; font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: #7a7a7a; }
.hp-why { padding: 110px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-why-in { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.hp-programs { padding: 110px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-prog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.hp-prog { display: flex; flex-direction: column; padding: 34px 30px 30px; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.035), rgba(255,255,255,0.01)); transition: border-color 0.3s, transform 0.3s; }
.hp-prog:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.hp-prog.featured { border-color: rgba(201,173,106,0.45); background: linear-gradient(180deg, rgba(201,173,106,0.07), rgba(201,173,106,0.015)); }
.hp-prog.featured:hover { border-color: rgba(201,173,106,0.75); }
.hp-prog-tag { font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: #8f8f8f; }
.hp-prog.featured .hp-prog-tag { color: #c9ad6a; }
.hp-prog h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.85rem; color: #f0ece4; margin-top: 16px; }
.hp-prog p { margin-top: 12px; color: #b3b3b3; line-height: 1.7; font-size: 0.95rem; flex: 1; }
.hp-prog-cta { margin-top: 26px; font-size: 0.92rem; color: #e9c979; }
.hp-fine { margin-top: 30px; font-size: 0.86rem; color: #7a7a7a; }
.hp-fine a { color: #c9c9c9; border-bottom: 1px solid rgba(255,255,255,0.18); }
.hp-method { padding: 110px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-steps { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 54px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.hp-steps > div { padding: 36px 30px 38px; border-left: 1px solid rgba(255,255,255,0.08); }
.hp-steps > div:first-child { border-left: 0; padding-left: 0; }
.hp-steps i { display: block; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 2rem; color: #c9ad6a; line-height: 1; }
.hp-steps h4 { margin-top: 18px; font-family: 'Inter', system-ui, sans-serif; font-weight: 600; font-size: 1.05rem; color: #f0ece4; }
.hp-steps p { margin-top: 6px; color: #9a9a9a; font-size: 0.93rem; }
.hp-ships { margin-top: 56px; display: grid; grid-template-columns: 220px 1fr; gap: 30px; align-items: start; }
.hp-ships ul { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border-left: 1px solid rgba(255,255,255,0.08); }
.hp-ships li { padding: 14px 22px; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.25rem; color: #d9d5cd; border-bottom: 1px solid rgba(255,255,255,0.06); }
.hp-mentors { padding: 110px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-people { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-top: 52px; }
.hp-ph { aspect-ratio: 4/5; border-radius: 10px; overflow: hidden; background: #1a1a1a; border: 1px solid rgba(255,255,255,0.07); }
.hp-ph img { width: 100%; height: 100%; object-fit: cover; filter: grayscale(1) contrast(1.05); transition: filter 0.5s var(--ease), transform 0.6s var(--ease); }
.hp-people > div:hover .hp-ph img { filter: none; transform: scale(1.03); }
.hp-people h4 { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.25rem; color: #f0ece4; }
.hp-people span { display: block; margin-top: 2px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: #7a7a7a; }
.hp-words { padding: 110px 0 100px; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.hp-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; margin-top: 52px; border-top: 1px solid rgba(255,255,255,0.08); }
.hp-quotes figure { padding: 36px 30px 34px; border-left: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; }
.hp-quotes figure:first-child { border-left: 0; padding-left: 0; }
.hp-quotes blockquote { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.3rem; line-height: 1.5; color: #e4e0d8; flex: 1; }
.hp-quotes figcaption { display: flex; align-items: center; gap: 12px; margin-top: 26px; }
.hp-quotes figcaption img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(255,255,255,0.12); }
.hp-quotes figcaption span { font-size: 0.8rem; color: #8f8f8f; }
.hp-quotes figcaption b { display: block; color: #f0ece4; font-weight: 600; font-size: 0.9rem; }
body[data-page="index.html"] .ab-close { padding-top: 0; }
@media (max-width: 900px) {
  .hp-hero { min-height: 0; padding: 130px 0 80px; }
  .hp-stats { grid-template-columns: 1fr 1fr; border-top: 0; }
  .hp-stats > div { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .hp-why-in, .hp-prog-grid, .hp-steps, .hp-ships, .hp-quotes { grid-template-columns: 1fr; }
  .hp-steps > div, .hp-quotes figure { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .hp-steps > div:first-child, .hp-quotes figure:first-child { border-top: 0; }
  .hp-ships ul { grid-template-columns: 1fr; border-left: 0; }
  .hp-people { grid-template-columns: repeat(3, 1fr); }
}

/* global: kill the SaaS grid and any leftover colour */
.bg-field::after { display: none; }
body::after { opacity: 0.35; }

/* ---- Home v2: CRED-style hero field, editorial why, richer programs, speakers ---- */
.hp-field { position: absolute; inset: 0; z-index: 0; pointer-events: none; overflow: hidden; background: #121212; }
.hp-dust { position: absolute; inset: 0; width: 100%; height: 100%; }
.hp-spot { position: absolute; left: 50%; top: -20%; width: 1100px; height: 900px; transform: translateX(-50%); background: radial-gradient(ellipse at 50% 30%, rgba(255,255,255,0.075), rgba(255,255,255,0.02) 40%, transparent 70%); }
.hp-halo { position: absolute; left: 50%; top: 52%; width: 0; height: 0; }
.hp-halo i { position: absolute; left: 50%; top: 50%; border-radius: 50%; border: 1px solid rgba(201,173,106,0.16); transform: translate(-50%,-50%) rotateX(72deg); box-shadow: 0 0 60px -20px rgba(201,173,106,0.25) inset; }
.hp-halo i:nth-child(1) { width: 780px; height: 780px; animation: haloSpin 60s linear infinite; }
.hp-halo i:nth-child(2) { width: 1120px; height: 1120px; border-color: rgba(201,173,106,0.10); animation: haloSpin 90s linear infinite reverse; }
.hp-halo i:nth-child(3) { width: 1500px; height: 1500px; border-color: rgba(255,255,255,0.05); animation: haloSpin 130s linear infinite; }
.hp-halo i::after { content: ''; position: absolute; top: -2px; left: 50%; width: 5px; height: 5px; border-radius: 50%; background: #e9c979; box-shadow: 0 0 14px 3px rgba(233,201,121,0.55); }
@keyframes haloSpin { from { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(0deg); } to { transform: translate(-50%,-50%) rotateX(72deg) rotateZ(360deg); } }
.hp-hero { perspective: 1200px; }
.hp-hero::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 40%; background: linear-gradient(180deg, transparent, #121212); z-index: 1; pointer-events: none; }
@media (prefers-reduced-motion: reduce) { .hp-halo i { animation: none; } }
.hp-why-top { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; }
.hp-why-lead { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.45rem; line-height: 1.5; color: #d9d5cd; }
.hp-why-lead b { color: #f0ece4; font-weight: 400; font-style: italic; }
.hp-aud { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 64px; border-top: 1px solid rgba(255,255,255,0.08); }
.hp-aud > div { padding: 30px 26px 34px; border-left: 1px solid rgba(255,255,255,0.08); }
.hp-aud > div:first-child { border-left: 0; padding-left: 0; }
.hp-aud i { font-style: normal; font-size: 0.7rem; letter-spacing: 0.2em; color: #c9ad6a; }
.hp-aud h4 { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.6rem; color: #f0ece4; }
.hp-aud p { margin-top: 8px; color: #9a9a9a; font-size: 0.93rem; line-height: 1.6; }
.hp-prog-grid { grid-template-columns: 1.35fr 1fr; gap: 16px; }
.hp-prog-col { display: grid; grid-template-rows: 1fr 1fr; gap: 16px; }
.hp-prog { position: relative; overflow: hidden; }
.hp-prog-head { display: flex; justify-content: space-between; align-items: center; }
.hp-prog-num { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: rgba(255,255,255,0.28); font-size: 1.05rem; }
.hp-prog.featured .hp-prog-num { color: rgba(201,173,106,0.7); }
.hp-prog-light { position: absolute; left: 50%; top: -120px; width: 520px; height: 320px; transform: translateX(-50%); background: radial-gradient(ellipse at center, rgba(201,173,106,0.18), transparent 65%); pointer-events: none; }
.hp-prog.featured { padding: 40px 38px 36px; }
.hp-prog.featured h3 { font-size: 2.4rem; }
.hp-prog-sub { color: #cfcbc3 !important; font-size: 1.05rem !important; flex: 0 !important; }
.hp-prog-list { margin-top: 26px; border-top: 1px solid rgba(201,173,106,0.2); }
.hp-prog-list li { display: flex; gap: 16px; align-items: baseline; padding: 13px 0; border-bottom: 1px solid rgba(255,255,255,0.07); color: #d9d5cd; font-size: 0.97rem; }
.hp-prog-list i { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: #c9ad6a; min-width: 22px; }
.hp-prog-foot { display: flex; align-items: center; justify-content: space-between; gap: 16px; margin-top: auto; padding-top: 30px; flex-wrap: wrap; }
.hp-prog-meta { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: #8f8f8f; }
.hp-speak-head { margin-top: 70px; text-align: center; }
.hp-speak-head h3 { margin-top: 12px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.7rem; color: #f0ece4; }
.hp-speakers { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 34px; max-width: 900px; margin-left: auto; margin-right: auto; }
.hp-speakers .hp-ph { aspect-ratio: 1/1; }
.hp-speakers h4 { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.35rem; color: #f0ece4; }
.hp-speakers span { display: block; margin-top: 2px; font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase; color: #7a7a7a; }
.hp-speakers .hp-ph img { filter: grayscale(1) contrast(1.05); transition: filter 0.5s var(--ease), transform 0.6s var(--ease); }
.hp-speakers > div:hover .hp-ph img { filter: none; transform: scale(1.03); }
@media (max-width: 900px) {
  .hp-why-top, .hp-prog-grid, .hp-aud { grid-template-columns: 1fr; }
  .hp-aud > div { border-left: 0; padding-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .hp-aud > div:first-child { border-top: 0; }
  .hp-prog-col { grid-template-rows: auto; }
  .hp-speakers { grid-template-columns: 1fr; }
  .hp-halo i:nth-child(3) { display: none; }
}
.hp-h1 .hp-type { -webkit-text-fill-color: #e9c979; color: #e9c979; }
.hp-h1 .ab-caret { background: #e9c979; }
.hp-people.eight { grid-template-columns: repeat(4, 1fr); gap: 18px; }
.hp-people.eight .hp-ph { aspect-ratio: 4/4.6; }
.hp-people.eight h4 { font-size: 1.4rem; }
@media (max-width: 900px) { .hp-people.eight { grid-template-columns: repeat(2, 1fr); } }
/* hero rings: second travelling point, slow drift of the whole system */
.hp-halo i::before { content: ''; position: absolute; bottom: -2px; left: 50%; width: 4px; height: 4px; border-radius: 50%; background: #e9c979; opacity: 0.7; box-shadow: 0 0 10px 2px rgba(233,201,121,0.4); }
.hp-halo { animation: haloDrift 18s ease-in-out infinite alternate; }
@keyframes haloDrift { from { transform: translateY(-10px) rotate(-1.5deg); } to { transform: translateY(10px) rotate(1.5deg); } }
/* logos: more presence */
.hp-logos .logo-tile img { filter: brightness(0) invert(1) opacity(0.78); height: 30px; max-width: 160px; }
.hp-logos .logo-tile img.lg { height: 38px; max-width: 178px; }
.hp-logos .logo-tile img.solid { filter: grayscale(1) brightness(1.35) opacity(0.8); }
.hp-logos .hp-label { color: #9a9a9a; }

/* ---- Home: compact board strip (8 across, colour) ---- */
.hp-board { display: grid; grid-template-columns: repeat(8, 1fr); gap: 14px; margin-top: 52px; }
.hp-board .hp-ph { aspect-ratio: 1/1; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); padding: 3px; background: #121212; }
.hp-board .hp-ph img { border-radius: 50%; filter: saturate(0.85) contrast(1.04); transition: transform 0.5s var(--ease), filter 0.4s; }
.hp-board > div { text-align: center; }
.hp-board > div:hover .hp-ph img { transform: scale(1.04); filter: none; }
.hp-board h4 { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.12rem; color: #f0ece4; line-height: 1.2; }
.hp-board span { display: block; margin-top: 4px; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: #7a7a7a; line-height: 1.4; }
@media (max-width: 900px) { .hp-board { grid-template-columns: repeat(4, 1fr); gap: 12px; } }
.hp-orbit { position: absolute; inset: 0; width: 100%; height: 100%; }

/* ---- Brochure modal ---- */
.br-scrim { position: fixed; inset: 0; z-index: 400; background: rgba(0,0,0,0.7); backdrop-filter: blur(6px); }
.br-modal { position: fixed; z-index: 401; left: 50%; top: 50%; transform: translate(-50%,-50%); width: min(520px, calc(100vw - 32px)); max-height: calc(100vh - 32px); overflow: auto;
  background: #171717; border: 1px solid rgba(255,255,255,0.1); border-radius: 18px; padding: 34px 32px 30px; box-shadow: 0 60px 140px -40px rgba(0,0,0,0.9); }
.br-close { position: absolute; top: 14px; right: 14px; width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.12); color: #cfcfcf; display: grid; place-items: center; }
.br-head h3, .br-done h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.9rem; color: #f0ece4; margin-top: 6px; }
.br-sub { margin-top: 10px; color: #b3b3b3; font-size: 0.93rem; line-height: 1.6; }
.br-form { margin-top: 22px; position: relative; }
.br-field { margin-bottom: 14px; }
.br-field label { display: block; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: #8f8f8f; margin-bottom: 7px; }
.br-field input { width: 100%; padding: 13px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); color: #f0ece4; font-size: 0.98rem; }
.br-field input:focus { outline: none; border-color: rgba(201,173,106,0.6); }
.br-phone { display: flex; align-items: stretch; gap: 8px; }
.br-phone span { display: grid; place-items: center; padding: 0 12px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); color: #b3b3b3; font-size: 0.95rem; }
.br-phone input { flex: 1; }
.br-otp-btn { padding: 0 14px; border-radius: 10px; border: 1px solid rgba(201,173,106,0.5); color: #e9c979; font-size: 0.85rem; white-space: nowrap; }
.br-otp-btn.sent { border-color: rgba(255,255,255,0.12); color: #8f8f8f; }
.br-note { display: block; margin-top: 6px; font-size: 0.8rem; color: #9bcf9b; min-height: 1em; }
.br-submit { width: 100%; margin-top: 6px; }
.br-fine { margin-top: 12px; text-align: center; font-size: 0.78rem; color: #7a7a7a; }
.br-err { margin-top: 12px; padding: 10px 14px; border-radius: 10px; background: rgba(255,80,80,0.08); border: 1px solid rgba(255,80,80,0.3); color: #ff9c9c; font-size: 0.88rem; }
.br-done { text-align: center; padding: 20px 0 6px; }
.br-done .btn { margin-top: 20px; }
body[data-page="cohort.html"] .topbar { background: rgba(23,23,23,0.96); color: #cfcbc3; border-bottom: 1px solid rgba(201,173,106,0.25); }
body[data-page="cohort.html"] .topbar b { color: #f0ece4; }
body[data-page="cohort.html"] .topbar a { color: #e9c979; }
body[data-page="cohort.html"] .topbar .tb-pulse { background: #e9c979; }

/* =========================================================
   HOME HERO — quiet light. No particles, no rings.
   ========================================================= */
.hp-light { position: absolute; border-radius: 50%; filter: blur(90px); will-change: transform; }
.hp-light.a { width: 70vw; height: 70vw; max-width: 1000px; max-height: 1000px; left: -18vw; top: -30vw; background: radial-gradient(circle, rgba(255,250,240,0.10), rgba(255,250,240,0.03) 45%, transparent 70%); animation: lightA 26s ease-in-out infinite alternate; }
.hp-light.b { width: 60vw; height: 60vw; max-width: 900px; max-height: 900px; right: -22vw; bottom: -30vw; background: radial-gradient(circle, rgba(201,173,106,0.10), rgba(201,173,106,0.03) 45%, transparent 70%); animation: lightB 34s ease-in-out infinite alternate; }
@keyframes lightA { from { transform: translate3d(0,0,0); } to { transform: translate3d(9vw,6vw,0); } }
@keyframes lightB { from { transform: translate3d(0,0,0); } to { transform: translate3d(-8vw,-7vw,0); } }
.hp-grain { position: absolute; inset: 0; opacity: 0.045; mix-blend-mode: screen; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E"); }
@media (prefers-reduced-motion: reduce) { .hp-light { animation: none; } }

/* =========================================================
   COHORT — rebuilt in the Temple language (structure kept)
   ========================================================= */
body[data-page="cohort.html"] { background: #121212; }
body[data-page="cohort.html"] .bg-field { display: none; }
body[data-page="cohort.html"] section { background: #121212 !important; background-image: none !important; box-shadow: none !important; }
body[data-page="cohort.html"] section:nth-of-type(even) { background: #121212 !important; }
body[data-page="cohort.html"] section.sec-quiet { border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
body[data-page="cohort.html"] section.sec-quiet .section-title, body[data-page="cohort.html"] section.sec-quiet h2, body[data-page="cohort.html"] section.sec-quiet h3, body[data-page="cohort.html"] section.sec-quiet h4 { color: #f0ece4; }
body[data-page="cohort.html"] section.sec-quiet .lead, body[data-page="cohort.html"] section.sec-quiet p { color: #b3b3b3; }
body[data-page="cohort.html"] .display, body[data-page="cohort.html"] .section-title, body[data-page="cohort.html"] h1, body[data-page="cohort.html"] h2 { font-family: 'Instrument Serif', Georgia, serif !important; font-weight: 400 !important; color: #f0ece4; letter-spacing: -0.005em; }
body[data-page="cohort.html"] .grad-strong, body[data-page="cohort.html"] .grad-text { background: none !important; -webkit-text-fill-color: #e9c979 !important; color: #e9c979; font-style: italic; font-family: inherit; font-weight: inherit; filter: none !important; }
body[data-page="cohort.html"] .eyebrow { color: #c9ad6a; background: transparent; border-color: rgba(255,255,255,0.1); font-size: 0.7rem; letter-spacing: 0.2em; }
body[data-page="cohort.html"] .eyebrow .dot { display: none; }
body[data-page="cohort.html"] .card, body[data-page="cohort.html"] .hs-card, body[data-page="cohort.html"] .quote, body[data-page="cohort.html"] .stat, body[data-page="cohort.html"] .panel, body[data-page="cohort.html"] .lab-col, body[data-page="cohort.html"] .faq-item, body[data-page="cohort.html"] .op-step, body[data-page="cohort.html"] .admit-step, body[data-page="cohort.html"] .cc-week, body[data-page="cohort.html"] .prog-card, body[data-page="cohort.html"] .mentor, body[data-page="cohort.html"] .speaker {
  background: rgba(255,255,255,0.025) !important; border: 1px solid rgba(255,255,255,0.08) !important; box-shadow: none !important; border-radius: 14px; }
body[data-page="cohort.html"] .card::before, body[data-page="cohort.html"] .card.glow::before, body[data-page="cohort.html"] .panel::after { display: none !important; }
body[data-page="cohort.html"] .card:hover, body[data-page="cohort.html"] .hs-card:hover { border-color: rgba(255,255,255,0.18) !important; transform: none; }
body[data-page="cohort.html"] .ico, body[data-page="cohort.html"] .card .ico, body[data-page="cohort.html"] .hs-card .ico, body[data-page="cohort.html"] .ge { display: none !important; }
body[data-page="cohort.html"] .ck, body[data-page="cohort.html"] .chk { color: #c9ad6a !important; background: none !important; border: 0 !important; width: auto !important; height: auto !important; font-family: 'Instrument Serif', Georgia, serif; font-size: 1rem; }
body[data-page="cohort.html"] .tag, body[data-page="cohort.html"] .btag, body[data-page="cohort.html"] .pill { background: transparent !important; color: #b3b3b3 !important; border: 1px solid rgba(255,255,255,0.12) !important; font-size: 0.66rem; letter-spacing: 0.16em; }
body[data-page="cohort.html"] .btn-primary { background: linear-gradient(180deg, #f1d68f 0%, #d9b665 48%, #b8923f 100%) !important; color: #1a1200 !important; }
body[data-page="cohort.html"] .btn-ghost { background: transparent !important; color: #ece8e0 !important; border-color: rgba(255,255,255,0.16) !important; }
body[data-page="cohort.html"] .game-font { font-family: 'Instrument Serif', Georgia, serif !important; text-shadow: none !important; font-style: italic; color: #e9c979 !important; }
body[data-page="cohort.html"] .lab-grid .lab-col .game-font { color: #e9c979 !important; }
body[data-page="cohort.html"] .wk-lbl { color: #c9ad6a !important; background: transparent !important; border: 1px solid rgba(201,173,106,0.35) !important; }
body[data-page="cohort.html"] .cc-rows > div { border-color: rgba(255,255,255,0.07) !important; color: #cfcbc3; }
body[data-page="cohort.html"] .earn, body[data-page="cohort.html"] .earn * { background-image: none !important; }
body[data-page="cohort.html"] .earn .section-title { color: #f0ece4 !important; }
body[data-page="cohort.html"] .earn table, body[data-page="cohort.html"] .earn td, body[data-page="cohort.html"] .earn th { border-color: rgba(255,255,255,0.08) !important; background: transparent !important; color: #d9d5cd !important; }
body[data-page="cohort.html"] .sec-money .card, body[data-page="cohort.html"] .price-box, body[data-page="cohort.html"] .offer-box { background: rgba(255,255,255,0.03) !important; border: 1px solid rgba(201,173,106,0.35) !important; }
body[data-page="cohort.html"] .cohort-hero { background: #121212 !important; }
body[data-page="cohort.html"] .cohort-hero::before, body[data-page="cohort.html"] .cohort-hero::after { display: none !important; }
body[data-page="cohort.html"] .apply-box { background: #171717 !important; border: 1px solid rgba(255,255,255,0.1) !important; box-shadow: 0 50px 120px -50px rgba(0,0,0,0.9) !important; color: #f0ece4 !important; }
body[data-page="cohort.html"] .apply-box * { color: inherit; }
body[data-page="cohort.html"] .apply-box-head { background: transparent !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; }
body[data-page="cohort.html"] .apply-box label, body[data-page="cohort.html"] .apply-box .af-alt, body[data-page="cohort.html"] .apply-box small { color: #9a9a9a !important; }
body[data-page="cohort.html"] .apply-box input, body[data-page="cohort.html"] .apply-box select, body[data-page="cohort.html"] .apply-box textarea { background: rgba(255,255,255,0.03) !important; border: 1px solid rgba(255,255,255,0.12) !important; color: #f0ece4 !important; }
body[data-page="cohort.html"] .apply-box input::placeholder { color: #6f6b64 !important; }
body[data-page="cohort.html"] .apply-box .af-submit, body[data-page="cohort.html"] .apply-box .btn-primary { background: linear-gradient(180deg, #f1d68f 0%, #d9b665 48%, #b8923f 100%) !important; color: #1a1200 !important; }
body[data-page="cohort.html"] .apply-box .af-otp { color: #e9c979 !important; border-color: rgba(201,173,106,0.5) !important; background: transparent !important; }
body[data-page="cohort.html"] .apply-box .af-alt a { color: #e9c979 !important; }
body[data-page="cohort.html"] .curriculum-fade::after, body[data-page="cohort.html"] .masters-blend::before { background: linear-gradient(180deg, transparent, #121212) !important; }
body[data-page="cohort.html"] .film { max-width: 940px; margin-top: 36px; }
body[data-page="cohort.html"] .stats .stat .num, body[data-page="cohort.html"] .stat .num span { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; color: #f0ece4; -webkit-text-fill-color: #f0ece4; background: none; }
body[data-page="cohort.html"] .quote .stars { color: #c9ad6a; }
body[data-page="cohort.html"] .faq-q { color: #f0ece4; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.2rem; }
body[data-page="cohort.html"] .faq-item.open .pm { background: #f6f2ea !important; color: #121212 !important; }
body[data-page="cohort.html"] .faq-a p { color: #b3b3b3 !important; }
body[data-page="cohort.html"] .admit-steps::before { background: rgba(255,255,255,0.1) !important; }
body[data-page="cohort.html"] .op-n, body[data-page="cohort.html"] .lab-n, body[data-page="cohort.html"] .admit-n { color: #c9ad6a !important; -webkit-text-fill-color: #c9ad6a !important; background: none !important; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; }
body[data-page="cohort.html"] svg [fill="#c9ad6a"], body[data-page="cohort.html"] svg [stroke="#c9ad6a"] { opacity: 0.9; }
body[data-page="cohort.html"] .cur-card { background: #171717 !important; border: 1px solid rgba(255,255,255,0.09) !important; box-shadow: 0 30px 80px -40px rgba(0,0,0,0.9) !important; border-radius: 16px; }
body[data-page="cohort.html"] .cur-card.surprise { background: #171717 !important; border-style: dashed !important; border-color: rgba(201,173,106,0.4) !important; }
body[data-page="cohort.html"] .cc-week { font-family: 'Instrument Serif', Georgia, serif !important; font-style: italic; font-weight: 400; font-size: 1.35rem; background: none !important; -webkit-text-fill-color: #e9c979 !important; color: #e9c979; letter-spacing: 0; }
body[data-page="cohort.html"] .cc-phase { background: transparent !important; border-color: rgba(255,255,255,0.12) !important; color: #9a9a9a !important; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; }
body[data-page="cohort.html"] .cc-phase.money { color: #c9ad6a !important; border-color: rgba(201,173,106,0.35) !important; }
body[data-page="cohort.html"] .cur-card h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; color: #f0ece4; }
body[data-page="cohort.html"] .comp-card, body[data-page="cohort.html"] .comp-card.biz { background: rgba(255,255,255,0.025) !important; border: 1px solid rgba(255,255,255,0.08) !important; }
body[data-page="cohort.html"] .cc-role { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.35rem; color: #f0ece4; }
body[data-page="cohort.html"] .cc-line b { color: #f0ece4 !important; -webkit-text-fill-color: #f0ece4 !important; background: none !important; font-family: 'Inter', system-ui, sans-serif; font-weight: 500; }
body[data-page="cohort.html"] .out-sub { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.45rem; color: #d9d5cd; }
body[data-page="cohort.html"] .mario-font, body[data-page="cohort.html"] .game-font { font-family: 'Instrument Serif', Georgia, serif !important; font-style: italic; letter-spacing: 0; text-transform: none; }
body[data-page="cohort.html"] .lab-col .game-font { font-size: 1.5rem !important; }
body[data-page="cohort.html"] .vt-media, body[data-page="cohort.html"] .ev-tile { background: linear-gradient(160deg, #1c1c1c, #141414) !important; border-color: rgba(255,255,255,0.08) !important; }
body[data-page="cohort.html"] .vt-play { background: #f6f2ea !important; color: #121212 !important; box-shadow: none !important; animation: none !important; }
body[data-page="cohort.html"] .ev-tile span { color: #6f6b64; font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; }
/* planet horizon */
.hp-planet { position: absolute; inset: 0; width: 100%; height: 100%; opacity: 0.9; }
.hp-hero::after { height: 34%; }
/* mentors: slow right-to-left drift */
.hp-board-marquee { margin-top: 52px; overflow: hidden; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.hp-board-track { display: flex; gap: 0; width: max-content; animation: boardDrift 70s linear infinite; }
.hp-board-marquee:hover .hp-board-track { animation-play-state: paused; }
.hp-board-track > div { flex: 0 0 auto; width: 170px; margin: 0 22px; text-align: center; }
.hp-board-track .hp-ph { aspect-ratio: 1/1; border-radius: 50%; border: 1px solid rgba(255,255,255,0.1); padding: 3px; background: #121212; }
.hp-board-track .hp-ph img { border-radius: 50%; filter: saturate(0.85) contrast(1.04); transition: transform 0.5s var(--ease), filter 0.4s; }
.hp-board-track > div:hover .hp-ph img { transform: scale(1.04); filter: none; }
.hp-board-track h4 { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.12rem; color: #f0ece4; line-height: 1.2; }
.hp-board-track span { display: block; margin-top: 4px; font-size: 0.64rem; letter-spacing: 0.06em; text-transform: uppercase; color: #7a7a7a; line-height: 1.4; }
@keyframes boardDrift { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) { .hp-board-track { animation: none; } }
@media (max-width: 720px) { .hp-board-track > div { width: 130px; margin: 0 14px; } }

/* =========================================================
   QUIET PAGES — shared components for enterprise, corporate, hire, careers, mentors
   ========================================================= */
.q-hero { position: relative; min-height: 78vh; display: flex; align-items: center; padding: 160px 0 100px; overflow: hidden; background: #121212; }
.q-h1 { font-size: clamp(2.4rem, 5vw, 4.4rem); }
.q-hero .ab-sub { max-width: 680px; }
.q-sec { padding: 100px 0; background: #121212; border-top: 1px solid rgba(255,255,255,0.06); }
.q-sec .ab-lead { margin-top: 18px; }
.q-ruled { margin-top: 56px; }
.q-sec.six .q-ruled { grid-template-columns: repeat(3, 1fr); }
.q-sec.six .q-ruled > div:nth-child(4), .q-sec.six .q-ruled > div:nth-child(7) { border-left: 0; padding-left: 0; }
.q-sec.six .q-ruled > div:nth-child(n+4) { border-top: 1px solid rgba(255,255,255,0.08); }
.q-sec .hp-steps, .q-stats { margin-top: 56px; }
.q-stats { border-top: 1px solid rgba(255,255,255,0.08); }
.q-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 52px; }
.hp-quotes.one { grid-template-columns: 1fr; max-width: 820px; margin: 30px auto 0; border-top: 0; }
.hp-quotes.one figure { border-left: 0; padding: 0; text-align: center; }
.hp-quotes.one blockquote { font-size: 1.7rem; }
.hp-quotes.one figcaption { justify-content: center; }
.q-band { padding: 90px 40px; }
.q-band .hp-field { position: absolute; inset: 0; z-index: 0; }
.q-band .hp-light.a { width: 60%; height: 200%; left: -20%; top: -80%; }
.q-band .hp-light.b { width: 60%; height: 200%; right: -20%; bottom: -80%; }
.q-form-wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 56px; align-items: start; }
.q-form { border: 1px solid rgba(255,255,255,0.09); border-radius: 16px; padding: 32px; background: #171717; position: relative; }
.q-form .br-field label em { font-style: normal; color: #6f6b64; text-transform: none; letter-spacing: 0; }
.q-form .br-field textarea { width: 100%; min-height: 120px; padding: 13px 14px; border-radius: 10px; border: 1px solid rgba(255,255,255,0.12); background: rgba(255,255,255,0.03); color: #f0ece4; font-family: inherit; font-size: 0.98rem; resize: vertical; }
.q-form .br-field textarea:focus { outline: none; border-color: rgba(201,173,106,0.6); }
.q-board { margin-top: 56px; }
.q-board .ab-card .ab-photo { aspect-ratio: 4/4.2; }
.q-board .ab-card .ab-photo img { filter: saturate(0.85) contrast(1.04); }
.q-board .ab-card h3 { font-size: 1.5rem; margin-top: 16px; }
.q-board .q-role { margin-top: 4px !important; font-size: 0.68rem !important; letter-spacing: 0.12em; text-transform: uppercase; color: #c9ad6a !important; }
@media (max-width: 900px) {
  .q-hero { min-height: 0; padding: 130px 0 70px; }
  .q-sec.six .q-ruled, .q-cards, .q-form-wrap { grid-template-columns: 1fr; }
  .q-sec.six .q-ruled > div { border-left: 0; padding-left: 0; }
  .q-band { padding: 60px 22px; }
}
.hp-steps.four { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .hp-steps.four { grid-template-columns: 1fr; } }
body[data-page="cohort.html"] .price-anchor { color: #7a7a7a; text-decoration: line-through; text-decoration-color: rgba(201,173,106,0.7); font-family: 'Inter', system-ui, sans-serif; font-weight: 500; font-size: 1.05rem; letter-spacing: 0.02em; }
body[data-page="cohort.html"] .price-now.serif-price { font-family: 'Instrument Serif', Georgia, serif !important; font-style: italic; font-weight: 400; font-size: clamp(2rem, 3.4vw, 2.7rem); color: #f0ece4; -webkit-text-fill-color: #f0ece4; background: none !important; line-height: 1.1; margin-top: 8px; }
body[data-page="cohort.html"] .price-sub { color: #9a9a9a; }

/* =========================================================
   MOBILE — one pass for every page
   ========================================================= */
@media (max-width: 720px) {
  /* headlines: never force a break, tighter sizes, no orphan typed words */
  h1 br, h2 br, .ab-h1 br, .ab-h2 br, .ab-h3 br, .hp-h1 br, .q-h1 br, .section-title br, .display br, .cta-band h2 br { display: none; }
  .ab-h1, .hp-h1, .q-h1, h1.display { font-size: clamp(2.05rem, 9.2vw, 2.7rem) !important; line-height: 1.1 !important; letter-spacing: -0.01em; }
  .ab-h2, h2.section-title { font-size: clamp(1.65rem, 7.4vw, 2.1rem) !important; line-height: 1.15 !important; }
  .ab-h3 { font-size: 1.45rem !important; }
  .hp-type, .ab-type { white-space: normal; }
  .ab-sub, .ab-lead, .lead { font-size: 1rem !important; line-height: 1.6; }
  .hp-kicker, .ab-kicker { font-size: 0.64rem; letter-spacing: 0.18em; }
  .hp-hero, .q-hero, .ab-hero { padding: 120px 0 64px !important; min-height: 0 !important; }
  .hp-cta { flex-direction: column; gap: 16px; }
  .hp-cta .btn { width: 100%; justify-content: center; }
  .hp-trust { font-size: 0.72rem; line-height: 1.6; letter-spacing: 0.02em; }
  .wrap { padding-left: 20px; padding-right: 20px; }
  /* logos: smaller, more per screen */
  .hp-logos .logo-tile { height: 56px; padding: 0 20px; }
  .hp-logos .logo-tile img { height: 20px !important; max-width: 104px !important; }
  .hp-logos .logo-tile img.lg { height: 26px !important; }
  .hp-logos .marquee-track { animation-duration: 30s; }
  /* sections and ruled lists: tighter rhythm */
  .q-sec, .hp-why, .hp-programs, .hp-method, .hp-mentors, .hp-words, .hp-film, .ab-proof, .ab-eco, .ab-team, .ab-give { padding: 64px 0 !important; }
  .hp-aud { margin-top: 32px; }
  .hp-aud > div { padding: 18px 0 20px; }
  .hp-aud h4 { font-size: 1.3rem; margin-top: 8px; }
  .hp-aud p { font-size: 0.9rem; }
  .q-ruled, .q-cards, .hp-prog-grid, .hp-steps, .q-stats, .hp-quotes, .q-board, .ab-board, .ab-grid { margin-top: 32px !important; }
  .hp-steps > div { padding: 18px 0 20px; }
  .hp-stats > div { padding: 20px 0 4px; }
  .hp-stats b { font-size: 2.2rem; }
  .hp-prog.featured { padding: 26px 22px 24px; }
  .hp-prog.featured h3 { font-size: 1.9rem; }
  .hp-prog { padding: 24px 22px; }
  .hp-ships { gap: 12px; }
  .hp-ships li { font-size: 1.1rem; padding: 10px 14px; }
  .hp-quotes figure { padding: 22px 0 24px; }
  .hp-quotes blockquote { font-size: 1.15rem; }
  .hp-board-track > div { width: 118px; margin: 0 10px; }
  .hp-board-track h4 { font-size: 1rem; }
  .hp-board-track span { font-size: 0.56rem; }
  .ab-band, .q-band { padding: 48px 20px !important; border-radius: 14px; }
  .ab-band .btn, .q-band .btn { width: 100%; justify-content: center; }
  .ab-close { padding: 0 0 64px !important; }
  .ab-box { padding: 20px 18px; }
  .ab-ico { width: 44px; height: 44px; margin-bottom: 16px; }
  .ab-org { min-height: 300px; padding: 30px 16px 22px; }
  .org-node { font-size: 0.62rem; padding: 7px 10px; }
  .ab-card { padding: 14px 14px 20px; }
  .ab-card h3 { font-size: 1.4rem; }
  .ab-give-card { padding: 16px; gap: 18px; }
  .ab-give-photo { order: -1; }
  .ab-give-text h3 { font-size: 1.45rem; }
  .film { border-radius: 14px; }
  .film .film-play { width: 60px; height: 60px; }
  .q-form { padding: 20px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 26px; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; gap: 14px; text-align: center; }
  .nav-inner { height: 64px; }
  .brand.wordmark img { height: 18px; }
  /* cohort page */
  body[data-page="cohort.html"] .topbar { font-size: 0.7rem; padding: 8px 12px; white-space: normal; line-height: 1.4; }
  body[data-page="cohort.html"] .topbar a { display: none; }
  body[data-page="cohort.html"] .ar-section .split { grid-template-columns: 1fr !important; gap: 22px !important; }
  body[data-page="cohort.html"] .ar-section .split-media { order: -1; }
  body[data-page="cohort.html"] .ar-section .split-media svg, body[data-page="cohort.html"] .ar-section .split-media > * { max-width: 320px; margin: 0 auto; }
  body[data-page="cohort.html"] .ar-section .lead { text-align: center; }
  body[data-page="cohort.html"] .ar-section .eyebrow { display: inline-flex; }
  body[data-page="cohort.html"] .ar-section > .wrap > div:not(.split-media) { text-align: center; }
  body[data-page="cohort.html"] .split { grid-template-columns: 1fr !important; }
  body[data-page="cohort.html"] .cur-card { padding: 22px 18px; position: static !important; }
  body[data-page="cohort.html"] .cur-card h3 { font-size: 1.25rem; }
  body[data-page="cohort.html"] .cc-head { flex-wrap: wrap; gap: 8px; }
  body[data-page="cohort.html"] .price-card { padding: 22px 18px; }
  body[data-page="cohort.html"] .apply-box { padding: 20px 16px; }
  body[data-page="cohort.html"] .eyebrow { white-space: normal; text-align: center; line-height: 1.5; }
}
.footer .socials a svg { width: 16px; height: 16px; display: block; }
@media (max-width: 900px) {
  body[data-page="cohort.html"] #curriculum .cur-split, body[data-page="cohort.html"] .cur-split { display: block !important; }
  body[data-page="cohort.html"] .cur-split > *, body[data-page="cohort.html"] .cur-intro, body[data-page="cohort.html"] .cur-stack, body[data-page="cohort.html"] .cur-card { position: static !important; top: auto !important; }
  body[data-page="cohort.html"] .cur-split > div:first-child { margin-bottom: 28px; }
  body[data-page="cohort.html"] .cur-card { margin-bottom: 14px; }
  body[data-page="cohort.html"] .curriculum-fade::after { display: none !important; }
}

/* ---- Press line: as featured in ---- */
.press-line { display: flex; align-items: center; justify-content: center; gap: 28px; flex-wrap: wrap; margin: 0 0 44px; }
.press-logos { display: inline-flex; align-items: center; gap: 34px; }
.press-logos img { height: 22px; width: auto; filter: brightness(0) invert(1) opacity(0.8); transition: filter 0.35s; }
.press-logos img.press-forbes { height: 26px; }
.press-logos img.press-toi { height: 18px; }
.press-logos img:hover { filter: brightness(0) invert(1) opacity(1); }
.ab-proof .press-line { margin: 44px 0 6px; }
@media (max-width: 720px) { .press-line { gap: 14px; margin-bottom: 30px; } .press-logos { gap: 22px; } .press-logos img.press-forbes { height: 20px; } .press-logos img.press-toi { height: 14px; } }

/* ---- Cohort v5: static logo walls, icon grid, board, lab flow, ledgers, gated form ---- */
.logo-wall { display: grid; grid-template-columns: repeat(7, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.08); border-left: 1px solid rgba(255,255,255,0.08); margin-top: 34px; }
.logo-wall .logo-tile { min-width: 0; height: 92px; padding: 0 18px; border: 0; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; background: none; box-shadow: none; }
.logo-wall .logo-tile img { height: 24px; width: auto; max-width: 110px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.72); transition: filter 0.3s; }
.logo-wall .logo-tile img.lg { height: 30px; } .logo-wall .logo-tile img.sm { height: 18px; }
.logo-wall .logo-tile img.solid { filter: grayscale(1) brightness(1.3) opacity(0.75); }
.logo-wall .logo-tile:hover img { filter: brightness(0) invert(1) opacity(1); } .logo-wall .logo-tile:hover img.solid { filter: none; }
.dif-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 44px; }
.dif { padding: 28px 26px 26px; border: 1px solid rgba(255,255,255,0.09); border-radius: 14px; background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01)); transition: border-color 0.3s; }
.dif:hover { border-color: rgba(201,173,106,0.45); }
.dif-top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.dif-ico { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 11px; border: 1px solid rgba(201,173,106,0.45); color: #c9ad6a; }
.dif-ico svg { width: 20px; height: 20px; }
.dif-top i { font-family: 'Instrument Serif', Georgia, serif; font-style: italic; color: rgba(201,173,106,0.7); }
.dif h3 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.45rem; color: #f0ece4; }
.dif p { margin-top: 8px; color: #b3b3b3; font-size: 0.93rem; line-height: 1.6; }
.co-board { grid-template-columns: repeat(8, 1fr); }
.lab-flow { display: grid; grid-template-columns: repeat(4, 1fr); margin-top: 48px; border-top: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); }
.lab-step { position: relative; padding: 34px 28px 36px; border-left: 1px solid rgba(255,255,255,0.08); }
.lab-step:first-child { border-left: 0; padding-left: 0; }
.lab-step i { display: block; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 2.2rem; line-height: 1; color: #c9ad6a; }
.lab-step h3 { margin-top: 16px; font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.7rem; color: #f0ece4; }
.lab-step p { margin-top: 8px; color: #9a9a9a; font-size: 0.93rem; line-height: 1.6; }
.lab-step::after { content: '→'; position: absolute; right: -9px; top: 40px; color: rgba(201,173,106,0.6); font-size: 1rem; background: #121212; padding: 0 4px; }
.lab-step:last-child::after { display: none; }
.lab-foot { margin-top: 26px; color: #8f8f8f; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 1.15rem; }
.earn-ledgers { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 10px; }
.ledger-head, .ledger-row { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 12px; align-items: baseline; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.ledger-head { font-size: 0.66rem; letter-spacing: 0.16em; text-transform: uppercase; color: #8f8f8f; border-bottom-color: rgba(201,173,106,0.35); }
.ledger-head span:first-child { color: #c9ad6a; }
.ledger-row b { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.2rem; color: #f0ece4; }
.ledger-row span { color: #d9d5cd; font-size: 0.95rem; }
body[data-page="cohort.html"] .apply-box .af-otp { background: linear-gradient(180deg, #f1d68f 0%, #d9b665 48%, #b8923f 100%) !important; color: #1a1200 !important; border: 1px solid rgba(255,225,150,0.55) !important; font-weight: 600; white-space: nowrap; }
body[data-page="cohort.html"] .apply-box .af-otp.sent { background: transparent !important; color: #9bcf9b !important; border-color: rgba(155,207,155,0.4) !important; }
body[data-page="cohort.html"] .apply-box .af-submit[data-locked] { background: rgba(255,255,255,0.06) !important; color: #7a7a7a !important; border: 1px solid rgba(255,255,255,0.1) !important; box-shadow: none !important; cursor: not-allowed; }
body[data-page="cohort.html"] .apply-box .af-alt { text-align: center; margin-top: 14px; }
body[data-page="cohort.html"] .apply-box .af-alt a { color: #e9c979 !important; border-bottom: 1px solid rgba(233,201,121,0.35); }
@media (max-width: 900px) {
  .logo-wall { grid-template-columns: repeat(3, 1fr); } .logo-wall .logo-tile { height: 70px; padding: 0 10px; } .logo-wall .logo-tile img { height: 18px; max-width: 84px; }
  .dif-grid { grid-template-columns: 1fr; } .co-board { grid-template-columns: repeat(4, 1fr); }
  .lab-flow { grid-template-columns: 1fr; } .lab-step { border-left: 0; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); } .lab-step:first-child { border-top: 0; } .lab-step::after { display: none; }
  .earn-ledgers { grid-template-columns: 1fr; gap: 26px; }
  .ledger-head, .ledger-row { grid-template-columns: 1.4fr 1fr 1fr; gap: 8px; } .ledger-row b { font-size: 1.05rem; } .ledger-row span { font-size: 0.82rem; }
}

/* ---- Cohort v6: contained marquees, authority strip, editorial demand, snake, icons, smoke band ---- */
body[data-page="cohort.html"] section { overflow: hidden; }
body[data-page="cohort.html"] .marquee { max-width: 100%; }
.dif-marquee { margin-top: 44px; -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent); }
.dif-track { gap: 14px; animation-duration: 60s; align-items: stretch; }
.dif-track .dif { flex: 0 0 340px; }
.dif-marquee:hover .dif-track { animation-play-state: paused; }
.co-auth { padding: 54px 0 46px; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
.co-auth .press-line { margin-bottom: 40px; }
.co-logos { margin-top: 24px; gap: 4px; }
.co-logos .logo-rows::before { display: none; }
.co-logos .marquee-track { gap: 0; animation-duration: 48s; }
.co-logos .marquee-track.rev { animation-duration: 54s; }
.co-logos .logo-tile { min-width: 0; height: 74px; padding: 0 40px; border: 0; background: none; box-shadow: none; border-radius: 0; }
.co-logos .logo-tile img { height: 26px; width: auto; max-width: 150px; object-fit: contain; filter: brightness(0) invert(1) opacity(0.75); }
.co-logos .logo-tile img.lg { height: 34px; max-width: 170px; } .co-logos .logo-tile img.sm { height: 20px; }
.co-logos .logo-tile img.solid { filter: grayscale(1) brightness(1.3) opacity(0.75); }
.demand-grid { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid rgba(255,255,255,0.08); border-left: 1px solid rgba(255,255,255,0.08); }
.dq { padding: 36px 34px 32px; border-right: 1px solid rgba(255,255,255,0.08); border-bottom: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; margin: 0; }
.dq blockquote { font-family: 'Instrument Serif', Georgia, serif; font-size: 1.45rem; line-height: 1.45; color: #e4e0d8; flex: 1; margin: 0; }
.dq figcaption { margin-top: 24px; display: flex; align-items: center; }
.dq .press-logo { height: 18px; width: auto; filter: brightness(0) invert(1) opacity(0.75); }
.dq .press-word { font-family: 'Inter', system-ui, sans-serif; font-weight: 700; font-size: 1.05rem; color: #d9d5cd; letter-spacing: -0.01em; }
.dq .dl-dot { color: #c9ad6a; }
.op-snake { display: grid; grid-template-columns: repeat(3, 1fr); gap: 44px 56px; position: relative; }
.op-snake .op-step { position: relative; }
.op-snake .op-step::after { position: absolute; color: #c9ad6a; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.6rem; line-height: 1; opacity: 0.85; }
.op-snake .r::after { content: '→'; right: -40px; top: 50%; transform: translateY(-50%); }
.op-snake .d::after { content: '↓'; left: 50%; bottom: -36px; transform: translateX(-50%); }
.op-snake .l::after { content: '←'; left: -40px; top: 50%; transform: translateY(-50%); }
body[data-page="cohort.html"] .op-n { font-size: 1.9rem !important; }
body[data-page="cohort.html"] .g-seal { width: 56px; height: 56px; border-radius: 50%; border: 1px solid rgba(201,173,106,0.55) !important; background: transparent !important; display: grid; place-items: center; color: #c9ad6a; margin: 0 auto 18px; box-shadow: none !important; }
body[data-page="cohort.html"] .g-seal svg { width: 24px; height: 24px; }
body[data-page="cohort.html"] .as-ico { width: 44px; height: 44px; border-radius: 11px; border: 1px solid rgba(201,173,106,0.45) !important; background: transparent !important; color: #c9ad6a; display: grid; place-items: center; flex-shrink: 0; box-shadow: none !important; }
body[data-page="cohort.html"] .as-ico svg { width: 20px; height: 20px; }
body[data-page="cohort.html"] .co-final { position: relative; overflow: hidden; background: #171717 !important; }
body[data-page="cohort.html"] .co-final .smoke { position: absolute; inset: 0; z-index: 0; }
body[data-page="cohort.html"] .co-final .smoke video { opacity: 0.32; }
body[data-page="cohort.html"] .co-final > *:not(.smoke) { position: relative; z-index: 2; }
body[data-page="cohort.html"] .co-final::before { display: none; }
@media (max-width: 900px) {
  .dif-track .dif { flex-basis: 280px; }
  .co-logos .logo-tile { height: 56px; padding: 0 20px; } .co-logos .logo-tile img { height: 20px; max-width: 104px; }
  .demand-grid { grid-template-columns: 1fr; } .dq { padding: 22px 18px; } .dq blockquote { font-size: 1.15rem; }
  .op-snake { grid-template-columns: 1fr; gap: 34px; }
  .op-snake .op-step::after { content: '↓' !important; left: 50% !important; right: auto !important; top: auto !important; bottom: -30px !important; transform: translateX(-50%) !important; }
  .op-snake .op-step:last-child::after { display: none; }
  .op-snake .a6 { order: 6; } .op-snake .a5 { order: 5; } .op-snake .a4 { order: 4; }
  .op-snake .a4::after, .op-snake .a5::after { content: '↓' !important; } .op-snake .a6::after { display: none; } .op-snake .a3::after { content: '↓' !important; }
}
/* v6 fixes: sticky curriculum restored, board contained, admission rows */
body[data-page="cohort.html"] section { overflow: clip; }
body[data-page="cohort.html"] #curriculum { overflow: visible; }
body[data-page="cohort.html"] .wrap .hp-board-marquee { margin-top: 0; max-width: 100%; }
.co-press { margin: 44px 0 0; }
body[data-page="cohort.html"] .admit-steps::before { display: none !important; }
body[data-page="cohort.html"] .admit-steps { gap: 0; border-top: 1px solid rgba(255,255,255,0.08); }
body[data-page="cohort.html"] .admit-step { border: 0 !important; border-bottom: 1px solid rgba(255,255,255,0.08) !important; border-radius: 0; background: transparent !important; padding: 22px 0; gap: 20px; }
body[data-page="cohort.html"] .admit-step:hover { transform: none; background: transparent !important; }
body[data-page="cohort.html"] .admit-step h4 { font-family: 'Instrument Serif', Georgia, serif; font-weight: 400; font-size: 1.35rem; color: #f0ece4; }

/* ---- Cohort proof: hero strip, outcome quotes, video grid ---- */
body[data-page="cohort.html"] .hero-proof { display: flex; align-items: center; justify-content: center; gap: 12px; padding: 14px 18px 4px; font-size: 0.78rem; color: #9a9a9a !important; flex-wrap: wrap; }
body[data-page="cohort.html"] .hero-proof b { color: #f0ece4 !important; }
.hp-faces { display: inline-flex; }
.hp-faces img { width: 28px; height: 28px; border-radius: 50%; object-fit: cover; border: 2px solid #171717; margin-left: -8px; filter: saturate(0.85); }
.hp-faces img:first-child { margin-left: 0; }
.co-quotes { grid-template-columns: repeat(3, 1fr); border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0; }
.co-quotes figure { padding: 28px 26px 26px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.co-quotes figure:nth-child(3n+1) { border-left: 0; padding-left: 0; }
.co-quotes blockquote { font-size: 1.22rem; }
.co-quotes figcaption { margin-top: 18px; }
.vt-section { padding: 100px 0; }
.vt-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.vt { margin: 0; cursor: pointer; }
.vt-frame { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; background: #171717; border: 1px solid rgba(255,255,255,0.08); }
.vt-frame img { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.8) contrast(1.04); transition: transform 0.6s var(--ease), filter 0.4s; }
.vt:hover .vt-frame img { transform: scale(1.03); filter: none; }
.vt-frame video { position: absolute; inset: 0; width: 100%; height: 100%; background: #000; z-index: 3; }
.film-play.small { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 52px; height: 52px; border-radius: 50%; background: #fff; display: grid; place-items: center; box-shadow: 0 14px 40px -14px rgba(0,0,0,0.8); animation: none; z-index: 2; }
.film-play.small svg { width: 18px; height: 18px; color: #121212; margin-left: 3px; }
.vt.playing .film-play.small { display: none; }
.vt figcaption { margin-top: 12px; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.05rem; line-height: 1.35; color: #e4e0d8; }
.vt figcaption span { display: block; margin-top: 4px; font-family: 'Inter', system-ui, sans-serif; font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7a7a7a; }
@media (max-width: 900px) {
  .co-quotes { grid-template-columns: 1fr; } .co-quotes figure { border-left: 0; padding: 20px 0; }
  .vt-grid { grid-template-columns: 1fr 1fr; gap: 12px; } .vt-section { padding: 64px 0; }
  .vt figcaption { font-size: 0.92rem; }
}
/* ---- video card v2: shaded frame, face + caption overlay ---- */
.vt-frame { aspect-ratio: 4/5; }
.vt-bg { width: 100%; height: 100%; object-fit: cover; filter: saturate(0.7) contrast(1.05); }
.vt-shade { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(18,18,18,0.05) 30%, rgba(18,18,18,0.55) 62%, rgba(18,18,18,0.94) 100%); z-index: 1; }
.vt-cap { position: absolute; left: 14px; right: 14px; bottom: 14px; z-index: 2; display: flex; gap: 10px; align-items: flex-end; }
.vt-face { width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,173,106,0.6); flex-shrink: 0; }
.vt-cap p { font-family: 'Instrument Serif', Georgia, serif; font-size: 1rem; line-height: 1.3; color: #f0ece4; }
.vt-cap span { display: block; margin-top: 4px; font-size: 0.58rem; letter-spacing: 0.14em; text-transform: uppercase; color: #a8a8a8; }
.vt.playing .vt-shade, .vt.playing .vt-cap { display: none; }
.film-play.small { top: 42%; }
.co-quotes figcaption { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.co-quotes figcaption > span:last-child { order: 0; }
.q-med { order: 1; width: 46px; height: 46px; border-radius: 50%; border: 1px solid rgba(201,173,106,0.55); display: grid; place-items: center; font-family: 'Instrument Serif', Georgia, serif; font-size: 1rem; color: #e9c979; background: radial-gradient(circle at 50% 30%, rgba(201,173,106,0.12), transparent 70%); flex-shrink: 0; overflow: hidden; }
.q-med img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) { .vt-frame { aspect-ratio: 4/5; } .vt-cap p { font-size: 0.86rem; } }
.vt-frame img.vt-face { position: static; width: 36px; height: 36px; border-radius: 50%; object-fit: cover; border: 1px solid rgba(201,173,106,0.6); flex-shrink: 0; filter: none; transform: none; }
.vt-frame img.vt-bg { position: absolute; inset: 0; }
.hp-quotes figcaption .q-med { order: 0; }
.hp-quotes figcaption > span:last-child { order: 1; }
.hp-quotes figcaption { justify-content: flex-start; }
.co-quotes figcaption { justify-content: space-between; }
.co-quotes figcaption .q-med { order: 1; }
.co-quotes figcaption > span:last-child { order: 0; }
body[data-page="cohort.html"] .ar-section .q-stats { margin-top: 0; }
/* ---- final proof pass: branded video cards, faces on quotes, certificate v2, gold icons ---- */
.vt-frame img.vt-bg.card { filter: none; }
.vt:hover .vt-frame img.vt-bg.card { transform: scale(1.02); filter: none; }
.film-play.small { top: 62%; left: auto; right: 22px; transform: none; }
.q-med img { width: 100%; height: 100%; object-fit: cover; display: block; filter: saturate(0.85); }
body[data-page="cohort.html"] .admit-step .as-ico, body[data-page="cohort.html"] .as-ico { background: transparent !important; color: #c9ad6a !important; box-shadow: none !important; border-radius: 11px !important; border: 1px solid rgba(201,173,106,0.45) !important; width: 44px !important; height: 44px !important; }
body[data-page="cohort.html"] .as-ico svg { stroke: #c9ad6a; }
body[data-page="cohort.html"] .g-seal svg { stroke: #c9ad6a; }
.cert2 { position: relative; background: linear-gradient(180deg, #1a1a1a, #121212); border: 1px solid rgba(201,173,106,0.45); border-radius: 12px; padding: 34px 36px 30px; box-shadow: 0 40px 100px -40px rgba(0,0,0,0.9), inset 0 0 0 1px rgba(255,255,255,0.03); text-align: center; overflow: hidden; }
.cert2::before { content: ''; position: absolute; inset: 10px; border: 1px solid rgba(201,173,106,0.18); border-radius: 8px; pointer-events: none; }
.cert2-rule { position: absolute; left: 0; right: 0; top: 0; height: 3px; background: linear-gradient(90deg, transparent, #c9ad6a, transparent); }
.cert2-head { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.cert2-head img { height: 16px; width: auto; }
.cert2-head span { font-size: 0.58rem; letter-spacing: 0.22em; text-transform: uppercase; color: #7a7a7a; }
.cert2-seal { width: 54px; height: 54px; margin: 22px auto 0; border-radius: 50%; border: 1px solid rgba(201,173,106,0.6); display: grid; place-items: center; color: #c9ad6a; background: radial-gradient(circle at 50% 30%, rgba(201,173,106,0.14), transparent 70%); }
.cert2-seal svg { width: 22px; height: 22px; }
.cert2-k { margin-top: 18px; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: #8f8f8f; }
.cert2-name { margin-top: 8px; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 1.6rem; color: #e9c979; }
.cert2-title { margin-top: 14px; font-family: 'Instrument Serif', Georgia, serif; font-size: 1.9rem; line-height: 1.15; color: #f0ece4; }
.cert2-title i { color: #c9ad6a; }
.cert2-sub { margin: 12px auto 0; max-width: 340px; font-size: 0.82rem; line-height: 1.55; color: #9a9a9a; }
.cert2-foot { display: flex; justify-content: space-between; align-items: flex-end; margin-top: 28px; padding-top: 18px; border-top: 1px solid rgba(201,173,106,0.25); font-size: 0.6rem; letter-spacing: 0.12em; text-transform: uppercase; color: #7a7a7a; }
.cert2-foot b { display: block; font-family: 'Instrument Serif', Georgia, serif; font-style: italic; font-size: 1rem; letter-spacing: 0; text-transform: none; color: #e9c979; margin-bottom: 4px; }
.cert2-no { color: #c9ad6a; }
@media (max-width: 900px) { .cert2 { padding: 26px 20px 22px; } .cert2-title { font-size: 1.5rem; } .cert2-foot { flex-wrap: wrap; gap: 12px; justify-content: center; text-align: center; } }
.in-flag { width: 15px; height: 10px; display: inline-block; vertical-align: -1px; margin: 0 1px 0 3px; border-radius: 1px; }
body[data-page="cohort.html"] .hook2 { font-size: clamp(2.1rem, 3.6vw, 3.3rem) !important; }
body[data-page="cohort.html"] .hook2 .grad-strong { white-space: nowrap; }
@media (max-width: 900px) { body[data-page="cohort.html"] .hook2 .grad-strong { white-space: normal; } }
body[data-page="cohort.html"] .cohort-hero .eyebrow { font-size: 0.66rem; letter-spacing: 0.14em; white-space: nowrap; padding: 6px 12px; }
@media (max-width: 900px) { body[data-page="cohort.html"] .cohort-hero .eyebrow { white-space: normal; } }
