@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'IvyPresto Display';
  src: url('/assets/pgptbm/fonts/ivy-presto-display-thin.otf') format('opentype');
  font-weight: 200; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyPresto Display';
  src: url('/assets/pgptbm/fonts/ivy-presto-display-light.otf') format('opentype');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyPresto Display';
  src: url('/assets/pgptbm/fonts/ivy-presto-display-regular.otf') format('opentype');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'IvyPresto Display';
  src: url('/assets/pgptbm/fonts/ivy-presto-display-semibold.otf') format('opentype');
  font-weight: 600 900; font-style: normal; font-display: swap;
}

/* ---------- CSS variables (MU brand exact tokens) ---------- */
:root {
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 7%);
  --primary: hsl(270, 91%, 58%);
  --primary-foreground: hsl(0, 0%, 100%);
  --secondary: hsl(0, 0%, 96%);
  --muted: hsl(0, 0%, 96%);
  --muted-foreground: hsl(0, 0%, 45%);
  --accent: hsl(0, 0%, 96%);
  --border: hsl(0, 0%, 90%);
  --input: hsl(0, 0%, 90%);
  --ring: hsl(270, 91%, 58%);
  --radius: 0.25rem;
  --mu-black: hsl(0, 0%, 7%);
  --mu-black-pure: hsl(0, 0%, 0%);
  --mu-dark-surface: hsl(0, 0%, 11%);
  --mu-card-bg: hsl(0, 0%, 100%);
  --mu-gray-100: hsl(0, 0%, 96%);
  --mu-gray-200: hsl(0, 0%, 90%);
  --mu-gray-300: hsl(0, 0%, 82%);
  --mu-gray-400: hsl(0, 0%, 64%);
  --mu-gray-500: hsl(0, 0%, 45%);
  --mu-gray-600: hsl(0, 0%, 32%);
  --mu-gray-700: hsl(0, 0%, 20%);
  --mu-gold: hsl(45, 100%, 50%);
  --mu-yellow: hsl(48, 100%, 50%);
  --mu-cyan: hsl(192, 100%, 50%);
  --mu-teal: hsl(160, 100%, 45%);
  --mu-lime: hsl(76, 100%, 58%);
  --mu-magenta: hsl(330, 100%, 60%);
  --mu-purple: hsl(270, 100%, 65%);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; border: 0 solid var(--border); }
html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
}
body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
  text-rendering: optimizeLegibility;
  overscroll-behavior-x: none;
  font-size: 16px;
  line-height: 1.5;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { background: none; border: none; color: inherit; font: inherit; cursor: pointer; }
svg { display: inline-block; flex-shrink: 0; }

h1, h2, h3, h4, h5, h6 {
  font-family: 'IvyPresto Display', 'Iowan Old Style', 'Georgia', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.main-wrap{
  background: #121212;
}
.font-display {
  font-family: 'IvyPresto Display', 'Iowan Old Style', 'Georgia', 'Times New Roman', serif;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.font-display.italic, .font-display em, em.font-display, .italic {
  font-family: 'IvyPresto Display', serif;
  font-style: oblique 14deg;
  font-weight: 300;
  font-synthesis: style;
}
.font-sans { font-family: 'Inter', sans-serif; }
.tabular-nums { font-variant-numeric: tabular-nums; }

/* ---------- Signature gradients ---------- */
.mu-gradient-text,
.mu-gradient-text-cool,
.mu-gradient-text-warm,
.mu-gradient-text-vivid {
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.mu-btn-gradient,
.mu-btn-rainbow,
.mu-btn-cool {
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
}

/* ---------- Section backgrounds ---------- */
.mu-section-dark {
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(57,181,215,0.05) 0%, transparent 60%),
    hsl(0,0%,7%);
  color: #fff;
}
.mu-section-dark-glow {
  background:
    radial-gradient(ellipse 80% 40% at 50% 0%, rgba(57,181,215,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 60% 30% at 80% 0%, rgba(227,131,48,0.08) 0%, transparent 50%),
    hsl(0,0%,7%);
  color: #fff;
}
.mu-section-dark-teal {
  background:
    radial-gradient(ellipse 50% 60% at 0% 50%, rgba(57,181,215,0.07) 0%, transparent 70%),
    hsl(0,0%,7%);
  color: #fff;
}
.mu-section-dark-warm {
  background:
    radial-gradient(ellipse 50% 60% at 100% 50%, rgba(227,131,48,0.07) 0%, transparent 70%),
    hsl(0,0%,7%);
  color: #fff;
}
.mu-section-dark-vivid {
  background:
    radial-gradient(ellipse 50% 50% at 20% 0%, rgba(57,181,215,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 80% 100%, rgba(227,131,48,0.06) 0%, transparent 60%),
    hsl(0,0%,7%);
  color: #fff;
}
.mu-section-light {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(57,181,215,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 100%, rgba(247,213,68,0.03) 0%, transparent 50%),
    hsl(0,0%,100%);
  color: hsl(0,0%,7%);
}

/* ---------- Container + section padding (Tailwind: max-w-[1200px] 2xl:max-w-[1400px] px-4 sm:px-6 md:px-8 lg:px-10) ---------- */
.mu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
  width: 100%;
}
@media (min-width: 640px)  { .mu-container { padding-left: 24px; padding-right: 24px; } }
@media (min-width: 768px)  { .mu-container { padding-left: 32px; padding-right: 32px; } }
@media (min-width: 1024px) { .mu-container { padding-left: 40px; padding-right: 40px; } }
@media (min-width: 1536px) { .mu-container { max-width: 1400px; } }
@media (max-width: 419px)  { .mu-container { padding-left: 12px; padding-right: 12px; } }

/* py-12 sm:py-16 md:py-20 lg:py-24 2xl:py-28 */
.mu-section-padding { padding-top: 48px; padding-bottom: 48px; }
@media (min-width: 640px)  { .mu-section-padding { padding-top: 64px; padding-bottom: 64px; } }
@media (min-width: 768px)  { .mu-section-padding { padding-top: 80px; padding-bottom: 80px; } }
@media (min-width: 1024px) { .mu-section-padding { padding-top: 96px; padding-bottom: 96px; } }
@media (min-width: 1536px) { .mu-section-padding { padding-top: 112px; padding-bottom: 112px; } }
@media (max-width: 419px)  { .mu-section-padding { padding-top: 40px; padding-bottom: 40px; } }

/* ---------- Section Divider ---------- */
.section-divider {
  margin: 0 auto;
  width: 85%;
  height: 1px;
  background: linear-gradient(90deg, transparent, #39B5D7, #F7D544, #E38330, transparent);
}


/* ---------- Gradient border card ---------- */
.mu-card-gradient-border {
  position: relative;
  border-radius: 0.25rem;
  background-color: hsl(0,0%,11%);
}
.mu-card-gradient-border::before {
  content: '';
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(91deg, rgba(57,181,215,0.3), rgba(247,213,68,0.25), rgba(227,131,48,0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

/* Gradient divider */
.mu-divider-gradient {
  height: 2px;
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
}

/* Scrollbar hide */
.scrollbar-hide,
.mu-scroll-hidden { -ms-overflow-style: none; scrollbar-width: none; }
.scrollbar-hide::-webkit-scrollbar,
.mu-scroll-hidden::-webkit-scrollbar { display: none; }

/* ---------- Animations ---------- */
@keyframes scroll-left {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.animate-scroll-left {
  animation: scroll-left 30s linear infinite;
  will-change: transform;
}
@keyframes pulse-soft { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse { animation: pulse-soft 2s cubic-bezier(0.4,0,0.6,1) infinite; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in { animation: fadeIn 0.3s ease-out; }

/* ==================================================
   BUTTONS
   Tailwind mapping:
   sm: h-9 px-4             => 36px / 16px
   default/md: h-11 px-6    => 44px / 24px
   lg: h-12 px-8 text-base  => 48px / 32px / 16px
   base text-sm (14) font-semibold (600) rounded (4px) gap-2 (8px)
   ================================================== */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 8px; white-space: nowrap; border-radius: 0.25rem;
  font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px;
  line-height: 1;
  transition: all 0.2s ease;
  cursor: pointer; text-decoration: none;
  border: 0;
}
.btn-sm { height: 36px; padding: 0 16px; font-size: 14px; }
.btn-md { height: 44px; padding: 0 24px; font-size: 14px; }
.btn-lg { height: 48px; padding: 0 32px; font-size: 16px; }
.btn svg, .btn img.icon { width: 16px; height: 16px; flex-shrink: 0; }

/* Brand (MU signature): black bg with rainbow gradient border */
.btn-brand {
  position: relative;
  background: hsl(0,0%,7%);
  color: #fff;
  font-weight: 700;
}
.btn-brand::before {
  content: '';
  position: absolute; inset: 0;
  padding: 1.5px;
  border-radius: 0.25rem;
  background: linear-gradient(91deg, #39B5D7, #F7D544, #E38330);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none;
}
.btn-brand:hover { background: #fff; color: hsl(0,0%,7%); }

/* Dark pill */
.btn-brand-dark {
  background: hsl(0,0%,7%);
  color: #fff;
  border: 1px solid hsl(0,0%,20%);
  font-weight: 600;
}
.btn-brand-dark:hover { background: hsl(0,0%,11%); }

/* Outline light (over dark bg) */
.btn-outline-light {
  background: transparent;
  color: #fff;
  border: 1px solid hsl(0,0%,30%);
}
.btn-outline-light:hover { background: rgba(255,255,255,0.1); }

/* Gold outline */
.btn-outline-gold {
  background: transparent;
  color: hsl(45,100%,50%);
  border: 1px solid hsl(45,100%,50%);
  border-radius: 0.5rem;
  font-weight: 600;
}
.btn-outline-gold:hover { background: hsla(45,100%,50%,0.1); }

/* Width utilities */
.w-full { width: 100%; }
.w-full-xs-auto { width: 100%; }
@media (min-width: 420px) { .w-full-xs-auto { width: auto; } }
.w-full-sm-auto { width: 100%; }
@media (min-width: 640px) { .w-full-sm-auto { width: auto; } }

.hidden { display: none !important; }

/* ==================================================
   HERO
   ================================================== */
#hero {
  position: relative;
  background: hsl(0,0%,7%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
#hero .hero-bg { position: absolute; inset: 0; z-index: 0; }
#hero .hero-bg img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.07;
}
#hero .hero-bg .hero-tint {
  position: absolute; inset: 0; opacity: 0.4;
  background: linear-gradient(135deg, hsl(270,50%,15%), hsl(260,40%,10%), hsl(45,50%,15%));
}
#hero .hero-bg .hero-dark {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(17,17,17,0.9), rgba(17,17,17,0.7), hsl(0,0%,7%));
}

.hero-content {
  position: relative; z-index: 10;
  padding-top: 40px; padding-bottom: 40px;
  flex: 1;
}
@media (min-width: 640px)  { .hero-content { padding-top: 48px; padding-bottom: 48px; } }
@media (min-width: 768px)  { .hero-content { padding-top: 56px; padding-bottom: 56px; } }
@media (min-width: 1024px) { .hero-content { padding-top: 80px; padding-bottom: 80px; } }

/* grid gap-5 sm:gap-8 lg:gap-12 */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  align-items: center;
}
@media (min-width: 640px)  { .hero-grid { gap: 32px; } }
@media (min-width: 768px)  { .hero-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .hero-grid { gap: 48px; } }

/* Deadline pill — mb-6, px-3 py-1.5, border mu-gold/30, bg mu-gold/10 */
.hero-deadline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid rgba(255,208,0,0.3);
  background: rgba(255,208,0,0.1);
  margin-bottom: 24px;
}
.hero-deadline .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: hsl(45,100%,50%);
  animation: pulse-soft 2s cubic-bezier(0.4,0,0.6,1) infinite;
}
.hero-deadline .text {
  font-size: 10px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.15em; color: hsl(45,100%,50%);
}
@media (min-width: 640px) { .hero-deadline .text { font-size: 11px; letter-spacing: 0.2em; } }

/* Hero title: text-[1.5rem] xs:[1.7rem] sm:[2.2rem] md:[2.4rem] lg:[3.2rem] 2xl:[3.8rem]
   leading-[1.15] mb-6 sm:mb-6 font-weight:300 */
.hero-title {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.15;
  margin-bottom: 24px;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 420px)  { .hero-title { font-size: 1.7rem; } }
@media (min-width: 640px)  { .hero-title { font-size: 2.2rem; } }
@media (min-width: 768px)  { .hero-title { font-size: 2.4rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.2rem; } }
@media (min-width: 1536px) { .hero-title { font-size: 3.8rem; } }

/* text-[11px] sm:text-[13px] md:text-xs lg:text-sm */
.hero-sub {
  font-size: 11px;
  color: hsl(0,0%,82%);
  line-height: 1.6;
  margin-bottom: 28px;
  max-width: 28rem;
  text-align: justify;
}
@media (min-width: 640px) { .hero-sub { font-size: 13px; text-align: left; } }
@media (min-width: 768px) { .hero-sub { font-size: 12px; } }
@media (min-width: 1024px) { .hero-sub { font-size: 14px; } }

.hero-apply-wrap { margin-bottom: 24px; }
@media (min-width: 640px) { .hero-apply-wrap { margin-bottom: 40px; } }

/* gap-5 sm:gap-6 */
.hero-stats { display: flex; gap: 20px; }
@media (min-width: 640px) { .hero-stats { gap: 24px; } }
/* text-base sm:text-xl md:text-2xl font-bold tracking-tight leading-none */
.hero-stats .val {
  font-family: 'Inter', sans-serif;
  font-weight: 700; color: #fff;
  font-size: 16px;
  letter-spacing: -0.025em;
  line-height: 1;
}
@media (min-width: 640px) { .hero-stats .val { font-size: 20px; } }
@media (min-width: 768px) { .hero-stats .val { font-size: 24px; } }
/* text-[8px] sm:text-[10px] uppercase tracking-wider mt-1 */
.hero-stats .lbl {
  font-size: 8px; text-transform: uppercase;
  color: hsl(0,0%,45%);
  letter-spacing: 0.05em;
  margin-top: 4px;
}
@media (min-width: 640px) { .hero-stats .lbl { font-size: 10px; } }

/* Hero video: aspect-video rounded-xl max-h-[35vh] sm:max-h-[45vh] md:max-h-none */
.hero-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 0.75rem;
  overflow: hidden;
  max-height: 35vh;
}
@media (min-width: 640px) { .hero-video { max-height: 45vh; } }
@media (min-width: 768px) { .hero-video { max-height: none; } }
.hero-video .border-glow {
  position: absolute; inset: -1px;
  border-radius: 0.75rem;
  background: linear-gradient(to bottom right, rgba(57,181,215,0.4), rgba(247,213,68,0.2), rgba(227,131,48,0.4));
  z-index: 0;
}
.hero-video .video-wrap {
  position: absolute; inset: 1px;
  border-radius: 0.75rem;
  background: hsl(0,0%,7%);
  z-index: 1;
  overflow: hidden;
}
.hero-video iframe, .hero-video #hero-yt-player {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  border: 0;
}
.hero-video .vig-overlay {
  position: absolute; inset: 0; z-index: 10; pointer-events: none;
  box-shadow: inset 0 0 60px rgba(0,0,0,0.5);
}
.hero-video .bottom-fade {
  position: absolute; bottom: 0; left: 0; right: 0; height: 64px;
  background: linear-gradient(to top, hsl(0,0%,7%), transparent);
  z-index: 10; pointer-events: none;
}
.hero-video .top-fade {
  position: absolute; top: 0; left: 0; right: 0; height: 40px;
  background: linear-gradient(to bottom, rgba(17,17,17,0.3), transparent);
  z-index: 10; pointer-events: none;
}
.hero-video .mute-btn {
  position: absolute; bottom: 12px; right: 12px; z-index: 20;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(17,17,17,0.7);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  color: hsl(0,0%,64%);
  backdrop-filter: blur(8px);
  cursor: pointer;
}
.hero-video .mute-btn:hover { background: rgba(17,17,17,0.9); color: #fff; }
@media (min-width: 640px) {
  .hero-video .mute-btn { width: 36px; height: 36px; bottom: 16px; right: 16px; }
}

/* Hero bottom details strip */
.hero-details {
  position: relative; z-index: 10;
  background: rgba(17,17,17,0.9);
  backdrop-filter: blur(12px);
  margin-top: 8px;
  padding-bottom: 24px;
}
@media (min-width: 640px)  { .hero-details { margin-top: 16px; padding-bottom: 48px; } }
@media (min-width: 768px)  { .hero-details { padding-bottom: 64px; } }
@media (min-width: 1024px) { .hero-details { padding-bottom: 80px; } }
.hero-details .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) { .hero-details .grid { grid-template-columns: repeat(4, 1fr); } }
.hero-details .cell { padding: 10px 8px; }
@media (min-width: 640px) { .hero-details .cell { padding: 20px 16px; } }
.hero-details .cell > * + * { margin-top: 2px; }
.hero-details .lbl {
  font-size: 8px; text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(0,0%,45%); font-weight: 600;
  margin-bottom: 2px;
}
@media (min-width: 640px) { .hero-details .lbl { font-size: 10px; } }
.hero-details .val {
  font-size: 11px; font-weight: 600; color: #fff; line-height: 1.25;
}
@media (min-width: 640px) { .hero-details .val { font-size: 14px; } }
.hero-details .sub {
  font-size: 9px; color: hsl(0,0%,64%);
}
@media (min-width: 640px) { .hero-details .sub { font-size: 11px; } }

.hero-gradient-line {
  margin: 0 auto;
  height: 1px; width: 85%;
  background: linear-gradient(90deg, transparent, #39B5D7, #F7D544, #E38330, transparent);
}

/* ==================================================
   STICKY NAV (desktop, lg+)
   ================================================== */
.sticky-nav {
  display: none;
  position: fixed; top: 0; left: 0;
  width: 220px; height: 100vh;
  flex-direction: column;
  background:
    radial-gradient(ellipse 50% 40% at 50% 0%, rgba(57,181,215,0.05) 0%, transparent 60%),
    hsl(0,0%,7%);
  border-right: 1px solid rgba(51,51,51,0.4);
  z-index: 40;
  transition: transform 0.3s ease;
  transform: translateX(-100%);
}
.sticky-nav.visible { transform: translateX(0); }
@media (min-width: 1024px) { .sticky-nav { display: flex; } }
.sticky-nav nav {
  flex: 1;
  display: flex; flex-direction: column; gap: 2px;
  padding: 48px 8px 16px;
  overflow-y: auto;
}
.sticky-nav button {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  font-size: 14px; font-weight: 600;
  color: hsl(0,0%,64%);
  border-radius: 0.25rem;
  line-height: 1.25rem;
  border-left: 2px solid transparent;
  text-align: left;
  white-space: nowrap;
  transition: all 0.15s ease;
}
.sticky-nav button:hover {
  color: hsl(0,0%,90%);
  background: rgba(28,28,28,0.5);
}
.sticky-nav button.active {
  color: #fff;
  background: hsl(0,0%,11%);
  border-left-color: #a855f7;
}
.sticky-nav button img {
  width: 16px; height: 16px; opacity: 0.6; flex-shrink: 0;
}
.sticky-nav .apply-cta {
  padding: 16px 12px;
  border-top: 1px solid rgba(51,51,51,0.3);
}

@media (min-width: 1024px) {
  .main-wrap { padding-left: 220px; }
}
main { padding-bottom: 80px; }
@media (min-width: 1024px) { main { padding-bottom: 0; } }

/* ==================================================
   MOBILE NAV (bottom)
   ================================================== */
.mobile-nav { display: block; }
@media (min-width: 1024px) { .mobile-nav { display: none; } }

.mobile-nav-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(16px);
}
.mobile-nav-bar .inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
}
@media (min-width: 640px) { .mobile-nav-bar .inner { padding: 14px 20px; } }
.mobile-nav-bar .menu-toggle {
  display: flex; align-items: center; gap: 8px;
  font-size: 10px; font-weight: 700;
  color: hsl(0,0%,82%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
@media (min-width: 640px) { .mobile-nav-bar .menu-toggle { font-size: 12px; } }
.mobile-nav-bar .menu-toggle .icon-box {
  width: 32px; height: 32px; border-radius: 0.5rem;
  background: hsl(0,0%,11%);
  border: 1px solid hsl(0,0%,18%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
}
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(4px);
  display: none;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-panel {
  position: fixed; bottom: 54px; left: 0; right: 0; z-index: 45;
  background: rgba(17,17,17,0.98);
  backdrop-filter: blur(16px);
  border-top: 1px solid hsl(0,0%,16%);
  max-height: 70vh; overflow-y: auto;
  display: none;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}
.mobile-nav-panel.open { display: block; animation: fadeIn 0.2s ease; }
@media (min-width: 640px) { .mobile-nav-panel { bottom: 58px; } }
.mobile-nav-panel nav {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: hsl(0,0%,12%);
}
.mobile-nav-panel nav button {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: hsl(0,0%,7%);
  font-size: 10px; font-weight: 600; color: hsl(0,0%,64%);
  padding: 12px 8px;
  transition: all 0.15s ease;
}
@media (min-width: 640px) { .mobile-nav-panel nav button { font-size: 12px; padding: 14px 8px; } }
.mobile-nav-panel nav button:hover { color: #fff; background: hsl(0,0%,11%); }
.mobile-nav-panel nav button img { width: 14px; height: 14px; opacity: 0.4; }

/* ==================================================
   SECTION HEADER (eyebrow/star + h2)
   ================================================== */
.sec-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.sec-eyebrow img { width: 16px; height: 16px; }
.sec-eyebrow .label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
}
/* Default gradient variants */
.sec-eyebrow .label.g-vivid,
.sec-eyebrow .label.g-cool,
.sec-eyebrow .label.g-warm,
.sec-eyebrow .label.g-default {
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1rem;
}
.sec-eyebrow .label.gray { color: hsl(0,0%,45%); }

/* Default h2: text-2xl sm:text-3xl md:text-4xl */
.sec-h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem;     /* 24 */
  line-height: 1.2;
  color: #fff; margin-bottom: 12px;
  letter-spacing: -0.02em;
}
@media (min-width: 640px)  { .sec-h2 { font-size: 1.875rem; } }  /* 30 */
@media (min-width: 768px)  { .sec-h2 { font-size: 2.25rem; } }   /* 36 */
.sec-h2.light-bg { color: hsl(0,0%,7%); }
.sec-h2 .bold, .ap-header h2 .bold, .ff-header h2 .bold, .admissions-header h2 .bold, .fees-header h2 .bold { font-weight: 700; }
.bold { font-weight: 700; }

/* h2 variant for sections with lg:text-5xl leading-[0.95] */
.sec-h2.sec-h2-xl {
  line-height: 0.95;
}
@media (min-width: 1024px) { .sec-h2.sec-h2-xl { font-size: 3rem; } }  /* 48 */

/* FinalCTA variant: text-2xl sm:text-4xl md:text-5xl lg:text-6xl */
.sec-h2.sec-h2-huge {
  line-height: 0.95;
}
@media (min-width: 640px)  { .sec-h2.sec-h2-huge { font-size: 2.25rem; } }
@media (min-width: 768px)  { .sec-h2.sec-h2-huge { font-size: 3rem; } }
@media (min-width: 1024px) { .sec-h2.sec-h2-huge { font-size: 3.75rem; } }

/* Section description — text-xs sm:text-sm (default), many are 14 or 14/16 */
.sec-desc {
  font-size: 12px; color: hsl(0,0%,64%);
  max-width: 40rem; line-height: 1.6;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .sec-desc { font-size: 14px; margin-bottom: 40px; } }
.sec-desc.sd-14 { font-size: 14px; }
.sec-desc.sd-base {
  font-size: 14px;
}
@media (min-width: 640px) { .sec-desc.sd-base { font-size: 16px; } }

/* ==================================================
   ADMISSION PATHWAYS
   ================================================== */
.ap-header {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .ap-header { margin-bottom: 48px; } }
@media (min-width: 768px) {
  .ap-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.ap-header h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem;
  line-height: 1.15;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 640px)  { .ap-header h2 { font-size: 1.875rem; } }
@media (min-width: 768px)  { .ap-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .ap-header h2 { font-size: 3rem; } }
.ap-header h2 .bold { font-weight: 700; }
.ap-header p {
  font-size: 14px;
  color: hsl(0,0%,64%);
  max-width: 24rem;
  line-height: 1.6;
}
@media (min-width: 768px) { .ap-header p { text-align: right; } }

.pathways-wrap {
  display: flex; flex-direction: column; gap: 0;
}
@media (min-width: 1024px) { .pathways-wrap { flex-direction: row; } }
.pathways-cards {
  display: grid; grid-template-columns: 1fr 1fr;
}
@media (min-width: 1024px) {
  .pathways-cards { grid-template-columns: 1fr; width: 360px; flex-shrink: 0; }
}

.pathway-card {
  position: relative; text-align: left; overflow: hidden;
  transition: all 0.3s ease;
  background: transparent; padding: 0; cursor: pointer;
  width: 100%; display: block;
}
.pathway-card .top-bar {
  height: 6px; width: 100%;
  background: hsl(0,0%,14%);
  transition: all 0.3s ease;
}
.pathway-card.tbm.active .top-bar { background: hsl(45,100%,50%); }
.pathway-card.ylc.active .top-bar { background: #E38330; }
.pathway-card .inner {
  padding: 16px 12px;
  background: hsl(0,0%,9%);
  border: 1px solid hsl(0,0%,14%);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .inner { padding: 32px 24px; } }
.pathway-card.active .inner {
  background: hsl(0,0%,11%);
  border-color: hsl(0,0%,20%);
}
.pathway-card:not(.active):hover .inner {
  background: rgba(28,28,28,0.6);
}
.pathway-card .head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .pathway-card .head { margin-bottom: 24px; } }
/* num: text-2xl sm:text-5xl md:text-6xl tracking-tighter leading-none */
.pathway-card .num {
  font-size: 24px; font-weight: 700;
  color: hsl(0,0%,18%);
  letter-spacing: -0.05em; line-height: 1;
  transition: color 0.3s ease;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { .pathway-card .num { font-size: 48px; } }
@media (min-width: 768px) { .pathway-card .num { font-size: 60px; } }
.pathway-card.tbm.active .num { color: hsl(45,100%,50%); }
.pathway-card.ylc.active .num { color: #E38330; }
/* icon w-7 h-7 sm:w-10 sm:h-10 */
.pathway-card .icon-box {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: hsl(0,0%,16%);
  color: hsl(0,0%,45%);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .icon-box { width: 40px; height: 40px; } }
.pathway-card.tbm.active .icon-box { background: hsl(45,100%,50%); color: hsl(0,0%,7%); }
.pathway-card.ylc.active .icon-box { background: #E38330; color: hsl(0,0%,7%); }
.pathway-card .icon-box svg { width: 16px; height: 16px; }
@media (min-width: 640px) { .pathway-card .icon-box svg { width: 18px; height: 18px; } }
/* label text-[9px] sm:text-xs uppercase tracking-[0.15em] sm:tracking-[0.2em] */
.pathway-card .label {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: hsl(0,0%,45%);
  margin-bottom: 4px;
  line-height: 1.2;
  transition: color 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .label { font-size: 12px; margin-bottom: 8px; letter-spacing: 0.2em; } }
.pathway-card.tbm.active .label { color: hsl(45,100%,50%); }
.pathway-card.ylc.active .label { color: #E38330; }
/* h3 text-base sm:text-2xl font-bold mb-3 sm:mb-6 tracking-tight */
.pathway-card h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px; color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .pathway-card h3 { font-size: 24px; margin-bottom: 24px; } }
/* hline mb-3 sm:mb-6 */
.pathway-card .hline {
  height: 1px; width: 100%;
  background: hsl(0,0%,14%);
  margin-bottom: 12px;
  transition: background 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .hline { margin-bottom: 24px; } }
.pathway-card.active .hline { background: hsl(0,0%,22%); }
/* quick stats: hidden on small, block sm+, space-y-4, mb-8 */
.pathway-card .quick { display: none; }
@media (min-width: 640px) { .pathway-card .quick { display: block; margin-bottom: 32px; } }
.pathway-card .quick > div {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
  color: hsl(0,0%,45%);
  font-size: 14px;
  transition: color 0.3s ease;
}
.pathway-card .quick > div:last-child { margin-bottom: 0; }
.pathway-card.active .quick > div { color: hsl(0,0%,90%); }
.pathway-card.tbm.active .quick svg { color: hsl(45,100%,50%); }
.pathway-card.ylc.active .quick svg { color: #E38330; }
.pathway-card .quick svg { color: hsl(0,0%,32%); flex-shrink: 0; transition: color 0.3s ease; }
/* view label text-[10px] sm:text-sm font-semibold uppercase tracking-wider */
.pathway-card .view-label {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(0,0%,32%);
  transition: color 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .view-label { font-size: 14px; gap: 8px; } }
.pathway-card.tbm.active .view-label { color: hsl(45,100%,50%); }
.pathway-card.ylc.active .view-label { color: #E38330; }
.pathway-card .view-label svg {
  width: 12px; height: 12px;
  transition: transform 0.3s ease;
}
@media (min-width: 640px) { .pathway-card .view-label svg { width: 14px; height: 14px; } }
.pathway-card.active .view-label svg { transform: rotate(90deg); }

.pathway-detail {
  flex: 1; min-width: 0;
  border: 1px solid hsl(0,0%,20%);
  border-top: 0;
  background: hsl(0,0%,11%);
  max-height: 80vh; overflow-y: auto;
  animation: fadeIn 0.3s ease;
}
@media (min-width: 1024px) {
  .pathway-detail {
    border-left: 0;
    border-top: 1px solid hsl(0,0%,20%);
    max-height: none;
  }
}
.pathway-detail.hidden { display: none; }
.pathway-detail .accent-bar { height: 6px; width: 100%; }
.pathway-detail .body { padding: 20px; }
@media (min-width: 640px) { .pathway-detail .body { padding: 24px; } }
@media (min-width: 768px) { .pathway-detail .body { padding: 32px; } }
.pathway-detail .tag {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 12px; display: inline-block;
}
/* h3 text-xl sm:text-2xl md:text-3xl font-bold tracking-tight */
.pathway-detail h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; color: #fff;
  font-size: 20px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
@media (min-width: 640px) { .pathway-detail h3 { font-size: 24px; } }
@media (min-width: 768px) { .pathway-detail h3 { font-size: 30px; } }
.pathway-detail p.ideal {
  font-size: 14px; color: hsl(0,0%,64%);
  line-height: 1.6; margin-bottom: 24px;
}
@media (min-width: 640px) { .pathway-detail p.ideal { margin-bottom: 32px; } }
.pathway-detail .stats-row {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .pathway-detail .stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; } }
.pathway-detail .stat {
  padding: 12px;
  border: 1px solid hsl(0,0%,14%);
  background: hsl(0,0%,9%);
}
@media (min-width: 640px) { .pathway-detail .stat { padding: 16px 20px; } }
.pathway-detail .stat svg { color: hsl(0,0%,45%); margin-bottom: 6px; width: 14px; height: 14px; }
@media (min-width: 640px) { .pathway-detail .stat svg { margin-bottom: 8px; } }
.pathway-detail .stat .lbl {
  font-size: 9px; color: hsl(0,0%,45%);
  text-transform: uppercase; letter-spacing: 0.05em;
  font-weight: 600; margin-bottom: 2px;
}
@media (min-width: 640px) { .pathway-detail .stat .lbl { font-size: 12px; margin-bottom: 4px; } }
.pathway-detail .stat .val {
  font-size: 12px; font-weight: 600; color: #fff;
  word-break: break-word;
}
@media (min-width: 640px) { .pathway-detail .stat .val { font-size: 14px; } }
.pathway-detail .hl-label {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(0,0%,45%); margin-bottom: 12px;
}
@media (min-width: 640px) { .pathway-detail .hl-label { margin-bottom: 16px; } }
.pathway-detail .highlights {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .pathway-detail .highlights { grid-template-columns: repeat(3, 1fr); gap: 12px; } }
@media (min-width: 768px) { .pathway-detail .highlights { gap: 16px; } }
@media (min-width: 640px) { .pathway-detail .highlights { margin-bottom: 32px; } }
.pathway-detail .hl {
  padding: 12px;
  background: hsl(0,0%,9%);
  border: 1px solid hsl(0,0%,14%);
  border-radius: 0.25rem;
}
@media (min-width: 640px) { .pathway-detail .hl { padding: 16px; } }
.pathway-detail .hl .stat {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 24px; display: block; margin-bottom: 4px;
  border: 0; padding: 0; background: none;
}
@media (min-width: 640px) { .pathway-detail .hl .stat { font-size: 30px; } }
.pathway-detail .hl .desc {
  font-size: 10px; color: hsl(0,0%,64%); line-height: 1.4;
}
@media (min-width: 640px) { .pathway-detail .hl .desc { font-size: 12px; } }
.pathway-apply-row {
  display: flex; flex-direction: column;
  gap: 12px;
}
@media (min-width: 640px) {
  .pathway-apply-row { flex-direction: row; align-items: center; }
}

/* ==================================================
   CAREER OUTCOMES
   ================================================== */
.career-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .career-stats { gap: 12px; margin-bottom: 48px; } }
@media (min-width: 768px) { .career-stats { grid-template-columns: repeat(4, 1fr); } }
.career-stat {
  border-radius: 0.5rem;
  padding: 16px;
  border: 1px solid hsl(0,0%,15%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(168,85,247,0.1);
  transition: all 0.3s ease;
  background: hsl(0,0%,10%);
}
@media (min-width: 640px) { .career-stat { padding: 20px; } }
@media (min-width: 768px) { .career-stat { padding: 24px; } }
.career-stat:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(168,85,247,0.15);
  transform: translateY(-4px);
}
.career-stat.mu-card-gradient-border {
  background: hsl(0,0%,11%);
  border: 0;
}
/* val text-xl sm:text-2xl md:text-3xl font-display tabular-nums mb-1 */
.career-stat .val {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 20px; color: #fff;
  font-variant-numeric: tabular-nums;
  margin-bottom: 4px;
}
@media (min-width: 640px) { .career-stat .val { font-size: 24px; } }
@media (min-width: 768px) { .career-stat .val { font-size: 30px; } }
.career-stat .lbl {
  font-size: 10px; color: hsl(0,0%,45%);
  font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em;
}
@media (min-width: 640px) { .career-stat .lbl { font-size: 12px; } }

.roles-wrap { margin-bottom: 24px; }
@media (min-width: 640px) { .roles-wrap { margin-bottom: 40px; } }
.roles-header {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: hsl(0,0%,45%); margin-bottom: 12px;
}
@media (min-width: 640px) { .roles-header { margin-bottom: 16px; } }
.role-pills { display: flex; flex-wrap: wrap; gap: 6px; }
@media (min-width: 640px) { .role-pills { gap: 8px; } }
.role-pill {
  display: inline-block;
  background: rgba(28,28,28,0.8);
  backdrop-filter: blur(4px);
  color: hsl(0,0%,82%);
  padding: 6px 10px;
  border-radius: 9999px;
  font-size: 11px; font-weight: 500;
  border: 1px solid transparent;
  transition: border-color 0.2s ease;
}
@media (min-width: 640px) { .role-pill { font-size: 14px; padding: 8px 16px; } }
.role-pill:hover { border-color: rgba(57,181,215,0.3); }

/* Recruiter marquee */
.recruiters-wrap { margin-bottom: 32px; }
@media (min-width: 640px) { .recruiters-wrap { margin-bottom: 40px; } }
.recruiter-strip { overflow: hidden; border-radius: 0.5rem; }
.recruiter-track {
  display: flex; gap: 16px; align-items: center;
  animation: scroll-left 30s linear infinite;
  will-change: transform;
  width: max-content;
}
@media (min-width: 640px) { .recruiter-track { gap: 24px; } }
.recruiter-item {
  flex-shrink: 0;
  padding: 8px 12px;
  background: rgba(28,28,28,0.8);
  backdrop-filter: blur(4px);
  border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
}
@media (min-width: 640px) { .recruiter-item { padding: 12px 20px; } }
.recruiter-item img {
  height: 8px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: opacity 0.2s ease;
}
@media (min-width: 640px) { .recruiter-item img { height: 12px; } }
@media (min-width: 768px) { .recruiter-item img { height: 14px; } }
.recruiter-item img:hover { opacity: 1; }

.outcomes-cta {
  border-radius: 0.5rem;
  padding: 20px;
  display: flex; flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  background: hsl(0,0%,11%);
}
@media (min-width: 640px) {
  .outcomes-cta { padding: 24px; flex-direction: row; align-items: center; }
}
@media (min-width: 768px) { .outcomes-cta { padding: 32px; } }
.outcomes-cta .title {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 16px; color: #fff; margin-bottom: 4px;
}
@media (min-width: 640px) { .outcomes-cta .title { font-size: 18px; } }
.outcomes-cta p:not(.title) {
  font-size: 12px; color: hsl(0,0%,64%);
}
@media (min-width: 640px) { .outcomes-cta p:not(.title) { font-size: 14px; } }
.outcomes-cta .cta-buttons {
  display: flex; flex-direction: column; gap: 8px; width: 100%;
}
@media (min-width: 640px) {
  .outcomes-cta .cta-buttons { flex-direction: row; width: auto; gap: 12px; }
}

/* ==================================================
   ALUMNI OUTCOMES
   ================================================== */
.transform-grid {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 420px)  { .transform-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px)  { .transform-grid { gap: 20px; margin-bottom: 48px; } }
@media (min-width: 1024px) { .transform-grid { grid-template-columns: repeat(3, 1fr); } }

.transform-card {
  position: relative; overflow: hidden;
  border-radius: 0.25rem;
  transition: transform 0.3s ease;
}
.transform-card:hover { transform: translateY(-4px); }
.transform-card .header {
  background: hsl(45,100%,50%);
  padding: 12px 16px;
  display: flex; align-items: center; justify-content: space-between;
  border-radius: 0.5rem 0.5rem 0 0;
}
@media (min-width: 640px) { .transform-card .header { padding: 16px 20px; } }
/* num text-3xl sm:text-4xl font-bold leading-none tracking-tighter */
.transform-card .num {
  font-size: 30px; font-weight: 700;
  color: hsl(0,0%,7%);
  letter-spacing: -0.05em; line-height: 1;
  font-family: 'Inter', sans-serif;
}

.avatar > img {
  border-radius: 50%;
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
}
.transform-card .avatar {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 30%;
}
@media (min-width: 640px) { .transform-card .num { font-size: 36px; } }
.transform-card .avatar {
  display: flex; align-items: center; gap: 8px;
}
.transform-card .avatar img.person {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; background: rgba(17,17,17,0.1);
}
@media (min-width: 640px) { .transform-card .avatar img.person { width: 40px; height: 40px; } }
.transform-card .avatar .linkedin { opacity: 0.7; transition: opacity 0.2s ease; }
.transform-card .avatar .linkedin img {
  width: 16px; height: 16px;
  filter: brightness(0);
}
.transform-card .avatar .linkedin:hover { opacity: 1; }
.transform-card .body {
  background: rgba(23,23,23,0.8);
  backdrop-filter: blur(4px);
  padding: 16px;
  border-radius: 0 0 0.5rem 0.5rem;
}
@media (min-width: 640px) { .transform-card .body { padding: 16px 20px 20px; } }
.transform-card .name {
  font-weight: 700; color: #fff;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: 0.025em;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .transform-card .name { font-size: 14px; margin-bottom: 16px; } }
.transform-card .stage { margin-bottom: 10px; }
@media (min-width: 640px) { .transform-card .stage { margin-bottom: 12px; } }
.transform-card .stage-lbl {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  display: block; margin-bottom: 2px;
}
@media (min-width: 640px) { .transform-card .stage-lbl { font-size: 12px; } }
.transform-card .stage-lbl.before { color: hsl(45,100%,50%); }
.transform-card .stage-lbl.during { color: hsl(0,0%,45%); }
.transform-card .stage-lbl.after { color: hsl(45,100%,50%); }
.transform-card .stage p { font-size: 12px; line-height: 1.5; }
@media (min-width: 640px) { .transform-card .stage p { font-size: 14px; } }
.transform-card .stage.before p { color: hsl(0,0%,64%); }
.transform-card .stage.before p .company { color: hsl(0,0%,90%); font-weight: 500; }
.transform-card .stage.during p { color: hsl(0,0%,82%); }
.transform-card .stage.after p { color: #fff; font-weight: 600; line-height: 1.25rem; }
.transform-card .stage.after p .company { color: hsl(45,100%,50%); }
.transform-card .stage-divider {
  width: 100%; height: 1px;
  background: hsl(0,0%,18%);
  margin: 8px 0;
}
@media (min-width: 640px) { .transform-card .stage-divider { margin: 12px 0; } }

.testimonial-row {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .testimonial-row { gap: 20px; margin-bottom: 40px; } }
.testimonial-row::-webkit-scrollbar { display: none; }
.testimonial-row { -ms-overflow-style: none; scrollbar-width: none; }
.testimonial-card {
  min-width: 280px; flex-shrink: 0;
  border-radius: 0.5rem;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,15%);
  padding: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(168,85,247,0.1);
}
@media (min-width: 640px) { .testimonial-card { min-width: 320px; padding: 16px; } }
@media (min-width: 768px) { .testimonial-card { min-width: 360px; } }
.testimonial-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(168,85,247,0.15);
  transform: translateY(-4px);
}
.testimonial-card .video {
  aspect-ratio: 16/9;
  border-radius: 0.5rem;
  background: hsl(0,0%,11%);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 8px; overflow: hidden;
}
@media (min-width: 640px) { .testimonial-card .video { margin-bottom: 12px; } }
.testimonial-card .video img {
  width: 32px; height: 32px; opacity: 0.4;
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .testimonial-card .video img { width: 40px; height: 40px; } }
.testimonial-card:hover .video img { opacity: 1; transform: scale(1.1); }
.testimonial-card .name {
  font-weight: 600; color: #fff;
  font-size: 12px;
}
@media (min-width: 640px) { .testimonial-card .name { font-size: 14px; } }
.testimonial-card .role {
  font-size: 10px; color: hsl(0,0%,82%);
}
@media (min-width: 640px) { .testimonial-card .role { font-size: 12px; } }
.testimonial-card .cohort {
  font-size: 10px; color: hsl(0,0%,45%); margin-top: 4px;
}
@media (min-width: 640px) { .testimonial-card .cohort { font-size: 12px; } }

.testimonial-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .testimonial-header { margin-bottom: 32px; } }
.testimonial-header h3 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 20px; color: #fff;
}
@media (min-width: 640px) { .testimonial-header h3 { font-size: 24px; } }
@media (min-width: 768px) { .testimonial-header h3 { font-size: 30px; } }
.testimonial-nav { display: flex; gap: 8px; }
.testimonial-nav button {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid hsl(0,0%,20%);
  background: hsl(0,0%,10%);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.2s ease;
}
.testimonial-nav button:hover:not(:disabled) { background: hsl(0,0%,15%); }
.testimonial-nav button:disabled { opacity: 0.3; cursor: not-allowed; }

/* ==================================================
   WHY MASTERS' UNION
   ================================================== */
.why-grid {
  display: grid; grid-template-columns: 1fr; gap: 24px;
}
@media (min-width: 640px) { .why-grid { gap: 32px; } }
@media (min-width: 1024px) { .why-grid { grid-template-columns: 280px 1fr; gap: 64px; } }
.why-left .sec-h2 { margin-bottom: 12px; }
.why-left .sec-desc { margin-bottom: 0;line-height: 1.25rem; }
.why-links { margin-top: 24px; }
@media (min-width: 640px) { .why-links { margin-top: 32px; } }
.why-links .title {
  font-size: 12px; font-weight: 600; text-transform: uppercase;
  letter-spacing: 0.15em; color: hsl(0,0%,45%);
  margin-bottom: 16px;
  line-height: 1rem;
}
.why-links a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid rgba(51,51,51,0.4);
  font-size: 12px; font-weight: 500;
  color: hsl(0,0%,82%);
  transition: color 0.2s ease;
}
@media (min-width: 640px) { .why-links a { padding: 14px 0; font-size: 14px; } }
.why-links a:hover { color: #fff; }
.why-links a svg {
  color: hsl(0,0%,32%);
  width: 16px; height: 16px;
  transition: all 0.2s ease;
}
.why-links a:hover svg {
  color: hsl(270,91%,58%);
  transform: translateX(2px);
}

.why-highlights {
  display: flex; flex-direction: column;
  gap: 16px;
}
@media (min-width: 640px) { .why-highlights { gap: 20px; } }
.why-card {
  border-radius: 0.5rem; overflow: hidden;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,15%);
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: all 0.3s ease;
}
.why-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.why-card .layout {
  display: grid; grid-template-columns: 1fr;
}
@media (min-width: 640px) { .why-card .layout { grid-template-columns: 200px 1fr; } }
@media (min-width: 768px) { .why-card .layout { grid-template-columns: 240px 1fr; } }
.why-card .img-wrap { position: relative; overflow: hidden; height: 160px; }
@media (min-width: 640px) { .why-card .img-wrap { height: auto; } }
.why-card .img-wrap img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.9;
}
.why-card .img-wrap .fade {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, transparent 60%, hsl(0,0%,10%));
}
@media (min-width: 640px) {
  .why-card .img-wrap .fade {
    background: linear-gradient(to right, transparent, transparent 60%, hsl(0,0%,10%));
  }
}
.why-card .content {
  padding: 20px;
  display: flex; flex-direction: column; justify-content: center;
}
@media (min-width: 640px) { .why-card .content { padding: 24px; } }
@media (min-width: 768px) { .why-card .content { padding: 28px; } }
.why-card h3 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300; font-size: 20px; color: #fff;
  line-height: 1.2; letter-spacing: -0.01em; margin-bottom: 12px;
}
@media (min-width: 640px) { .why-card h3 { font-size: 24px; } }
@media (min-width: 768px) { .why-card h3 { font-size: 1.65rem; } }
.why-card p.desc {
  font-size: 12px; color: hsl(0,0%,64%); line-height: 1.6;
}
@media (min-width: 640px) { .why-card p.desc { font-size: 14px; } }
.why-card .extra {
  margin-top: 16px;
  border-top: 1px solid rgba(51,51,51,0.3);
  padding-top: 12px;
}
.why-card .extra .companies-lbl {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: hsl(0,0%,45%);
  margin-bottom: 10px;
}
@media (min-width: 640px) { .why-card .extra .companies-lbl { font-size: 12px; } }
.why-card .extra .companies {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .why-card .extra .companies { gap: 8px; } }
.why-card .extra .companies span {
  font-size: 10px; font-weight: 500;
  color: hsl(0,0%,82%);
  background: hsl(0,0%,11%);
  padding: 4px 10px;
  border-radius: 0.25rem;
}
@media (min-width: 640px) { .why-card .extra .companies span { font-size: 11px; } }
.why-card .extra a {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 600;
  color: hsl(45,100%,50%);
  transition: color 0.2s ease;
}
@media (min-width: 640px) { .why-card .extra a { font-size: 14px; } }
.why-card .extra a:hover { color: rgba(255,208,0,0.8); }
.why-card .extra a svg { width: 14px; height: 14px; }

/* ==================================================
   CURRICULUM
   ================================================== */
.curriculum-header { margin-bottom: 64px; }
@media (min-width: 640px) { .curriculum-header { margin-bottom: 80px; } }
.curriculum-header h2 { max-width: 48rem; }
.curriculum-intro {
  max-width: 32rem !important;
  margin-top: 20px; margin-bottom: 0;
}

.inclass-section, .outclass-section { margin-bottom: 80px; }
@media (min-width: 640px) { .inclass-section, .outclass-section { margin-bottom: 112px; } }
.outclass-section { margin-bottom: 48px; }
@media (min-width: 640px) { .outclass-section { margin-bottom: 64px; } }

.inclass-eye, .outclass-eye {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 8px;
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 640px) { .inclass-eye, .outclass-eye { font-size: 12px; } }
.inclass-eye svg, .outclass-eye svg { color: hsl(0,0%,82%); }

.inclass-section .sec-h2,
.outclass-section .sec-h2 {
  line-height: 0.95;
  max-width: 48rem; margin-bottom: 16px;
}
.inclass-section .sec-desc,
.outclass-section .sec-desc {
  font-size: 14px; max-width: 42rem;
  margin-bottom: 32px;
}
@media (min-width: 640px) {
  .inclass-section .sec-desc,
  .outclass-section .sec-desc { font-size: 16px; margin-bottom: 40px; }
}

.inclass-wrap {
  display: flex; flex-direction: column; gap: 0;
}
@media (min-width: 1024px) { .inclass-wrap { flex-direction: row; align-items: flex-start; } }

.module-menu {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0;
  height: fit-content; flex-shrink: 0;
  align-content: start;
}
@media (min-width: 640px) { .module-menu { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .module-menu { width: 340px; grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1280px) { .module-menu { width: 280px; grid-template-columns: 1fr; } }

.module-btn {
  text-align: left; overflow: hidden;
  position: relative; width: 100%;
  display: block; cursor: pointer; background: transparent;
}
.module-btn .bar {
  height: 2px; width: 100%;
  background: hsl(0,0%,14%);
  transition: background 0.3s ease;
}
.module-btn.active[data-accent="#39B5D7"] .bar { background: #39B5D7; }
.module-btn.active[data-accent="#F7D544"] .bar { background: #F7D544; }
.module-btn.active[data-accent="#E38330"] .bar { background: #E38330; }
.module-btn .inner {
  padding: 8px 12px;
  background: hsl(0,0%,9%);
  border: 1px solid hsl(0,0%,14%);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .module-btn .inner { padding: 12px 16px; } }
.module-btn.active .inner {
  background: hsl(0,0%,11%);
  border-color: hsl(0,0%,20%);
}
.module-btn:not(.active):hover .inner {
  background: rgba(28,28,28,0.6);
}
.module-btn .num {
  display: block; font-size: 18px; font-weight: 700;
  line-height: 1; letter-spacing: -0.05em;
  color: hsl(0,0%,18%);
  margin-bottom: 4px;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { .module-btn .num { font-size: 20px; margin-bottom: 6px; } }
.module-btn.active[data-accent="#39B5D7"] .num { color: #39B5D7; }
.module-btn.active[data-accent="#F7D544"] .num { color: #F7D544; }
.module-btn.active[data-accent="#E38330"] .num { color: #E38330; }
.module-btn h3 {
  font-family: 'Inter', sans-serif;
  font-size: 11px; font-weight: 700; color: #fff;
  letter-spacing: -0.025em; line-height: 1.35;
  margin-bottom: 4px;
}
@media (min-width: 640px) { .module-btn h3 { font-size: 12px; } }
.module-btn .view {
  display: flex; align-items: center; gap: 6px;
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(0,0%,32%);
  transition: color 0.2s ease;
}
@media (min-width: 640px) { .module-btn .view { font-size: 12px; } }
.module-btn .view svg {
  width: 12px; height: 12px;
  transition: transform 0.3s ease;
}
.module-btn.active[data-accent="#39B5D7"] .view { color: #39B5D7; }
.module-btn.active[data-accent="#F7D544"] .view { color: #F7D544; }
.module-btn.active[data-accent="#E38330"] .view { color: #E38330; }
.module-btn.active .view svg { transform: rotate(90deg); }

.module-panel {
  flex: 1; min-width: 0;
  border: 1px solid hsl(0,0%,20%);
  border-top: 0;
  background: hsl(0,0%,11%);
  animation: fadeIn 0.3s ease;
}
@media (min-width: 1024px) {
  .module-panel { border-left: 0; border-top: 1px solid hsl(0,0%,20%); }
}
.module-panel[hidden] { display: none; }
.module-panel .accent { height: 2px; width: 100%; }
.module-panel .body { padding: 16px; }
@media (min-width: 640px) { .module-panel .body { padding: 20px; } }
@media (min-width: 768px) { .module-panel .body { padding: 24px; } }
.module-panel .tag {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  margin-bottom: 8px; display: inline-block;
}
.module-panel h3 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; color: #fff;
  font-size: 18px;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}
@media (min-width: 640px) { .module-panel h3 { font-size: 20px; } }
@media (min-width: 768px) { .module-panel h3 { font-size: 24px; } }
.module-panel .desc {
  font-size: 12px; color: hsl(0,0%,82%);
  line-height: 1.6; margin-bottom: 20px; max-width: 36rem;
}
@media (min-width: 640px) { .module-panel .desc { font-size: 13px; margin-bottom: 24px; } }
.module-panel .learn-lbl {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(0,0%,64%); margin-bottom: 8px;
}
@media (min-width: 640px) { .module-panel .learn-lbl { margin-bottom: 12px; } }
.module-panel .learn-grid {
  display: grid; grid-template-columns: 1fr; gap: 0;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .module-panel .learn-grid { grid-template-columns: repeat(3, 1fr); } }
.module-panel .learn-item {
  padding: 10px;
  border: 1px solid hsl(0,0%,16%);
  background: hsl(0,0%,8%);
}
@media (min-width: 640px) { .module-panel .learn-item { padding: 12px; } }
.module-panel .learn-item .n {
  font-family: 'IvyPresto Display', serif;
  font-weight: 800; font-size: 20px;
  opacity: 0.7; display: block; margin-bottom: 2px;
}
@media (min-width: 640px) { .module-panel .learn-item .n { font-size: 24px; } }
.module-panel .learn-item .txt {
  font-size: 11px; color: hsl(0,0%,82%); line-height: 1.6;
}
@media (min-width: 640px) { .module-panel .learn-item .txt { font-size: 12px; } }
.module-panel .faculty-wrap {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid hsl(0,0%,14%);
}
.module-panel .faculty-group { margin-bottom: 20px; }
.module-panel .faculty-group:last-child { margin-bottom: 0; }
.module-panel .faculty-title {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.module-panel .faculty-title .dot { width: 6px; height: 6px; border-radius: 50%; }
.module-panel .faculty-title p {
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
}
.module-panel .faculty-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  column-gap: 16px; row-gap: 20px;
  padding-bottom: 8px;
  max-height: 280px; overflow: hidden;
}
.faculty-card {
  display: flex; flex-direction: column; align-items: center;
  cursor: pointer; width: 100%;
}
.faculty-card .avatar { position: relative; margin-bottom: 10px; }
.faculty-card .avatar .ring {
  width: 72px; height: 72px; border-radius: 50%;
  padding: 2px;
  transition: box-shadow 0.3s ease;
}
.faculty-card .avatar img {
  width: 100%; height: 100%; border-radius: 50%;
  object-fit: cover; background: #000;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
.faculty-card:hover .avatar img { filter: grayscale(0); }
.faculty-card .name {
  font-size: 11px; font-weight: 600; color: #fff;
  line-height: 1.2; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  width: 100%;
}
.faculty-card .role {
  font-size: 9px; color: hsl(0,0%,64%);
  line-height: 1.3; text-align: center; margin-top: 2px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
  overflow: hidden; width: 100%;
}

/* Outclass tabs */
.outclass-tabs {
  display: flex; gap: 0;
  border: 1px solid hsl(0,0%,15%);
  overflow-x: auto;
}
.outclass-tabs::-webkit-scrollbar { display: none; }
.outclass-tabs { -ms-overflow-style: none; scrollbar-width: none; }
.outclass-tab {
  flex: 1; min-width: 70px;
  padding: 10px 4px;
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
  background: hsl(0,0%,5%);
  cursor: pointer;
}
@media (min-width: 640px) { .outclass-tab { padding: 16px; } }
.outclass-tab.active {
  border-bottom-color: hsl(47,90%,60%);
  background: hsl(0,0%,8%);
}
.outclass-tab .num {
  display: block;
  font-family: 'Courier New', monospace;
  font-size: 9px; font-weight: 700;
  color: hsl(0,0%,30%);
  margin-bottom: 2px;
  transition: color 0.3s ease;
}
@media (min-width: 640px) { .outclass-tab .num { font-size: 10px; } }
.outclass-tab.active .num { color: hsl(47,90%,60%); }
.outclass-tab .title {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 7px; font-weight: 600;
  color: hsl(0,0%,35%);
  line-height: 1.2; letter-spacing: -0.025em;
  transition: color 0.3s ease;
}
@media (min-width: 420px) { .outclass-tab .title { font-size: 8px; } }
@media (min-width: 640px) { .outclass-tab .title { font-size: 12px; } }
.outclass-tab.active .title { color: hsl(0,0%,95%); }

.outclass-panel {
  border-radius: 0.5rem; overflow: hidden;
  background: hsl(0,0%,7%);
  border: 1px solid hsl(0,0%,15%);
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(168,85,247,0.1);
}
.outclass-panel .layout {
  display: flex; flex-direction: column;
}
@media (min-width: 768px) {
  .outclass-panel .layout { flex-direction: row; height: 480px; }
}
.outclass-panel .gallery {
  position: relative;
  aspect-ratio: 4/3; overflow: hidden;
}
@media (min-width: 768px) {
  .outclass-panel .gallery { width: 50%; aspect-ratio: auto; height: 100%; }
}
.outclass-panel .gallery .imgs { position: absolute; inset: 0; z-index: 3; }
.outclass-panel .gallery .imgs img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  opacity: 0;
  transition: opacity 0.7s ease-in-out;
}
.outclass-panel .gallery .imgs img.active { opacity: 1; }
.outclass-panel .gallery .label {
  position: absolute; top: 16px; left: 16px; z-index: 20;
  font-family: 'Inter', sans-serif;
  font-size: 9px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.25em;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.5);
  padding: 4px 12px;
  backdrop-filter: blur(4px);
}
.outclass-panel .gallery .dots {
  position: absolute; bottom: 16px; left: 50%; z-index: 20;
  transform: translateX(-50%);
  display: none; gap: 6px;
}
@media (min-width: 768px) { .outclass-panel .gallery .dots { display: flex; } }
.outclass-panel .gallery .dots button {
  height: 6px; width: 6px; border-radius: 3px;
  background: rgba(255,255,255,0.3);
  transition: all 0.3s ease;
  border: 0;
}
.outclass-panel .gallery .dots button.active {
  background: #F7D544; width: 16px;
}
.outclass-panel .gallery .bottom-fade {
  position: absolute; inset: auto 0 0 0; height: 80px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
  z-index: 10; pointer-events: none;
}
.outclass-panel .info {
  position: relative;
  padding: 20px;
  display: flex; flex-direction: column; justify-content: center;
  background: hsl(0,0%,7%);
}
@media (min-width: 640px) { .outclass-panel .info { padding: 24px; } }
@media (min-width: 768px) {
  .outclass-panel .info { width: 50%; padding: 32px; overflow-y: auto; }
}
@media (min-width: 1024px) { .outclass-panel .info { padding: 40px; } }
.outclass-panel .info .num-row {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.outclass-panel .info .num-row .n {
  font-family: 'Courier New', monospace;
  font-size: 10px; font-weight: 700; color: hsl(45,100%,50%);
}
.outclass-panel .info .num-row .line { flex: 1; height: 1px; background: hsl(0,0%,15%); }
.outclass-panel .info h3 {
  font-family: 'IvyPresto Display', serif;
  font-style: oblique 14deg;
  font-weight: 300;
  font-size: 24px; color: #fff;
  line-height: 0.9; margin-bottom: 12px;
}
@media (min-width: 640px) { .outclass-panel .info h3 { font-size: 30px; } }
@media (min-width: 768px) { .outclass-panel .info h3 { font-size: 36px; } }
.outclass-panel .info p.desc {
  font-size: 12px; color: rgba(255,255,255,0.45);
  line-height: 1.6; margin-bottom: 24px; max-width: 28rem;
}
@media (min-width: 640px) { .outclass-panel .info p.desc { font-size: 14px; } }
.outclass-panel .info .stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  border-top: 1px solid hsl(0,0%,15%);
  padding-top: 16px;
}
.outclass-panel .info .stats-grid .v {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fff;
  font-variant-numeric: tabular-nums; line-height: 1;
}
@media (min-width: 640px) { .outclass-panel .info .stats-grid .v { font-size: 18px; } }
@media (min-width: 768px) { .outclass-panel .info .stats-grid .v { font-size: 20px; } }
.outclass-panel .info .stats-grid .lbl {
  display: block; font-size: 9px;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: rgba(255,255,255,0.5);
  margin-top: 6px; font-weight: 500;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { .outclass-panel .info .stats-grid .lbl { font-size: 10px; } }
.outclass-panel .info .brands {
  padding-top: 24px; margin-top: 8px;
  border-top: 1px solid hsl(0,0%,15%);
}
.outclass-panel .info .brands .lbl {
  font-size: 9px; text-transform: uppercase;
  letter-spacing: 0.1em; color: hsl(45,100%,50%);
  font-weight: 600; margin-bottom: 8px; display: block;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { .outclass-panel .info .brands .lbl { font-size: 10px; } }
.outclass-panel .info .brands .list {
  display: flex; flex-wrap: wrap;
  column-gap: 16px; row-gap: 4px;
}
.outclass-panel .info .brands .list span {
  font-family: 'Inter', sans-serif;
  font-size: 11px; color: rgba(255,255,255,0.7); font-weight: 500;
}
@media (min-width: 640px) { .outclass-panel .info .brands .list span { font-size: 12px; } }
.outclass-panel .info .brands .list .rev {
  font-family: 'Courier New', monospace;
  color: rgba(255,208,0,0.8);
  font-size: 10px;
}
.outclass-panel .info .brands .more { color: rgba(255,255,255,0.35); font-style: italic; }
.outclass-download {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 16px;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em;
  color: #F7D544;
  border: 1px solid rgba(247,213,68,0.3);
  background: rgba(247,213,68,0.05);
  transition: all 0.3s ease;
  margin-top: 12px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}
.outclass-download:hover { border-color: #F7D544; background: rgba(247,213,68,0.1); }
.outclass-download svg { width: 12px; height: 12px; }

.oc-content { margin-top: 0; }
.oc-content.hidden { display: none; }
.oc-content > * + * { margin-top: 20px; }

.curriculum-cta {
  display: flex; flex-direction: column;
  gap: 16px;
  border-top: 1px solid hsl(0,0%,15%);
  padding-top: 32px;
}
@media (min-width: 640px) {
  .curriculum-cta { flex-direction: row; align-items: center; justify-content: space-between; }
}
.curriculum-cta .cta-head {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 600; color: #fff;
  margin-bottom: 4px;
}
@media (min-width: 640px) { .curriculum-cta .cta-head { font-size: 18px; } }
.curriculum-cta .cta-sub {
  font-size: 12px; color: hsl(0,0%,64%);
}
@media (min-width: 640px) { .curriculum-cta .cta-sub { font-size: 14px; } }
.curriculum-cta .cta-actions {
  display: flex; flex-direction: column;
  gap: 8px; width: 100%;
}
@media (min-width: 640px) {
  .curriculum-cta .cta-actions { flex-direction: row; width: auto; gap: 12px; }
}

/* ==================================================
   EXPERIENCE / IMMERSIONS
   ================================================== */
.immersions-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .immersions-stats { gap: 16px; margin-bottom: 40px; } }
@media (min-width: 1024px) { .immersions-stats { grid-template-columns: repeat(4, 1fr); } }
.immersion-stat {
  border-radius: 0.5rem;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,15%);
  padding: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 1px 3px rgba(168,85,247,0.1);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .immersion-stat { padding: 20px; } }
.immersion-stat:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.6), 0 2px 8px rgba(168,85,247,0.15);
}
.immersion-stat .v {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 24px; color: #fff;
  margin-bottom: 4px;
}
@media (min-width: 640px) { .immersion-stat .v { font-size: 30px; } }
.immersion-stat .l {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600; color: #fff;
  margin-bottom: 2px;
}
@media (min-width: 640px) { .immersion-stat .l { font-size: 14px; } }
.immersion-stat .s {
  font-size: 10px; color: hsl(0,0%,45%);
}
@media (min-width: 640px) { .immersion-stat .s { font-size: 12px; } }

.immersions-two {
  display: grid; grid-template-columns: 1fr; gap: 16px;
}
@media (min-width: 768px) { .immersions-two { grid-template-columns: 1fr 1fr; } }
.immersion-card {
  border-radius: 0.5rem;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,15%);
  padding: 20px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(168,85,247,0.1);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .immersion-card { padding: 24px; } }
.immersion-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(168,85,247,0.15);
}
.immersion-card .head {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 12px;
}
.immersion-card .head svg { color: hsl(0,0%,64%); width: 16px; height: 16px; }
.immersion-card .head p {
  font-family: 'Inter', sans-serif;
  font-weight: 600; color: #fff;
  font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.025em;
}
.immersion-card .desc {
  font-size: 12px; color: hsl(0,0%,64%);
  line-height: 1.6; margin-bottom: 16px;
}
@media (min-width: 640px) { .immersion-card .desc { font-size: 14px; } }
.immersion-card .meta {
  font-size: 10px; color: hsl(0,0%,45%);
  margin-bottom: 16px;
}
@media (min-width: 640px) { .immersion-card .meta { font-size: 12px; } }
.immersion-card .partners-head {
  border-top: 1px solid rgba(51,51,51,0.4);
  padding-top: 12px;
}
.immersion-card .partners-lbl {
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.15em; color: #fff;
  margin-bottom: 12px;
}
@media (min-width: 640px) { .immersion-card .partners-lbl { font-size: 12px; } }
.immersion-card .logos {
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px;
}
@media (min-width: 640px) { .immersion-card .logos { gap: 16px; } }
.immersion-card .logos img {
  object-fit: contain; opacity: 0.6;
  transition: opacity 0.2s ease;
  height: 12px;
  filter: brightness(0) invert(1);
}
@media (min-width: 640px) { .immersion-card .logos img { height: 16px; } }
@media (min-width: 768px) { .immersion-card .logos img { height: 20px; } }
.immersion-card .logos img.insead {
  height: 20px;
  filter: none;
}
@media (min-width: 640px) { .immersion-card .logos img.insead { height: 28px; } }
@media (min-width: 768px) { .immersion-card .logos img.insead { height: 36px; } }
.immersion-card .logos img:hover { opacity: 1; }
.explore-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'IvyPresto Display', serif;
  font-size: 14px; font-weight: 600;
  color: hsl(48,100%,50%);
  margin-bottom: 32px;
  transition: opacity 0.2s ease;
}
@media (min-width: 640px) { .explore-link { font-size: 16px; margin-bottom: 40px; } }
.explore-link:hover { opacity: 0.8; }
.explore-link svg { transition: transform 0.2s ease; width: 16px; height: 16px; }
.explore-link:hover svg { transform: translateX(4px); }

/* ==================================================
   FOUNDER FELLOWSHIP / ENTREPRENEURSHIP
   ================================================== */
.ff-section { position: relative; overflow: hidden; background: hsl(0,0%,7%); }

.ff-hero { padding: 48px 0 0; }
@media (min-width: 640px)  { .ff-hero { padding: 64px 0 0; } }
@media (min-width: 768px)  { .ff-hero { padding: 80px 0 0; } }
@media (min-width: 1024px) { .ff-hero { padding: 96px 0 0; } }

.ff-container {
  max-width: 1400px; margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 640px)  { .ff-container { padding: 0 40px; } }
@media (min-width: 1024px) { .ff-container { padding: 0 64px; } }

.ff-header {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 8px;
}
@media (min-width: 640px) { .ff-header { margin-bottom: 12px; } }
@media (min-width: 768px) {
  .ff-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.ff-header h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem; line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 640px)  { .ff-header h2 { font-size: 1.875rem; } }
@media (min-width: 768px)  { .ff-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .ff-header h2 { font-size: 3rem; } }
.ff-header h2 .bold { font-weight: 700; }
.ff-header p {
  font-size: 14px; color: hsl(0,0%,64%);
  max-width: 24rem; line-height: 1.6;
}
@media (min-width: 768px) { .ff-header p { text-align: right; } }

.ff-stats-row { padding-top: 0; }
@media (min-width: 640px) { .ff-stats-row { padding-top: 4px; } }
.ff-stats {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 8px 0;
}
@media (min-width: 640px)  { .ff-stats { gap: 16px; padding: 12px 0; } }
@media (min-width: 768px)  { .ff-stats { padding: 16px 0; } }
@media (min-width: 1024px) { .ff-stats { grid-template-columns: repeat(5, 1fr); } }
.ff-stat {
  border-radius: 0.5rem;
  background: rgba(23,23,23,0.8);
  backdrop-filter: blur(4px);
  padding: 16px;
}
@media (min-width: 640px) { .ff-stat { padding: 20px; } }
.ff-stat .v {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 20px; color: #fff;
  font-variant-numeric: tabular-nums; margin-bottom: 4px;
}
@media (min-width: 640px) { .ff-stat .v { font-size: 24px; } }
.ff-stat .l {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(0,0%,45%);
}
@media (min-width: 640px) { .ff-stat .l { font-size: 12px; } }

.ff-section-label {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .ff-section-label { margin-bottom: 32px; } }
.ff-section-label .bar-left { width: 32px; height: 1px; background: hsl(45,100%,50%); }
.ff-section-label .bar-flex { flex: 1; height: 1px; background: hsl(0,0%,15%); }
.ff-section-label .txt {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(0,0%,90%);
}
@media (min-width: 640px) { .ff-section-label .txt { font-size: 12px; } }

.startups-scroll {
  display: flex; gap: 16px;
  overflow-x: auto;
  padding: 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.startups-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .startups-scroll { gap: 20px; padding: 0 40px; } }
@media (min-width: 1024px) { .startups-scroll { padding: 0 64px; scroll-snap-type: none; } }
.startup-card {
  flex-shrink: 0;
  width: 180px;
  border-radius: 0.3rem;
  overflow: hidden;
  background: hsl(0,0%,8%);
  border: 1px solid hsl(0,0%,15%);
  border-top: 0;
  scroll-snap-align: start;
}
@media (min-width: 640px) { .startup-card { width: 240px; } }
@media (min-width: 768px) { .startup-card { width: 260px; } }
.startup-card .top-gradient {
  height: 2px;
  background: linear-gradient(90deg, #39B5D7, #F7D544, #E38330);
}
.startup-card .founder {
  position: relative; width: 100%;
  height: 110px; overflow: hidden;
}
@media (min-width: 640px) { .startup-card .founder { height: 160px; } }
.startup-card .founder img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
.startup-card:hover .founder img { filter: grayscale(0); }
.startup-card .founder::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, hsl(0,0%,8%), transparent, transparent);
}
.startup-card .body {
  padding: 16px; padding-top: 12px;
}
@media (min-width: 640px) { .startup-card .body { padding: 20px; padding-top: 12px; } }
.startup-card .logo-wrap { margin-bottom: 12px; }
@media (min-width: 640px) { .startup-card .logo-wrap { margin-bottom: 16px; } }
.startup-card .logo-wrap span {
  display: inline-flex; align-items: center;
  border-radius: 0.25rem;
  background: rgba(255,255,255,0.9);
  padding: 4px 8px;
}
.startup-card .logo-wrap img { height: 16px; object-fit: contain; }
@media (min-width: 640px) { .startup-card .logo-wrap img { height: 20px; } }
.startup-card h4 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 16px; line-height: 1.1;
  color: #fff; margin-bottom: 8px;
}
@media (min-width: 640px) { .startup-card h4 { font-size: 18px; } }
@media (min-width: 768px) { .startup-card h4 { font-size: 20px; } }
.startup-card .tagline {
  font-family: 'Inter', sans-serif;
  font-size: 10px; line-height: 1.6;
  color: hsl(0,0%,60%); margin-bottom: 12px;
}
@media (min-width: 640px) { .startup-card .tagline { font-size: 12px; } }
.startup-card .tags { display: flex; flex-wrap: wrap; gap: 6px; }
.startup-card .tags span {
  font-family: 'Inter', sans-serif;
  font-size: 7px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  padding: 2px 8px;
  border-radius: 0.125rem;
  background: rgba(255,255,255,0.06);
  color: hsl(0,0%,50%);
}
@media (min-width: 640px) { .startup-card .tags span { font-size: 8px; } }

/* Shark tank row */
.shark-block {
  position: relative;
  padding: 32px 0;
  background: hsl(0,0%,5%);
}
@media (min-width: 640px) { .shark-block { padding: 40px 0; } }
@media (min-width: 768px) { .shark-block { padding: 56px 0; } }
.shark-block::before, .shark-block::after {
  content: ''; position: absolute; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,208,0,0.4), transparent);
}
.shark-block::before { top: 0; }
.shark-block::after { bottom: 0; }
.shark-scroll {
  display: flex; gap: 10px;
  overflow-x: auto; padding: 0 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.shark-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .shark-scroll { gap: 12px; padding: 0 40px; } }
@media (min-width: 1024px) { .shark-scroll { padding: 0 64px; scroll-snap-type: none; } }
.shark-card {
  flex-shrink: 0; width: 200px;
  border-radius: 0.3rem;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid hsl(0,0%,18%);
  background: hsl(0,0%,7%);
  scroll-snap-align: start;
}
@media (min-width: 640px) { .shark-card { width: 220px; } }
@media (min-width: 768px) { .shark-card { width: 260px; } }
.shark-card .img-wrap {
  aspect-ratio: 3/5; position: relative;
}
@media (min-width: 640px) { .shark-card .img-wrap { aspect-ratio: 3/4; } }
.shark-card .img-wrap img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: all 0.5s ease;
}
.shark-card .season {
  position: absolute; top: 8px; left: 8px; z-index: 10;
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 8px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  background: hsl(45,100%,50%);
  color: hsl(0,0%,7%);
  padding: 2px 6px;
  border-radius: 0.125rem;
}
@media (min-width: 640px) { .shark-card .season { top: 12px; left: 12px; font-size: 9px; padding: 4px 8px; } }
.shark-card .info {
  padding: 10px; background: hsl(0,0%,10%);
}
@media (min-width: 640px) { .shark-card .info { padding: 12px; } }
.shark-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600; font-size: 12px;
  color: #fff; line-height: 1.2; margin-bottom: 4px;
}
@media (min-width: 640px) { .shark-card h4 { font-size: 14px; } }
.shark-card p.desc {
  font-family: 'Inter', sans-serif;
  font-size: 9px; color: hsl(0,0%,70%);
  line-height: 1.35; margin-bottom: 6px;
}
@media (min-width: 640px) { .shark-card p.desc { font-size: 10px; } }
.shark-card .founder {
  font-family: 'Inter', sans-serif;
  font-size: 8px; font-weight: 600;
  color: hsl(0,0%,85%); display: block;
}
@media (min-width: 640px) { .shark-card .founder { font-size: 9px; } }
.shark-card .cohort {
  font-family: 'Inter', sans-serif;
  font-size: 7px; color: hsl(0,0%,45%);
}
@media (min-width: 640px) { .shark-card .cohort { font-size: 8px; } }

.ff-bottom-cta {
  padding: 32px 0;
}
@media (min-width: 640px) { .ff-bottom-cta { padding: 40px 0; } }
@media (min-width: 768px) { .ff-bottom-cta { padding: 56px 0; } }
.ff-bottom-cta .row {
  display: flex; flex-direction: column;
  align-items: flex-start; gap: 24px;
}
@media (min-width: 640px) {
  .ff-bottom-cta .row {
    flex-direction: row; align-items: flex-end;
    justify-content: space-between; gap: 32px;
  }
}
.ff-bottom-cta .right {
  display: flex; flex-direction: column; gap: 8px;
}
@media (min-width: 640px) {
  .ff-bottom-cta .right { align-items: flex-end; gap: 12px; }
}
.ff-bottom-cta .label {
  font-family: 'Inter', sans-serif;
  font-size: 10px;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: hsl(0,0%,45%);
}
@media (min-width: 640px) { .ff-bottom-cta .label { font-size: 12px; } }
.ff-bottom-cta a.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  padding: 10px 16px;
  background: hsl(45,100%,50%);
  color: hsl(0,0%,7%);
  transition: opacity 0.2s ease;
}
@media (min-width: 640px) { .ff-bottom-cta a.btn-gold { font-size: 14px; padding: 12px 24px; } }
.ff-bottom-cta a.btn-gold:hover { opacity: 0.9; }
.ff-bottom-cta a.btn-gold .arrow-circle {
  width: 16px; height: 16px; border-radius: 50%;
  border: 1px solid hsl(0,0%,7%);
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}
@media (min-width: 640px) {
  .ff-bottom-cta a.btn-gold .arrow-circle { width: 20px; height: 20px; font-size: 12px; }
}

/* ==================================================
   COHORT (Who is it for)
   ================================================== */
.cohort-stats {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 8px;
  margin-bottom: 40px;
}
@media (min-width: 420px)  { .cohort-stats { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .cohort-stats { gap: 16px; margin-bottom: 48px; } }
@media (min-width: 1024px) { .cohort-stats { grid-template-columns: repeat(5, 1fr); } }
.cohort-stat {
  border-radius: 0.5rem;
  background: rgba(23,23,23,0.8);
  backdrop-filter: blur(4px);
  padding: 16px;
}
@media (min-width: 640px) { .cohort-stat { padding: 20px; } }
.cohort-stat .v {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 20px; color: #fff;
  font-variant-numeric: tabular-nums; margin-bottom: 4px;
}
@media (min-width: 640px) { .cohort-stat .v { font-size: 24px; } }
.cohort-stat .l {
  font-size: 10px; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.05em;
  color: hsl(0,0%,45%);
}
@media (min-width: 640px) { .cohort-stat .l { font-size: 12px; } }

.meet-cohort {
  border-radius: 0.5rem;
  border: 1px solid hsla(45,100%,50%,0.6);
  background: hsla(45,100%,50%,0.06);
  backdrop-filter: blur(4px);
  padding: 24px;
}
@media (min-width: 640px) { .meet-cohort { padding: 32px; } }
@media (min-width: 768px) { .meet-cohort { padding: 40px; } }
.meet-cohort .tag {
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: hsl(45,100%,50%);
  margin-bottom: 12px;
}
@media (min-width: 640px) { .meet-cohort .tag { font-size: 12px; } }
.meet-cohort h3 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 20px; color: #fff; margin-bottom: 12px;
}
@media (min-width: 640px) { .meet-cohort h3 { font-size: 24px; } }
@media (min-width: 768px) { .meet-cohort h3 { font-size: 30px; } }
.meet-cohort p {
  font-size: 12px; color: hsl(0,0%,64%);
  line-height: 1.6; max-width: 40rem;
  margin-bottom: 24px;
}
@media (min-width: 640px) { .meet-cohort p { font-size: 14px; } }

/* ==================================================
   LIFE AT MU
   ================================================== */
.life-cards-mobile {
  display: flex; gap: 12px;
  overflow-x: auto; padding-bottom: 8px;
  margin: 0 -16px; padding-left: 16px; padding-right: 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}
@media (min-width: 640px) { .life-cards-mobile { display: none; } }
.life-cards-mobile::-webkit-scrollbar { display: none; }
.life-card-mobile {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  flex-shrink: 0;
  width: 280px;
  aspect-ratio: 3/4;
  scroll-snap-align: start;
}
.life-card-mobile img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
}
.life-card-mobile::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.3) 60%, transparent);
}
.life-card-mobile .content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 16px; z-index: 1;
}
.life-card-mobile h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
}
.life-card-mobile p {
  font-size: 11px; color: hsl(0,0%,82%);
  line-height: 1.6;
}
.life-card-mobile .more {
  display: inline-block; margin-top: 8px;
  font-size: 11px; font-weight: 700;
  color: hsl(45,100%,50%);
}

.life-cards-desktop {
  display: none; gap: 8px;
}
@media (min-width: 640px) { .life-cards-desktop { display: flex; } }
.life-card-desktop {
  position: relative;
  border-radius: 0.25rem;
  overflow: hidden;
  flex: 1;
  transition: flex 0.5s ease-in-out;
  min-height: 340px;
}
@media (min-width: 768px) { .life-card-desktop { min-height: 400px; } }
.life-card-desktop:hover { flex: 2; }
.life-card-desktop img {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.life-card-desktop:hover img { transform: scale(1.05); }
.life-card-desktop::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.4) 50%, rgba(0,0,0,0.1));
}
.life-card-desktop .content {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 20px; z-index: 1;
  background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.5) 50%, transparent);
}
.life-card-desktop h3 {
  font-family: 'Inter', sans-serif;
  font-size: 16px; font-weight: 700;
  color: #fff; margin-bottom: 4px;
  text-shadow: 0 1px 4px rgba(0,0,0,0.8);
}
.life-card-desktop p {
  font-size: 12px; color: hsl(0,0%,82%);
  line-height: 1.6;
  text-shadow: 0 1px 2px rgba(0,0,0,0.6);
}
.life-card-desktop .more {
  display: inline-block; margin-top: 12px;
  font-size: 12px; font-weight: 700;
  color: hsl(45,100%,50%);
  transition: opacity 0.2s ease;
}
.life-card-desktop:hover .more { opacity: 0.8; }

/* ==================================================
   LEADERSHIP TEAM (light background)
   ================================================== */
.leaders-h2 {
  margin-bottom: 32px;
}
@media (min-width: 640px) { .leaders-h2 { margin-bottom: 40px; } }
.leaders-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
@media (min-width: 420px)  { .leaders-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 640px)  { .leaders-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (min-width: 1024px) { .leaders-grid { grid-template-columns: repeat(6, 1fr); } }
.leader-card { text-align: center; }
.leader-card .photo {
  position: relative;
  border-radius: 0.5rem; overflow: hidden;
  aspect-ratio: 1; margin-bottom: 8px;
}
@media (min-width: 640px) { .leader-card .photo { margin-bottom: 12px; } }
.leader-card .photo img {
  width: 100%; height: 100%; object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.5s ease;
}
.leader-card:hover .photo img { filter: grayscale(0); }
.leader-card .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.3), transparent);
}
.leader-card .name-row {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-bottom: 2px;
}
@media (min-width: 640px) { .leader-card .name-row { margin-bottom: 4px; } }
.leader-card .name {
  font-weight: 700; font-size: 12px;
  color: hsl(0,0%,7%);
}
@media (min-width: 640px) { .leader-card .name { font-size: 14px; } }
.leader-card .linkedin img {
  width: 12px; height: 12px; opacity: 0.4;
  filter: brightness(0);
  transition: opacity 0.2s ease;
}
@media (min-width: 640px) { .leader-card .linkedin img { width: 14px; height: 14px; } }
.leader-card .linkedin:hover img { opacity: 1; }
.leader-card .title {
  font-size: 10px; font-weight: 600;
  color: hsl(270,91%,58%);
}
@media (min-width: 640px) { .leader-card .title { font-size: 12px; } }
.leader-card .sub {
  font-size: 10px; color: hsl(0,0%,45%);
  margin-top: 2px;
}
@media (min-width: 640px) { .leader-card .sub { font-size: 12px; } }

/* ==================================================
   ADMISSIONS PROCESS
   ================================================== */
.admissions-header {
  margin-bottom: 40px;
}
@media (min-width: 640px) { .admissions-header { margin-bottom: 56px; } }
.admissions-header h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem; line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
@media (min-width: 640px)  { .admissions-header h2 { font-size: 1.875rem; } }
@media (min-width: 768px)  { .admissions-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .admissions-header h2 { font-size: 3rem; } }
.admissions-desc {
  font-size: 12px; color: hsl(0,0%,64%);
  max-width: 28rem; line-height: 1.6;
}
@media (min-width: 640px) { .admissions-desc { font-size: 14px; } }
.mubaat-trigger {
  display: inline-flex; align-items: center; gap: 4px;
  color: #39B5D7; font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(57,181,215,0.4);
  transition: all 0.2s ease;
  cursor: pointer;
  font-family: inherit; font-size: inherit;
  background: transparent;
  border: 0; padding: 0;
}
.mubaat-trigger:hover {
  color: #5cc8e4;
  text-decoration-color: #39B5D7;
}

/* Steps pipeline */
.steps-scroll {
  overflow-x: auto;
  margin: 0 -16px 24px;
  padding: 0 16px 8px;
  scrollbar-width: none;
}
.steps-scroll::-webkit-scrollbar { display: none; }
@media (min-width: 640px) { .steps-scroll { margin: 0 0 24px; padding: 0 0 8px; } }
.steps-pipeline {
  display: flex;
  align-items: stretch;
  gap: 0;
  min-width: 380px;
}
@media (min-width: 640px) { .steps-pipeline { min-width: 540px; } }
.step-item {
  display: flex;
  align-items: stretch;
  flex: 1;
}
.step-block {
  position: relative; flex: 1;
  display: flex; align-items: center;
  gap: 8px; padding: 12px;
  border-radius: 0.5rem;
  background: rgba(28,28,28,0.8);
  backdrop-filter: blur(4px);
  border-top: 2px solid hsl(0,0%,22%);
}
@media (min-width: 640px) { .step-block { gap: 12px; padding: 16px; } }
@media (min-width: 768px) { .step-block { padding: 20px 16px; } }
.step-num {
  font-family: 'Inter', sans-serif;
  font-size: 20px; font-weight: 700;
  line-height: 1; letter-spacing: -0.05em;
  color: hsl(0,0%,32%);
}
@media (min-width: 640px) { .step-num { font-size: 24px; } }
@media (min-width: 768px) { .step-num { font-size: 30px; } }
.step-title {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 600;
  color: #fff;
  white-space: nowrap;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .step-title { font-size: 14px; } }
@media (min-width: 768px) { .step-title { font-size: 16px; } }
.step-arrow {
  display: flex; align-items: center;
  z-index: 10; margin: 0 -1px;
}
.step-arrow svg { height: 100%; }

.mubaat-panel {
  margin-bottom: 32px;
  position: relative; overflow: hidden;
  display: none;
}
@media (min-width: 640px) { .mubaat-panel { margin-bottom: 40px; } }
.mubaat-panel.open { display: block; animation: fadeIn 0.3s ease; }
.mubaat-panel .glow {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(57,181,215,0.2), rgba(247,213,68,0.2), rgba(227,131,48,0.2));
  filter: blur(20px);
}
.mubaat-panel .inner {
  position: relative;
  border-radius: 0.5rem;
  background: rgba(23,23,23,0.8);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(57,181,215,0.3);
  padding: 16px;
}
@media (min-width: 640px) { .mubaat-panel .inner { padding: 24px; } }
@media (min-width: 768px) { .mubaat-panel .inner { padding: 32px; } }
.mubaat-panel .head-row {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .mubaat-panel .head-row { margin-bottom: 20px; } }
.mubaat-panel h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700; font-size: 16px;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
  background: linear-gradient(91deg, #39B5D7 -6.14%, #F7D544 47.02%, #E38330 99.71%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
@media (min-width: 640px) { .mubaat-panel h4 { font-size: 18px; } }
.mubaat-panel .sub {
  font-size: 10px; color: hsl(0,0%,64%);
}
@media (min-width: 640px) { .mubaat-panel .sub { font-size: 12px; } }
.mubaat-panel .note {
  font-size: 12px; color: hsl(0,0%,82%);
  line-height: 1.6;
  border-left: 2px solid rgba(57,181,215,0.4);
  padding-left: 12px;
  font-style: italic; max-width: 48rem;
  margin-bottom: 16px;
}
@media (min-width: 640px) { .mubaat-panel .note { font-size: 14px; padding-left: 16px; margin-bottom: 24px; } }
.mubaat-panel .split {
  display: grid; grid-template-columns: 1fr; gap: 16px;
  margin-top: 16px;
}
@media (min-width: 640px) { .mubaat-panel .split { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; } }
.mubaat-panel .split h5 {
  font-family: 'Inter', sans-serif;
  font-size: 10px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(0,0%,45%); margin-bottom: 8px;
}
.mubaat-panel .split ul { list-style: none; }
.mubaat-panel .split ul li {
  display: flex; align-items: flex-start; gap: 8px;
  font-size: 11px; color: hsl(0,0%,82%);
  margin-bottom: 6px;
  line-height: 1.5;
}
@media (min-width: 640px) { .mubaat-panel .split ul li { font-size: 12px; } }
.mubaat-panel .split ul li::before {
  content: ''; width: 4px; height: 4px;
  flex-shrink: 0;
  margin-top: 6px;
  background: #39B5D7;
  border-radius: 50%;
}
.mubaat-panel .split .detail {
  margin-bottom: 8px;
  font-size: 11px;
}
@media (min-width: 640px) { .mubaat-panel .split .detail { font-size: 12px; } }
.mubaat-panel .split .detail .lbl { color: hsl(0,0%,45%); }
.mubaat-panel .split .detail .val { color: #fff; font-weight: 600; }
.mubaat-panel .testwin {
  font-size: 11px; color: hsl(0,0%,64%);
  margin-top: 8px; line-height: 1.6;
}
@media (min-width: 640px) { .mubaat-panel .testwin { font-size: 12px; } }
.mubaat-panel .split .q {
  font-size: 11px; color: hsl(0,0%,82%);
  line-height: 1.6; margin-bottom: 8px;
  font-style: italic;
}
@media (min-width: 640px) { .mubaat-panel .split .q { font-size: 12px; } }
.mubaat-panel .split .q .qnum {
  font-weight: 600; color: #39B5D7;
  font-style: normal;
}

.cohort-strip {
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: space-between;
  gap: 12px;
  border-radius: 0.5rem;
  background: rgba(23,23,23,0.8);
  backdrop-filter: blur(4px);
  padding: 16px;
}
@media (min-width: 640px) {
  .cohort-strip { flex-direction: row; align-items: center; gap: 16px; padding: 20px; }
}
.cohort-strip .msg {
  flex: 1;
  font-size: 12px; color: hsl(0,0%,64%);
}
@media (min-width: 640px) { .cohort-strip .msg { font-size: 14px; } }
.cohort-strip .msg strong { color: hsl(45,100%,50%); font-weight: 600; }

/* ==================================================
   FEES
   ================================================== */
.fees-header {
  display: flex; flex-direction: column; gap: 16px;
  margin-bottom: 32px;
}
@media (min-width: 640px) { .fees-header { margin-bottom: 48px; } }
@media (min-width: 768px) {
  .fees-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.fees-header h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem; line-height: 0.95;
  color: #fff;
  letter-spacing: -0.02em;
}
@media (min-width: 640px)  { .fees-header h2 { font-size: 1.875rem; } }
@media (min-width: 768px)  { .fees-header h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .fees-header h2 { font-size: 3rem; } }
.fees-header p {
  font-size: 12px; color: hsl(0,0%,64%);
  max-width: 28rem; line-height: 1.6;
}
@media (min-width: 640px) { .fees-header p { font-size: 14px; } }
@media (min-width: 768px) { .fees-header p { text-align: right; } }

.fees-cards {
  display: grid; grid-template-columns: 1fr; gap: 12px;
  margin-bottom: 32px;
}
@media (min-width: 640px)  { .fees-cards { gap: 20px; margin-bottom: 48px; } }
@media (min-width: 640px)  { .fees-cards { grid-template-columns: repeat(3, 1fr); } }
.fees-card {
  border-radius: 0.5rem;
  background: hsl(0,0%,10%);
  border: 1px solid hsl(0,0%,15%);
  padding: 16px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.5), 0 2px 6px rgba(57,181,215,0.1);
  transition: all 0.3s ease;
}
@media (min-width: 640px) { .fees-card { padding: 24px; } }
.fees-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.6), 0 4px 12px rgba(57,181,215,0.15);
}
.fees-card .icon-box {
  width: 36px; height: 36px; border-radius: 0.5rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(57,181,215,0.08);
  border: 1px solid rgba(57,181,215,0.19);
  margin-bottom: 12px; color: #39B5D7;
}
@media (min-width: 640px) { .fees-card .icon-box { width: 44px; height: 44px; margin-bottom: 16px; } }
.fees-card .icon-box svg { width: 18px; height: 18px; }
.fees-card h3 {
  font-family: 'Inter', sans-serif;
  font-size: 14px; font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin-bottom: 6px;
}
@media (min-width: 640px) { .fees-card h3 { font-size: 16px; margin-bottom: 8px; } }
.fees-card p {
  font-size: 12px; color: hsl(0,0%,64%);
  line-height: 1.6;
}
@media (min-width: 640px) { .fees-card p { font-size: 14px; } }

/* ==================================================
   FAQ (light)
   ================================================== */
.faq-section {
  background:
    radial-gradient(ellipse 50% 40% at 80% 0%, rgba(57,181,215,0.04) 0%, transparent 60%),
    radial-gradient(ellipse 40% 30% at 20% 100%, rgba(247,213,68,0.03) 0%, transparent 50%),
    hsl(0,0%,100%);
  color: hsl(0,0%,7%);
}
.faq-section .mu-container { max-width: 100%; }
@media (min-width: 1536px) { .faq-section .mu-container { max-width: 100%; } }
.faq-eyebrow {
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.2em;
  color: hsl(45,100%,50%);
  display: block; margin-bottom: 12px;
}
.faq-h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem; color: hsl(0,0%,7%);
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}
@media (min-width: 640px) { .faq-h2 { font-size: 1.875rem; margin-bottom: 48px; } }
@media (min-width: 768px) { .faq-h2 { font-size: 2.25rem; } }
.faq-grid {
  display: grid; grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 768px) { .faq-grid { grid-template-columns: 1fr 1fr; gap: 48px; } }
.faq-col h3 {
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.15em;
  color: hsl(0,0%,45%);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid hsl(0,0%,90%);
}
@media (min-width: 640px) { .faq-col h3 { font-size: 14px; margin-bottom: 20px; padding-bottom: 12px; } }
.faq-item { border-bottom: 1px solid hsl(0,0%,90%); }
.faq-trigger {
  width: 100%; text-align: left;
  padding: 12px 0;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 500;
  color: hsl(0,0%,7%);
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}
@media (min-width: 640px) { .faq-trigger { padding: 16px 0; font-size: 14px; } }
.faq-trigger svg {
  flex-shrink: 0; transition: transform 0.2s ease;
  width: 16px; height: 16px;
}
.faq-item.open .faq-trigger svg { transform: rotate(180deg); }
.faq-content {
  display: none;
  padding-bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; color: hsl(0,0%,45%);
  line-height: 1.7;
}
@media (min-width: 640px) { .faq-content { font-size: 14px; } }
.faq-item.open .faq-content { display: block; }

/* ==================================================
   FINAL CTA
   ================================================== */
#final-cta {
  position: relative; overflow: hidden;
}
#final-cta .bg { position: absolute; inset: 0; }
#final-cta .bg .layer1 {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, hsl(160,30%,8%), hsl(180,20%,6%), hsl(200,25%,10%));
}
#final-cta .bg .layer2 {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(124,58,237,0.12) 0%, transparent 60%),
    radial-gradient(ellipse 50% 40% at 80% 20%, rgba(255,208,0,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 40% 30% at 50% 50%, rgba(168,85,247,0.06) 0%, transparent 60%);
}
#final-cta .bg .layer3 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent, rgba(0,0,0,0.2));
}
#final-cta .content {
  position: relative; z-index: 10;
  padding: 48px 0;
}
@media (min-width: 640px)  { #final-cta .content { padding: 112px 0; } }
@media (min-width: 768px)  { #final-cta .content { padding: 144px 0; } }
@media (min-width: 1024px) { #final-cta .content { padding: 176px 0; } }
@media (min-width: 1536px) { #final-cta .content { padding: 208px 0; } }
#final-cta h2 {
  font-family: 'IvyPresto Display', serif;
  font-weight: 300;
  font-size: 1.5rem; color: #fff;
  margin-bottom: 16px;
  line-height: 0.95;
  max-width: 40rem;
  letter-spacing: -0.02em;
}
@media (min-width: 640px)  { #final-cta h2 { font-size: 2.25rem; margin-bottom: 24px; } }
@media (min-width: 768px)  { #final-cta h2 { font-size: 3rem; } }
@media (min-width: 1024px) { #final-cta h2 { font-size: 3.75rem; } }
#final-cta p.main {
  font-size: 12px; color: hsl(0,0%,82%);
  max-width: 32rem; line-height: 1.6;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { #final-cta p.main { font-size: 16px; } }
#final-cta p.meta {
  font-size: 10px; font-weight: 700;
  color: hsl(0,0%,45%);
  margin-bottom: 24px;
  letter-spacing: 0.025em;
  font-family: 'Inter', sans-serif;
}
@media (min-width: 640px) { #final-cta p.meta { font-size: 14px; margin-bottom: 40px; } }
#final-cta .btns {
  display: flex; flex-direction: column;
  gap: 12px;
}
@media (min-width: 420px) { #final-cta .btns { flex-direction: row; } }
#final-cta .final-bottom-spacer {
  position: relative; z-index: 10;
  padding-bottom: 80px;
}
@media (min-width: 640px)  { #final-cta .final-bottom-spacer { padding-bottom: 32px; } }
@media (min-width: 1024px) { #final-cta .final-bottom-spacer { padding-bottom: 0; } }

/* ==================================================
   DIALOG
   ================================================== */
.dialog-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 60;
  align-items: center; justify-content: center;
  padding: 16px;
}
.dialog-overlay.open { display: flex; animation: fadeIn 0.2s ease; }
.dialog-content {
  background: #000;
  width: 100%; max-width: 768px;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.dialog-close {
  position: absolute; top: 8px; right: 8px; z-index: 5;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(0,0,0,0.6); color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 24px;
}
.dialog-content .aspect { aspect-ratio: 16/9; width: 100%; }
.dialog-content iframe { width: 100%; height: 100%; border: 0; }

main.has-mobile-nav { padding-bottom: 80px; }
@media (min-width: 1024px) { main.has-mobile-nav { padding-bottom: 0; } }

/* Touch targets minimum */
@media (pointer: coarse) {
  button, a, [role="button"] { min-height: 40px; }
  nav button, nav a { min-height: 36px; }
}




/* ==================================================================
   RESPONSIVE OVERRIDES
   Breakpoints (matching Tailwind config in tailwind.config.ts):
     xs:  420px
     sm:  640px
     md:  768px
     lg:  1024px
     xl:  1280px
     2xl: 1536px
   ================================================================== */

/* ------------------------------------------------------------------
   EXTRA-SMALL ( < 420px )
   ------------------------------------------------------------------ */
   @media (max-width: 419px) {
    .mu-container { padding-left: 12px; padding-right: 12px; }
    .mu-section-padding { padding-top: 40px; padding-bottom: 40px; }
  
    /* Hero */
    .hero-title { font-size: 1.5rem; line-height: 1.15; }
    .hero-sub { font-size: 11px; text-align: justify; }
    .hero-stats { gap: 16px; }
    .hero-stats .val { font-size: 16px; }
    .hero-stats .lbl { font-size: 8px; }
    .hero-deadline .text { font-size: 10px; letter-spacing: 0.15em; }
  
    /* Sticky nav never shows below lg */
    .sticky-nav { display: none; }
    .main-wrap { padding-left: 0; }
  
    /* Sections — headings shrink */
    .sec-h2 { font-size: 1.5rem; }
    .ap-header h2, .ff-header h2, .admissions-header h2, .fees-header h2 { font-size: 1.5rem; line-height: 0.95; }
    #final-cta h2 { font-size: 1.5rem; }
  
    /* Transform cards — single column */
    .transform-grid { grid-template-columns: 1fr; gap: 12px; }
  
    /* Cohort stats — 2 cols on very small */
    .cohort-stats { grid-template-columns: repeat(2, 1fr); }
  
    /* Buttons that should stretch below xs */
    .w-full-xs-auto { width: 100%; }
  
    /* FinalCTA buttons stack vertically */
    #final-cta .btns { flex-direction: column; }
    #final-cta .btns .btn { width: 100%; }
  
    /* Admissions pipeline still scrolls horizontally */
    .steps-scroll { margin: 0 -12px 24px; padding: 0 12px 8px; }
  }
  
  /* ------------------------------------------------------------------
     XS+ ( >= 420px )
     ------------------------------------------------------------------ */
  @media (min-width: 420px) {
    .hero-title { font-size: 1.7rem; }
    .w-full-xs-auto { width: auto; }
    #final-cta .btns { flex-direction: row; }
    #final-cta .btns .btn { width: auto; }
    .transform-grid { grid-template-columns: repeat(2, 1fr); }
    .cohort-stats { grid-template-columns: repeat(3, 1fr); }
    .leaders-grid { grid-template-columns: repeat(3, 1fr); }
    .outclass-tab .title { font-size: 8px; }
  }
  
  /* ------------------------------------------------------------------
     SM+ ( >= 640px )
     ------------------------------------------------------------------ */
  @media (min-width: 640px) {
    .mu-container { padding-left: 24px; padding-right: 24px; }
    .mu-section-padding { padding-top: 64px; padding-bottom: 64px; }
  
    /* Hero */
    .hero-content { padding-top: 48px; padding-bottom: 48px; }
    .hero-grid { gap: 32px; }
    .hero-title { font-size: 2.2rem; }
    .hero-sub { font-size: 13px; text-align: left; }
    .hero-stats { gap: 24px; }
    .hero-stats .val { font-size: 20px; }
    .hero-stats .lbl { font-size: 10px; }
    .hero-deadline .text { font-size: 11px; letter-spacing: 0.2em; }
    .hero-video { max-height: 45vh; }
    .hero-video .mute-btn { width: 36px; height: 36px; bottom: 16px; right: 16px; }
    .hero-details { margin-top: 16px; padding-bottom: 48px; }
    .hero-details .cell { padding: 20px 16px; }
    .hero-details .lbl { font-size: 10px; }
    .hero-details .val { font-size: 14px; }
    .hero-details .sub { font-size: 11px; }
  
    /* Sections */
    .sec-h2 { font-size: 1.875rem; }
    .sec-desc { font-size: 14px; margin-bottom: 40px; }
    .sec-desc.sd-base { font-size: 16px; }
  
    /* Admission pathways */
    .ap-header { margin-bottom: 48px; }
    .ap-header h2 { font-size: 1.875rem; }
    .pathway-card .inner { padding: 32px 24px; }
    .pathway-card .head { margin-bottom: 24px; }
    .pathway-card .num { font-size: 48px; }
    .pathway-card .icon-box { width: 40px; height: 40px; }
    .pathway-card .icon-box svg { width: 18px; height: 18px; }
    .pathway-card .label { font-size: 12px; margin-bottom: 8px; letter-spacing: 0.2em; }
    .pathway-card h3 { font-size: 24px; margin-bottom: 24px; }
    .pathway-card .hline { margin-bottom: 24px; }
    .pathway-card .quick { display: block; margin-bottom: 32px; }
    .pathway-card .view-label { font-size: 14px; gap: 8px; }
    .pathway-card .view-label svg { width: 14px; height: 14px; }
    .pathway-detail .body { padding: 24px; }
    .pathway-detail .stats-row { grid-template-columns: repeat(3, 1fr); margin-bottom: 32px; }
    .pathway-detail .stat { padding: 16px 20px; }
    .pathway-detail .stat .lbl { font-size: 12px; margin-bottom: 4px; }
    .pathway-detail .stat .val { font-size: 14px; }
    .pathway-detail .hl-label { margin-bottom: 16px; }
    .pathway-detail .highlights { grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 32px; }
    .pathway-detail .hl { padding: 16px; }
    .pathway-detail .hl .stat { font-size: 30px; }
    .pathway-detail .hl .desc { font-size: 12px; }
    .pathway-apply-row { flex-direction: row; align-items: center; }
  
    /* Career outcomes */
    .career-stats { gap: 12px; margin-bottom: 48px; }
    .career-stat { padding: 20px; }
    .career-stat .val { font-size: 24px; }
    .career-stat .lbl { font-size: 12px; }
    .roles-wrap { margin-bottom: 40px; }
    .roles-header { margin-bottom: 16px; }
    .role-pills { gap: 8px; }
    .role-pill { font-size: 14px; padding: 8px 16px; }
    .recruiters-wrap { margin-bottom: 40px; }
    .recruiter-track { gap: 24px; }
    .recruiter-item { padding: 12px 20px; }
    .recruiter-item img { height: 12px; }
    .outcomes-cta {
      padding: 24px;
      flex-direction: row;
      align-items: center;
    }
    .outcomes-cta .title { font-size: 18px;line-height: 1.75rem;   letter-spacing: -0.02em;}
    .outcomes-cta p:not(.title) { font-size: 14px; line-height: 1.25rem;   }
    .outcomes-cta .cta-buttons { flex-direction: row; width: auto; gap: 12px; }
  
    /* Alumni */
    .transform-card .header { padding: 16px 20px;         border-radius: 0.25px;}
    .transform-card .num { font-size: 36px; }
    .transform-card .avatar img.person { width: 40px; height: 40px; }
    .transform-card .body { padding: 20px; }
    .transform-card .name { font-size: 14px; margin-bottom: 16px; }
    .transform-card .stage { margin-bottom: 12px; }
    .transform-card .stage-lbl { font-size: 12px; line-height: 1rem; }
    .transform-card .stage p { font-size: 14px; }
    .transform-card .stage-divider { margin: 12px 0; }
    .transform-grid { gap: 20px; margin-bottom: 48px; }
    .testimonial-row { gap: 20px; margin-bottom: 40px; }
    .testimonial-card { min-width: 320px; padding: 16px; }
    .testimonial-card .video { margin-bottom: 12px; }
    .testimonial-card .video img { width: 40px; height: 40px; }
    .testimonial-card .name { font-size: 14px;        line-height: 1.25rem; }
    .testimonial-card .role { font-size: 12px;         line-height: 1rem;}
    .testimonial-card .cohort { font-size: 12px;        line-height: 1rem; }
    .testimonial-header { margin-bottom: 32px; }
    .testimonial-header h3 { font-size: 24px; }
  
    /* Why MU */
    .why-grid { gap: 32px; }
    .why-links { margin-top: 32px; }
    .why-links a { padding: 14px 0; font-size: 14px; }
    .why-highlights { gap: 20px; }
    .why-card .layout { grid-template-columns: 200px 1fr; }
    .why-card .img-wrap { height: auto; }
    .why-card .img-wrap .fade { background: linear-gradient(to right, transparent, transparent 60%, hsl(0,0%,10%)); }
    .why-card .content { padding: 24px; }
    .why-card h3 { font-size: 24px; }
    .why-card p.desc { font-size: 14px;         line-height: 1.25rem; }
    .why-card .extra .companies-lbl { font-size: 12px; }
    .why-card .extra .companies { gap: 8px; }
    .why-card .extra .companies span { font-size: 11px; }
    .why-card .extra a { font-size: 14px; }
  
    /* Curriculum */
    .curriculum-header { margin-bottom: 80px; }
    .curriculum-intro { font-size: 16px; }
    .inclass-section, .outclass-section { margin-bottom: 112px; }
    .outclass-section { margin-bottom: 64px; }
    .inclass-eye, .outclass-eye { font-size: 12px; }
    .inclass-section .sec-desc, .outclass-section .sec-desc { font-size: 16px; margin-bottom: 40px; }
    .module-menu { grid-template-columns: repeat(3, 1fr); }
    .module-btn .inner { padding: 12px 16px; }
    .module-btn .num { font-size: 20px; margin-bottom: 6px; }
    .module-btn h3 { font-size: 12px; }
    .module-btn .view { font-size: 12px; }
    .module-panel .body { padding: 20px; }
    .module-panel h3 { font-size: 20px; }
    .module-panel .desc { font-size: 13px; margin-bottom: 24px; }
    .module-panel .learn-lbl { margin-bottom: 12px; }
    .module-panel .learn-grid { grid-template-columns: repeat(3, 1fr); }
    .module-panel .learn-item { padding: 12px; }
    .module-panel .learn-item .n { font-size: 24px; }
    .module-panel .learn-item .txt { font-size: 12px; }
    .outclass-tab { padding: 16px; }
    .outclass-tab .num { font-size: 10px; }
    .outclass-tab .title { font-size: 12px; }
    .outclass-panel .info { padding: 24px; }
    .outclass-panel .info h3 { font-size: 30px; }
    .outclass-panel .info p.desc { font-size: 14px; }
    .outclass-panel .info .stats-grid .v { font-size: 18px; }
    .outclass-panel .info .stats-grid .lbl { font-size: 10px; }
    .outclass-panel .info .brands .lbl { font-size: 10px; }
    .outclass-panel .info .brands .list span { font-size: 12px; }
    .curriculum-cta { flex-direction: row; align-items: center; justify-content: space-between; }
    .curriculum-cta .cta-head { font-size: 18px; }
    .curriculum-cta .cta-sub { font-size: 14px; }
    .curriculum-cta .cta-actions { flex-direction: row; width: auto; gap: 12px; }
  
    /* Immersions */
    .immersions-stats { gap: 16px; margin-bottom: 40px; }
    .immersion-stat { padding: 20px; }
    .immersion-stat .v { font-size: 30px; }
    .immersion-stat .l { font-size: 14px; }
    .immersion-stat .s { font-size: 12px; }
    .immersion-card { padding: 24px; }
    .immersion-card .desc { font-size: 14px; }
    .immersion-card .meta { font-size: 12px; }
    .immersion-card .partners-lbl { font-size: 12px; }
    .immersion-card .logos { gap: 16px; }
    .immersion-card .logos img { height: 16px; }
    .immersion-card .logos img.insead { height: 28px; }
    .explore-link { font-size: 16px; margin-bottom: 40px; }
  
    /* Founder fellowship */
    .ff-hero { padding: 64px 0 0; }
    .ff-header { margin-bottom: 12px; }
    .ff-header h2 { font-size: 1.875rem; }
    .ff-stats-row { padding-top: 4px; }
    .ff-stats { gap: 16px; padding: 12px 0; }
    .ff-stat { padding: 20px; }
    .ff-stat .v { font-size: 24px; }
    .ff-stat .l { font-size: 12px; }
    .ff-section-label { margin-bottom: 24px; }
    .ff-section-label .txt { font-size: 12px; }
    .startups-scroll { gap: 20px; padding: 0 40px; }
    .startup-card { width: 240px; }
    .startup-card .founder { height: 160px; }
    .startup-card .body { padding: 20px; padding-top: 12px; }
    .startup-card .logo-wrap { margin-bottom: 16px; }
    .startup-card .logo-wrap img { height: 20px; }
    .startup-card h4 { font-size: 18px; }
    .startup-card .tagline { font-size: 12px; }
    .startup-card .tags span { font-size: 8px; }
    .shark-block { padding: 40px 0; }
    .shark-scroll { gap: 12px; padding: 0 40px; }
    .shark-card { width: 220px; }
    .shark-card .img-wrap { aspect-ratio: 3/4; }
    .shark-card .season { top: 12px; left: 12px; font-size: 9px; padding: 4px 8px; }
    .shark-card .info { padding: 12px; height: 100%; }
    .shark-card h4 { font-size: 14px; }
    .shark-card p.desc { font-size: 10px; }
    .shark-card .founder { font-size: 9px; }
    .shark-card .cohort { font-size: 8px; }
    .ff-bottom-cta { padding: 40px 0; }
    .ff-bottom-cta .row { flex-direction: row; align-items: flex-end; justify-content: space-between; gap: 32px; }
    .ff-bottom-cta .right { align-items: flex-end; gap: 12px; }
    .ff-bottom-cta .label { font-size: 12px; }
    .ff-bottom-cta a.btn-gold { font-size: 14px; padding: 12px 24px; }
    .ff-bottom-cta a.btn-gold .arrow-circle { width: 20px; height: 20px; font-size: 12px; }
  
    /* Cohort / Life / Leaders */
    .cohort-stats { gap: 16px; margin-bottom: 48px; }
    .cohort-stat { padding: 20px; }
    .cohort-stat .v { font-size: 24px; }
    .cohort-stat .l { font-size: 12px; }
    .meet-cohort { padding: 32px; }
    .meet-cohort .tag { font-size: 12px; }
    .meet-cohort h3 { font-size: 24px; }
    .meet-cohort p { font-size: 14px; }
    .life-cards-mobile { display: none; }
    .life-cards-desktop { display: flex; }
    .leaders-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .leader-card .photo { margin-bottom: 12px; }
    .leader-card .name-row { margin-bottom: 4px; }
    .leader-card .name { font-size: 14px; }
    .leader-card .linkedin img { width: 14px; height: 14px; }
    .leader-card .title { font-size: 12px; }
    .leader-card .sub { font-size: 12px; }
  
    /* Admissions */
    .admissions-header { margin-bottom: 56px; }
    .admissions-header h2 { font-size: 1.875rem; }
    .admissions-desc { font-size: 14px; }
    .steps-scroll { margin: 0 0 24px; padding: 0 0 8px; }
    .steps-pipeline { min-width: 540px; }
    .step-block { gap: 12px; padding: 16px; }
    .step-num { font-size: 24px; }
    .step-title { font-size: 14px; }
    .mubaat-panel { margin-bottom: 40px; }
    .mubaat-panel .inner { padding: 24px; }
    .mubaat-panel .head-row { margin-bottom: 20px; }
    .mubaat-panel h4 { font-size: 18px; }
    .mubaat-panel .sub { font-size: 12px; }
    .mubaat-panel .note { font-size: 14px; padding-left: 16px; margin-bottom: 24px; }
    .mubaat-panel .split { grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 24px; }
    .mubaat-panel .split ul li { font-size: 12px; }
    .mubaat-panel .split .detail { font-size: 12px; }
    .mubaat-panel .testwin { font-size: 12px; }
    .mubaat-panel .split .q { font-size: 12px; }
    .cohort-strip { flex-direction: row; align-items: center; gap: 16px; padding: 20px; }
    .cohort-strip .msg { font-size: 14px; }
  
    /* Fees */
    .fees-header { margin-bottom: 48px; }
    .fees-header h2 { font-size: 1.875rem; }
    .fees-header p { font-size: 14px; }
    .fees-cards { grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 48px; }
    .fees-card { padding: 24px; }
    .fees-card .icon-box { width: 44px; height: 44px; margin-bottom: 16px; }
    .fees-card h3 { font-size: 16px; margin-bottom: 8px; }
    .fees-card p { font-size: 14px; }
  
    /* FAQ */
    .faq-h2 { font-size: 1.875rem; margin-bottom: 48px; }
    .faq-col h3 { font-size: 14px; margin-bottom: 20px; padding-bottom: 12px; }
    .faq-trigger { padding: 16px 0; font-size: 14px; }
    .faq-content { font-size: 14px; }
  
    /* FinalCTA */
    #final-cta .content { padding: 112px 0; }
    #final-cta h2 { font-size: 2.25rem; margin-bottom: 24px; }
    #final-cta p.main { font-size: 16px; }
    #final-cta p.meta { font-size: 14px; margin-bottom: 40px; }
    #final-cta .final-bottom-spacer { padding-bottom: 32px; }
  
    /* Mobile nav */
    .mobile-nav-bar .inner { padding: 14px 20px; }
    .mobile-nav-bar .menu-toggle { font-size: 12px; }
    .mobile-nav-panel { bottom: 58px; }
    .mobile-nav-panel nav button { font-size: 12px; padding: 14px 8px; }
  
    /* Width utility */
    .w-full-sm-auto { width: auto; }
  }
  
  /* ------------------------------------------------------------------
     MD+ ( >= 768px )
     ------------------------------------------------------------------ */
  @media (min-width: 768px) {
    .mu-container { padding-left: 32px; padding-right: 32px; }
    .mu-section-padding { padding-top: 80px; padding-bottom: 80px; }
  
    /* Hero */
    .hero-content { padding-top: 56px; padding-bottom: 56px; }
    .hero-grid { grid-template-columns: 1fr 1fr; }
    .hero-title { font-size: 2.4rem; }
    .hero-sub { font-size: 12px; }
    .hero-stats .val { font-size: 24px; }
    .hero-video { max-height: none; }
    .hero-details { padding-bottom: 64px; }
    .hero-details .grid { grid-template-columns: repeat(4, 1fr); }
  
    /* Sections */    .sec-h2 { font-size: 2.25rem; line-height: 2.5rem; }
  
    /* Admission pathways */
    .ap-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .ap-header h2 { font-size: 2.25rem; }
    .ap-header p { text-align: right; }
    .pathway-card .num { font-size: 60px; }
  
    /* Career stats row */
    .career-stats { grid-template-columns: repeat(4, 1fr); }
    .career-stat { padding: 24px; }
    .career-stat .val { font-size: 30px; }
  
    /* Alumni */
    .testimonial-card { min-width: 360px; }
    .testimonial-header h3 { font-size: 30px; line-height: 2.25rem; }
  
    /* Why MU cards */
    .why-card .layout { grid-template-columns: 240px 1fr; }
    .why-card .content { padding: 28px; }
    .why-card h3 { font-size: 1.65rem; letter-spacing: -0.02em;       line-height: 2rem; }
  
    /* Curriculum */
    .module-panel .body { padding: 24px; }
    .module-panel h3 { font-size: 24px; }
    .outclass-panel .layout { flex-direction: row; height: 480px; }
    .outclass-panel .gallery { width: 50%; aspect-ratio: auto; height: 100%; }
    .outclass-panel .gallery .dots { display: flex; }
    .outclass-panel .info { width: 50%; padding: 32px; overflow-y: auto; }
    .outclass-panel .info h3 { font-size: 36px; }
    .outclass-panel .info .stats-grid .v { font-size: 20px; }
  
    /* Immersions */
    .immersions-two { grid-template-columns: 1fr 1fr; }
    .immersion-card .logos img { height: 20px; }
    .immersion-card .logos img.insead { height: 36px; }
  
    /* Founder fellowship */
    .ff-hero { padding: 80px 0 0; }
    .ff-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .ff-header h2 { font-size: 2.25rem; }
    .ff-header p { text-align: right; }
    .ff-stats { padding: 16px 0; }
    .shark-block { padding: 56px 0; }
    .shark-card { width: 260px; }
    .startup-card { width: 260px; }
    .startup-card h4 { font-size: 20px; }
    .ff-bottom-cta { padding: 56px 0; }
  
    /* Cohort */
    .meet-cohort { padding: 40px; }
    .meet-cohort h3 { font-size: 30px; }
  
    /* Leaders */
    .life-card-desktop { min-height: 400px; }
  
    /* Admissions */
    .admissions-header h2 { font-size: 2.25rem; }
    .mubaat-panel .inner { padding: 32px; }
    .step-block { padding: 20px 16px; }
    .step-num { font-size: 30px; }
    .step-title { font-size: 16px; }
  
    /* Fees */
    .fees-header { flex-direction: row; align-items: flex-end; justify-content: space-between; }
    .fees-header h2 { font-size: 2.25rem; }
    .fees-header p { text-align: right; }
  
    /* FAQ */
    .faq-h2 { font-size: 2.25rem; }
    .faq-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
  
    /* FinalCTA */
    #final-cta .content { padding: 144px 0; }
    #final-cta h2 { font-size: 3rem; }
  
    /* Outcomes cta padding */
    .outcomes-cta { padding: 32px; }
  }
  
  /* ------------------------------------------------------------------
     LG+ ( >= 1024px )
     ------------------------------------------------------------------ */
  @media (min-width: 1024px) {
    .mu-container { padding-left: 40px; padding-right: 40px; }
    .mu-section-padding { padding-top: 96px; padding-bottom: 96px; }
  
    /* Hero */
    .hero-content { padding-top: 80px; padding-bottom: 80px; }
    .hero-grid { gap: 48px; }
    .hero-title { font-size: 3.2rem; }
    .hero-sub { font-size: 14px; }
    .hero-details { padding-bottom: 80px; }
  
    /* Sticky nav */
    .sticky-nav { display: flex; }
    .main-wrap { padding-left: 220px; }
    main.has-mobile-nav { padding-bottom: 0; }
    main { padding-bottom: 0; }
  
    /* Mobile nav hidden */
    .mobile-nav { display: none; }
  
    /* Sections */
    .ap-header h2, .ff-header h2, .admissions-header h2, .fees-header h2 { font-size: 3rem; }
  
    /* Admission pathways */
    .pathways-wrap { flex-direction: row; }
    .pathways-cards { grid-template-columns: 1fr; width: 360px; flex-shrink: 0; }
    .pathway-detail { border-left: 0; border-top: 1px solid hsl(0,0%,20%); max-height: none; }
  
    /* Alumni */
    .transform-grid { grid-template-columns: repeat(3, 1fr); }
  
    /* Why MU */
    .why-grid { grid-template-columns: 280px 1fr; gap: 64px; }
  
    /* Curriculum */
    .inclass-wrap { flex-direction: row; align-items: flex-start; }
    .module-menu { width: 340px; grid-template-columns: repeat(2, 1fr); }
    .module-panel { border-left: 0; border-top: 1px solid hsl(0,0%,20%); }
    .outclass-panel .info { padding: 40px; }
  
    /* Immersions */
    .immersions-stats { grid-template-columns: repeat(4, 1fr); }
  
    /* Founder fellowship */
    .ff-hero { padding: 96px 0 0; }
    .ff-container { padding: 0 64px; }
    .ff-stats { grid-template-columns: repeat(5, 1fr); }
    .startups-scroll { padding: 0 64px; scroll-snap-type: none; }
    .shark-scroll { padding: 0 64px; }
  
    /* Cohort */
    .cohort-stats { grid-template-columns: repeat(5, 1fr); }
  
    /* Leaders */
    .leaders-grid { grid-template-columns: repeat(6, 1fr); }
  
    /* FinalCTA */
    #final-cta .content { padding: 176px 0; }
    #final-cta h2 { font-size: 3.75rem; }
    #final-cta .final-bottom-spacer { padding-bottom: 0; }
  }
  
  /* ------------------------------------------------------------------
     XL+ ( >= 1280px )
     ------------------------------------------------------------------ */
  @media (min-width: 1280px) {
    .module-menu { width: 280px; grid-template-columns: 1fr; }
  }
  
  /* ------------------------------------------------------------------
     2XL+ ( >= 1536px )
     ------------------------------------------------------------------ */
  @media (min-width: 1536px) {
    .mu-container { max-width: 1400px; }
    .mu-section-padding { padding-top: 112px; padding-bottom: 112px; }
  
    /* Hero */
    .hero-title { font-size: 3.8rem; }
  
    /* FAQ container */
    .faq-section .mu-container { max-width: 64rem; }
  
    /* FinalCTA */
    #final-cta .content { padding: 208px 0; }
  }
  
  /* ------------------------------------------------------------------
     MOBILE ORIENTATION / TEXT SIZE ADJUST
     ------------------------------------------------------------------ */
  @media (max-width: 767px) {
    html {
      -moz-text-size-adjust: 100%;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }
  }
  
  /* Touch-friendly tap targets */
  @media (pointer: coarse) {
    button, a, [role="button"] { min-height: 40px; }
    .mu-nav-compact button,
    .mu-nav-compact a,
    nav button,
    nav a { min-height: 36px; }
    /* Enable momentum scrolling for horizontal scroll areas */
    .mu-scroll-hidden,
    .startups-scroll,
    .shark-scroll,
    .life-cards-mobile,
    .testimonial-row,
    .steps-scroll,
    .outclass-tabs {
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }
  }
  
  /* ------------------------------------------------------------------
     REDUCED MOTION
     ------------------------------------------------------------------ */
  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .animate-scroll-left { animation: none !important; }
  }
  
  /* ------------------------------------------------------------------
     PRINT
     ------------------------------------------------------------------ */
  @media print {
    .sticky-nav, .mobile-nav, .mobile-nav-bar, .mobile-nav-panel,
    .mobile-nav-overlay, .dialog-overlay, .hero-video {
      display: none !important;
    }
    body { background: #fff; color: #000; }
    .main-wrap { padding-left: 0 !important; }
  }
  
  /* ------------------------------------------------------------------
     IMAGES / LAYOUT SAFETY
     ------------------------------------------------------------------ */
  img { max-width: 100%; height: auto; }
  
  /* Avoid horizontal scroll from rogue content */
  body, html { overflow-x: hidden; max-width: 100%; }
  
  /* Ensure buttons stay within containers on very narrow screens */
  .btn { max-width: 100%; }
  

  