/* ============================================================
   WESLEYAN SHARK TANK — style.css
   wesleyansharktank.co
   ============================================================ */

/* ─── CUSTOM PROPERTIES ─── */
:root {
  --ink: #0C0C0E;
  --charcoal: #1A1A1F;
  --slate: #2D2D35;
  --ash: #6B6B76;
  --silver: #A8A8B3;
  --mist: #E8E8EC;
  --snow: #F5F5F7;
  --white: #FFFFFF;
  --cardinal: #C4302B;
  --cardinal-deep: #9A2420;
  --cardinal-light: #E85D58;
  --gold: #D4A843;
  --ember: #FF6B35;

  --font-display: 'Instrument Serif', Georgia, serif;
  --font-body: 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-mono: 'DM Mono', 'SF Mono', monospace;

  --header-height: 72px;
  --max-width: 1400px;
  --gutter: 60px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.8;
  background: var(--snow);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  border: none;
  background: none;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
}


/* ─── FOCUS STATES ─── */
:focus-visible {
  outline: 2px solid var(--cardinal-light);
  outline-offset: 3px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}


/* ─── UTILITIES ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  width: 100%;
}

.label,
.mono {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
}

.divider {
  width: 100%;
  height: 1px;
  background: var(--mist);
  max-width: 1280px;
  margin: 0 auto;
}


/* ─── SECTIONS ─── */
.section {
  padding: 100px var(--gutter);
}

.section .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section--snow {
  background: var(--snow);
  color: var(--ink);
}

.section--white {
  background: var(--white);
  color: var(--ink);
}

.section--dark {
  background: var(--ink);
  color: var(--white);
}

.section--charcoal {
  background: var(--charcoal);
  color: var(--white);
}

/* Section labels on light backgrounds */
.section--snow .label,
.section--white .label {
  color: var(--ash);
}

/* Section labels on dark backgrounds */
.section--dark .label,
.section--charcoal .label {
  color: var(--silver);
}


/* ─── SECTION HEADER ─── */
.section-header {
  margin-bottom: 48px;
}

.section-header__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 12px;
}

.section--dark .section-header__label,
.section--charcoal .section-header__label {
  color: var(--silver);
}

.section-header__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-header__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
  max-width: 680px;
}

.section--dark .section-header__body,
.section--charcoal .section-header__body {
  color: var(--silver);
}


/* ─── HEADER ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-height);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.header__wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--white);
  transition: color 0.3s ease;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.header__link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.2s ease;
  cursor: pointer;
}

.header__link:hover {
  color: var(--white);
}

.header__link.active {
  color: var(--white);
}

.header__cta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  background: var(--cardinal);
  padding: 10px 20px;
  border-radius: 8px;
  transition: background 0.2s ease, box-shadow 0.2s ease;
  cursor: pointer;
}

.header__cta:hover {
  background: var(--cardinal-deep);
  box-shadow: 0 4px 16px rgba(196, 48, 43, 0.3);
}

/* Scrolled state — light header */
.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--mist);
}

.header.scrolled .header__wordmark {
  color: var(--ink);
}

.header.scrolled .header__link {
  color: var(--ash);
}

.header.scrolled .header__link:hover {
  color: var(--ink);
}

.header.scrolled .header__link.active {
  color: var(--ink);
}

/* RSVP button stays cardinal always — no override needed */

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}

.header__hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease, background 0.3s ease;
}

.header.scrolled .header__hamburger span {
  background: var(--ink);
}

/* Hamburger open state */
.header__hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__hamburger.open span:nth-child(2) {
  opacity: 0;
}

.header__hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* When hamburger is open, always use white lines (dark overlay behind) */
.header__hamburger.open span {
  background: var(--white);
}


/* ─── MOBILE NAV ─── */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background: var(--ink);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav a {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--white);
  transition: color 0.2s ease;
  cursor: pointer;
}

.mobile-nav a:hover {
  color: var(--cardinal-light);
}

.mobile-nav .header__cta {
  margin-top: 16px;
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 2px;
  padding: 14px 28px;
}


/* ─── HERO (Homepage) ─── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--ink);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: clip;
}

/* Subtle cardinal radial gradient glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: 0;
  width: 70%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(196, 48, 43, 0.1) 0%, transparent 60%);
  pointer-events: none;
}

/* Bird mark — enters from below the hero on load, lifts upward on scroll */
.hero__bird {
  position: absolute;
  bottom: clamp(32px, 5vh, 64px);
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 0;
  z-index: 1;
  contain: layout paint;
  will-change: transform, opacity;
}

.hero__bird svg {
  width: clamp(80px, 11vw, 120px);
  height: clamp(80px, 11vw, 120px);
}

/* Hero content */
.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 var(--gutter);
  max-width: 800px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease-out 0.2s forwards;
  word-wrap: break-word;
}

.hero__tagline {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 36px);
  font-style: italic;
  color: var(--cardinal-light);
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease-out 0.4s forwards;
}

.hero__body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--silver);
  max-width: 600px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease-out 0.6s forwards;
}

.hero__cta-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 0.8s ease-out 0.8s forwards;
}

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

@keyframes pulse-line {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50% { opacity: 1; transform: scaleY(1); }
}


/* ─── PAGE HERO (subpages: About, Cohorts, Team, Media) ─── */
.page-hero {
  background: var(--ink);
  color: var(--white);
  padding: 160px var(--gutter) 80px;
}

.page-hero .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.page-hero__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.page-hero__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 900px;
}

.page-hero__subtitle {
  font-size: 18px;
  line-height: 1.8;
  color: var(--silver);
  max-width: 680px;
}


/* ─── EVENT — Hero Stats Strip ─── */
.event-stats {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  margin-top: 56px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  overflow: hidden;
}

.event-stats__item {
  background: var(--ink);
  padding: 28px 24px;
  text-align: center;
}

.event-stats__value {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}

.event-stats__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--silver);
}


/* ─── EVENT — Recap Block (one per season) ─── */
.event-recap {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.event-recap--reverse .event-recap__media {
  order: 2;
}

.event-recap--reverse .event-recap__content {
  order: 1;
}

.event-recap__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  overflow: hidden;
  background: var(--ink);
}

.event-recap__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.event-recap__media:hover img {
  transform: scale(1.03);
}

.event-recap__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0.85;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.5));
}

.event-recap__media:hover .event-recap__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.event-recap__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.event-recap__date {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal);
  margin: 0;
}

.event-recap__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 0;
}

.event-recap__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 540px;
  margin: 0;
}

.event-recap__figures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 24px;
  margin: 12px 0 8px;
  padding: 24px 0;
  border-top: 1px solid var(--mist);
  border-bottom: 1px solid var(--mist);
}

.event-recap__figures div {
  font-size: 15px;
  color: var(--ash);
}

.event-recap__figures strong {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.4vw, 28px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--cardinal);
  display: block;
  line-height: 1;
  margin-bottom: 4px;
}

.event-recap__links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.event-recap__sharks {
  margin-top: 80px;
  padding-top: 56px;
  border-top: 1px solid var(--mist);
}

.event-recap__sharks-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 28px;
}


/* ─── EVENT — What's Next CTA ─── */
.event-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 24px 0;
}

.event-cta__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.event-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 18px;
}

.event-cta__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 32px;
}


/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: 10px;
  transition: background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  white-space: nowrap;
}

.btn__arrow {
  transition: transform 0.2s ease;
}

.btn:hover .btn__arrow {
  transform: translateX(3px);
}

/* Cardinal button */
.btn--cardinal {
  background: var(--cardinal);
  color: var(--white);
  border: none;
}

.btn--cardinal:hover {
  background: var(--cardinal-deep);
  box-shadow: 0 4px 20px rgba(196, 48, 43, 0.3);
}

/* Outline button — on dark backgrounds (default) */
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn--outline:hover {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.05);
}

/* Outline button — on light backgrounds */
.section--snow .btn--outline,
.section--white .btn--outline {
  color: var(--ink);
  border-color: var(--slate);
}

.section--snow .btn--outline:hover,
.section--white .btn--outline:hover {
  border-color: var(--ink);
  background: rgba(0, 0, 0, 0.03);
}

/* Ghost button */
.btn--ghost {
  background: transparent;
  color: var(--silver);
  border: 1px solid transparent;
}

.btn--ghost:hover {
  color: var(--white);
}


/* ─── MISSION (Homepage) ─── */
.mission {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}

.mission__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 28px;
}

.mission__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.12;
  color: var(--ink);
  margin: 0 auto 36px;
  max-width: 880px;
}

.mission__figures {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 28px);
  letter-spacing: -0.005em;
  color: var(--ash);
  line-height: 1.5;
}

.mission__figures span {
  color: var(--cardinal);
  font-style: normal;
}


/* ─── COHORT BAND (Homepage) ─── */
.cohort-band {
  text-align: center;
  padding: 16px 0 8px;
}

.cohort-band__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 36px;
}

.cohort-band__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 28px 22px;
  margin-bottom: 36px;
}

.cohort-band__avatar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.cohort-band__avatar:hover {
  transform: translateY(-3px);
}

.cohort-band__avatar img {
  width: clamp(60px, 8vw, 84px);
  height: clamp(60px, 8vw, 84px);
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(100%);
  border: 2px solid var(--white);
  box-shadow: 0 0 0 1px var(--mist);
  transition: filter 0.35s ease, box-shadow 0.35s ease;
}

.cohort-band__avatar:hover img {
  filter: grayscale(0);
  box-shadow: 0 0 0 2px var(--cardinal), 0 8px 24px rgba(196, 48, 43, 0.18);
}

.cohort-band__name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--slate);
}

.cohort-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cardinal);
  font-weight: 500;
  transition: gap 0.2s ease;
}

.cohort-band__cta:hover {
  gap: 14px;
}


/* ─── EVENT TEASER ─── */
.event-teaser {
  position: relative;
  background: var(--ink);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  padding: 96px 48px;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}

.section--dark .event-teaser,
.section--charcoal .event-teaser {
  background: var(--charcoal);
}

/* Photo background variant — layered dark gradient + cardinal glow over photo */
.event-teaser--photo {
  background:
    linear-gradient(180deg, rgba(12, 12, 14, 0.55) 0%, rgba(12, 12, 14, 0.85) 60%, rgba(12, 12, 14, 0.94) 100%),
    radial-gradient(ellipse at 50% 30%, rgba(196, 48, 43, 0.22) 0%, transparent 60%),
    var(--bg-photo) center / cover no-repeat,
    var(--ink);
  border-color: rgba(255, 255, 255, 0.08);
}

.event-teaser__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal-light);
  margin-bottom: 16px;
}

.event-teaser__title {
  font-family: var(--font-display);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-bottom: 12px;
}

.event-teaser__venue {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--silver);
  margin-bottom: 20px;
}

.event-teaser__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  max-width: 580px;
  margin: 0 auto 36px;
}


/* ─── ABOUT MISSION ─── */
.about-mission {
  max-width: 720px;
}

.about-mission p {
  font-size: 18px;
  line-height: 1.85;
  color: var(--silver);
  margin-bottom: 24px;
}

.about-mission p:last-child {
  margin-bottom: 0;
}


/* ─── ABOUT — Origin Grid ─── */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.origin-grid__photo {
  margin: 0;
}

.origin-grid__photo img {
  width: 100%;
  border-radius: 24px;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.origin-grid__caption {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  margin-top: 14px;
  text-align: center;
}

.origin-grid__copy .section-header__label {
  margin-bottom: 14px;
}

.origin-grid__copy .section-header__title {
  margin-bottom: 28px;
}

.origin-grid__copy p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--slate);
  margin-bottom: 20px;
}

.origin-grid__copy p:last-child {
  margin-bottom: 0;
}


/* ─── ABOUT — Mission Block ─── */
.mission-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 24px 0;
}

.mission-block__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink);
  margin: 18px auto 36px;
}

.mission-block__lead {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--slate);
  letter-spacing: -0.005em;
  margin: 0 auto 28px;
  max-width: 760px;
}

.mission-block__body {
  font-size: 17px;
  line-height: 1.85;
  color: var(--slate);
  max-width: 720px;
  margin: 0 auto;
}


/* ─── ABOUT — Seasons Grid ─── */
.seasons-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.season-card {
  background: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.season-card__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center;
  display: block;
}

.season-card__photo--placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  background:
    radial-gradient(circle at 50% 50%, rgba(196, 48, 43, 0.22) 0%, transparent 60%),
    linear-gradient(135deg, var(--charcoal) 0%, var(--ink) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.season-card__photo--placeholder span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
}

.season-card__body {
  padding: 36px 36px 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.season-card__year {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal-light);
  margin-bottom: 14px;
}

.season-card__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 18px;
}

.season-card__copy p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--silver);
}

.season-card__links {
  margin-top: auto;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.season-card__links a {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cardinal-light);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease, color 0.2s ease;
}

.season-card__links a:hover {
  color: var(--white);
  gap: 12px;
}


/* ─── ABOUT — Presented By ─── */
.presented-by__partners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
  position: relative;
}

.presented-by__partners::before {
  content: '';
  position: absolute;
  top: 12%;
  bottom: 12%;
  left: 50%;
  width: 1px;
  background: var(--mist);
}

.presented-by__partner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  padding: 8px 24px;
}

.presented-by__logo {
  height: 140px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.presented-by__logo img {
  max-height: 140px;
  max-width: 280px;
  object-fit: contain;
}

.presented-by__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 360px;
}


/* ─── ABOUT — Bottom CTA ─── */
.about-cta {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 32px 0;
}

.about-cta__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--silver);
  margin-bottom: 16px;
}

.about-cta__title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 400;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
}

.about-cta__body {
  font-size: 17px;
  line-height: 1.7;
  color: var(--silver);
  margin-bottom: 36px;
}

.about-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}


/* ─── NOTABLE CARD ─── */
.notable-card {
  background: rgba(196, 48, 43, 0.06);
  border: 1px solid rgba(196, 48, 43, 0.15);
  border-radius: 20px;
  padding: 48px;
  margin-top: 24px;
}

.notable-card__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 24px;
}

.notable-card__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.notable-card__item {
  font-size: 16px;
  line-height: 1.8;
  color: var(--silver);
  padding-left: 20px;
  position: relative;
}

.notable-card__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cardinal);
}

/* Light bg variant */
.section--snow .notable-card,
.section--white .notable-card {
  background: rgba(196, 48, 43, 0.04);
  border-color: rgba(196, 48, 43, 0.12);
}

.section--snow .notable-card__title,
.section--white .notable-card__title {
  color: var(--ink);
}

.section--snow .notable-card__item,
.section--white .notable-card__item {
  color: var(--slate);
}


/* ─── FOUNDER CARDS ─── */
/* ─── FOUNDER CARDS (Rich) ─── */
.founders-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 24px;
}

.founder-card {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--mist);
  padding: 32px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.founder-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(12, 12, 14, 0.08);
  border-color: rgba(196, 48, 43, 0.2);
}

.founder-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.founder-card__avatar-wrap {
  position: relative;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.founder-card__avatar-img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 1.5px solid var(--mist);
}

.founder-card__logo-badge {
  position: absolute;
  bottom: -2px;
  right: -2px;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 2px solid var(--white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.12);
}

.founder-card__logo-badge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-card__logo-badge img.contain {
  object-fit: contain;
  padding: 2px;
}

.founder-card__titles {
  flex: 1;
  min-width: 0;
}

.founder-card__company {
  font-family: var(--font-display);
  font-size: 24px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 2px;
  color: var(--ink);
}

.founder-card__meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ash);
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.founder-card__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  background: var(--mist);
  color: var(--ash);
  transition: all 0.2s ease;
  flex-shrink: 0;
  text-decoration: none;
}

.founder-card__linkedin:hover {
  background: var(--cardinal);
  color: var(--white);
}

.founder-card__linkedin svg {
  width: 12px;
  height: 12px;
}

.founder-card__desc {
  font-size: 15px;
  line-height: 1.65;
  color: var(--slate);
  margin-bottom: 24px;
  flex: 1;
}

.founder-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: auto;
}

.founder-card__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 8px;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.founder-card__link svg {
  width: 12px;
  height: 12px;
}

.founder-card__link--primary {
  background: var(--ink);
  color: var(--white);
}

.founder-card__link--primary:hover {
  background: var(--cardinal);
}

.founder-card__link--secondary {
  background: var(--snow);
  color: var(--slate);
  border: 1px solid var(--mist);
}

.founder-card__link--secondary:hover {
  border-color: var(--silver);
  color: var(--ink);
}

/* Legacy simple founder cards (Season 1) */
.founder-card--simple {
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--mist);
}

.founder-card--simple .founder-card__avatar {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.founder-card--simple img.founder-card__avatar {
  object-fit: cover;
  background: transparent;
}

.founder-card--simple .founder-card__content {
  flex: 1;
  min-width: 0;
}

.founder-card--simple .founder-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.founder-card--simple .founder-card__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 8px;
}

.founder-card--simple .founder-card__company {
  font-size: 20px;
  color: var(--cardinal);
  margin-bottom: 8px;
}

.founder-card--simple .founder-card__desc {
  font-size: 14px;
  line-height: 1.7;
  color: var(--slate);
  margin-bottom: 0;
}

.founder-card--simple .founder-card__links {
  margin-top: 16px;
}

/* Leadership appendix */
.cohort-appendix {
  border-top: 1px solid var(--mist);
  margin-top: 32px;
  padding-top: 48px;
}

.cohort-appendix .section-header__title {
  color: var(--slate);
}

.cohort-appendix__note {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  color: var(--silver);
  margin-top: -24px;
  margin-bottom: 40px;
}


/* ─── COHORT TOGGLE ─── */
.cohort-toggle {
  display: flex;
  gap: 4px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 4px;
  margin-bottom: 40px;
  width: fit-content;
}

.cohort-toggle__btn {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 1px;
  padding: 10px 20px;
  border-radius: 8px;
  color: var(--ash);
  background: transparent;
  transition: background 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.cohort-toggle__btn:hover {
  color: var(--white);
}

.cohort-toggle__btn.active {
  background: var(--white);
  color: var(--ink);
}

/* Panel visibility */
.cohort-panel {
  display: none;
}

.cohort-panel.active {
  display: block;
}

.cohort-panel__intro {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.45;
  color: var(--slate);
  max-width: 720px;
  margin-bottom: 40px;
}

.cohort-subhead {
  margin: 56px 0 28px;
  padding-top: 32px;
  border-top: 1px solid var(--mist);
}

.cohort-subhead:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.cohort-subhead__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal);
  margin-bottom: 10px;
}

.cohort-subhead__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 8px;
}

.cohort-subhead__meta {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.5px;
  color: var(--ash);
}

/* Light bg variant */
.section--snow .cohort-toggle,
.section--white .cohort-toggle {
  background: var(--mist);
}

.section--snow .cohort-toggle__btn,
.section--white .cohort-toggle__btn {
  color: var(--ash);
}

.section--snow .cohort-toggle__btn:hover,
.section--white .cohort-toggle__btn:hover {
  color: var(--ink);
}

.section--snow .cohort-toggle__btn.active,
.section--white .cohort-toggle__btn.active {
  background: var(--white);
  color: var(--ink);
}


/* ─── TEAM CARDS ─── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.team-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.team-card__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 14px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

img.team-card__avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  background: transparent;
  display: block;
  filter: grayscale(15%);
  transition: filter 0.3s ease;
}

.team-card:hover img.team-card__avatar {
  filter: grayscale(0);
}

.team-card__name {
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.team-card__role {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ash);
  margin-bottom: 16px;
}

.team-card__bio {
  font-size: 14px;
  line-height: 1.7;
  color: var(--silver);
}

.team-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--mist);
}

.team-card__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--snow);
  color: var(--slate);
  border: 1px solid var(--mist);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.team-card__link svg {
  width: 12px;
  height: 12px;
}

.team-card__link:hover {
  border-color: var(--cardinal);
  color: var(--cardinal);
  background: rgba(196, 48, 43, 0.04);
}

/* Light bg variant */
.section--snow .team-card,
.section--white .team-card {
  background: var(--white);
  border: 1px solid var(--mist);
}

.section--snow .team-card__name,
.section--white .team-card__name {
  color: var(--ink);
}

.section--snow .team-card__bio,
.section--white .team-card__bio {
  color: var(--slate);
}


/* ─── JUDGE CARDS ─── */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}

.judge-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.judge-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.judge-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--silver);
  font-family: var(--font-mono);
  font-size: 16px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

img.judge-card__avatar {
  width: 96px;
  height: 96px;
  object-fit: cover;
  background: transparent;
  display: block;
  filter: grayscale(20%);
  transition: filter 0.3s ease;
}

.judge-card:hover img.judge-card__avatar {
  filter: grayscale(0);
}

.judge-card__name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.judge-card__name a:hover {
  color: var(--cardinal);
}

.judge-card__name {
  font-size: 16px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 4px;
}

.judge-card__title {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.5;
}

/* Mystery judge variant */
.judge-card--mystery {
  background: rgba(196, 48, 43, 0.06);
  border: 1px solid rgba(196, 48, 43, 0.15);
}

.judge-card--mystery .judge-card__avatar {
  background: rgba(196, 48, 43, 0.15);
  color: var(--cardinal-light);
}

.judge-card--mystery .judge-card__name {
  color: var(--cardinal-light);
}

/* Light bg variant */
.section--snow .judge-card,
.section--white .judge-card {
  background: var(--white);
  border: 1px solid var(--mist);
}

.section--snow .judge-card__name,
.section--white .judge-card__name {
  color: var(--ink);
}

.section--snow .judge-card__title,
.section--white .judge-card__title {
  color: var(--slate);
}


/* ─── ROLE CARDS ─── */
.roles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.role-card {
  background: var(--charcoal);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 20px;
  padding: 40px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.role-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

.role-card__icon {
  display: inline-flex;
  width: 52px;
  height: 52px;
  align-items: center;
  justify-content: center;
  background: rgba(196, 48, 43, 0.08);
  color: var(--cardinal);
  border-radius: 14px;
  margin-bottom: 20px;
}

.role-card__icon svg {
  width: 28px;
  height: 28px;
}

.role-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--white);
  margin-bottom: 12px;
}

.role-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--silver);
}

/* Light bg variant */
.section--snow .role-card,
.section--white .role-card {
  background: var(--white);
  border: 1px solid var(--mist);
}

.section--snow .role-card__title,
.section--white .role-card__title {
  color: var(--ink);
}

.section--snow .role-card__desc,
.section--white .role-card__desc {
  color: var(--slate);
}


/* ─── INVOLVED FORM (Homepage) ─── */
.involved-form {
  max-width: 760px;
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 24px;
  padding: 48px;
  position: relative;
}

.involved-form__honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.involved-form__heading {
  margin-bottom: 4px;
}

.involved-form__heading h3 {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 36px);
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-top: 10px;
  line-height: 1.15;
}

.involved-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.involved-form__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.involved-form__label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
}

.involved-form__optional {
  text-transform: none;
  letter-spacing: 0;
  color: var(--silver);
}

.involved-form input,
.involved-form select,
.involved-form textarea {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 12px;
  padding: 14px 16px;
  width: 100%;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.involved-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%236B6B76' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'><path d='M1 1.5 6 6.5 11 1.5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px 8px;
  padding-right: 44px;
  cursor: pointer;
}

.involved-form textarea {
  resize: vertical;
  min-height: 120px;
}

.involved-form input::placeholder,
.involved-form textarea::placeholder {
  color: var(--silver);
}

.involved-form input:focus,
.involved-form select:focus,
.involved-form textarea:focus {
  outline: none;
  border-color: var(--cardinal);
  box-shadow: 0 0 0 4px rgba(196, 48, 43, 0.14);
}

.involved-form__submit {
  align-self: flex-start;
  margin-top: 8px;
}

.involved-form__success {
  display: none;
  font-family: var(--font-display);
  font-size: clamp(20px, 2.4vw, 26px);
  font-style: italic;
  color: var(--cardinal);
  line-height: 1.4;
}

.involved-form.is-success > *:not(.involved-form__heading):not(.involved-form__success) {
  display: none;
}

.involved-form.is-success .involved-form__success {
  display: block;
}

@media (max-width: 600px) {
  .involved-form {
    padding: 32px 24px;
  }
  .involved-form__row {
    grid-template-columns: 1fr;
  }
  .involved-form__submit {
    width: 100%;
    justify-content: center;
  }
}


/* ─── MEDIA SECTION (Media page header) ─── */
.media-section__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}


/* ─── EPISODES (Media page) ─── */
.episodes {
  display: flex;
  flex-direction: column;
}

.episode {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 48px;
  padding: 40px 0;
  border-top: 1px solid var(--mist);
  align-items: center;
}

.episode:last-child {
  border-bottom: 1px solid var(--mist);
}

.episode__media {
  display: block;
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  border-radius: 16px;
  overflow: hidden;
}

.episode__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.episode:hover .episode__media img {
  transform: scale(1.03);
}

.episode__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  filter: drop-shadow(0 6px 18px rgba(0, 0, 0, 0.45));
}

.episode:hover .episode__play,
.episode:focus-within .episode__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.episode__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.episode__meta {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal);
}

.episode__title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.15;
  color: var(--ink);
}

.episode__desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--slate);
  max-width: 540px;
}

.episode__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}

.episode__link {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
}

.episode__link svg {
  width: 14px;
  height: 14px;
}

.episode__link--primary {
  background: var(--cardinal);
  color: var(--white);
}

.episode__link--primary:hover {
  background: var(--cardinal-deep);
}

.episode__link--secondary {
  background: var(--snow);
  color: var(--slate);
  border: 1px solid var(--mist);
}

.episode__link--secondary:hover {
  border-color: var(--cardinal);
  color: var(--cardinal);
}

/* Featured episode (Final Event) — emphasized */
.episode--feature {
  background: var(--ink);
  margin: 16px -32px;
  padding: 40px 32px;
  border-radius: 24px;
  border: 1px solid rgba(196, 48, 43, 0.25);
  position: relative;
  overflow: hidden;
}

.episode--feature::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(196, 48, 43, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.episode--feature .episode__content {
  position: relative;
}

.episode--feature .episode__meta {
  color: var(--cardinal-light);
}

.episode--feature .episode__title {
  color: var(--white);
}

.episode--feature .episode__desc {
  color: var(--silver);
}

.episode--feature .episode__link--secondary {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}


/* ─── WEEKLY RECAP SCROLLER (Homepage) ─── */
.recap-scroller {
  position: relative;
  margin: 32px -16px 0;
}

.recap-scroller__track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;
  padding: 8px 16px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.recap-scroller__track::-webkit-scrollbar {
  display: none;
}

.recap-card {
  flex: 0 0 clamp(280px, 28vw, 360px);
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.recap-card:hover {
  box-shadow: 0 12px 32px rgba(12, 12, 14, 0.08);
  transform: translateY(-2px);
  border-color: rgba(196, 48, 43, 0.2);
}

.recap-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  background: var(--ink);
  overflow: hidden;
}

.recap-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.recap-card:hover .recap-card__media img {
  transform: scale(1.04);
}

.recap-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  filter: drop-shadow(0 4px 16px rgba(0, 0, 0, 0.45));
}

.recap-card:hover .recap-card__play,
.recap-card:focus-within .recap-card__play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.recap-card__body {
  padding: 22px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 6px;
}

.recap-card__week {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cardinal);
}

.recap-card__title {
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1.35;
  letter-spacing: -0.005em;
  margin-bottom: 18px;
  flex: 1;
}

.recap-card__substack {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--ash);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--mist);
  transition: color 0.2s ease, gap 0.2s ease;
}

.recap-card__substack span {
  transition: transform 0.2s ease;
}

.recap-card__substack:hover {
  color: var(--cardinal);
}

.recap-card__substack:hover span {
  transform: translateX(4px);
}


/* Bottom action buttons (Watch all episodes / Subscribe on Substack)
   Neutral ink outline by default, fills with the platform's brand color on hover. */
.recap-action {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 13px 22px;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  text-decoration: none;
}

.recap-action svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.recap-action .btn__arrow {
  transition: transform 0.2s ease;
}

.recap-action:hover {
  transform: translateY(-2px);
  color: var(--white);
}

.recap-action:hover .btn__arrow {
  transform: translateX(4px);
}

.recap-action--youtube:hover {
  background: #C30000;
  border-color: #C30000;
  box-shadow: 0 10px 24px rgba(195, 0, 0, 0.28);
}

.recap-action--substack:hover {
  background: #D54900;
  border-color: #D54900;
  box-shadow: 0 10px 24px rgba(213, 73, 0, 0.28);
}

.recap-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
  justify-content: center;
}


/* ─── FOOTER ─── */
.footer {
  background: var(--ink);
  color: var(--white);
  padding: 80px var(--gutter) 60px;
}

.footer .container {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer__inner {
  text-align: center;
}

.footer__bird {
  margin-bottom: 24px;
  display: flex;
  justify-content: center;
}

.footer__text {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 2px;
  color: var(--silver);
  margin-bottom: 24px;
}

.footer__links {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 32px;
}

.footer__links a {
  font-size: 14px;
  color: var(--ash);
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer__links a:hover {
  color: var(--white);
}

.footer__presented {
  font-size: 13px;
  color: var(--ash);
  line-height: 1.6;
  max-width: 520px;
  margin: 0 auto 20px;
}

.footer__contact a {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ash);
  transition: color 0.2s ease;
  cursor: pointer;
}

.footer__contact a:hover {
  color: var(--cardinal-light);
}


/* ─── STEPS GRID (How It Works) ─── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--mist);
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.step-card__number {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--mist);
  position: absolute;
  top: 12px;
  right: 20px;
  line-height: 1;
}

.step-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  margin-bottom: 12px;
  color: var(--ink);
}

.step-card__desc {
  font-size: 15px;
  line-height: 1.7;
  color: var(--slate);
}


/* ─── PHOTO BREAK ─── */
.photo-break {
  width: 100%;
  overflow: hidden;
  max-height: 480px;
}

.photo-break img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: center center;
  display: block;
}


/* ─── FOUNDER CARD NAME LINKS (S1 simple cards) ─── */
.founder-card__name-link {
  color: inherit;
  transition: color 0.2s ease;
  text-decoration: none;
}

.founder-card__name-link:hover {
  color: var(--cardinal);
}

.founder-card--simple .founder-card__company a {
  color: inherit;
  transition: color 0.2s ease;
}

.founder-card--simple .founder-card__company a:hover {
  text-decoration: underline;
}




/* ─── SYLLABUS TIMELINE ─── */
/* ─── CURRICULUM (Syllabus page) ─── */
.curriculum {
  display: flex;
  flex-direction: column;
}

.curriculum-week {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 56px;
  padding: 36px 0;
  border-top: 1px solid var(--mist);
  align-items: start;
}

.curriculum-week:last-child {
  border-bottom: 1px solid var(--mist);
}

.curriculum-week__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 6px;
}

.curriculum-week__number {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cardinal);
}

.curriculum-week__date {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--ash);
  letter-spacing: 0.5px;
}

.curriculum-week__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.curriculum-week__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.6vw, 30px);
  font-weight: 400;
  letter-spacing: -0.015em;
  line-height: 1.2;
  color: var(--ink);
}

.curriculum-week__desc {
  font-size: 16px;
  line-height: 1.65;
  color: var(--slate);
  max-width: 640px;
}

.curriculum-week__speakers {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 6px;
}

.curriculum-week__speaker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--snow);
  border: 1px solid var(--mist);
  border-radius: 999px;
  font-size: 13px;
  color: var(--slate);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.curriculum-week__speaker:hover {
  border-color: var(--cardinal);
  color: var(--cardinal);
  background: rgba(196, 48, 43, 0.05);
}

.curriculum-week__speaker-name {
  font-weight: 500;
}

.curriculum-week__speaker-org {
  color: var(--ash);
  transition: color 0.2s ease;
}

.curriculum-week__speaker:hover .curriculum-week__speaker-org {
  color: var(--cardinal);
}

.curriculum-week__speaker svg {
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.curriculum-week__speaker:hover svg {
  opacity: 1;
}

/* Final event row — emphasized */
.curriculum-week--event {
  margin-top: 12px;
  padding: 48px;
  background: var(--ink);
  border: 1px solid rgba(196, 48, 43, 0.25);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

.curriculum-week--event::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(196, 48, 43, 0.16) 0%, transparent 60%);
  pointer-events: none;
}

.curriculum-week--event .curriculum-week__meta,
.curriculum-week--event .curriculum-week__content {
  position: relative;
}

.curriculum-week--event .curriculum-week__number {
  color: var(--cardinal-light);
}

.curriculum-week--event .curriculum-week__date {
  color: var(--silver);
}

.curriculum-week--event .curriculum-week__title {
  color: var(--white);
}

.curriculum-week--event .curriculum-week__desc {
  color: var(--silver);
}


/* ─── RESPONSIVE: Curriculum ─── */
@media (max-width: 768px) {
  .curriculum-week {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 28px 0;
  }

  .curriculum-week__meta {
    flex-direction: row;
    gap: 16px;
    align-items: center;
    padding-top: 0;
  }

  .curriculum-week--event {
    padding: 32px 24px;
  }
}


/* ─── SCROLL ANIMATIONS ─── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered delays for fade-in */
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }


/* ─── INTERACTIVE CURSOR ─── */
a,
button,
.btn,
.cohort-toggle__btn,
.header__hamburger,
[role="button"] {
  cursor: pointer;
}


/* ─── SELECTION ─── */
::selection {
  background: rgba(196, 48, 43, 0.2);
  color: inherit;
}


/* ─── SCROLLBAR (subtle) ─── */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--snow);
}

::-webkit-scrollbar-thumb {
  background: var(--mist);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--silver);
}


/* ─── 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;
  }

  .fade-in {
    opacity: 1;
    transform: none;
  }

  .hero__title,
  .hero__tagline,
  .hero__body,
  .hero__cta-row,
  .hero__scroll {
    opacity: 1;
    transform: none;
  }
}


/* ─── RESPONSIVE: Tablet (max 1024px) ─── */
@media (max-width: 1024px) {
  .founders-grid {
    grid-template-columns: 1fr;
  }

  .founder-card--simple {
    flex-direction: row;
  }

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

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

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

  .episode {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
  }

  .episode--feature {
    margin: 12px -16px;
    padding: 28px 20px;
  }

  .recap-card {
    flex: 0 0 78vw;
    max-width: 320px;
  }

  .recap-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .recap-actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ─── RESPONSIVE: Mobile (max 768px) ─── */
@media (max-width: 768px) {
  :root {
    --gutter: 24px;
  }

  .section {
    padding: 60px var(--gutter);
  }

  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .header__inner {
    padding: 0 24px;
  }

  /* Hero */
  .hero__content {
    padding: 0 24px;
    margin-top: 40px;
    width: 100%;
    box-sizing: border-box;
  }

  .hero__title {
    font-size: 36px;
  }

  .hero__tagline {
    font-size: 22px;
  }

  .hero__cta-row {
    flex-direction: column;
    gap: 12px;
  }

  .hero__cta-row .btn {
    width: 100%;
    justify-content: center;
  }

  /* Page hero */
  .page-hero {
    padding: 120px 24px 60px;
  }

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

  /* Event page */
  .event-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .event-recap {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .event-recap--reverse .event-recap__media {
    order: 0;
  }

  .event-recap--reverse .event-recap__content {
    order: 0;
  }

  .event-recap__sharks {
    margin-top: 56px;
    padding-top: 40px;
  }

  /* Media section header */
  .media-section__header {
    flex-direction: column;
    align-items: flex-start;
  }

  /* Presented by */
  .presented-by {
    flex-direction: column;
    gap: 24px;
  }

  /* Founder card compact */
  .founder-card {
    padding: 24px;
  }

  .notable-card {
    padding: 32px;
  }

  /* Event teaser */
  .event-teaser {
    padding: 64px 28px;
  }

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

  /* About — Origin grid stacks */
  .origin-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  /* About — Seasons grid stacks */
  .seasons-grid {
    grid-template-columns: 1fr;
  }

  .season-card__body {
    padding: 28px 24px 32px;
  }

  /* About — Partners stack on tablet+down */
  .presented-by__partners {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .presented-by__partners::before {
    display: none;
  }

  /* About — Bottom CTA buttons stack on small */
  .about-cta__actions .btn {
    width: 100%;
    justify-content: center;
  }
}


/* ─── RESPONSIVE: Small Mobile (max 480px) ─── */
@media (max-width: 480px) {
  .section {
    padding: 48px 20px;
  }

  .page-hero {
    padding: 100px 20px 48px;
  }

  .page-hero__title {
    font-size: 32px;
  }

  .event-stats {
    grid-template-columns: 1fr 1fr;
    margin-top: 40px;
  }

  .event-stats__item {
    padding: 20px 16px;
  }

  .section-header__title {
    font-size: 28px;
  }

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

  .footer {
    padding: 60px 20px 40px;
  }

  .footer__links {
    flex-direction: column;
    gap: 16px;
  }

  .btn {
    font-size: 12px;
    padding: 12px 22px;
  }

  .cohort-toggle {
    flex-direction: column;
    width: 100%;
  }

  .cohort-toggle__btn {
    text-align: center;
  }
}
