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

/* ── Reset & Variables ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:         #050a1a;
  --navy:       #0b1f3a;
  --navy-2:     #0d2647;
  --blue:       #1a4b8f;
  --blue-light: #2d6bc4;
  --red:        #e63946;
  --white:      #ffffff;
  --grey:       #8fa3b8;
  --grey-light: #e2e8f0;
  --font-head:  'Space Grotesk', sans-serif;
  --font-body:  'Inter', sans-serif;
  --max-w:      1100px;
  --nav-h:      68px;
  --radius:     14px;
  --ease:       0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Utility ───────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 28px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.section-sub {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.7;
  max-width: 580px;
  margin-bottom: 48px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 100px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  transition: var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: #c1121f;
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(230,57,70,0.38);
}

.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.22);
  color: var(--white);
}
.btn-outline:hover {
  border-color: rgba(255,255,255,0.5);
  background: rgba(255,255,255,0.06);
}

.tag {
  display: inline-block;
  padding: 4px 13px;
  border-radius: 100px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.tag-red  { background: rgba(230,57,70,0.15);  color: #ff6b76; border: 1px solid rgba(230,57,70,0.3);  }
.tag-blue { background: rgba(26,75,143,0.25);  color: #7eb3ff; border: 1px solid rgba(45,107,196,0.35); }

/* ── Scroll Reveal ─────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ── Navigation ────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background var(--ease), backdrop-filter var(--ease), box-shadow var(--ease);
}

.nav.scrolled {
  background: rgba(5, 10, 26, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: -0.01em;
}

.nav-planet {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
}
/* Sphere depth shader — makes the nav logo feel 3D */
.nav-planet::after {
  content: '';
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.18) 0%, transparent 44%),
    radial-gradient(circle at 34% 32%, transparent 22%, rgba(0,4,28,0.68) 100%);
  z-index: 2;
  pointer-events: none;
}
.nav-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid rgba(100,170,255,0.3);
  box-shadow:
    0 0 0 2px rgba(45,107,196,0.12),
    0 0 10px rgba(45,107,196,0.55),
    0 0 22px rgba(45,107,196,0.2);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-links a {
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--ease);
  position: relative;
  padding-bottom: 3px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 1px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--white); }

.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform var(--ease), opacity var(--ease);
}

/* ── Hero ──────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-bottom: 160px; /* reserve space for scroll hint */
}

#starfield {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.hero-horizon {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 46%;
  pointer-events: none;
  background: radial-gradient(
    ellipse 160% 55% at 50% 120%,
    rgba(100, 180, 255, 0.12) 0%,
    rgba(45, 107, 196, 0.28) 18%,
    rgba(26, 75, 143, 0.18) 38%,
    transparent 65%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 24px;
  padding: 60px 24px 0;
}

/* Hero planet logo */
.logo-planet {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.logo-wrap {
  position: relative;
  width: 188px;
  height: 188px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow:
    0 0 0 1.5px rgba(255,255,255,0.12),
    0 0 48px rgba(26,75,143,0.55),
    0 0 100px rgba(26,75,143,0.28);
  animation: logoPulse 5s ease-in-out infinite;
  z-index: 1;
}

.logo-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Sphere depth shader — specular highlight upper-left, shadow lower-right */
.logo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 30% 26%, rgba(255,255,255,0.20) 0%, transparent 46%),
    radial-gradient(circle at 36% 32%, transparent 20%, rgba(0,4,28,0.72) 100%);
  pointer-events: none;
}

@keyframes logoPulse {
  0%, 100% {
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.12),
      0 0 48px rgba(26,75,143,0.55),
      0 0 100px rgba(26,75,143,0.28);
  }
  50% {
    box-shadow:
      0 0 0 1.5px rgba(255,255,255,0.18),
      0 0 68px rgba(26,75,143,0.72),
      0 0 140px rgba(26,75,143,0.38);
  }
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 5.5vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.08;
  animation: fadeUp 1.3s ease 0.55s both;
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--grey);
  max-width: 460px;
  line-height: 1.65;
  animation: fadeUp 1.3s ease 0.8s both;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 1.3s ease 1.05s both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0);    }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1.3s ease 1.5s both;
  color: rgba(255,255,255,0.28);
  font-size: 0.7rem;
  font-family: var(--font-head);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.scroll-bar {
  width: 1px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.35), transparent);
  animation: scrollBarPulse 1.8s ease-in-out infinite;
}

@keyframes scrollBarPulse {
  0%,100% { transform: scaleY(1);   opacity: 0.8; }
  50%      { transform: scaleY(0.45); opacity: 0.3; }
}

/* ── Satellite ─────────────────────────────────────────── */
.hero-satellite {
  position: absolute;
  top: 17%;
  left: 0;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 2px 8px rgba(100, 180, 255, 0.35));
  animation: satellitePass 80s linear infinite;
}

.hero-satellite svg {
  width: clamp(72px, 7.5vw, 108px);
  height: auto;
  display: block;
}

.sat-blink {
  animation: satBlink 2s ease-in-out infinite;
}

@keyframes satBlink {
  0%, 100% { opacity: 1; }
  45%, 55%  { opacity: 0.08; }
}

@keyframes satellitePass {
  /* enter from left */
  0%    { transform: translateX(-130px) translateY(0)    rotate(-9deg); opacity: 0; }
  4%    { opacity: 1; }
  /* cross the screen */
  76%   { opacity: 1; }
  /* exit right */
  80%   { transform: translateX(calc(100vw + 130px)) translateY(5vh) rotate(-9deg); opacity: 0; }
  /* invisible reset — jump back to start */
  80.01%, 100% { transform: translateX(-130px) translateY(0) rotate(-9deg); opacity: 0; }
}

/* ── Workshops / Carousel ──────────────────────────────── */
.workshops {
  padding: 110px 0 100px;
}

.carousel-outer {
  position: relative;
}

.carousel-wrap {
  overflow: hidden;
  border-radius: var(--radius);
}

.carousel-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.carousel-card {
  min-width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 14px;
  padding: 48px 32px;
  text-align: center;
}

.carousel-bg {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}

.carousel-card-body {
  position: relative;
  z-index: 1;
}

.workshop-icon {
  font-size: 3.2rem;
  line-height: 1;
  display: block;
  margin-bottom: 16px;
}

.carousel-card h3 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 700;
  letter-spacing: -0.025em;
  margin-bottom: 8px;
}

.carousel-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.96rem;
  max-width: 400px;
  margin: 0 auto;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.carousel-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  transition: all var(--ease);
  padding: 0;
}
.carousel-dot.active {
  background: var(--red);
  width: 26px;
  border-radius: 4px;
}

.carousel-arrows {
  display: flex;
  gap: 10px;
}

.carousel-btn {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--ease);
}
.carousel-btn:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.28);
}

/* ── CFT Summary ───────────────────────────────────────── */
.cft-summary {
  padding: 110px 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.cft-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.cft-text .section-sub { margin-bottom: 28px; }

.cft-title-block {
  margin-bottom: 20px;
}

.cft-headline {
  font-family: var(--font-head);
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.cft-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 32px; }

.cft-universities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.07);
}

.uni-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--grey);
  transition: var(--ease);
}
.uni-chip:hover { border-color: rgba(255,255,255,0.24); color: var(--white); }
.uni-chip.upcoming { opacity: 0.6; }

.uni-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.93);
  border-radius: 5px;
  padding: 3px 6px;
  flex-shrink: 0;
  height: 26px;
  box-sizing: border-box;
}
.uni-logo img {
  height: 16px;
  width: auto;
  max-width: 56px;
  display: block;
  object-fit: contain;
}

/* CFT visual panel */
.cft-visual {
  border-radius: 20px;
  aspect-ratio: 4/3;
  background: linear-gradient(140deg, #0d2b5e 0%, #1a4b8f 60%, #0b3270 100%);
  border: 1px solid rgba(255,255,255,0.07);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.cft-visual::before {
  content: '';
  position: absolute;
  top: -30%; left: -10%;
  width: 70%; height: 70%;
  background: radial-gradient(circle, rgba(45,107,196,0.35) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.cft-visual-label {
  font-family: var(--font-head);
  font-size: 1.05rem;
  font-weight: 700;
  color: rgba(255,255,255,0.88);
  letter-spacing: -0.01em;
  position: relative;
  text-align: center;
}

.cft-visual-sub {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  position: relative;
  text-align: center;
  max-width: 210px;
  line-height: 1.55;
}

.cft-logo-glass {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, rgba(255,255,255,0.14) 0%, rgba(255,255,255,0.05) 100%);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.22);
  box-shadow:
    0 8px 32px rgba(45,107,196,0.22),
    inset 0 1.5px 0 rgba(255,255,255,0.22),
    0 0 0 1px rgba(45,107,196,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 6px 0;
  text-decoration: none;
  transition: var(--ease);
  overflow: hidden;
}
.cft-logo-glass:hover {
  border-color: rgba(255,255,255,0.38);
  box-shadow:
    0 12px 48px rgba(45,107,196,0.38),
    inset 0 1.5px 0 rgba(255,255,255,0.28),
    0 0 0 1px rgba(45,107,196,0.22);
  transform: scale(1.05);
}
.cft-logo-glass img {
  width: 76px;
  height: 76px;
  border-radius: 50%;
  opacity: 0.88;
}
.cft-play-icon {
  font-size: 1.45rem;
  color: rgba(255,255,255,0.85);
  margin-left: 5px;
  line-height: 1;
}

/* keep selector around to avoid breaking anything, value is just unused now */
.cft-ep-badge {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 5px 11px;
  border-radius: 100px;
  background: rgba(0,0,0,0.3);
  border: 1px solid rgba(255,255,255,0.1);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

/* ── Impact Stats ──────────────────────────────────────── */
.impact {
  padding: 110px 0;
}

.impact .section-title,
.impact .section-sub {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.stat-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-top: 3px solid var(--red);
  border-radius: var(--radius);
  padding: 36px 24px 32px;
  text-align: center;
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.35);
  border-color: rgba(255,255,255,0.1);
}

.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 12px;
}

.stat-label {
  font-size: 0.88rem;
  color: var(--grey);
  font-weight: 500;
  line-height: 1.45;
}

/* ── Page Banner (sub-pages) ───────────────────────────── */
.page-banner {
  position: relative;
  height: 58vh;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

#starfield-banner {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: block;
}

.banner-glow {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 55%;
  background: radial-gradient(
    ellipse 140% 50% at 50% 120%,
    rgba(26,75,143,0.3) 0%,
    transparent 65%
  );
  pointer-events: none;
}

.banner-content {
  position: relative;
  z-index: 2;
  padding-bottom: 48px;
  width: 100%;
}

.page-banner-title {
  font-family: var(--font-head);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  margin-top: 10px;
}

.banner-desc {
  color: var(--grey);
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 540px;
  margin-top: 14px;
}

/* ── Interview Cards ───────────────────────────────────── */
.interviews {
  padding: 80px 0 100px;
}

.interviews-header {
  margin-bottom: 40px;
}

.interviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.episodes-separator {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0 4px;
  color: var(--grey);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.6;
}
.episodes-separator::before,
.episodes-separator::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.1);
}

.interview-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 0;
  display: flex;
  flex-direction: column;
  transition: var(--ease);
  overflow: hidden;
}
.interview-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.28);
}
.interview-card.upcoming {
  opacity: 0.6;
  border-style: dashed;
}

.guest-profile {
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}
.guest-photo-wrap {
  width: 108px; height: 108px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(45,107,196,0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.35);
  flex-shrink: 0;
}
.guest-photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.guest-photo-initials {
  width: 108px; height: 108px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(26,75,143,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--grey);
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.interview-content {
  padding: 22px 26px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.interview-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.interview-uni {
  display: flex;
  align-items: center;
  gap: 11px;
}

.uni-avatar {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
}
.uni-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
  display: block;
}

.uni-info-name {
  font-family: var(--font-head);
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--grey-light);
  line-height: 1.3;
}
.uni-info-sub {
  font-size: 0.76rem;
  color: var(--grey);
}

.interview-body {
  flex: 1;
}

.guest-name {
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 4px;
  text-align: center;
}

.guest-title {
  font-size: 0.82rem;
  color: var(--grey);
  line-height: 1.5;
  margin-bottom: 10px;
  text-align: center;
}

.guest-creds {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 14px;
  justify-content: center;
}
.guest-cred {
  font-size: 0.69rem;
  font-weight: 600;
  font-family: var(--font-head);
  letter-spacing: 0.01em;
  padding: 3px 9px;
  border-radius: 20px;
  background: rgba(45,107,196,0.14);
  border: 1px solid rgba(45,107,196,0.28);
  color: #7eb3ff;
  white-space: nowrap;
}

.interview-desc {
  font-size: 0.9rem;
  color: var(--grey);
  line-height: 1.65;
}

.interview-footer {
  display: flex;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.watch-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--red);
  transition: gap var(--ease), color var(--ease);
}
.watch-link:hover { gap: 10px; }
.watch-link.disabled { color: var(--grey); pointer-events: none; }

/* ── Team ──────────────────────────────────────────────── */
.team-block {
  padding: 80px 0;
}

.why-section {
  padding: 80px 0 88px;
}

.why-body {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 28px;
}

.why-body p {
  font-size: 1.02rem;
  line-height: 1.82;
  color: var(--grey);
  margin: 0;
}
.team-block + .team-block {
  padding-top: 0;
  margin-top: -20px;
}

.team-block-header {
  margin-bottom: 32px;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.team-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: var(--ease);
}
.team-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(0,0,0,0.25);
}

.team-avatar {
  width: 90px; height: 90px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(140deg, var(--blue) 0%, #0b2d5c 100%);
  border: 2px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 1.3rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.02em;
  overflow: hidden;
  flex-shrink: 0;
}

.team-avatar img {
  width: 100%; height: 100%;
  object-fit: cover;
}

.team-name {
  font-family: var(--font-head);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  margin-bottom: 5px;
}

.team-role {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}

.team-bio {
  font-size: 0.87rem;
  color: var(--grey);
  line-height: 1.65;
}

/* Sponsor — single card, centered */
.faculty-wrap {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}
.faculty-card {
  max-width: 320px;
  width: 100%;
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.08);
  border-top: 3px solid var(--blue-light);
  border-radius: var(--radius);
  padding: 40px 28px 32px;
  text-align: center;
}
.faculty-card .team-avatar {
  width: 100px; height: 100px;
  font-size: 1.5rem;
}
.faculty-card .team-role { color: var(--blue-light); }

/* ── Contact ───────────────────────────────────────────── */
.contact-top {
  padding: 130px 0 90px;
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.contact-top .section-title { margin-bottom: 10px; }
.contact-top .section-sub {
  margin: 0 auto 0;
  max-width: 480px;
}

.contact-email-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  padding: 16px 32px;
  border-radius: 100px;
  background: rgba(26,75,143,0.12);
  border: 1.5px solid rgba(45,107,196,0.28);
  font-family: var(--font-head);
  font-size: clamp(0.9rem, 2.2vw, 1.15rem);
  font-weight: 600;
  color: var(--blue-light);
  transition: var(--ease);
  word-break: break-all;
}
.contact-email-pill:hover {
  background: rgba(26,75,143,0.22);
  border-color: rgba(45,107,196,0.5);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,75,143,0.25);
}

.contact-desc {
  color: var(--grey);
  font-size: 0.95rem;
  margin-top: 22px;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
}

.contact-founders {
  padding: 80px 0 100px;
}

.contact-founders .section-sub { margin-bottom: 36px; }

.contact-card {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  transition: var(--ease);
}
.contact-card:hover {
  border-color: rgba(255,255,255,0.12);
  transform: translateY(-3px);
  box-shadow: 0 14px 38px rgba(0,0,0,0.22);
}

.contact-card .team-role { margin-bottom: 20px; }

.contact-card-email {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.86rem;
  color: var(--blue-light);
  font-weight: 500;
  transition: color var(--ease);
  word-break: break-all;
}
.contact-card-email:hover { color: var(--white); }

/* ── Footer ────────────────────────────────────────────── */
/* Scroll horizon glow */
.scroll-horizon {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse 18% 70% at 0% 50%, rgba(26,75,143,0.38) 0%, transparent 100%),
    radial-gradient(ellipse 18% 70% at 100% 50%, rgba(26,75,143,0.38) 0%, transparent 100%);
  pointer-events: none;
  z-index: 5;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.scroll-horizon.active { opacity: 1; }

.footer {
  padding: 30px 0;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer p {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.28);
}

.footer a {
  color: rgba(255,255,255,0.42);
  transition: color var(--ease);
}
.footer a:hover { color: var(--white); }

/* ── Divider ───────────────────────────────────────────── */
.divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin: 0;
}

/* ── Mobile ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: fixed;
    top: var(--nav-h); left: 0; right: 0;
    background: rgba(5,10,26,0.97);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: center;
    padding: 36px 0;
    gap: 30px;
    transform: translateY(-105%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.38s ease, opacity 0.38s ease;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    z-index: 999;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg);  }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero-title { font-size: clamp(2rem, 9vw, 3rem); }
  .logo-wrap  { width: 148px; height: 148px; }

  .cft-inner   { grid-template-columns: 1fr; gap: 44px; }
  .cft-visual  { display: none; }

  .stats-grid  { grid-template-columns: repeat(2,1fr); }

  .interviews-grid { grid-template-columns: 1fr; }

  .team-grid   { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; text-align: center; }

  .carousel-card { aspect-ratio: 4/3; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .hero-ctas  { flex-direction: column; align-items: center; }
  .cft-ctas   { flex-direction: column; }
  .interviews-grid { grid-template-columns: 1fr; }
}
