:root {
  --font-display: "Open Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;
  --bg: #090403;
  --bg-soft: #120705;
  --bg-deep: #190905;
  --overview-top: #b64a12;
  --overview-top-rgb: 182, 74, 18;
  --overview-surface: #8f3409;
  --overview-surface-rgb: 143, 52, 9;
  --surface: #1d1410;
  --surface-strong: #241913;
  --surface-alt: #2a1d15;
  --line: rgba(255, 255, 255, 0.08);
  --line-accent: rgba(236, 88, 0, 0.28);
  --line-accent-strong: rgba(236, 88, 0, 0.52);
  --text: #fff5ec;
  --muted: rgba(255, 236, 221, 0.74);
  --muted-strong: rgba(255, 236, 221, 0.9);
  --accent: #ec5800;
  --accent-strong: #ff8a3d;
  --accent-light: #ffb26d;
  --accent-neon: #ffa347;
  --shadow: 0 18px 44px rgba(0, 0, 0, 0.24);
  --radius: 22px;
  --radius-sm: 16px;
  --container: min(1200px, calc(100vw - 40px));
  --section-padding-top: 96px;
  --section-padding-bottom: 72px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

[id] {
  scroll-margin-top: 110px;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 178, 109, 0.24), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(255, 140, 61, 0.14), transparent 24%),
    radial-gradient(circle at 52% 74%, rgba(255, 178, 109, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 161, 87, 0.07) 0%, rgba(255, 161, 87, 0.02) 34%, rgba(255, 161, 87, 0) 100%),
    linear-gradient(180deg, #090302 0%, #120604 30%, #150805 68%, #090302 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 1;
  background:
    radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at 78% 68%, rgba(255, 178, 109, 0.05), transparent 24%);
}

body.is-loading {
  overflow: hidden;
}

body.is-loading .topbar,
body.is-loading main,
body.is-loading .footer,
body.is-loading .support-popup {
  visibility: hidden;
}

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

button {
  font: inherit;
}

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

strong {
  font-weight: 700;
}

.site-loader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 0%, rgba(255, 178, 109, 0.24), transparent 28%),
    radial-gradient(circle at 86% 14%, rgba(255, 140, 61, 0.14), transparent 24%),
    radial-gradient(circle at 52% 74%, rgba(255, 178, 109, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(255, 161, 87, 0.07) 0%, rgba(255, 161, 87, 0.02) 34%, rgba(255, 161, 87, 0) 100%),
    linear-gradient(180deg, #090302 0%, #120604 30%, #150805 68%, #090302 100%);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 0s linear 520ms;
}

.site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.site-loader-core {
  position: relative;
  z-index: 1;
  width: min(360px, calc(100vw - 40px));
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-loader-brandmark {
  position: relative;
  width: min(250px, 58vw);
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
}

.site-loader-brandmark::before {
  content: "";
  position: absolute;
  inset: 10%;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(255, 245, 236, 0.62) 0%, rgba(255, 245, 236, 0.14) 48%, transparent 76%);
  filter: blur(22px);
}

.site-loader-logo {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 18px 26px rgba(83, 20, 0, 0.24));
  animation: loader-logo-pulse 1.18s ease-in-out infinite;
}

.topbar {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  padding: 0;
  border-bottom: 0;
  background: transparent;
  backdrop-filter: none;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition:
    opacity 260ms ease,
    transform 260ms ease,
    padding 220ms ease;
}

.topbar.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.topbar.is-scrolled {
  padding: 0;
  background: transparent;
}

.nav-shell {
  position: relative;
  width: min(980px, calc(100vw - 120px));
  margin: 0 auto;
  padding: 16px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.topbar.is-scrolled .nav-shell {
  background: transparent;
  border-color: transparent;
  transform: none;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  object-fit: contain;
}

.brand-copy {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  line-height: 1;
}

.brand-copy strong,
.brand-copy small {
  font-family: var(--font-display);
  text-transform: uppercase;
}

.brand-copy strong {
  font-size: 1.32rem;
  font-weight: normal;
  letter-spacing: 0.04em;
  color: var(--text);
}

.brand-copy small {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  color: rgba(255, 236, 221, 0.68);
}

.nav-links,
.footer-links,
.tag-row,
.global-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav-links {
  flex: 1 1 auto;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(12px, 1.6vw, 24px);
  min-width: 0;
}

.nav-links a,
.footer-links a {
  position: relative;
  color: rgba(255, 236, 221, 0.78);
  transition: color 180ms ease;
}

.nav-links a {
  display: inline-block;
  min-height: 24px;
  padding: 5px 0;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: transparent;
  white-space: nowrap;
  text-transform: uppercase;
}

.nav-links a[href="#contact"] {
  padding: 5px 14px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 999px;
}

.nav-links a[href="#contact"]:hover,
.nav-links a[href="#contact"].is-active {
  border-color: var(--accent-light);
}

.language-toggle {
  position: fixed;
  top: 14px;
  right: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 34px;
  padding: 4px;
  border: 1px solid rgba(236, 88, 0, 0.22);
  border-radius: 10px;
  background: rgba(9, 4, 3, 0.28);
  color: #ffffff;
  line-height: 1;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.language-toggle:hover {
  border-color: rgba(255, 163, 71, 0.58);
  background: rgba(255, 163, 71, 0.08);
  transform: none;
}

.language-toggle:focus-visible {
  outline: 2px solid var(--accent-light);
  outline-offset: 3px;
}

.language-flag-image {
  width: 24px;
  height: 16px;
  border-radius: 2px;
  object-fit: cover;
  display: block;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.18);
}

.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -7px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a::before,
.nav-links a::after {
  content: attr(data-label);
  position: absolute;
  left: 0;
  top: 50%;
  width: 100%;
  color: rgba(255, 236, 221, 0.82);
  text-align: center;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.72);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), color 180ms ease;
}

.nav-links a::before {
  transform: translateY(-50%);
}

.nav-links a::after {
  transform: translateY(120%);
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  transform: translateY(-220%);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after {
  transform: translateY(-50%);
}

.nav-links a:hover::before,
.nav-links a:hover::after,
.nav-links a:focus-visible::before,
.nav-links a:focus-visible::after,
.nav-links a.is-active::before {
  color: #ffffff;
}

.nav-links a[href="#contact"]::before,
.nav-links a[href="#contact"]::after {
  left: 14px;
  width: calc(100% - 28px);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
}

.nav-toggle span {
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero,
.section {
  position: relative;
  isolation: isolate;
}

.hero {
  min-height: 100vh;
  padding: 110px 20px 70px;
  display: grid;
  place-items: center;
  overflow: hidden;
  margin-bottom: 0;
  background: var(--bg);
}

.hero-video,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px) saturate(0.92) brightness(0.62);
  transform: scale(1.035);
}

.hero-overlay {
  background:
    linear-gradient(
      90deg,
      rgba(8, 4, 3, 0.9) 0%,
      rgba(10, 5, 3, 0.68) 46%,
      rgba(10, 5, 3, 0.24) 72%,
      rgba(9, 4, 3, 0.42) 100%
    ),
    linear-gradient(180deg, rgba(7, 4, 3, 0.16) 0%, rgba(9, 4, 3, 0.82) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  height: 2px;
  background: var(--accent);
}

.hero-content,
.hero-scroll {
  position: relative;
  z-index: 2;
}

.hero-content {
  width: var(--container);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(44px, 7vw, 100px);
  padding: 48px 0;
  text-align: left;
}

.hero-copy {
  display: grid;
  gap: 24px;
  min-width: 0;
}

.hero-eyebrow {
  margin: 0;
  color: var(--accent-light);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero-logo-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.hero-logo-image {
  width: min(100%, 420px);
  max-width: 40vw;
  height: auto;
  object-fit: contain;
}

.hero-kicker,
.eyebrow,
.program-label,
.season-year,
.season-badge {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-kicker,
.eyebrow {
  color: rgba(255, 236, 221, 0.64);
}

.eyebrow {
  margin: 0;
}

.hero-type-line,
.hero-type-static,
.hero-type-dynamic {
  font-family: var(--font-display);
}

.hero .hero-type-line {
  margin: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  font-size: clamp(3.6rem, 7.2vw, 7.4rem);
  font-weight: 800;
  line-height: 0.86;
  letter-spacing: -0.065em;
  color: rgba(255, 255, 255, 0.98);
  white-space: nowrap;
}

.hero-type-static {
  flex: 0 0 auto;
}

.hero-type-dynamic {
  display: inline-block;
  width: fit-content;
  min-width: 0;
  padding-right: 10px;
  color: var(--accent-strong);
  text-align: left;
  white-space: nowrap;
  border-right: 5px solid currentColor;
  animation: blink 0.8s steps(1) infinite;
}

.section {
  width: var(--container);
  margin: 0 auto;
  padding: var(--section-padding-top) 0 var(--section-padding-bottom);
}

.section + .section {
  margin-top: 0;
  padding-top: 86px;
}

.section > * {
  position: relative;
  z-index: 1;
}

.section::before {
  display: none;
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

.overview {
  margin-top: 0;
  padding-top: 76px;
  background: transparent;
}

.overview::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  z-index: 0;
  width: 100vw;
  transform: translateX(-50%);
  pointer-events: none;
  background: rgb(var(--overview-surface-rgb));
}

.about-section {
  padding-bottom: 20px;
}

.about-shell {
  display: grid;
  gap: 28px;
}

.about-header {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: none;
  justify-items: center;
  text-align: center;
}

.about-header h2 {
  margin: 0;
  max-width: none;
  justify-self: center;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.about-body {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.68fr);
  gap: 24px;
  align-items: start;
}

.about-team-shot,
.about-robot-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.02);
  cursor: zoom-in;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.about-team-shot:hover,
.about-team-shot:focus-visible,
.about-robot-shot:hover,
.about-robot-shot:focus-visible {
  border-color: rgba(255, 163, 71, 0.42);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.28);
  transform: translateY(-3px);
  outline: none;
}

.about-team-shot {
  height: auto;
  min-height: 0;
  border-radius: 30px;
}

.about-side {
  display: grid;
  grid-template-rows: auto 220px;
  gap: 20px;
  align-content: start;
  min-height: 0;
}

.about-panel {
  display: grid;
  gap: 18px;
  padding: 28px 28px 30px;
  height: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background: rgba(19, 11, 8, 0.84);
  box-shadow: var(--shadow);
}

.about-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.84;
}

.about-panel .about-lead {
  color: var(--muted-strong);
  font-size: 1.08rem;
  line-height: 1.72;
}

.about-panel p:not(.about-lead) {
  color: var(--muted);
}

/* Editorial treatment for the about section. */
.about-section {
  padding-top: 104px;
  padding-bottom: 104px;
}

.about-section .about-shell {
  gap: 52px;
}

.about-section .about-header {
  justify-items: start;
  gap: 18px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  text-align: left;
}

.about-section .about-eyebrow {
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.about-section .about-header h2 {
  max-width: none;
  width: 100%;
  justify-self: start;
  font-size: clamp(3rem, 7.6vw, 7.25rem);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;
  white-space: nowrap;
}

.about-section .about-body {
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.9fr);
  gap: clamp(46px, 7vw, 88px);
  align-items: center;
}

.about-section .about-panel {
  order: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px 30px;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.about-section .about-panel .about-lead {
  grid-column: 1 / -1;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 1.13rem;
  line-height: 1.78;
}

.about-section .about-panel p:not(.about-lead) {
  padding-left: 16px;
  border-left: 2px solid rgba(255, 178, 109, 0.72);
  line-height: 1.72;
}

.about-section .about-panel .about-copy-three {
  grid-column: 1 / -1;
}

.about-section .about-team-shot {
  order: 2;
  aspect-ratio: 4 / 3;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(19, 11, 8, 0.4);
  box-shadow: 14px 14px 0 rgba(255, 163, 71, 0.1);
}

.about-section .about-team-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-section .about-team-shot:hover,
.about-section .about-team-shot:focus-visible {
  border-color: rgba(255, 178, 109, 0.52);
  box-shadow: 14px 14px 0 rgba(255, 163, 71, 0.16);
  transform: none;
}

@media (max-width: 1120px) {
  .about-section .about-body {
    grid-template-columns: 1fr;
  }

  .about-section .about-team-shot {
    width: min(760px, 100%);
  }
}

@media (max-width: 640px) {
  .about-section .about-shell {
    gap: 36px;
  }

  .about-section .about-header h2 {
    font-size: clamp(2.65rem, 14vw, 4rem);
    white-space: normal;
  }

  .about-section .about-panel {
    grid-template-columns: 1fr;
  }

  .about-section .about-panel .about-lead,
  .about-section .about-panel .about-copy-three {
    grid-column: auto;
  }

  .about-section .about-team-shot {
    aspect-ratio: 4 / 3.2;
    box-shadow: 8px 8px 0 rgba(255, 163, 71, 0.1);
  }
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7, 4, 3, 0.76);
  backdrop-filter: blur(8px);
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1120px, calc(100vw - 48px));
  display: grid;
  gap: 12px;
  padding: 0;
  background: transparent;
}

.lightbox-toolbar {
  display: flex;
  justify-content: flex-end;
}

.lightbox-control {
  padding: 10px 16px;
  border: 1px solid rgba(255, 163, 71, 0.44);
  border-radius: 999px;
  background: rgba(14, 8, 6, 0.56);
  color: var(--text);
  cursor: pointer;
  transition: background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.lightbox-control:hover,
.lightbox-control:focus-visible {
  border-color: rgba(255, 163, 71, 0.56);
  background: rgba(255, 163, 71, 0.12);
  transform: translateY(-1px);
  outline: none;
}

.lightbox-frame {
  display: grid;
  place-items: center;
  overflow: auto;
  max-height: calc(100vh - 120px);
  padding-top: 10px;
  border-top: 1px solid rgba(255, 163, 71, 0.9);
  background: transparent;
}

.lightbox-image {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
}

body.lightbox-open {
  overflow: hidden;
}

/* Cinematic photo viewer. */
.lightbox {
  padding: clamp(18px, 3vw, 44px);
  transition-duration: 260ms;
}

.lightbox-backdrop {
  background:
    radial-gradient(circle at 50% 42%, rgba(112, 36, 10, 0.22), transparent 48%),
    rgba(5, 2, 1, 0.9);
  backdrop-filter: blur(18px) saturate(0.72);
}

.lightbox-dialog {
  width: min(1320px, calc(100vw - 48px));
  gap: 0;
  opacity: 0;
  transform: translateY(18px) scale(0.965);
  transition: opacity 280ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.lightbox.is-open .lightbox-dialog {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lightbox-toolbar {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
}

.lightbox-control {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 46px;
  padding: 10px 16px 10px 12px;
  border-color: rgba(255, 177, 112, 0.52);
  background: rgba(11, 6, 4, 0.82);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.38);
  backdrop-filter: blur(14px);
}

.lightbox-control::before {
  content: "×";
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(255, 137, 67, 0.16);
  color: #ffb273;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
}

.lightbox-frame {
  overflow: hidden;
  max-height: calc(100vh - 72px);
  padding: 8px;
  border: 1px solid rgba(255, 178, 109, 0.38);
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(255, 175, 111, 0.13), rgba(255, 255, 255, 0.025));
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.62),
    0 0 0 1px rgba(255, 255, 255, 0.035),
    0 0 70px rgba(183, 61, 15, 0.13);
}

.lightbox-image {
  max-height: calc(100vh - 90px);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.about-robot-shot {
  height: 220px;
  border-radius: 22px;
}

.about-team-shot img,
.about-robot-shot img {
  width: 100%;
  display: block;
}

.about-team-shot img {
  height: auto;
  object-fit: contain;
}

.about-robot-shot img {
  height: 100%;
  object-fit: cover;
}

.about-team-shot img {
  object-fit: contain;
  object-position: center center;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.contact-heading {
  max-width: none;
}

.contact-heading-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.section-heading-centered {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  gap: 10px;
  justify-items: center;
  text-align: center;
}

.section-heading-centered p:last-child {
  max-width: 760px;
}

.section-heading h2,
.contact-card h2 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.6vw, 3.5rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.contact-heading-row .contact-title {
  margin: 0;
}

.contact-support-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(255, 163, 71, 0.34);
  background: linear-gradient(135deg, rgba(236, 88, 0, 0.96), rgba(255, 143, 42, 0.92));
  color: #fff6ef;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(236, 88, 0, 0.18);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-support-link:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(255, 112, 20, 0.98), rgba(255, 157, 58, 0.94));
  border-color: rgba(255, 163, 71, 0.58);
  box-shadow: 0 18px 34px rgba(236, 88, 0, 0.24);
}

.contact-support-link:focus-visible {
  outline: 2px solid rgba(255, 208, 168, 0.94);
  outline-offset: 4px;
}

.section-heading p:last-child,
.season-card p,
.global-card p,
.contact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.8;
}

.program-overview {
  margin-bottom: 28px;
}

.program-overview-card {
  display: grid;
  gap: 22px;
  padding: 30px 32px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(35, 21, 15, 0.92), rgba(16, 10, 8, 0.98)),
    radial-gradient(circle at top left, rgba(255, 169, 94, 0.08), transparent 40%);
  box-shadow: var(--shadow);
}

.program-overview-ftc .program-overview-card {
  border-top-color: rgba(255, 174, 97, 0.54);
}

.program-overview-frc .program-overview-card {
  border-top-color: rgba(255, 119, 78, 0.54);
}

.program-overview-fgc .program-overview-card {
  border-top-color: rgba(115, 180, 255, 0.52);
}

.program-overview-brand {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.program-logo-badge {
  position: relative;
  z-index: 1;
  min-height: 168px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 320px);
  margin-inline: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.program-logo-badge::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(320px, 100%);
  height: 190px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background:
    radial-gradient(circle at center, rgba(255, 218, 179, 0.28) 0%, rgba(255, 167, 105, 0.16) 42%, rgba(255, 167, 105, 0.04) 62%, transparent 78%);
  filter: blur(16px);
  pointer-events: none;
}

.program-overview-fgc .program-logo-badge::before {
  background:
    radial-gradient(circle at center, rgba(184, 223, 255, 0.24) 0%, rgba(92, 164, 255, 0.14) 44%, rgba(92, 164, 255, 0.04) 64%, transparent 80%);
}

.program-logo-image {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  border-radius: 0;
  object-fit: contain;
  filter: drop-shadow(0 14px 26px rgba(0, 0, 0, 0.24));
}

.program-copy,
.program-facts {
  position: relative;
  z-index: 1;
}

.program-copy {
  display: grid;
  gap: 10px;
}

.program-eyebrow {
  margin-bottom: 2px;
}

.program-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.1vw, 2.55rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.program-copy p:last-child {
  margin: 0;
  max-width: 52rem;
  color: var(--muted-strong);
  font-size: 1rem;
  line-height: 1.7;
}

.program-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.program-fact {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 245, 236, 0.9);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.season-carousel {
  --season-card-width: clamp(280px, 31vw, 364px);
  --season-card-height: clamp(390px, 48vw, 482px);
  --season-edge-fade: clamp(22px, 4vw, 46px);
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  gap: 20px;
}

.season-carousel::before,
.season-carousel::after {
  display: none;
}

.season-carousel-hint {
  margin: 0;
  padding-inline: var(--season-edge-fade);
  color: rgba(255, 194, 153, 0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.season-carousel-hint::before {
  content: "—";
  margin-right: 0.7em;
  color: rgba(255, 126, 67, 0.9);
}

.season-track {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  position: relative;
  z-index: 1;
  overflow-x: auto;
  padding-inline: var(--season-edge-fade);
  padding-top: 12px;
  padding-bottom: 14px;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: var(--season-edge-fade);
  scrollbar-width: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 var(--season-edge-fade), #000 calc(100% - var(--season-edge-fade)), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 var(--season-edge-fade), #000 calc(100% - var(--season-edge-fade)), transparent 100%);
}

.season-track::-webkit-scrollbar {
  display: none;
}

.season-track-infinite {
  scroll-snap-type: none;
  cursor: grab;
  touch-action: pan-x pan-y;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  user-select: none;
  -webkit-user-select: none;
}

.season-track-infinite a,
.season-track-infinite img {
  -webkit-user-drag: none;
  user-select: none;
  -webkit-user-select: none;
}

.season-track-infinite.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.season-card,
.global-card,
.contact-card {
  position: relative;
  border: 1px solid var(--line);
  border-top-color: rgba(236, 88, 0, 0.3);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.season-card {
  min-height: 250px;
  padding: 28px;
  display: grid;
  align-content: start;
  gap: 16px;
}

.season-card-ftc,
.season-card-frc-cover {
  min-height: 0;
  padding: 0;
  overflow: hidden;
  display: block;
  align-self: flex-start;
  flex: 0 0 var(--season-card-width);
  scroll-snap-align: start;
  background: transparent;
  border-color: rgba(255, 163, 71, 0.18);
}

.season-track .season-card-featured {
  flex-basis: var(--season-card-width);
}

.season-card-media {
  margin: 0;
  position: relative;
  display: block;
  height: var(--season-card-height);
  overflow: hidden;
  width: 100%;
  background: #130906;
  color: inherit;
  text-decoration: none;
  border-radius: 24px;
  border: 1px solid rgba(255, 163, 71, 0.2);
}

.season-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.06) 0%, rgba(7, 4, 3, 0.04) 24%, rgba(7, 4, 3, 0.66) 100%);
  transition: background 220ms ease;
}

.season-card-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(7, 4, 3, 0) 24%, rgba(7, 4, 3, 0.12) 48%, rgba(7, 4, 3, 0.74) 100%);
}

.season-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

.season-card-title {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.02rem, 1.35vw, 1.24rem);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: rgba(255, 245, 236, 0.94);
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.42);
}

.season-card-cta {
  position: absolute;
  left: 22px;
  bottom: 50px;
  z-index: 2;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff2e4;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.season-card-year {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  color: rgba(255, 245, 236, 0.92);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.season-card-status {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border: 1px solid rgba(255, 163, 71, 0.34);
  border-radius: 999px;
  background: rgba(20, 10, 7, 0.82);
  color: #fff6ef;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(8px);
}

.season-carousel-controls {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background: rgba(18, 10, 7, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.season-carousel-button {
  width: 54px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 6px;
  background: transparent;
  color: var(--text);
  font-family: var(--font-display);
  font-size: 1.1rem;
  cursor: pointer;
  transition:
    transform 180ms ease,
    background 180ms ease,
    color 180ms ease,
    opacity 180ms ease;
}

.season-carousel-button:hover,
.season-carousel-button:focus-visible {
  transform: none;
  background: var(--accent);
  color: #fff8f2;
  outline: none;
}

.season-carousel-button:disabled {
  opacity: 0.45;
  transform: none;
  cursor: default;
}

.event-card {
  border: 1px solid rgba(255, 163, 71, 0.18);
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  box-shadow: var(--shadow);
}

.events-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 18px;
}

.event-card-media,
.global-cover-media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  color: inherit;
  text-decoration: none;
}

.event-card-media {
  min-height: 100%;
  aspect-ratio: 16 / 10.4;
  border: 1px solid rgba(255, 163, 71, 0.18);
  border-radius: var(--radius);
  background: #130906;
}

.event-card:not(.event-card-featured) .event-card-media {
  aspect-ratio: 5 / 6.15;
}

.event-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.16) 0%, rgba(7, 4, 3, 0.08) 34%, rgba(7, 4, 3, 0.8) 100%);
  transition: background 220ms ease;
}

.event-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 260ms ease, filter 260ms ease;
}

.event-card-label,
.global-cover-year {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
}

.event-card-label {
  padding: 8px 12px;
  border: 1px solid rgba(255, 163, 71, 0.26);
  border-radius: 999px;
  background: rgba(20, 10, 7, 0.76);
  color: #fff4ea;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.event-card-title {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 82px;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: #fff6ef;
  text-shadow: 0 6px 20px rgba(0, 0, 0, 0.42);
}

.event-card-copy {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 42px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 242, 232, 0.82);
  line-height: 1.55;
}

.event-card-cta {
  position: absolute;
  right: 22px;
  bottom: 18px;
  z-index: 2;
  color: #fff6ef;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.9;
}

.event-card:hover .event-card-media,
.event-card:focus-within .event-card-media,
.global-cover-card:hover .global-cover-media,
.global-cover-card:focus-within .global-cover-media {
  border-color: rgba(255, 163, 71, 0.34);
}

.event-card:hover .event-card-media::after,
.event-card:focus-within .event-card-media::after {
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.2) 0%, rgba(7, 4, 3, 0.1) 34%, rgba(7, 4, 3, 0.9) 100%);
}

.event-card:hover .event-card-image,
.event-card:focus-within .event-card-image {
  transform: scale(1.03);
  filter: saturate(1.04);
}

.season-card-ftc:hover,
.season-card-ftc:focus-within,
.season-card-frc-cover:hover,
.season-card-frc-cover:focus-within {
  border-color: rgba(255, 163, 71, 0.34);
}

.season-card-ftc:hover .season-card-media::after,
.season-card-ftc:focus-within .season-card-media::after,
.season-card-frc-cover:hover .season-card-media::after,
.season-card-frc-cover:focus-within .season-card-media::after {
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.24) 0%, rgba(7, 4, 3, 0.08) 28%, rgba(7, 4, 3, 0.34) 100%);
}

.season-card-ftc:hover .season-cover-image,
.season-card-ftc:focus-within .season-cover-image,
.season-card-frc-cover:hover .season-cover-image,
.season-card-frc-cover:focus-within .season-cover-image {
  transform: scale(1.035);
  filter: saturate(1.03);
}

.season-card-ftc:hover .season-card-cta,
.season-card-ftc:focus-within .season-card-cta,
.season-card-frc-cover:hover .season-card-cta,
.season-card-frc-cover:focus-within .season-card-cta {
  opacity: 1;
  transform: translateY(0);
}

.season-card-featured {
  background: var(--surface-strong);
  border-color: rgba(236, 88, 0, 0.16);
  border-top-color: var(--line-accent-strong);
}

.season-card-special {
  background: var(--surface-alt);
  border-color: rgba(236, 88, 0, 0.16);
  border-top-color: rgba(236, 88, 0, 0.4);
}

.season-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.program-label,
.season-badge {
  color: var(--accent-strong);
}

.season-card:not(.season-card-ftc) h3,
.global-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 2.2vw, 1.9rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.season-list {
  margin: 4px 0 0;
  padding-left: 18px;
  color: var(--muted-strong);
  line-height: 1.7;
}

.season-card[data-program="ftc"],
.season-card[data-program="frc"] {
  border-left: 1px solid rgba(236, 88, 0, 0.16);
}

.season-grid-ftc .season-card[data-program="ftc"] {
  border-left-color: transparent;
}

.season-grid-frc-covers .season-card[data-program="frc"] {
  border-left-color: transparent;
}

#ftc.section {
  padding-top: 24px;
}

.season-badge,
.global-points span {
  padding: 10px 14px;
  border: 1px solid rgba(236, 88, 0, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 243, 230, 0.86);
  font-size: 0.82rem;
}

.global-cover-card {
  max-width: 1180px;
}

.global-cover-media {
  position: relative;
  margin: 0;
  aspect-ratio: 16 / 8.4;
  overflow: hidden;
  border: 1px solid rgba(255, 163, 71, 0.18);
  border-radius: 30px;
  background: #130906;
  box-shadow: var(--shadow);
}

.global-cover-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.22) 0%, rgba(7, 4, 3, 0.04) 28%, rgba(7, 4, 3, 0.34) 100%);
  transition: background 220ms ease;
}

.global-cover-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform 260ms ease, filter 260ms ease;
}

.global-cover-year {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  color: rgba(255, 245, 236, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.global-cover-copy {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 10px;
}

.global-program-logo {
  width: clamp(150px, 18vw, 230px);
  max-width: 52vw;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.26));
}

.global-cover-copy .program-label {
  color: rgba(255, 240, 226, 0.82);
}

.global-cover-copy h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 3.1rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text);
  text-shadow: 0 8px 24px rgba(0, 0, 0, 0.34);
}

.global-cover-copy p {
  margin: 0;
  max-width: 42rem;
  color: rgba(255, 240, 226, 0.88);
  font-size: 0.98rem;
  line-height: 1.65;
  text-shadow: 0 6px 18px rgba(0, 0, 0, 0.32);
}

.global-cover-cta {
  position: absolute;
  right: 22px;
  bottom: 24px;
  z-index: 2;
  color: #fff2e4;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.global-cover-card:hover .global-cover-media,
.global-cover-card:focus-within .global-cover-media {
  border-color: rgba(255, 163, 71, 0.34);
}

.global-cover-card:hover .global-cover-media::after,
.global-cover-card:focus-within .global-cover-media::after {
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.28) 0%, rgba(7, 4, 3, 0.08) 28%, rgba(7, 4, 3, 0.42) 100%);
}

.global-cover-card:hover .global-cover-image,
.global-cover-card:focus-within .global-cover-image {
  transform: scale(1.03);
  filter: saturate(1.03);
}

.global-cover-card:hover .global-cover-cta,
.global-cover-card:focus-within .global-cover-cta {
  opacity: 1;
  transform: translateY(0);
}

/* Editorial treatment for the FIRST Global section. */
.global-section .program-overview {
  margin-bottom: 42px;
}

.global-section .program-overview-card {
  padding: 38px 0 46px;
  border: 0;
  border-top: 1px solid rgba(115, 180, 255, 0.42);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.global-section .program-overview-brand {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.global-section .program-logo-badge {
  order: 2;
  min-height: 140px;
}

.global-section .program-logo-badge::before {
  opacity: 0.58;
}

.global-section .program-copy {
  order: 1;
  gap: 0;
}

.global-section .program-eyebrow {
  margin: 0 0 18px;
  color: rgba(152, 202, 255, 0.92);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.global-section .program-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.5vw, 5.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

.global-section .program-copy p:last-child {
  max-width: 66ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.global-section .global-cover-card {
  max-width: none;
  padding-top: 0;
}

.global-section .global-cover-media {
  aspect-ratio: 16 / 7.7;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  box-shadow: none;
}

.global-section .global-cover-copy {
  display: none;
}

.global-section .global-cover-year {
  top: 20px;
  left: 20px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 4px;
  background: rgba(9, 4, 3, 0.58);
  backdrop-filter: blur(8px);
}

.global-section .global-cover-cta {
  right: 20px;
  bottom: 20px;
  padding: 11px 14px;
  border: 1px solid rgba(255, 178, 109, 0.42);
  border-radius: 6px;
  background: rgba(9, 4, 3, 0.72);
  opacity: 1;
  transform: none;
  backdrop-filter: blur(8px);
}

.global-section .global-cover-cta::after {
  content: "  ↗";
}

/* Editorial treatment for the FTC archive. */
#ftc .program-overview {
  margin-bottom: 54px;
}

#ftc .program-overview-card {
  padding: 38px 0 46px;
  border: 0;
  border-top: 1px solid rgba(255, 174, 97, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#ftc .program-overview-brand {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

#ftc .program-logo-badge {
  order: 2;
  min-height: 140px;
}

#ftc .program-logo-badge::before {
  opacity: 0.58;
}

#ftc .program-copy {
  order: 1;
  gap: 0;
}

#ftc .program-eyebrow {
  margin: 0 0 18px;
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.2em;
}

#ftc .program-copy h2 {
  max-width: 14ch;
  font-size: clamp(2.8rem, 5.5vw, 5.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

#ftc .program-copy p:last-child {
  max-width: 62ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

#ftc .season-card-ftc {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

#ftc .season-card-media {
  height: var(--season-card-height);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(24, 14, 10, 0.96);
  box-shadow: none;
}

#ftc .season-cover-image {
  height: calc(100% - 106px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#ftc .season-card-media::after,
#ftc .season-card-gradient {
  bottom: 106px;
}

#ftc .season-card-gradient {
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.03) 20%, rgba(7, 4, 3, 0.12) 60%, rgba(7, 4, 3, 0.54) 100%);
}

#ftc .season-card-title {
  left: 18px;
  bottom: 18px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: none;
}

#ftc .season-card-cta {
  left: 18px;
  bottom: 52px;
  color: var(--accent-light);
  font-size: 0.7rem;
  opacity: 1;
  transform: none;
}

#ftc .season-card-cta::after {
  content: "  ↗";
}

#ftc .season-card-year {
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(9, 4, 3, 0.62);
  text-shadow: none;
  backdrop-filter: blur(8px);
}

#ftc .season-card-status {
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  border-radius: 4px;
  box-shadow: none;
}

#ftc .season-card-ftc:hover .season-card-media,
#ftc .season-card-ftc:focus-within .season-card-media {
  border-color: rgba(255, 178, 109, 0.44);
}

#ftc .season-card-ftc:hover .season-cover-image,
#ftc .season-card-ftc:focus-within .season-cover-image {
  transform: none;
  filter: brightness(1.04) saturate(1.02);
}

/* Editorial treatment for the FRC archive. */
#frc .program-overview {
  margin-bottom: 54px;
}

#frc .program-overview-card {
  padding: 38px 0 46px;
  border: 0;
  border-top: 1px solid rgba(255, 119, 78, 0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

#frc .program-overview-brand {
  grid-template-columns: minmax(0, 1fr) minmax(230px, 320px);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

#frc .program-logo-badge {
  order: 2;
  min-height: 140px;
}

#frc .program-logo-badge::before {
  opacity: 0.58;
}

#frc .program-copy {
  order: 1;
  gap: 0;
}

#frc .program-eyebrow {
  margin: 0 0 18px;
  color: #ff9a72;
  font-weight: 700;
  letter-spacing: 0.2em;
}

#frc .program-copy h2 {
  max-width: 15ch;
  font-size: clamp(2.8rem, 5.5vw, 5.35rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
}

#frc .program-copy p:last-child {
  max-width: 66ch;
  margin-top: 24px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

#frc .season-card-frc-cover {
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

#frc .season-card-media {
  height: var(--season-card-height);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(24, 14, 10, 0.96);
  box-shadow: none;
}

#frc .season-cover-image {
  height: calc(100% - 106px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#frc .season-card-media::after,
#frc .season-card-gradient {
  bottom: 106px;
}

#frc .season-card-gradient {
  background:
    linear-gradient(180deg, rgba(7, 4, 3, 0.03) 20%, rgba(7, 4, 3, 0.12) 60%, rgba(7, 4, 3, 0.54) 100%);
}

#frc .season-card-title {
  left: 18px;
  bottom: 18px;
  font-size: clamp(1rem, 1.4vw, 1.18rem);
  font-weight: 800;
  letter-spacing: -0.01em;
  text-shadow: none;
}

#frc .season-card-cta {
  left: 18px;
  bottom: 52px;
  color: #ff9a72;
  font-size: 0.7rem;
  opacity: 1;
  transform: none;
}

#frc .season-card-cta::after {
  content: "  ↗";
}

#frc .season-card-year {
  top: 14px;
  left: 14px;
  padding: 7px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 4px;
  background: rgba(9, 4, 3, 0.62);
  text-shadow: none;
  backdrop-filter: blur(8px);
}

#frc .season-card-status {
  top: 14px;
  right: 14px;
  padding: 7px 9px;
  border-radius: 4px;
  box-shadow: none;
}

#frc .season-card-frc-cover:hover .season-card-media,
#frc .season-card-frc-cover:focus-within .season-card-media {
  border-color: rgba(255, 154, 114, 0.5);
}

#frc .season-card-frc-cover:hover .season-cover-image,
#frc .season-card-frc-cover:focus-within .season-cover-image {
  transform: none;
  filter: brightness(1.04) saturate(1.02);
}

.program-title-first {
  display: inline-block;
  margin-right: 0.28em;
  font-style: italic;
  transform: skewX(-7deg);
  transform-origin: center bottom;
}

/* Use the full visual column for the program marks. */
#frc .program-overview-brand,
#ftc .program-overview-brand,
.global-section .program-overview-brand {
  grid-template-columns: minmax(0, 1fr) minmax(340px, 440px);
}

#frc .program-logo-badge,
#ftc .program-logo-badge,
.global-section .program-logo-badge {
  width: 100%;
  min-height: 250px;
}

#frc .program-logo-badge::before,
#ftc .program-logo-badge::before,
.global-section .program-logo-badge::before {
  width: min(520px, 125%);
  height: 300px;
  opacity: 0.82;
  filter: blur(22px);
}

#frc .program-logo-image,
#ftc .program-logo-image,
.global-section .program-logo-image {
  width: min(100%, 400px);
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.34));
}

/* Cinematic season cards. */
#frc .season-card-media,
#ftc .season-card-media {
  border-color: rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: #160a06;
  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 320ms ease, box-shadow 320ms ease;
}

#frc .season-cover-image,
#ftc .season-cover-image {
  height: 100%;
  border-bottom: 0;
  transition: transform 600ms cubic-bezier(0.2, 0.8, 0.2, 1),
    filter 320ms ease;
}

#frc .season-card-media::after,
#ftc .season-card-media::after,
#frc .season-card-gradient,
#ftc .season-card-gradient {
  bottom: 0;
}

#frc .season-card-gradient,
#ftc .season-card-gradient {
  background:
    linear-gradient(180deg, rgba(8, 4, 2, 0.18) 0%, transparent 34%, rgba(8, 4, 2, 0.12) 52%, rgba(8, 4, 2, 0.96) 100%),
    radial-gradient(circle at 50% 30%, transparent 20%, rgba(8, 4, 2, 0.18) 100%);
}

#frc .season-card-media::after,
#ftc .season-card-media::after {
  background: linear-gradient(180deg, transparent 42%, rgba(10, 5, 3, 0.16) 58%, rgba(10, 5, 3, 0.86) 100%);
}

#frc .season-card-title,
#ftc .season-card-title {
  left: 22px;
  bottom: 22px;
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  letter-spacing: -0.025em;
  color: #fff8f2;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.7);
}

#frc .season-card-cta,
#ftc .season-card-cta {
  display: none;
}

#frc .season-card-year,
#ftc .season-card-year {
  top: 16px;
  left: 16px;
  padding: 8px 11px;
  border-color: rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(10, 5, 3, 0.66);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
}

#frc .season-card-frc-cover:hover .season-card-media,
#frc .season-card-frc-cover:focus-within .season-card-media,
#ftc .season-card-ftc:hover .season-card-media,
#ftc .season-card-ftc:focus-within .season-card-media {
  transform: none;
  border-color: rgba(255, 147, 91, 0.62);
  box-shadow:
    0 28px 64px rgba(0, 0, 0, 0.46),
    0 0 0 1px rgba(255, 113, 57, 0.16),
    0 0 34px rgba(222, 66, 13, 0.13);
}

#frc .season-card-frc-cover:hover .season-cover-image,
#frc .season-card-frc-cover:focus-within .season-cover-image,
#ftc .season-card-ftc:hover .season-cover-image,
#ftc .season-card-ftc:focus-within .season-cover-image {
  transform: scale(1.055);
  filter: brightness(1.08) saturate(1.12) contrast(1.03);
}

@media (prefers-reduced-motion: reduce) {
  #frc .season-card-media,
  #ftc .season-card-media,
  #frc .season-cover-image,
  #ftc .season-cover-image {
    transition: none;
  }
}

.sponsors-section {
  padding-top: 54px;
}

.sponsors-intro {
  width: 100%;
  margin: 0 auto 26px;
  display: grid;
  gap: 12px;
  justify-items: center;
  text-align: center;
}

.sponsors-intro h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.04;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.sponsors-intro p:last-child {
  max-width: 48rem;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.sponsors-marquee {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  overflow: hidden;
  padding: 22px 0;
  border-radius: 20px;
  background:
    radial-gradient(circle at 1px 1px, rgba(255, 163, 71, 0.12) 1px, transparent 0),
    linear-gradient(180deg, rgba(255, 248, 241, 0.02) 0%, rgba(255, 248, 241, 0.01) 100%);
  background-size: 28px 28px, auto;
  border-top: 1px solid rgba(255, 163, 71, 0.08);
  border-bottom: 1px solid rgba(255, 163, 71, 0.08);
}

.sponsors-marquee::before,
.sponsors-marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: clamp(72px, 8vw, 140px);
  z-index: 2;
  pointer-events: none;
}

.sponsors-marquee::before {
  left: 0;
  background: linear-gradient(90deg, rgba(26, 11, 7, 0.98) 0%, rgba(26, 11, 7, 0) 100%);
}

.sponsors-marquee::after {
  right: 0;
  background: linear-gradient(270deg, rgba(26, 11, 7, 0.98) 0%, rgba(26, 11, 7, 0) 100%);
}

.sponsors-track {
  display: flex;
  align-items: center;
  gap: 28px;
  min-width: max-content;
  padding-right: 28px;
  animation: sponsors-loop 30s linear infinite;
}

.sponsor-logo {
  flex: 0 0 auto;
  width: 168px;
  height: 84px;
  display: grid;
  place-items: center;
  padding: 14px 10px;
}

.sponsor-logo img {
  max-width: 100%;
  max-height: 54px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
  opacity: 0.96;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.partner-card,
.contact-form-card,
.contact-details {
  border: 1px solid var(--line);
  border-top-color: rgba(236, 88, 0, 0.3);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.partner-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.82fr) minmax(0, 1fr);
  align-items: stretch;
  overflow: hidden;
}

.partner-card:nth-child(even) .partner-logo-shell {
  order: 2;
  border-right: 0;
  border-left: 1px solid rgba(236, 88, 0, 0.08);
}

.partner-card:nth-child(even) .partner-copy {
  order: 1;
}

.partner-logo-shell {
  min-height: 100%;
  padding: 40px 36px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(180deg, rgba(255, 248, 241, 0.03) 0%, rgba(255, 248, 241, 0.01) 100%),
    var(--surface-strong);
  border-right: 1px solid rgba(236, 88, 0, 0.08);
}

.partner-logo-image {
  max-width: min(100%, 320px);
  max-height: 140px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.18));
}

.partner-copy {
  padding: 34px;
  display: grid;
  align-content: center;
  gap: 12px;
}

.partner-kicker,
.field-label,
.contact-method-label {
  margin: 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent-light);
}

.partner-name {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2vw, 1.7rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.partner-description,
.contact-form-note,
.contact-method-copy,
.contact-person-role {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 22px;
  align-items: stretch;
}

.join-cta-section {
  scroll-margin-top: 112px;
  padding-top: 92px;
  padding-bottom: 82px;
}

.join-cta-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, auto);
  align-items: end;
  gap: 42px 72px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 34px 0 42px;
  border-top: 1px solid rgba(255, 178, 109, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  box-shadow: none;
}

.join-cta-copy-wrap {
  max-width: none;
  width: 100%;
}

.join-cta-eyebrow {
  margin: 0 0 18px;
  color: var(--accent-light);
  font-weight: 700;
  letter-spacing: 0.2em;
}

.join-cta-title {
  max-width: 15ch;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.65rem, 5.4vw, 5.15rem);
  font-weight: 800;
  line-height: 0.94;
  letter-spacing: -0.055em;
  color: var(--text);
  text-transform: uppercase;
}

.join-cta-copy {
  margin: 20px 0 0;
  color: var(--muted);
  max-width: 48ch;
  font-size: 1.05rem;
  line-height: 1.65;
}

.join-cta-button {
  flex-shrink: 0;
  gap: 14px;
  min-width: 248px;
  min-height: 58px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 178, 109, 0.46);
  border-radius: 8px;
  background: var(--accent);
  color: #fff8f2;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 12px 28px rgba(236, 88, 0, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.join-cta-button::after {
  content: "↗";
  font-size: 1.05rem;
  line-height: 1;
}

.join-cta-button:hover,
.join-cta-button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 18px 36px rgba(236, 88, 0, 0.24);
  filter: brightness(1.03);
  outline: none;
}

.contact-form-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px;
}

.contact-form {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.field {
  display: grid;
  gap: 10px;
}

.field-full {
  grid-column: 1 / -1;
}

.field-input {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font: inherit;
  padding: 16px 18px;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.field-input::placeholder {
  color: rgba(255, 236, 221, 0.42);
}

.field-input:focus {
  outline: none;
  border-color: rgba(255, 163, 71, 0.52);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 0 3px rgba(236, 88, 0, 0.12);
}

.field-textarea {
  min-height: 180px;
  resize: vertical;
}

.contact-form-footer {
  display: flex;
  flex: 1;
  align-items: stretch;
  margin-top: auto;
}

.contact-submit {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 120px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 163, 71, 0.34);
  border-radius: 28px;
  background: var(--accent);
  color: #fff6ef;
  font: inherit;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease;
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: var(--accent-strong);
  border-color: rgba(255, 163, 71, 0.62);
}

.contact-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  background: linear-gradient(135deg, rgba(236, 88, 0, 0.82), rgba(255, 142, 43, 0.74));
}

.contact-details {
  height: 100%;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 16px;
  background: var(--surface-strong);
}

.contact-method {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.02);
}

.contact-method-primary {
  background: var(--surface-alt);
  border-color: rgba(236, 88, 0, 0.16);
}

.contact-method-value,
.contact-person-number {
  color: var(--text);
  font-family: var(--font-body);
  font-size: clamp(1.06rem, 1.9vw, 1.4rem);
  font-weight: 700;
  letter-spacing: 0.01em;
}

.contact-email-value {
  word-break: break-word;
}

.contact-people {
  display: grid;
  gap: 14px;
}

.contact-person {
  display: grid;
  gap: 4px;
}

/* Contact section inspired by the supplied three-column reference. */
.contact-section {
  width: 100%;
  max-width: none;
  padding-inline: max(30px, calc((100vw - 1200px) / 2));
}

.contact-section .contact-layout {
  display: grid;
  grid-template-columns: minmax(230px, 0.82fr) minmax(360px, 1.22fr) minmax(220px, 0.7fr);
  gap: clamp(34px, 5vw, 72px);
  align-items: center;
}

.contact-section .contact-heading {
  max-width: 310px;
  margin: 0;
}

.contact-section .contact-eyebrow {
  margin: 0 0 16px;
  letter-spacing: 0.18em;
}

.contact-section .contact-title {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: clamp(2.35rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: none;
}

.contact-section .contact-copy {
  max-width: 31ch;
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.contact-section .contact-form-card {
  min-height: 420px;
  padding: 36px;
  border-color: rgba(255, 255, 255, 0.11);
  border-top-color: rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  background: rgba(29, 20, 16, 0.94);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.contact-form-intro {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 22px;
  font-size: 1.05rem;
}

.contact-form-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--accent-light);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-section .contact-form {
  gap: 0;
}

.contact-section .contact-form-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.contact-section .field {
  gap: 0;
}

.contact-section .field-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.contact-section .field-input {
  padding: 13px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 0;
  background: transparent;
}

.contact-section .field-input::placeholder {
  color: rgba(255, 236, 221, 0.56);
}

.contact-section .field-input:focus {
  border-color: var(--accent-light);
  background: transparent;
  box-shadow: none;
}

.contact-section .field-textarea {
  min-height: 130px;
  border-bottom: 0;
  resize: none;
}

.contact-section .contact-form-note {
  min-height: 20px;
  margin: 10px 0 14px;
  font-size: 0.78rem;
  line-height: 1.45;
}

.contact-section .contact-form-footer {
  flex: 0 0 auto;
  margin-top: auto;
}

.contact-section .contact-submit {
  min-height: 50px;
  height: 50px;
  border-radius: 999px;
  background: var(--text);
  color: var(--bg);
}

.contact-section .contact-submit:hover {
  background: var(--accent-light);
  color: var(--bg);
}

.contact-section .contact-details {
  height: auto;
  padding: 0;
  gap: 28px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-section .contact-method,
.contact-section .contact-method-primary {
  gap: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.contact-section .contact-method-label {
  color: var(--text);
  font-weight: 700;
  letter-spacing: 0.16em;
}

.contact-section .contact-method-copy,
.contact-section .contact-person-role {
  line-height: 1.55;
}

.contact-section .contact-method-value,
.contact-section .contact-person-number {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 400;
}

@media (max-width: 1040px) {
  .contact-section .contact-layout {
    grid-template-columns: minmax(220px, 0.75fr) minmax(360px, 1.25fr);
  }

  .contact-section .contact-details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .contact-section {
    padding-inline: 20px;
  }

  .contact-section .contact-layout {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .contact-section .contact-heading {
    max-width: 540px;
  }

  .contact-section .contact-title br {
    display: none;
  }

  .contact-section .contact-form-card {
    min-height: 0;
    padding: 28px 24px;
  }

  .contact-section .contact-details {
    grid-column: auto;
    grid-template-columns: 1fr;
  }
}

.footer {
  width: var(--container);
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 236, 221, 0.66);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  display: grid;
  gap: 4px;
}

.footer-copyright {
  color: rgba(255, 236, 221, 0.54);
  font-size: 0.78rem;
  line-height: 1.5;
}

.footer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
}

.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.footer-social-button {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transform: scale(var(--social-icon-scale, 1));
  transform-origin: center;
}

.footer-social-icon-fb {
  --social-icon-scale: 0.88;
}

.footer-social-icon-ig {
  --social-icon-scale: 1.46;
}

.footer-social-icon-linkedin {
  --social-icon-scale: 0.9;
}

.footer-social-icon-yt {
  --social-icon-scale: 1.02;
}

.footer-social-button:hover,
.footer-social-button:focus-visible {
  transform: translateY(-2px);
  opacity: 0.88;
  outline: none;
}

/* Shared Delta footer. */
.site-footer {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: clamp(58px, 7vw, 92px) max(24px, calc((100vw - 1200px) / 2));
  display: block;
  color: rgba(255, 236, 221, 0.72);
  border-top: 0;
  background: transparent;
}

.site-footer-grid {
  width: min(1200px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1.35fr) repeat(3, minmax(150px, 0.72fr));
  gap: clamp(34px, 5vw, 76px);
}

.site-footer-identity { display: grid; align-content: start; gap: 22px; }
.site-footer-logo-link { width: fit-content; display: inline-flex; align-items: center; gap: 14px; }
.site-footer .site-footer-logo-link { display: none; }
.site-footer-logo { width: 58px; height: 58px; object-fit: contain; }
.site-footer-logo-link span { display: grid; gap: 3px; }
.site-footer-logo-link strong { margin: 0; color: #fff5ec; font-size: 1.22rem; font-weight: 800; letter-spacing: 0.08em; line-height: 1; text-transform: uppercase; }
.site-footer-logo-link small { color: #ff9f60; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; }
.site-footer-identity > p { max-width: 34ch; margin: 0; font-size: 0.94rem; line-height: 1.75; }

.site-footer-column { display: grid; align-content: start; justify-items: start; gap: 15px; }
.site-footer-column h2 { margin: 0 0 8px; color: #fff5ec; font-size: 0.74rem; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; }
.site-footer-column a,
.site-footer-column span { color: rgba(255, 236, 221, 0.66); font-size: 0.9rem; line-height: 1.5; transition: color 180ms ease, transform 180ms ease; }
.site-footer-column a:hover,
.site-footer-column a:focus-visible { color: #ffb273; transform: translateX(3px); outline: none; }
.site-footer .footer-socials { order: -1; justify-content: flex-start; gap: 10px; }
.site-footer .footer-social-button { width: 44px; height: 44px; border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 50%; background: rgba(255, 255, 255, 0.035); }

.site-footer-bottom {
  width: min(1200px, 100%);
  margin: clamp(42px, 6vw, 68px) auto 0;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  color: rgba(255, 236, 221, 0.44);
  font-size: 0.76rem;
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .site-footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 560px) {
  .site-footer { padding-inline: 22px; }
  .site-footer-grid { grid-template-columns: 1fr; }
  .site-footer-bottom { flex-direction: column; }

  .site-footer .site-footer-identity {
    justify-items: center;
    text-align: center;
  }

  .site-footer .footer-socials {
    width: 100%;
    justify-content: center;
  }

  .site-footer .site-footer-identity > p {
    margin-inline: auto;
    text-align: center;
  }
}

.support-popup {
  position: fixed;
  left: max(18px, calc((100vw - var(--container)) / 2));
  top: 108px;
  z-index: 80;
  width: min(360px, calc(100vw - 28px));
  max-height: calc(100vh - 128px);
  padding: 24px 22px 22px;
  display: grid;
  gap: 12px;
  overflow: auto;
  isolation: isolate;
  border: 1px solid rgba(255, 163, 71, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(33, 19, 13, 0.96), rgba(16, 9, 7, 0.98)),
    radial-gradient(circle at top right, rgba(255, 176, 108, 0.16), transparent 42%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(-14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.support-popup[hidden] {
  display: none !important;
}

.support-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 190, 142, 0.22);
  pointer-events: none;
}

.support-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.support-popup-close,
.support-popup-link {
  position: relative;
  z-index: 2;
}

.support-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 163, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 245, 236, 0.84);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.support-popup-close:hover,
.support-popup-close:focus-visible {
  border-color: rgba(255, 163, 71, 0.42);
  background: rgba(255, 163, 71, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.support-popup-eyebrow {
  margin: 0;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.support-popup-title {
  margin: 0;
  max-width: 13ch;
  font-family: var(--font-display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.support-popup-copy {
  margin: 0;
  padding-right: 18px;
  color: rgba(255, 236, 221, 0.82);
  line-height: 1.65;
}

.support-popup-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid rgba(255, 163, 71, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, rgba(255, 143, 66, 0.96), rgba(236, 88, 0, 0.96));
  color: #fff8f2;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.support-popup-link:hover,
.support-popup-link:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(236, 88, 0, 0.2);
  filter: brightness(1.03);
  outline: none;
}

.contact-success-popup {
  position: fixed;
  right: max(18px, calc((100vw - var(--container)) / 2));
  bottom: 22px;
  z-index: 82;
  width: min(360px, calc(100vw - 28px));
  padding: 22px 22px 20px;
  display: grid;
  gap: 10px;
  isolation: isolate;
  border: 1px solid rgba(255, 163, 71, 0.24);
  border-radius: 28px;
  background:
    linear-gradient(155deg, rgba(33, 19, 13, 0.96), rgba(16, 9, 7, 0.98)),
    radial-gradient(circle at top right, rgba(255, 176, 108, 0.16), transparent 42%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.34);
  backdrop-filter: blur(14px);
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.contact-success-popup[hidden] {
  display: none !important;
}

.contact-success-popup::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border-top: 1px solid rgba(255, 190, 142, 0.22);
  pointer-events: none;
}

.contact-success-popup.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-success-popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 163, 71, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 245, 236, 0.84);
  transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
}

.contact-success-popup-close:hover,
.contact-success-popup-close:focus-visible {
  border-color: rgba(255, 163, 71, 0.42);
  background: rgba(255, 163, 71, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.contact-success-popup-eyebrow {
  margin: 0;
  color: var(--accent-light);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-success-popup-title {
  margin: 0;
  padding-right: 28px;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: 0.01em;
}

.contact-success-popup-copy {
  margin: 0;
  padding-right: 10px;
  color: rgba(255, 236, 221, 0.82);
  line-height: 1.6;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body.is-loaded .topbar,
body.is-loaded main,
body.is-loaded .footer,
body.is-loaded .support-popup {
  animation: intro-unmask 680ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.is-loaded .hero-content {
  animation: rise-in 850ms cubic-bezier(0.22, 1, 0.36, 1) 90ms both;
}

@keyframes intro-unmask {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

@keyframes loader-logo-pulse {
  0%,
  100% {
    transform: scale(0.9);
  }

  50% {
    transform: scale(1.07);
  }
}

@keyframes blink {
  0%,
  49% {
    border-right-color: currentColor;
  }

  50%,
  100% {
    border-right-color: transparent;
  }
}

@keyframes sponsors-loop {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-100% - 28px));
  }
}

@media (max-width: 980px) {
  .season-carousel {
    --season-card-width: clamp(280px, 58vw, 360px);
    --season-card-height: clamp(390px, 74vw, 500px);
  }

  .program-overview-brand {
    grid-template-columns: 1fr;
  }

  .global-section .program-overview-brand {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .global-section .program-logo-badge {
    order: 1;
    justify-content: flex-start;
    width: min(100%, 280px);
    margin-inline: 0;
  }

  .global-section .program-copy {
    order: 2;
  }

  .program-logo-badge::before {
    width: min(300px, 100%);
    height: 170px;
  }

  .program-logo-badge {
    min-height: 136px;
  }

}

@media (max-width: 640px) {
  .season-carousel {
    --season-card-width: min(84vw, 320px);
    --season-card-height: min(112vw, 430px);
  }

  .program-overview-card {
    padding: 24px 20px;
    border-radius: 24px;
  }

  .global-section .program-overview-card {
    padding: 28px 0 34px;
    border-radius: 0;
  }

  .global-section .program-copy h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  .global-section .global-cover-media {
    aspect-ratio: 4 / 3;
  }

  .global-section .global-cover-cta {
    right: 12px;
    bottom: 12px;
    padding: 9px 11px;
    font-size: 0.72rem;
  }

  .program-copy p:last-child {
    font-size: 0.96rem;
  }

  .program-logo-badge {
    min-height: 116px;
  }

  .program-logo-badge::before {
    width: min(240px, 100%);
    height: 136px;
  }

  .program-logo-image {
    width: min(100%, 224px);
  }

  .global-cover-copy p {
    max-width: min(72vw, 18rem);
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .program-facts {
    display: grid;
    grid-template-columns: 1fr;
  }

  .program-fact {
    justify-content: center;
    text-align: center;
  }

  .season-track {
    gap: 14px;
  }

  .season-carousel-controls {
    gap: 12px;
  }

  .season-carousel-button {
    width: 48px;
    height: 48px;
  }

  .support-popup {
    left: 10px;
    top: 90px;
    width: min(100vw - 20px, 340px);
    max-height: calc(100vh - 108px);
    padding: 22px 18px 18px;
    border-radius: 24px;
  }

  .support-popup-title {
    max-width: none;
    padding-right: 28px;
  }

  .support-popup-copy {
    padding-right: 0;
    font-size: 0.94rem;
  }

  .support-popup-link {
    width: 100%;
  }

  .contact-success-popup {
    right: 10px;
    bottom: 10px;
    width: min(100vw - 20px, 340px);
    padding: 20px 18px 18px;
    border-radius: 24px;
  }

  .contact-success-popup-copy {
    padding-right: 0;
    font-size: 0.94rem;
  }
}

@media (min-width: 960px) {
  .season-card-featured:not(.season-card-ftc) {
    grid-column: span 2;
  }

  .season-grid-ftc .season-card-featured {
    grid-column: span 2;
  }
}

@media (max-width: 1120px) {
  .season-grid-ftc {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .season-grid-frc-covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sponsor-logo {
    width: 152px;
  }

  .about-header h2 {
    white-space: normal;
  }

  .about-body {
    grid-template-columns: 1fr;
  }

  .about-side {
    grid-template-columns: minmax(0, 1fr) minmax(240px, 0.7fr);
    grid-template-rows: none;
    gap: 18px;
    align-items: stretch;
    min-height: 0;
  }

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

  .global-cover-media {
    aspect-ratio: 16 / 9.6;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .join-cta-card {
    grid-template-columns: 1fr;
    align-items: flex-start;
    gap: 28px;
    padding: 30px 0 34px;
  }

  .join-cta-button {
    width: 100%;
    min-width: 0;
  }

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

@media (max-width: 860px) {
  .topbar {
    padding: 0;
  }

  .nav-shell {
    position: relative;
    width: calc(100vw - 40px);
    align-items: center;
    justify-content: flex-end;
    padding: 10px 0;
    border-radius: 0;
  }

  .nav-toggle {
    display: inline-flex;
    margin-right: 54px;
  }

  .season-grid-ftc {
    grid-template-columns: 1fr;
  }

  .season-grid-frc-covers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .event-card:not(.event-card-featured) .event-card-media {
    aspect-ratio: 16 / 9.4;
  }

  .sponsors-track {
    gap: 20px;
    padding-right: 20px;
  }

  .sponsor-logo {
    width: 138px;
    height: 72px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 10px);
    left: auto;
    right: 0;
    display: grid;
    justify-items: start;
    gap: 12px;
    width: max-content;
    max-width: calc(100vw - 40px);
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(19, 14, 11, 0.98);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links a {
    font-size: 0.94rem;
  }

  .language-toggle {
    width: 48px;
    height: 36px;
    justify-self: start;
  }

  .partner-card {
    grid-template-columns: minmax(132px, 0.4fr) minmax(0, 1fr);
  }

  .partner-card:nth-child(even) .partner-logo-shell,
  .partner-card:nth-child(even) .partner-copy {
    order: initial;
  }

  .partner-card:nth-child(even) .partner-logo-shell {
    border-left: 0;
    border-right: 1px solid rgba(236, 88, 0, 0.08);
  }

  .partner-logo-shell {
    padding: 26px 22px;
  }

  .partner-logo-image {
    max-height: 96px;
  }

  .partner-copy {
    padding: 24px 24px 26px;
  }

  .partner-name {
    font-size: clamp(1.35rem, 4vw, 1.9rem);
  }

  .partner-description {
    line-height: 1.65;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-footer {
    flex: 0 0 auto;
  }

  .contact-heading-row {
    align-items: flex-start;
  }

  .contact-support-link {
    min-height: 48px;
    padding: 0 18px;
    font-size: 0.86rem;
  }

  .nav-links.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .about-body,
  .about-side {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .about-team-shot {
    height: auto;
  }

  .about-robot-shot {
    height: 320px;
  }

  .about-header h2 {
    max-width: none;
  }

  .about-panel {
    padding: 24px;
  }

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

.hero-logo-image {
    width: 420px;
    max-width: 90vw;
  }

  .hero-type-dynamic {
    min-width: 166px;
  }

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

  .footer-socials {
    justify-content: center;
  }

.brand-logo {
    width: 40px;
    height: 40px;
  }

  .brand-copy strong {
    font-size: 1.15rem;
  }

  .brand-copy small {
    font-size: 0.62rem;
  }
}

@media (max-width: 560px) {
  :root {
    --container: min(100vw - 28px, 1200px);
    --section-padding-top: 80px;
    --section-padding-bottom: 56px;
  }

  .season-grid-ftc {
    grid-template-columns: 1fr;
  }

  .season-grid-frc-covers {
    grid-template-columns: 1fr;
  }

  .sponsors-intro h2 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .sponsors-marquee {
    padding: 18px 0;
  }

  .sponsors-track {
    gap: 16px;
    padding-right: 16px;
  }

  .sponsor-logo {
    width: 124px;
    height: 66px;
  }

  .hero {
    padding-top: 132px;
  }

  .nav-shell,
  .global-card,
  .contact-card,
  .contact-form-card,
  .contact-details {
    padding: 22px;
  }

  .season-card:not(.season-card-ftc):not(.season-card-frc-cover) {
    padding: 22px;
  }

  .nav-shell {
    padding: 14px 16px;
  }

  .nav-links {
    width: max-content;
    max-width: calc(100vw - 30px);
    padding: 16px;
  }

  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-copy strong {
    font-size: 1rem;
  }

  .brand-copy small {
    font-size: 0.56rem;
  }

  .season-card-ftc,
  .season-card-frc-cover {
    padding: 0;
  }

  .season-card-media-featured {
    aspect-ratio: 4 / 5;
  }

  .events-grid {
    gap: 20px;
  }

  .event-card-media,
  .event-card:not(.event-card-featured) .event-card-media {
    aspect-ratio: auto;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px;
  }

  .event-card-image {
    position: absolute;
    inset: 0;
  }

  .event-card-label,
  .event-card-title,
  .event-card-copy,
  .event-card-cta {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    z-index: 2;
  }

  .event-card-label {
    align-self: flex-start;
    margin-bottom: auto;
  }

  .event-card-title {
    font-size: clamp(1.55rem, 8vw, 2.1rem);
    line-height: 0.96;
  }

  .event-card-copy {
    font-size: 0.94rem;
    line-height: 1.5;
  }

  .event-card-cta {
    align-self: flex-start;
    margin-top: 2px;
  }

.hero-logo-image {
    width: 260px;
    max-width: 88vw;
  }

  .hero-type-line {
    min-height: 44px;
    gap: 4px;
    font-size: clamp(1.2rem, 5vw, 1.7rem);
  }

  .hero-type-dynamic {
    min-width: 0;
    text-align: center;
  }

  .about-header h2 {
    font-size: clamp(1.5rem, 8vw, 2.2rem);
    letter-spacing: 0.03em;
    white-space: normal;
  }

  .about-team-shot {
    height: auto;
  }

  .about-robot-shot {
    height: 240px;
  }

  .lightbox {
    padding: 14px;
  }

  .lightbox-dialog {
    width: calc(100vw - 28px);
    padding: 14px;
    gap: 12px;
  }

  .lightbox-control {
    align-self: flex-end;
  }

  .partner-logo-shell {
    min-height: 100%;
    padding: 18px 16px;
  }

  .partner-card {
    grid-template-columns: 108px minmax(0, 1fr);
  }

  .partner-logo-image {
    max-height: 82px;
  }

  .partner-copy {
    padding: 18px 18px 20px;
    gap: 8px;
  }

  .partner-kicker {
    font-size: 0.72rem;
  }

  .partner-name {
    font-size: clamp(1.18rem, 7vw, 1.55rem);
  }

  .contact-form-card,
  .contact-details {
    padding: 22px;
  }

  .section {
    padding: var(--section-padding-top) 0 var(--section-padding-bottom);
  }

  .section + .section {
    margin-top: 0;
    padding-top: 72px;
  }
}

@media (max-width: 980px) {
  #ftc .program-overview-brand,
  #frc .program-overview-brand {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  #ftc .program-logo-badge,
  #frc .program-logo-badge {
    order: 1;
    justify-content: flex-start;
    width: min(100%, 280px);
    margin-inline: 0;
  }

  #ftc .program-copy,
  #frc .program-copy {
    order: 2;
  }
}

@media (max-width: 640px) {
  #ftc .program-overview-card,
  #frc .program-overview-card {
    padding: 28px 0 34px;
    border-radius: 0;
  }

  #ftc .program-copy h2,
  #frc .program-copy h2 {
    font-size: clamp(2.5rem, 13vw, 3.7rem);
  }

  #frc .program-logo-badge,
  #ftc .program-logo-badge,
  .global-section .program-logo-badge {
    justify-content: center;
    width: min(100%, 280px);
    margin-inline: auto;
  }
}

@media (max-width: 900px) {
  .hero {
    padding: 96px 20px 48px;
  }

  .hero .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 34px 0;
  }

  .hero .hero-logo-shell {
    order: 1;
    justify-content: flex-start;
  }

  .hero .hero-copy {
    order: 2;
  }

  .hero .hero-logo-image {
    width: min(100%, 300px);
    max-width: 60vw;
  }

  .hero .hero-type-line {
    font-size: clamp(3.2rem, 12vw, 5.6rem);
  }
}

@media (max-width: 640px) {
  .hero .hero-logo-image {
    width: min(100%, 230px);
    max-width: 64vw;
  }

  .hero .hero-type-line {
    min-height: 0;
    gap: 0;
    font-size: clamp(2.75rem, 14.5vw, 4.2rem);
    line-height: 0.88;
  }

  .hero .hero-type-dynamic {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sponsors-marquee {
    overflow-x: auto;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .sponsors-track {
    animation: none;
  }
}

/* Final cinematic homepage hero. */
.hero {
  isolation: isolate;
  padding: 96px 24px 64px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 24%, #000 78%, transparent);
}

.hero .hero-video {
  filter: saturate(0.72) brightness(0.5) contrast(1.08);
  transform: scale(1.015);
}

.hero .hero-overlay {
  background:
    radial-gradient(circle at 50% 48%, rgba(114, 31, 5, 0.1), rgba(7, 3, 2, 0.2) 34%, rgba(7, 3, 2, 0.82) 88%),
    linear-gradient(180deg, rgba(7, 3, 2, 0.42), rgba(7, 3, 2, 0.74));
}

.hero .hero-content {
  position: relative;
  width: min(1240px, calc(100vw - 48px));
  min-height: 620px;
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  padding: 72px 0;
  text-align: center;
}

.hero .hero-copy {
  position: relative;
  z-index: 2;
  justify-items: center;
  gap: 28px;
}

.hero .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  color: #ffb273;
}

.hero .hero-eyebrow::before,
.hero .hero-eyebrow::after {
  content: none;
}

.hero .hero-type-line {
  max-width: 100%;
  min-height: 1.78em;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  gap: 0.06em;
  font-size: clamp(4.5rem, 8.5vw, 8.5rem);
  line-height: 0.86;
  letter-spacing: -0.075em;
  white-space: normal;
  text-align: center;
}

.hero .hero-type-static,
.hero .hero-type-dynamic {
  white-space: nowrap;
}

.hero .hero-type-dynamic {
  min-height: 0.86em;
  padding-right: 0.08em;
  color: #ff6b18;
  text-align: center;
  border-right-width: 3px;
}

.hero .hero-logo-shell {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  width: min(520px, 54vw);
  transform: translate(-50%, -50%);
  opacity: 0.16;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(255, 92, 18, 0.32));
}

.hero .hero-logo-image {
  width: 100%;
  max-width: none;
}

/* Keep the full desktop navigation available on touch-sized screens. */
@media (max-width: 860px) {
  .topbar .nav-shell {
    width: calc(100vw - 16px);
    min-height: 54px;
    padding: 8px 54px;
    justify-content: center;
  }

  .topbar .nav-toggle {
    display: none !important;
  }

  .topbar .nav-links {
    position: static !important;
    inset: auto !important;
    display: flex !important;
    flex: 1 1 auto;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3px clamp(8px, 2.6vw, 16px);
    width: auto;
    max-width: none;
    min-width: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto !important;
  }

  .topbar .nav-links a {
    min-height: 20px;
    padding-block: 2px;
    font-size: clamp(0.61rem, 1.75vw, 0.72rem);
    letter-spacing: 0.055em;
  }

  .topbar .language-toggle {
    top: 10px;
    right: 10px;
    width: 42px;
    height: 32px;
  }
}

@media (max-width: 420px) {
  .topbar .nav-shell {
    width: calc(100vw - 8px);
    padding-inline: 48px;
  }

  .topbar .nav-links {
    display: grid !important;
    grid-template-columns: repeat(3, max-content);
    justify-content: center;
    gap: 2px 13px;
  }

  .topbar .nav-links a {
    font-size: 0.64rem;
    letter-spacing: 0.035em;
  }

  .topbar .nav-links a[href="#contact"],
  .topbar .nav-links .nav-contact-link {
    padding-inline: 8px;
  }

  .topbar .language-toggle {
    right: 10px;
    width: 39px;
  }
}

@media (max-width: 420px) {
  .hero .hero-type-line {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: clamp(2.55rem, 13.5vw, 3rem);
  }

  .hero .hero-type-static,
  .hero .hero-type-dynamic {
    max-width: 100%;
  }
}

@media (max-width: 560px) {
  .section.contact-section {
    width: calc(100vw - 28px);
    margin-inline: auto;
    padding-inline: 0;
  }
}

@media (max-width: 780px) {
  .hero {
    padding-inline: 14px;
  }

  .hero .hero-content {
    width: calc(100vw - 28px);
    min-height: 560px;
    padding: 60px 0;
  }

  .hero .hero-type-line {
    flex-direction: column;
    align-items: center;
    gap: 0.06em;
    font-size: clamp(3.3rem, 15vw, 5.8rem);
  }

  .hero .hero-type-dynamic {
    text-align: center;
  }

  .hero .hero-logo-shell {
    order: initial;
    width: min(390px, 72vw);
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero .hero-content {
    min-height: 500px;
  }

  .hero .hero-eyebrow::before,
  .hero .hero-eyebrow::after {
    width: 18px;
  }
}

@media (max-width: 420px) {
  .hero .hero-type-line {
    width: 100%;
    max-width: calc(100vw - 32px);
    font-size: clamp(2.55rem, 13.5vw, 3rem);
  }
}
