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

:root {
  --red: #E41B2D;
  --red-dark: #a01020;
  --red-light: #ff3347;
  --orange: #FF6B35;
  --white: #FFFFFF;
  --off-white: #f0ece8;
  --black: #0a0a0a;
  --dark: #111111;
  --dark-2: #1a1a1a;
  --dark-3: #222222;
  --gray: #888888;
  --gray-light: #cccccc;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── NAV ─────────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 48px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,10,0.0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: all 0.4s ease;
}

.nav.scrolled {
  background: rgba(10,10,10,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(228,27,45,0.2);
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 3px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--red);
  background: rgba(228,27,45,0.08);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > a::after {
  content: ' ▾';
  font-size: 10px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark-2);
  border: 1px solid rgba(228,27,45,0.25);
  border-radius: 6px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
  list-style: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  border-radius: 0;
  font-size: 12px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all 0.3s;
}

/* ── GEOMETRIC BACKGROUND ────────────────────────────────── */
.geo-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.geo-bg::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: var(--red);
  clip-path: polygon(30% 0%, 100% 0%, 100% 70%, 70% 100%, 0% 100%, 0% 30%);
  opacity: 0.04;
}

.geo-bg::after {
  content: '';
  position: absolute;
  bottom: -15%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: var(--orange);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: 0.03;
}

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 48px 80px;
  overflow: hidden;
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(228,27,45,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(228,27,45,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.hero-diagonal {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 120px;
  background: var(--dark);
  clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

.hero-logo {
  width: clamp(160px, 25vw, 280px);
  margin-bottom: 40px;
  animation: fadeUp 0.9s ease both;
  filter: drop-shadow(0 0 40px rgba(228,27,45,0.3));
}

.hero-eyebrow {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.15s ease both;
}

.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(64px, 10vw, 140px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.25s ease both;
}

.hero h1 span {
  color: var(--red);
  display: block;
}

.hero-sub {
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 300;
  color: var(--gray-light);
  max-width: 560px;
  margin: 0 auto 48px;
  animation: fadeUp 0.9s 0.35s ease both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeUp 0.9s 0.45s ease both;
}

/* ── BUTTONS ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: none;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--red-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228,27,45,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* ── SECTION LAYOUT ──────────────────────────────────────── */
section {
  padding: 100px 48px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--red);
}

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(44px, 6vw, 80px);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
}

.section-body {
  font-size: 16px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 580px;
  line-height: 1.8;
}

/* ── ABOUT SECTION ───────────────────────────────────────── */
.about-section {
  background: var(--dark);
}

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

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 48px;
}

.stat-box {
  padding: 28px 24px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

.stat-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  line-height: 1;
  color: var(--red);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}

.about-visual {
  position: relative;
}

.about-img-frame {
  aspect-ratio: 4/3;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(228,27,45,0.1) 0%, transparent 60%);
}

.about-img-placeholder {
  font-size: 13px;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── TEAMS CARDS ─────────────────────────────────────────── */
.teams-section {
  background: var(--black);
}

.teams-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.team-card {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  text-decoration: none;
  color: var(--white);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
  display: block;
}

.team-card:hover {
  transform: translateY(-8px);
  border-color: var(--red);
  box-shadow: 0 20px 60px rgba(228,27,45,0.18);
}

.team-card-banner {
  height: 200px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 24px;
}

.team-card-banner-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.5s ease;
}

.team-card:hover .team-card-banner-bg {
  transform: scale(1.05);
}

.team-card-racing .team-card-banner-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0505 40%, #3d0a0a 100%);
}

.team-card-rescue .team-card-banner-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #0a1520 40%, #0a2d1a 100%);
}

.team-card-healthcare .team-card-banner-bg {
  background: linear-gradient(135deg, #0a0a0a 0%, #1a0a1a 40%, #2d0a1f 100%);
}

.team-icon {
  font-size: 56px;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.5));
  transition: transform 0.3s ease;
}

.team-card:hover .team-icon {
  transform: translate(-50%, -65%) scale(1.1);
}

.team-card-number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 100px;
  line-height: 1;
  position: absolute;
  right: 16px;
  bottom: -8px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
}

.team-card-body {
  padding: 28px 28px 32px;
}

.team-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(228,27,45,0.4);
  padding: 3px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}

.team-card-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  line-height: 1;
}

.team-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
}

.team-card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  transition: gap 0.2s;
}

.team-card:hover .team-card-arrow {
  gap: 14px;
}

/* ── SOCIAL / GALLERY ────────────────────────────────────── */
.social-section {
  background: var(--dark);
}

.social-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}

.social-links-row {
  display: flex;
  gap: 12px;
}

.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  transition: all 0.2s;
}

.social-pill:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(228,27,45,0.08);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto;
  gap: 12px;
}

.gallery-item {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: var(--dark-3);
  border: 1px solid rgba(255,255,255,0.05);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.3s ease, border-color 0.3s;
}

.gallery-item:hover {
  border-color: rgba(228,27,45,0.4);
  transform: scale(1.02);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2/1;
}

.gallery-item.tall {
  grid-row: span 2;
  aspect-ratio: 1/2;
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--gray);
}

.gallery-placeholder-icon {
  font-size: 28px;
  opacity: 0.4;
}

.gallery-placeholder-text {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.8) 100%);
  opacity: 0;
  transition: opacity 0.3s;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-caption {
  font-size: 12px;
  font-weight: 500;
  color: var(--white);
}

/* ── COMPETITIONS SECTION ────────────────────────────────── */
.competitions-section {
  background: var(--black);
}

.comp-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.comp-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.2s;
}

.comp-item:first-child {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.comp-year {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  line-height: 1;
  color: rgba(255,255,255,0.12);
}

.comp-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 4px;
}

.comp-detail {
  font-size: 13px;
  color: var(--gray);
}

.comp-badge {
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(228,27,45,0.15);
  color: var(--red);
  border: 1px solid rgba(228,27,45,0.3);
  white-space: nowrap;
}

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(228,27,45,0.15);
  padding: 60px 48px 32px;
}

.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-tagline {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}

.footer-social a:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(228,27,45,0.08);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  text-decoration: none;
  color: var(--gray);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--red);
}

.footer-bottom {
  max-width: 1200px;
  margin: 24px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: var(--gray);
}

/* ── TEAM PAGE HERO ──────────────────────────────────────── */
.team-hero {
  padding-top: 140px;
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.team-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 32px;
}

.breadcrumb a {
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: rgba(255,255,255,0.2); }

.team-hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid rgba(228,27,45,0.4);
  padding: 6px 14px;
  border-radius: 3px;
  margin-bottom: 24px;
}

.team-hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.92;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

.team-hero-desc {
  font-size: 18px;
  font-weight: 300;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.7;
}

/* ── TEAM DESCRIPTION SECTION ────────────────────────────── */
.team-desc-section {
  background: var(--dark);
}

.team-desc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.desc-text h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 56px);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.desc-text p {
  font-size: 15px;
  color: var(--gray-light);
  line-height: 1.85;
  margin-bottom: 16px;
}

.tech-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tech-tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--dark-3);
  color: var(--gray-light);
  border: 1px solid rgba(255,255,255,0.08);
}

.desc-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-card {
  padding: 24px 28px;
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-left: 3px solid var(--red);
  border-radius: 4px;
}

.highlight-card h4 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 8px;
}

.highlight-card p {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── TEAM MEMBERS ────────────────────────────────────────── */
.members-section {
  background: var(--black);
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.member-card {
  background: var(--dark-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.member-card:hover {
  border-color: rgba(228,27,45,0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(228,27,45,0.12);
}

.member-photo {
  aspect-ratio: 1;
  background: var(--dark-3);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0,0,0,0.6) 100%);
}

.member-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.15);
}

.member-photo-icon {
  font-size: 48px;
}

.member-photo-text {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.member-info {
  padding: 20px 20px 24px;
}

.member-name {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.member-role {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.member-bio {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
}

/* ── SPONSORS PAGE ───────────────────────────────────────── */
.sponsors-section {
  background: var(--black);
}

.sponsor-tier {
  margin-bottom: 64px;
}

.tier-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 32px;
  margin-top: 48px;
}

.tier-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 0.06em;
  color: var(--white);
}

.tier-line {
  flex: 1;
  height: 1px;
  background: rgba(255,255,255,0.08);
}

.tier-gold .tier-label { color: #FFD700; }
.tier-silver .tier-label { color: #C0C0C0; }
.tier-bronze .tier-label { color: #CD7F32; }

.sponsors-grid {
  display: grid;
  gap: 16px;
}

.sponsors-grid.gold { grid-template-columns: repeat(2, 1fr); }
.sponsors-grid.silver { grid-template-columns: repeat(3, 1fr); }
.sponsors-grid.bronze { grid-template-columns: repeat(4, 1fr); }

.sponsor-slot {
  aspect-ratio: 16/9;
  background: var(--dark-2);
  border: 2px dashed rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}

.sponsor-slot:hover {
  border-color: rgba(228,27,45,0.3);
  background: rgba(228,27,45,0.04);
}

.sponsor-slot-icon {
  font-size: 36px;
  opacity: 0.15;
}

.sponsor-slot-text {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
}

.sponsors-cta-box {
  background: var(--dark-2);
  border: 1px solid rgba(228,27,45,0.2);
  border-radius: 12px;
  padding: 60px 48px;
  text-align: center;
  margin-top: 80px;
}

.sponsors-cta-box h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  margin-bottom: 16px;
}

.sponsors-cta-box p {
  font-size: 16px;
  color: var(--gray-light);
  max-width: 500px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

/* ── PAGE TRANSITION ─────────────────────────────────────── */
.page-enter {
  animation: fadeIn 0.5s ease both;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ── SCROLL ANIMATIONS ───────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }

/* ── DIVIDER ─────────────────────────────────────────────── */
.red-divider {
  height: 3px;
  background: linear-gradient(90deg, var(--red) 0%, var(--orange) 50%, transparent 100%);
}

/* ── MOBILE ──────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }

  section { padding: 72px 24px; }
  .hero { padding: 120px 24px 72px; }

  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-stats { grid-template-columns: 1fr 1fr; }
  .teams-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1; }
  .members-grid { grid-template-columns: repeat(2, 1fr); }
  .team-desc-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sponsors-grid.gold,
  .sponsors-grid.silver,
  .sponsors-grid.bronze { grid-template-columns: repeat(2, 1fr); }
  .comp-item { grid-template-columns: 80px 1fr; }
  .comp-badge { display: none; }
  footer { padding: 48px 24px 24px; }
}

@media (max-width: 520px) {
  .members-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 56px; }
  .footer-grid { grid-template-columns: 1fr; }
}
