/* ============================================================
   DEMAND SCHOOL — style.css
   Standalone site. Does NOT import or reference the Desgro Media
   portfolio's CSS/JS/assets — all fonts/tokens are local to this folder.
   ============================================================ */

/* Clash Display — headlines (--font-display) */
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:200; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Extralight.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Extralight.woff') format('woff'); }
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:300; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Light.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Light.woff') format('woff'); }
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:400; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Regular.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Regular.woff') format('woff'); }
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:500; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Medium.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Medium.woff') format('woff'); }
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:600; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Semibold.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Semibold.woff') format('woff'); }
@font-face { font-family:'ClashDisplay'; font-style:normal; font-weight:700; font-display:swap; src:url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Bold.woff2') format('woff2'), url('fonts/ClashDisplay_Complete/ClashDisplay_Complete/Fonts/WEB/fonts/ClashDisplay-Bold.woff') format('woff'); }

/* Mundial — body copy (--font-body) */
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:100; font-display:swap; src:url('fonts/mundial/MundialHair.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:100; font-display:swap; src:url('fonts/mundial/MundialHairItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:200; font-display:swap; src:url('fonts/mundial/MundialThin.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:200; font-display:swap; src:url('fonts/mundial/MundialThinItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:300; font-display:swap; src:url('fonts/mundial/MundialLight.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:300; font-display:swap; src:url('fonts/mundial/MundialLightItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:400; font-display:swap; src:url('fonts/mundial/MundialRegular.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:400; font-display:swap; src:url('fonts/mundial/MundialItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:600; font-display:swap; src:url('fonts/mundial/MundialDemibold.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:600; font-display:swap; src:url('fonts/mundial/MundialDemiboldItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:700; font-display:swap; src:url('fonts/mundial/MundialBold.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:700; font-display:swap; src:url('fonts/mundial/MundialBoldItalic.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:normal;  font-weight:900; font-display:swap; src:url('fonts/mundial/MundialBlack.otf') format('opentype'); }
@font-face { font-family:'Mundial'; font-style:italic;  font-weight:900; font-display:swap; src:url('fonts/mundial/MundialBlackItalic.otf') format('opentype'); }

:root {
  --green:      #2ab460;
  --green-dark: #15382e;
  --black:      #000000;
  --white:      #ffffff;
  --grey:       #8a9a94;
  --nav-h:      60px;
  --font-display: 'ClashDisplay', sans-serif;
  --font-body:    'Mundial', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 32px;
  background: rgba(0,0,0,0.97);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.nav-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; cursor: pointer; }
.logo-img { height: 26px; width: auto; }

.nav-links { display: flex; list-style: none; gap: 32px; }
.nav-links a {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: color 0.25s ease;
}
.nav-links a:hover { color: var(--white); }
.nav-links a.nav-active {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 6px;
  text-decoration-color: var(--green);
}

.nav-right { display: flex; align-items: center; gap: 14px; }

.nav-circle-btn {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.22);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}
.nav-circle-btn svg { width: 16px; height: 16px; }
@media (hover: hover) {
  .nav-circle-btn:hover { border-color: var(--green); color: var(--white); background: rgba(42,180,96,0.1); }
}

.btn-get-started {
  background: var(--green);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 24px;
  border: none;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
}
.btn-get-started:hover { background: #1f9450; transform: translateY(-1px); }

.nav-hamburger {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 10px;
  background: transparent;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), opacity 0.25s ease, width 0.25s ease;
}
.nav-hamburger span:nth-child(1) { width: 20px; }
.nav-hamburger span:nth-child(2) { width: 15px; }
.nav-hamburger span:nth-child(3) { width: 10px; }
.nav-hamburger.active { border-color: var(--green); background: rgba(42,180,96,0.08); }
.nav-hamburger.active span:nth-child(1) { width: 18px; transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { width: 18px; transform: translateY(-7px) rotate(-45deg); }
@media (hover: hover) {
  .nav-hamburger:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
}

.mobile-nav {
  position: fixed; inset: 0;
  z-index: 1001;
  background: rgba(0,0,0,0.97);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}
.mobile-nav.open { opacity: 1; pointer-events: auto; }
.mobile-nav ul { list-style: none; text-align: center; }
.mobile-nav ul li { margin: 10px 0; }
.mobile-nav ul a {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 10vw, 44px);
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  text-transform: uppercase;
}
@media (hover: hover) { .mobile-nav ul a:hover { color: var(--green); } }
.mobile-nav ul a:active { color: var(--green); }
.mobile-nav-cta { margin-top: 12px; font-size: 13px; padding: 14px 32px; }

.mobile-nav-close {
  position: absolute;
  top: 18px; right: 20px;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
}
.mobile-nav-close::before, .mobile-nav-close::after {
  content: '';
  position: absolute; top: 50%; left: 50%;
  width: 18px; height: 2px;
  background: var(--white);
}
.mobile-nav-close::before { transform: translate(-50%,-50%) rotate(45deg); }
.mobile-nav-close::after  { transform: translate(-50%,-50%) rotate(-45deg); }
@media (hover: hover) {
  .mobile-nav-close:hover { background: rgba(42,180,96,0.12); border-color: var(--green); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}
@media (max-width: 768px) {
  #navbar { padding: 0 20px; }
  .nav-circle-btn { display: none; }
  .btn-get-started { display: none; }
}
@media (max-width: 480px) { #navbar { padding: 0 16px; } }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: var(--nav-h);
  overflow: visible;
}

.hero-intro-wrap {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.ast-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease;
}
.ast-canvas.ast-back  { z-index: 3; }
.ast-canvas.ast-front { z-index: 15; }
.ast-canvas.ast-visible { opacity: 1; }

.hero-headline {
  position: relative; z-index: 20;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 4.4vw, 58px);
  line-height: 1.06;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
  max-width: 920px;
  margin: 0 auto;
  text-shadow:
    0 4px 0 rgba(0,0,0,0.20),
    0 12px 32px rgba(0,0,0,0.3);
}
.js-ready .hero-headline { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease 0.1s, transform 0.6s ease 0.1s; }
.js-ready .hero-headline.anim-in { opacity: 1; transform: translateY(0); }

.hero-tagline {
  position: relative; z-index: 20;
  max-width: 600px;
  margin: 22px auto 0;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.js-ready .hero-tagline { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease 0.15s, transform 0.6s ease 0.15s; }
.js-ready .hero-tagline.anim-in { opacity: 1; transform: translateY(0); }

.hero-cta-row {
  position: relative; z-index: 20;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: 14px;
  margin: 30px auto 0;
}
.js-ready .hero-cta-row { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease 0.22s, transform 0.6s ease 0.22s; }
.js-ready .hero-cta-row.anim-in { opacity: 1; transform: translateY(0); }
.hero-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  background-repeat: no-repeat;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.18), inset 0 1px 0 rgba(255,255,255,0.22), inset 0 -6px 10px -4px rgba(255,255,255,0.06);
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}
.hero-btn-solid {
  background-image: radial-gradient(130% 160% at 22% -45%, rgba(255,255,255,0.65) 0%, rgba(255,255,255,0) 55%);
  background-color: rgba(35,169,90,0.55);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.25);
}
.hero-btn-solid:hover { background-color: rgba(35,169,90,0.75); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,0.22), inset 0 1px 0 rgba(255,255,255,0.28); }
.hero-btn-outline {
  background-image: radial-gradient(130% 160% at 22% -45%, rgba(255,255,255,0.45) 0%, rgba(255,255,255,0) 55%);
  background-color: rgba(255,255,255,0.06);
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.hero-btn-outline:hover { background-color: rgba(255,255,255,0.1); border-color: var(--green); color: var(--green); transform: translateY(-2px); }

@media (max-width: 768px) {
  .hero-section { min-height: auto; }
  .hero-headline { font-size: clamp(30px, 9vw, 48px); padding: 0 24px; }
  .hero-tagline { font-size: 13px; padding: 0 24px; }
  .hero-cta-row { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-btn { padding: 13px 22px; font-size: 11px; }
  .mobile-nav ul a { font-size: 32px; }
}

/* ── Filmstrip marquee ── */
.filmstrip-section { position: relative; z-index: 20; margin-top: 48px; }
.filmstrip-row { overflow: hidden; }
.filmstrip-inner { display: flex; width: max-content; }
.filmstrip-track { display: flex; gap: 20px; padding: 0 10px; }
.filmstrip-frame {
  flex: 0 0 auto;
  width: 190px;
  height: 268px;
  border-radius: 6px;
  border: 1.5px solid rgba(255,255,255,0.06);
  box-shadow: 0 4px 18px rgba(0,0,0,0.9);
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, filter 0.4s ease;
  background: linear-gradient(160deg, var(--green-dark), var(--green));
  display: flex; align-items: flex-end; justify-content: flex-start;
  padding: 14px;
}
.filmstrip-frame span {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}
.filmstrip-inner:hover .filmstrip-frame { filter: brightness(0.45); }
.filmstrip-frame:hover {
  filter: brightness(1) !important;
  box-shadow: 0 8px 36px rgba(42,180,96,0.3);
}
@media (max-width: 768px) { .filmstrip-frame { width: 140px; height: 190px; } }
@media (max-width: 480px) { .filmstrip-frame { width: 100px; height: 140px; } }

/* ============================================================
   CURRICULUM CARDS
   ============================================================ */
.curriculum-cards {
  display: flex;
  background: var(--black);
  color: var(--black);
  gap: 24px;
  padding: 8px 40px 48px;
}
.cur-card {
  flex: 1 1 0;
  min-width: 0;
  background: linear-gradient(180deg, #0d130f 0%, #060807 100%);
  padding: 34px 32px 30px;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.4);
  border: 1px solid rgba(255,255,255,0.07);
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease, border-color 0.4s ease;
}
.cur-card.row-in { opacity: 1; transform: translateY(0); }
.cur-card::before {
  content: '';
  position: absolute; left: 50%; bottom: -30%; transform: translateX(-50%);
  width: 140%; height: 65%;
  background: radial-gradient(ellipse at center, rgba(42,180,96,0.32), rgba(42,180,96,0) 72%);
  pointer-events: none;
  opacity: 0.7;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
@media (hover: hover) {
  .cur-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 55px rgba(0,0,0,0.55);
    border-color: rgba(42,180,96,0.4);
  }
  .cur-card:hover::before { opacity: 1; transform: translateX(-50%) scale(1.08); }
}

.cur-meta { position: relative; z-index: 2; display: flex; align-items: center; gap: 10px; margin-bottom: 24px; justify-content: flex-end; width: 100%; }
.cur-num-badge {
  width: 34px; height: 34px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--green);
  color: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-weight: 700; font-size: 11px;
  order: 2;
}
.cur-meta-line { position: relative; flex: 1 1 auto; max-width: 60px; height: 1px; background: rgba(255,255,255,0.2); order: 1; }
.cur-meta-line::after {
  content: ''; position: absolute; right: 0; top: 50%; transform: translateY(-50%);
  width: 6px; height: 6px; border-radius: 50%; background: var(--green);
}

.cur-title {
  position: relative; z-index: 2;
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 1.9vw, 30px);
  line-height: 1.28;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cur-title .t-green { color: var(--green); }
.cur-title .t-white { color: var(--white); }

.cur-underline {
  position: relative; z-index: 2;
  display: block; width: 40px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,0.25);
  margin-bottom: 18px;
}

.cur-desc {
  position: relative; z-index: 2;
  font-family: var(--font-body); font-size: 12.5px; line-height: 1.75;
  color: rgba(255,255,255,0.55); margin-bottom: 24px;
}
.cur-desc em { font-style: italic; font-weight: 700; color: var(--green); }

.cur-explore { position: relative; z-index: 2; margin-top: auto; margin-left: auto; display: inline-flex; align-items: center; gap: 12px; background: none; border: none; padding: 0; cursor: pointer; text-decoration: none; }
.cur-explore-arrow {
  width: 36px; height: 36px; flex-shrink: 0;
  border-radius: 50%; background: var(--green);
  display: flex; align-items: center; justify-content: center;
  color: var(--black);
  transition: background 0.25s ease, transform 0.25s ease;
}
.cur-explore-arrow svg { width: 15px; height: 15px; }
.cur-explore:hover .cur-explore-arrow { background: #7fe3ab; transform: translateX(3px); }

@media (max-width: 1024px) {
  .curriculum-cards { flex-wrap: wrap; padding: 8px 24px 40px; }
  .cur-card { flex: 1 1 45%; }
}
@media (max-width: 768px) {
  .curriculum-cards { flex-wrap: nowrap; overflow-x: auto; overflow-y: hidden; scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch; scrollbar-width: none; padding: 8px 20px 36px; gap: 16px; }
  .curriculum-cards::-webkit-scrollbar { display: none; }
  .cur-card { flex: 0 0 78vw; scroll-snap-align: start; min-height: 0; }
}

/* ============================================================
   COURSE MODAL — quick-view popup opened from a curriculum card
   ============================================================ */
.course-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.course-modal.open { visibility: visible; opacity: 1; transition: opacity 0.25s ease; }
.course-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.course-modal-panel {
  position: relative;
  z-index: 1;
  width: 100%; max-width: 500px;
  background: #ffffff;
  border-radius: 24px;
  padding: 44px 36px 36px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.course-modal.open .course-modal-panel { transform: translateY(0) scale(1); }
.course-modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(0,0,0,0.12);
  background: rgba(0,0,0,0.03);
  color: #111;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.course-modal-close svg { width: 15px; height: 15px; }
.course-modal-close:hover { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.25); }
.course-modal-title {
  font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2.6vw, 26px); line-height: 1.2;
  text-transform: uppercase; color: #111; margin-bottom: 14px; padding-right: 24px;
}
.course-modal-title .t-green { color: var(--green); }
.course-modal-title .t-white { color: #111; }
.course-modal-desc {
  font-family: var(--font-body); font-size: 13.5px; line-height: 1.85;
  color: rgba(0,0,0,0.6); margin-bottom: 24px;
}
.course-modal-desc em { font-style: italic; font-weight: 700; color: #1f9450; }

.course-modal-facts {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  padding: 18px 20px; margin-bottom: 26px;
  background: rgba(42,180,96,0.06);
  border: 1px solid rgba(42,180,96,0.15);
  border-radius: 14px;
}
.course-modal-fact { display: flex; flex-direction: column; gap: 4px; }
.course-modal-fact-label {
  font-family: var(--font-body); font-size: 9.5px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(0,0,0,0.4);
}
.course-modal-fact-val { font-family: var(--font-body); font-size: 13px; font-weight: 700; color: #111; }

.course-modal-actions { display: flex; flex-direction: row; gap: 10px; }
.course-modal-btn {
  flex: 1 1 0; min-width: 0;
  display: inline-flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-body); font-size: 10.5px; font-weight: 700; letter-spacing: 0.6px; text-transform: uppercase;
  padding: 13px 10px;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.course-modal-btn--ghost { background: transparent; color: #111; border: 1.5px solid rgba(0,0,0,0.18); }
.course-modal-btn--ghost:hover { border-color: var(--green); color: #1f9450; transform: translateY(-2px); }
.course-modal-btn--solid { background: var(--green); color: #fff; border: 1.5px solid var(--green); }
.course-modal-btn--solid:hover { background: #1f9450; transform: translateY(-2px); }

@media (max-width: 480px) {
  .course-modal-panel { padding: 36px 22px 26px; }
  .course-modal-facts { grid-template-columns: 1fr 1fr; padding: 14px 16px; gap: 12px; }
  .course-modal-actions { flex-direction: column; }
}

/* ============================================================
   WHY DEMAND SCHOOL — stats panel
   ============================================================ */
.why-section { padding: 90px 6% 100px; background: var(--black); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.why-eyebrow {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-size: 10px; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--green); margin-bottom: 18px;
}
.why-eyebrow span { width: 24px; height: 2px; background: var(--green); flex-shrink: 0; }
.why-h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -1px;
  color: var(--white);
  margin-bottom: 20px;
}
.why-h span { color: var(--green); }
.why-p { font-family: var(--font-body); font-size: clamp(13px, 1.3vw, 15px); line-height: 2.0; color: rgba(255,255,255,0.6); max-width: 480px; }

.why-checks { list-style: none; display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 28px; }
.why-checks li { display: flex; align-items: center; gap: 8px; font-family: var(--font-body); font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.8); }
.why-checks svg { width: 16px; height: 16px; color: var(--green); flex-shrink: 0; }

.stat-rows { display: flex; flex-direction: column; gap: 22px; }
.stat-row {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 18px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.stat-row.row-in { opacity: 1; transform: translateY(0); }
.stat-idx { font-family: var(--font-body); font-size: 10px; color: rgba(255,255,255,0.32); }
.stat-num-wrap { font-family: var(--font-display); font-weight: 700; font-size: clamp(30px, 3.4vw, 48px); color: var(--white); display: flex; }
.stat-suf { color: var(--green); display: inline-block; transition: transform 0.2s ease; }
.stat-suf.pop { transform: scale(1.35) translateY(-4px); }
.stat-label { font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.85); text-align: right; align-self: end; }

@media (max-width: 1024px) {
  .why-section { padding: 72px 5% 80px; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .stat-rows { margin-top: 12px; }
  .stat-num-wrap { font-size: clamp(48px, 8vw, 80px); }
}
@media (max-width: 768px) {
  /* Stats sit in a right column alongside the heading again, like the original's mobile layout */
  .why-section { padding: 56px 5% 64px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 4vw; align-items: start; }
  .why-h { font-size: clamp(20px, 6vw, 38px); margin-bottom: 12px; }
  .why-p { font-size: 10.5px; line-height: 1.75; }
  .why-checks { margin-top: 18px; gap: 8px 18px; }
  .why-checks li { font-size: 10.5px; }
  .stat-rows { margin-top: 0; gap: 16px; }
  .stat-row { grid-template-columns: 20px 1fr; gap: 2px 6px; border-top-color: rgba(255,255,255,0.08); padding-top: 10px; }
  .stat-num-wrap { font-size: clamp(18px, 5vw, 28px); }
  .stat-label { grid-column: 2; font-size: 9.5px; letter-spacing: 0.8px; text-align: left; align-self: start; }
}
@media (max-width: 480px) {
  .why-section { padding: 44px 20px 52px; }
  /* Below tablet width the side-by-side split leaves the copy
     squeezed into a ~40% sliver — stack instead. */
  .why-grid { grid-template-columns: 1fr; gap: 32px; }
  .stat-rows { margin-top: 4px; }
  .stat-row { grid-template-columns: 24px 1fr; }
  .stat-num-wrap { font-size: clamp(30px, 9vw, 44px); }
  .stat-label { font-size: 11px; }
}

/* ============================================================
   MISSION — big scroll-revealed statement
   ============================================================ */
.mission-section {
  position: relative;
  background: var(--black);
  padding: 130px 6% 140px;
  overflow: hidden;
}
.mission-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  pointer-events: none;
  will-change: transform;
}
.mission-blob-a {
  width: 480px; height: 480px; top: -140px; left: -140px;
  background: radial-gradient(circle, rgba(42,180,96,0.30), rgba(42,180,96,0) 70%);
}
.mission-blob-b {
  width: 420px; height: 420px; bottom: -160px; right: -100px;
  background: radial-gradient(circle, rgba(42,180,96,0.18), rgba(42,180,96,0) 70%);
}
.mission-inner { position: relative; z-index: 1; max-width: 980px; margin: 0 auto; text-align: center; }
.mission-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--green); margin-bottom: 30px;
}
.mission-eyebrow span { width: 32px; height: 2px; background: var(--green); }

.mission-statement {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(24px, 3.4vw, 42px);
  line-height: 1.4;
  letter-spacing: -0.5px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 36px;
}
.mission-statement em { font-style: normal; color: var(--green); }
.mission-line {
  display: inline-block;
  opacity: 0;
  transform: translateY(18px);
  filter: blur(6px);
  transition: opacity 0.7s cubic-bezier(0.16,1,0.3,1), transform 0.7s cubic-bezier(0.16,1,0.3,1), filter 0.7s ease;
}
.mission-line.in-view { opacity: 1; transform: translateY(0); filter: blur(0); }
.mission-line:not(:last-child)::after { content: '\00a0'; }

.mission-sub {
  font-family: var(--font-body); font-size: 15px; line-height: 1.9;
  color: rgba(255,255,255,0.55); max-width: 640px;
  margin: 0 auto;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.mission-sub.in-view { opacity: 1; transform: translateY(0); }
.mission-sub em { font-style: normal; font-weight: 700; color: var(--green); }

@media (max-width: 1024px) {
  .mission-section { padding: 100px 5% 110px; }
}
@media (max-width: 768px) {
  .mission-section { padding: 80px 24px 90px; }
  .mission-blob-a, .mission-blob-b { width: 300px; height: 300px; filter: blur(70px); }
  .mission-statement { font-size: clamp(22px, 5.6vw, 32px); margin-bottom: 28px; }
  .mission-sub { font-size: 13px; }
}
@media (max-width: 480px) {
  .mission-section { padding: 64px 20px 72px; }
  .mission-eyebrow { margin-bottom: 22px; }
}

/* ============================================================
   TESTIMONIALS MARQUEE
   ============================================================ */
.testi-section { padding: 80px 0 100px; overflow: hidden; }
.testi-header { padding: 0 6%; margin-bottom: 48px; }
.testi-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.testi-eyebrow-line { width: 24px; height: 2px; background: var(--green); }
.testi-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 4.6vw, 56px); line-height: 0.95; letter-spacing: -1px; }

.testi-track-outer { overflow: hidden; cursor: grab; }
.testi-track-outer.dragging { cursor: grabbing; }
.testi-track { display: flex; gap: 22px; width: max-content; }
.testi-track, .testi-track * { user-select: none; -webkit-user-select: none; }

.testi-card {
  flex: 0 0 300px;
  height: 300px;
  display: flex; flex-direction: column;
  background: #0c0f0d;
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 16px;
  padding: 28px 26px;
  cursor: pointer;
  transition: transform 0.65s cubic-bezier(0.23,1,0.32,1), box-shadow 0.65s ease, border-color 0.3s ease;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}
.testi-card:hover { transform: translateY(-8px); border-color: rgba(42,180,96,0.4); }
.testi-quote {
  flex: 1 1 auto; min-height: 0;
  font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.75); margin-bottom: 22px;
  display: -webkit-box; -webkit-line-clamp: 7; -webkit-box-orient: vertical; overflow: hidden;
}
.testi-person { flex: 0 0 auto; display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  flex-shrink: 0;
}
.testi-avatar--photo { overflow: hidden; background: none; }
.testi-avatar--photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name { font-size: 12px; font-weight: 700; color: var(--white); }
.testi-role { font-size: 10px; color: rgba(255,255,255,0.45); margin-top: 2px; }

@media (max-width: 768px) {
  .testi-section { padding: 60px 0 72px; }
  .testi-header { padding: 0 20px; margin-bottom: 32px; }
  .testi-title { font-size: clamp(32px, 8vw, 52px); letter-spacing: -0.5px; }
  .testi-card { flex-basis: 240px; height: 320px; }
}
@media (max-width: 480px) {
  .testi-section { padding: 48px 0 60px; }
  .testi-header { padding: 0 16px; }
  .testi-title { font-size: clamp(28px, 9vw, 40px); }
  .testi-card { flex-basis: 210px; height: 340px; padding: 20px; }
}

/* ── Testimonial quick-view modal ── */
.testi-modal {
  position: fixed; inset: 0; z-index: 1100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.25s ease, visibility 0s linear 0.25s;
}
.testi-modal.open { visibility: visible; opacity: 1; transition: opacity 0.25s ease; }
.testi-modal-backdrop {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.testi-modal-panel {
  position: relative; z-index: 1;
  width: 100%; max-width: 760px;
  display: flex;
  background: linear-gradient(180deg, #0d130f 0%, #060807 100%);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0,0,0,0.6);
  transform: translateY(16px) scale(0.97);
  transition: transform 0.3s cubic-bezier(0.16,1,0.3,1);
}
.testi-modal.open .testi-modal-panel { transform: translateY(0) scale(1); }
.testi-modal-close {
  position: absolute; top: 16px; right: 16px; z-index: 2;
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  background: rgba(0,0,0,0.3);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.testi-modal-close svg { width: 15px; height: 15px; }
.testi-modal-close:hover { background: rgba(255,255,255,0.15); border-color: rgba(255,255,255,0.3); }
.testi-modal-media { flex: 0 0 42%; position: relative; min-height: 360px; background: #111; }
.testi-modal-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.testi-modal-initial {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 96px; color: #fff;
  background: linear-gradient(135deg, var(--green-dark), var(--green));
}
.testi-modal-body { flex: 1 1 auto; min-width: 0; padding: 48px 44px; display: flex; flex-direction: column; justify-content: center; }
.testi-modal-quote { font-family: var(--font-display); font-weight: 700; font-size: clamp(17px, 1.9vw, 22px); line-height: 1.5; letter-spacing: -0.2px; color: var(--white); margin-bottom: 26px; }
.testi-modal-person { display: flex; flex-direction: column; gap: 4px; }
.testi-modal-name { font-family: var(--font-body); font-weight: 700; font-size: 14px; color: var(--white); }
.testi-modal-role { font-family: var(--font-body); font-size: 11.5px; color: rgba(255,255,255,0.5); }

@media (max-width: 768px) {
  .testi-modal-panel { flex-direction: column; max-width: 440px; }
  .testi-modal-media { flex-basis: auto; height: 240px; min-height: 0; }
  .testi-modal-initial { font-size: 64px; }
  .testi-modal-body { padding: 30px 26px; }
}

/* ============================================================
   MENTORS — photo grid
   ============================================================ */
.mentors-section {
  position: relative;
  padding: 60px 0 40px;
  background: var(--black);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.mentors-header { padding: 40px 0 28px 40px; }
.mentors-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--green); margin-bottom: 14px; }
.mentors-eyebrow span { width: 24px; height: 2px; background: var(--green); }
.mentors-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6.2vw, 80px); line-height: 0.92; letter-spacing: -1px; text-transform: uppercase; color: var(--white); overflow-wrap: break-word; }
.mentors-title span { color: var(--green); }

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  padding: 12px 40px 8px;
}

.mentor-tile {
  perspective: 900px;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.mentor-tile.row-in { opacity: 1; transform: translateY(0); }

.mentor-tile-inner {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #0d130f 0%, #060807 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1), box-shadow 0.35s ease, border-color 0.35s ease;
  will-change: transform;
}
.mentor-tile:hover .mentor-tile-inner {
  box-shadow: 0 26px 55px rgba(0,0,0,0.55), 0 0 0 1px rgba(42,180,96,0.35), 0 0 40px rgba(42,180,96,0.18);
  border-color: rgba(42,180,96,0.4);
}

.mentor-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.mentor-photo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 65% at 18% -8%, rgba(216,177,120,0.14), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at var(--mx, 82%) var(--my, 92%), rgba(42,180,96,0.24), rgba(42,180,96,0) 58%),
    linear-gradient(165deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.mentor-tile:nth-child(4n+2) .mentor-photo-bg {
  background:
    radial-gradient(75% 65% at 82% -8%, rgba(216,177,120,0.14), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at var(--mx, 15%) var(--my, 92%), rgba(42,180,96,0.24), rgba(42,180,96,0) 58%),
    linear-gradient(200deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.mentor-tile:nth-child(4n+3) .mentor-photo-bg {
  background:
    radial-gradient(75% 65% at 18% 108%, rgba(216,177,120,0.13), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at var(--mx, 82%) var(--my, 8%), rgba(42,180,96,0.22), rgba(42,180,96,0) 58%),
    linear-gradient(140deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.mentor-tile:nth-child(4n+4) .mentor-photo-bg {
  background:
    radial-gradient(75% 65% at 82% 108%, rgba(216,177,120,0.13), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at var(--mx, 15%) var(--my, 8%), rgba(42,180,96,0.22), rgba(42,180,96,0) 58%),
    linear-gradient(115deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}

.mentor-initials {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(56px, 7vw, 76px);
  letter-spacing: -2px;
  color: rgba(255,255,255,0.08);
  pointer-events: none;
}
.mentor-photo-img {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 12%;
}
.mentor-index {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}
.mentor-photo-glare {
  position: absolute; inset: -20% -60%; z-index: 2;
  background: linear-gradient(115deg, rgba(255,255,255,0) 42%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0) 58%);
  transform: translateX(-60%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.mentor-tile:hover .mentor-photo-glare { transform: translateX(60%); }

.mentor-caption { position: relative; z-index: 2; padding: 16px 18px 20px; }
.mentor-role { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.mentor-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.6vw, 20px); color: var(--white); letter-spacing: 0.2px; }

/* ── Wheel carousel — cards ticking around a giant wheel,
   each tick landing with anticipation + overshoot ── */
.wheel-carousel {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  gap: 18px;
  padding: 20px 20px 10px;
}
.wheel-track {
  position: relative;
  flex: 1 1 auto;
  max-width: 1080px;
  height: 480px;
  perspective: 1600px;
}
.wheel-card {
  position: absolute;
  top: 0; left: 50%;
  width: 300px;
  background: none; border: none; padding: 0; margin: 0;
  cursor: pointer;
  transition: transform 0.9s cubic-bezier(0.65, -0.4, 0.35, 1.4), opacity 0.6s ease, filter 0.6s ease;
  will-change: transform;
}
.wheel-card-inner {
  position: relative;
  border-radius: 20px;
  background: linear-gradient(180deg, #0d130f 0%, #060807 100%);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  box-shadow: 0 26px 55px rgba(0,0,0,0.55);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}
.wheel-card.is-active .wheel-card-inner {
  box-shadow: 0 26px 55px rgba(0,0,0,0.55), 0 0 0 1px rgba(42,180,96,0.35), 0 0 40px rgba(42,180,96,0.18);
  border-color: rgba(42,180,96,0.4);
}

.wheel-photo { position: relative; aspect-ratio: 4 / 5; overflow: hidden; }
.wheel-photo-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(75% 65% at 18% -8%, rgba(216,177,120,0.14), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at 82% 92%, rgba(42,180,96,0.24), rgba(42,180,96,0) 58%),
    linear-gradient(165deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.wheel-card:nth-child(4n+2) .wheel-photo-bg {
  background:
    radial-gradient(75% 65% at 82% -8%, rgba(216,177,120,0.14), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at 15% 92%, rgba(42,180,96,0.24), rgba(42,180,96,0) 58%),
    linear-gradient(200deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.wheel-card:nth-child(4n+3) .wheel-photo-bg {
  background:
    radial-gradient(75% 65% at 18% 108%, rgba(216,177,120,0.13), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at 82% 8%, rgba(42,180,96,0.22), rgba(42,180,96,0) 58%),
    linear-gradient(140deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.wheel-card:nth-child(4n+4) .wheel-photo-bg {
  background:
    radial-gradient(75% 65% at 82% 108%, rgba(216,177,120,0.13), rgba(216,177,120,0) 60%),
    radial-gradient(90% 80% at 15% 8%, rgba(42,180,96,0.22), rgba(42,180,96,0) 58%),
    linear-gradient(115deg, #10130f 0%, #0a0c0a 50%, #030403 100%);
}
.wheel-photo-img { position: absolute; inset: 0; z-index: 1; width: 100%; height: 100%; object-fit: cover; object-position: center 12%; }
.wheel-index {
  position: absolute; top: 14px; left: 16px; z-index: 2;
  font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  color: rgba(255,255,255,0.4);
}
.wheel-glare {
  position: absolute; inset: -20% -60%; z-index: 2;
  background: linear-gradient(115deg, rgba(255,255,255,0) 42%, rgba(255,255,255,0.16) 50%, rgba(255,255,255,0) 58%);
  transform: translateX(-60%);
  transition: transform 0.9s ease;
  pointer-events: none;
}
.wheel-card.is-active:hover .wheel-glare { transform: translateX(60%); }

.wheel-caption { position: relative; z-index: 2; padding: 16px 18px 20px; }
.wheel-role { display: block; font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--green); margin-bottom: 6px; }
.wheel-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--white); letter-spacing: 0.2px; }

.wheel-nav {
  flex-shrink: 0; position: relative; z-index: 5;
  width: 48px; height: 48px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.05);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.wheel-nav svg { width: 18px; height: 18px; }
.wheel-nav:hover { background: rgba(42,180,96,0.15); border-color: var(--green); color: var(--green); transform: scale(1.06); }

@media (max-width: 1024px) {
  .wheel-track { height: 440px; }
  .wheel-card { width: 250px; }
}
@media (max-width: 768px) {
  .wheel-carousel { gap: 8px; padding: 12px 8px 6px; }
  .wheel-track { height: 380px; }
  .wheel-card { width: 200px; }
  .wheel-name { font-size: 16px; }
  .wheel-nav { width: 38px; height: 38px; }
  .wheel-nav svg { width: 15px; height: 15px; }
}

.mentors-full-team { display: flex; justify-content: center; padding: 10px 40px 0; }
.mentors-full-team-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border: 1.5px solid rgba(255,255,255,0.2);
  padding: 15px 34px;
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.15s ease;
}
.mentors-full-team-btn:hover { background: rgba(42,180,96,0.12); border-color: var(--green); color: var(--green); transform: translateY(-2px); }

.mentors-footer { display: flex; justify-content: space-between; align-items: center; padding: 20px 40px 40px; }

/* Full team roster page — reuses the mentors grid/tile system */
.team-hero { padding: 150px 0 40px; }
.team-hero .cd-back { padding-left: 40px; }
@media (min-width: 1025px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .mentors-header { padding: 36px 24px 24px; }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); padding: 8px 24px; gap: 18px; }
  .team-hero { padding: 130px 0 32px; }
  .team-hero .cd-back { padding-left: 24px; }
}
@media (max-width: 768px) {
  .mentors-header { padding: 32px 24px 20px; }
  .mentors-title { font-size: clamp(34px, 10vw, 76px); }
  .mentors-footer { padding: 16px 20px 28px; flex-direction: column; gap: 10px; text-align: center; }
}
@media (max-width: 480px) {
  .mentors-header { padding: 28px 20px 16px; }
  .mentors-title { font-size: clamp(28px, 10vw, 46px); }
  .mentors-grid { grid-template-columns: repeat(2, 1fr); padding: 8px 20px; gap: 14px; }
  .mentor-initials { font-size: clamp(36px, 13vw, 52px); }
  .mentor-index { top: 10px; left: 12px; font-size: 10px; }
  .mentor-caption { padding: 12px 14px 16px; }
  .mentor-role { font-size: 8.5px; letter-spacing: 1px; margin-bottom: 4px; }
  .mentor-name { font-size: 13px; line-height: 1.25; }
  .mentors-full-team { padding: 8px 20px 0; }
  .mentors-full-team-btn { width: 100%; }
  .team-hero { padding: 120px 0 28px; }
  .team-hero .cd-back { padding-left: 20px; }
}

/* ============================================================
   OUTCOMES GRID (student success stories)
   ============================================================ */
.outcomes-section { padding: 60px 0 80px; }
.outcomes-header { padding: 0 40px; margin-bottom: 40px; display: flex; align-items: baseline; gap: 16px; flex-wrap: wrap; }
.outcomes-eyebrow { display: flex; align-items: center; gap: 10px; font-size: 10px; font-weight: 600; letter-spacing: 3.5px; text-transform: uppercase; color: var(--green); margin-bottom: 8px; flex-basis: 100%; }
.outcomes-eyebrow span { width: 24px; height: 2px; background: var(--green); }
.outcomes-title { font-family: var(--font-display); font-weight: 500; font-size: clamp(40px, 6.5vw, 84px); line-height: 0.95; color: var(--white); text-transform: uppercase; letter-spacing: -2px; }
.outcomes-title span { color: var(--green); }

.outcomes-spotlight { padding: 0 40px; }

.spotlight-grid { display: flex; flex-direction: column; gap: 14px; }

.spotlight-main {
  height: 420px;
  display: flex;
  border-radius: 18px;
  overflow: hidden;
  background: #111;
}

.spotlight-media-wrap {
  flex: 0 0 46%;
  height: 100%;
  position: relative;
  background: #050505;
  display: flex; align-items: center; justify-content: center;
}

.spotlight-info { flex: 1 1 auto; min-width: 0; padding: 40px 44px; display: flex; flex-direction: column; justify-content: center; }
.spotlight-cat { font-family: var(--font-body); font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--green); display: block; margin-bottom: 14px; }
.spotlight-name { font-family: var(--font-display); font-weight: 500; font-size: clamp(20px, 2vw, 28px); line-height: 1.18; letter-spacing: -0.5px; color: var(--white); margin-bottom: 14px; }
.spotlight-desc { font-family: var(--font-body); font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.55); margin-bottom: 18px; }
.spotlight-link { font-family: var(--font-body); font-size: 10px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); transition: color 0.25s ease; }
.spotlight-link:hover { color: var(--green); }

.spotlight-thumbs { flex: 0 0 auto; width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; align-items: stretch; }
.spotlight-thumb {
  position: relative;
  display: flex; flex-direction: row; align-items: stretch;
  min-height: 148px;
  text-align: left;
  border-radius: 14px;
  overflow: hidden;
  border: none; padding: 0; margin: 0;
  cursor: pointer;
  background: #111;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
@media (hover: hover) {
  .spotlight-thumb:hover { transform: translateY(-3px); box-shadow: 0 16px 32px rgba(0,0,0,0.4); }
  .spotlight-thumb:hover .spotlight-media { transform: scale(1.06); }
}
.spotlight-thumb-media { position: relative; flex: 0 0 38%; overflow: hidden; background: #050505; }
.spotlight-thumb-info {
  flex: 1 1 auto; min-width: 0;
  padding: 18px 20px;
  display: flex; flex-direction: column; justify-content: center;
}
.spotlight-thumb-label {
  font-family: var(--font-display); font-weight: 700; font-size: 16px; line-height: 1.3; letter-spacing: -0.2px;
  color: var(--white); margin-bottom: 8px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.spotlight-thumb-teaser {
  font-family: var(--font-body); font-size: 10.5px; line-height: 1.65;
  color: rgba(255,255,255,0.45);
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}

.spotlight-media { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.spotlight-media-wrap .spotlight-media { object-fit: contain; transition: none; }

@keyframes spotlight-pop { from { opacity: 0; transform: scale(0.94); } to { opacity: 1; transform: scale(1); } }
.spotlight-visual-enter { animation: spotlight-pop 0.5s cubic-bezier(0.16,1,0.3,1); }
@keyframes spotlight-thumb-pop { from { opacity: 0; transform: translateY(-10px); } to { opacity: 1; transform: translateY(0); } }
.spotlight-thumb-enter { animation: spotlight-thumb-pop 0.45s ease; }

@media (max-width: 900px) {
  .outcomes-section { padding: 48px 0 64px; }
  .outcomes-header { padding: 0 24px; margin-bottom: 32px; }
  .outcomes-spotlight { padding: 0 24px; }
  .spotlight-main { height: 380px; }
  .spotlight-info { padding: 28px 30px; }
}
@media (max-width: 768px) {
  .outcomes-title { font-size: clamp(44px, 13vw, 80px); letter-spacing: -1px; }
  .spotlight-main { flex-direction: column; height: auto; }
  .spotlight-media-wrap { flex-basis: 220px; width: 100%; }
  .spotlight-info { padding: 20px; }
  .spotlight-name { font-size: clamp(18px, 5vw, 24px); }
  .spotlight-desc { font-size: 12.5px; }
  .spotlight-thumb-info { padding: 12px 14px 14px; }
  .spotlight-thumb-label { font-size: 13px; margin-bottom: 4px; }
  .spotlight-thumb-teaser { font-size: 10px; }
}
@media (max-width: 600px) {
  .outcomes-header { padding: 0 20px; }
  .outcomes-spotlight { padding: 0 20px; }
}
@media (max-width: 480px) {
  .outcomes-section { padding: 48px 0 60px; }
  .outcomes-header { margin-bottom: 24px; }
  .outcomes-title { font-size: clamp(38px, 14vw, 60px); letter-spacing: -1px; }
  .spotlight-media-wrap { flex-basis: 180px; }
  .spotlight-thumbs { grid-template-columns: 1fr; gap: 10px; }
  .spotlight-thumb { flex-direction: row; }
  .spotlight-thumb-media { aspect-ratio: 1 / 1; flex: 0 0 96px; }
  .spotlight-thumb-info { padding: 10px 14px; justify-content: center; }
  .spotlight-thumb-teaser { -webkit-line-clamp: 2; }
}

/* ============================================================
   VIBE BANNER
   ============================================================ */
.vibe-banner { background: var(--black); padding: 70px 6% 90px; text-align: center; }
.vibe-eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 600; color: var(--green); margin-bottom: 18px; }
.vibe-line {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1.15;
  letter-spacing: -0.5px;
  text-transform: uppercase;
  color: var(--white);
}
.vibe-line span { color: var(--green); }
@media (max-width: 480px) {
  .vibe-banner { padding: 52px 20px 64px; }
}

/* ============================================================
   CONTACT / ENROLL FOOTER
   ============================================================ */
.contact-section { position: relative; display: flex; flex-direction: column; background: var(--black); padding: 100px 6% 0; overflow: hidden; }
.ct-body { position: relative; display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; padding-bottom: 60px; }
.ct-eyebrow { font-family: var(--font-body); font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--green); margin-bottom: 18px; }
.ct-headline { font-family: var(--font-display); font-weight: 500; font-size: clamp(34px, 6vw, 72px); line-height: 0.95; letter-spacing: -2px; text-transform: uppercase; }
.ct-lw { display: block; }
.ct-line { display: inline-block; color: var(--white); }
.ct-line--stroke { -webkit-text-stroke: 1.5px var(--white); color: transparent; }
.ct-line--accent { color: var(--green); }

.ct-left { display: flex; flex-direction: column; gap: 36px; flex: 1 1 420px; max-width: 560px; }

.ct-right { display: flex; flex-direction: column; align-items: stretch; gap: 28px; width: 400px; max-width: 100%; }

.ef-submit {
  display: flex; align-items: center; justify-content: center;
  background: var(--green); color: var(--black);
  font-family: var(--font-body); font-size: 13px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 16px 24px; border: none; border-radius: 999px; cursor: pointer;
  text-decoration: none;
  transition: background 0.2s ease, transform 0.15s ease;
}
.ef-submit:hover { background: #1f9450; transform: translateY(-1px); }

.ct-socials { display: flex; flex-direction: column; gap: 10px; width: 100%; }
.ct-social-row {
  display: flex; align-items: center; gap: 14px;
  padding: 16px 20px;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  transition: border-color 0.25s ease, background 0.25s ease;
}
.ct-social-row:hover { border-color: var(--green); background: rgba(42,180,96,0.06); }
.ct-social-icon { width: 20px; height: 20px; color: var(--green); flex-shrink: 0; }
.ct-social-info { flex: 1; display: flex; flex-direction: column; }
.ct-social-platform { font-size: 15px; font-weight: 700; color: var(--white); }
.ct-social-handle { font-size: 12px; color: rgba(255,255,255,0.45); margin-top: 2px; }
.ct-social-arrow {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; flex-shrink: 0;
  border: 1.5px solid rgba(255,255,255,0.25); border-radius: 50%;
  color: rgba(255,255,255,0.6);
  transition: color 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.ct-social-row:hover .ct-social-arrow { color: var(--green); border-color: var(--green); transform: translateX(3px); }

.contact-footer { display: flex; justify-content: space-between; align-items: center; padding: 24px 0 32px; border-top: 1px solid rgba(255,255,255,0.08); flex-wrap: wrap; gap: 12px; }
.footer-logo { display: flex; flex-direction: column; align-items: flex-start; gap: 3px; }
.logo-img--footer { height: 30px; }
.footer-copy { font-size: 10px; color: rgba(255,255,255,0.35); }

@media (max-width: 900px) {
  .contact-section { padding: 70px 24px 0; }
  .ct-body { flex-direction: column; align-items: stretch; }
  .ct-right { width: 100%; }
}
@media (max-width: 768px) {
  .contact-section { padding: 56px 20px 40px; }
  .ct-headline { font-size: clamp(42px, 10vw, 80px); letter-spacing: -2px; }
  .ct-body { gap: 40px; padding-bottom: 44px; }
  .ct-social-row { padding: 14px 16px; gap: 14px; }
  .ct-social-handle { font-size: clamp(12px, 3.4vw, 14px); }
}
@media (max-width: 480px) {
  .contact-section { padding: 56px 20px 0; }
  .ct-headline { font-size: clamp(36px, 12vw, 62px); letter-spacing: -1.5px; }
  .ct-body { padding-bottom: 44px; gap: 28px; }
}
@media (max-width: 360px) {
  .ct-headline { font-size: clamp(32px, 12vw, 50px); }
}

/* ============================================================
   Generic scroll-reveal helper
   ============================================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16,1,0.3,1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: #0a0f0c;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: transform 0.9s cubic-bezier(0.76,0,0.24,1);
  perspective: 1200px;
}
.page-loader.exit { transform: translateY(-100%); pointer-events: none; }

.loader-logo-wrap { position: relative; width: 180px; height: 180px; display: flex; align-items: center; justify-content: center; }

.loader-3d-box {
  position: relative;
  width: 140px; height: 140px;
  transform-style: preserve-3d;
  animation: l-box-flip 2.8s cubic-bezier(0.65,0,0.35,1) infinite;
}
@keyframes l-box-flip { 0% { transform: rotateY(0deg); } 100% { transform: rotateY(360deg); } }

.loader-3d-box .face {
  position: absolute; top: 50%; left: 50%;
  background: var(--green);
  transform-style: preserve-3d;
  backface-visibility: visible;
}
.loader-3d-box .face.front { width: 140px; height: 140px; margin: -70px 0 0 -70px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: translateZ(10px); }
.loader-3d-box .face.back  { width: 140px; height: 140px; margin: -70px 0 0 -70px; display: flex; flex-direction: column; align-items: center; justify-content: center; transform: rotateY(180deg) translateZ(10px); }
.loader-3d-box .face.left  { width: 20px;  height: 140px; margin: -70px 0 0 -10px; transform: rotateY(-90deg) translateZ(70px); background: #239951; }
.loader-3d-box .face.right { width: 20px;  height: 140px; margin: -70px 0 0 -10px; transform: rotateY(90deg)  translateZ(70px); background: #239951; }
.loader-3d-box .face.top   { width: 140px; height: 20px;  margin: -10px 0 0 -70px; transform: rotateX(90deg)  translateZ(70px); background: #26a659; }
.loader-3d-box .face.bottom{ width: 140px; height: 20px;  margin: -10px 0 0 -70px; transform: rotateX(-90deg) translateZ(70px); background: #124a2c; box-shadow: 0 40px 60px rgba(0,0,0,0.7); }

.loader-topbar { height: 12px; width: 66px; background: var(--white); margin-bottom: 8px; transform: translateZ(1px); }
.loader-name { display: block; font-family: var(--font-display); font-weight: 700; font-size: 104px; color: #fff; letter-spacing: 0; line-height: 0.85; }

.loader-track { position: absolute; bottom: 48px; width: min(260px, 55vw); height: 1px; background: rgba(255,255,255,0.2); overflow: hidden; }
.loader-fill { height: 100%; width: 0; background: var(--white); animation: l-progress 1.9s cubic-bezier(0.4,0,0.2,1) forwards 0.1s; }
@keyframes l-progress { 0% { width: 0; } 65% { width: 72%; } 100% { width: 100%; } }

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 24px rgba(42,180,96,0.45);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s ease;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.back-to-top:hover { background: #1f9450; }

@media (max-width: 768px) {
  .back-to-top { bottom: 20px; right: 20px; width: 42px; height: 42px; }
}

