/* ===== RDS — Rang De Storrs — shared stylesheet ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&display=swap');

:root {
  --bg: #0a0e14;
  --bg-alt: #131a24;
  --surface: #ffffff;
  --surface-alt: #eef1f5;
  --text: #0d1117;
  --text-muted: #5a6472;
  --text-inverse: #f5f7fa;
  --text-inverse-muted: #a8b4c2;
  --accent: #2c4870;
  --accent-2: #4a6fa5;
  --accent-3: #6b7684;
  --gradient: linear-gradient(120deg, #0d1b2e 0%, #2c4870 50%, #8a9bb0 100%);
  --border: #dde2e8;
  --radius: 18px;
  --radius-sm: 10px;
  --shadow: 0 20px 40px -20px rgba(10, 14, 20, 0.35);
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 600;
  line-height: 1.08;
  margin: 0 0 .5em;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; color: var(--text-muted); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { max-width: var(--max); margin: 0 auto; padding: 0 32px; }
section { padding: 96px 0; }
section.tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(44, 72, 112, 0.1);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.eyebrow.on-dark { color: #a8c4e0; background: rgba(255,255,255,0.08); }

.skip-link {
  position: absolute;
  top: -80px;
  left: 16px;
  z-index: 2000;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  transition: top .15s ease;
}
.skip-link:focus {
  top: 16px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,14,20,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background .3s ease, box-shadow .3s ease;
}
.nav.scrolled {
  background: rgba(6,9,13,0.97);
  box-shadow: 0 12px 30px -14px rgba(0,0,0,0.55);
}
.nav .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  max-width: none;
  padding-left: 48px;
  padding-right: 48px;
  gap: 32px;
}
.nav-logo {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--text-inverse);
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-logo span {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.nav .nav-logo {
  background: var(--gradient);
  padding: 8px 20px 8px 10px;
  border-radius: 999px;
  box-shadow: 0 8px 20px -8px rgba(44, 72, 112, 0.6);
}
.nav .nav-logo span,
.footer .nav-logo span {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ffffff;
}
.nav-links {
  display: flex;
  gap: 26px;
  list-style: none;
  margin: 0; padding: 0;
  flex: 1;
  justify-content: center;
  min-width: 0;
}
.nav-links a {
  position: relative;
  color: var(--text-inverse-muted);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color .15s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--gradient);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}
.nav-links a:hover, .nav-links a.active { color: var(--text-inverse); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 26px;
  height: 20px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--text-inverse);
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--gradient);
  color: #ffffff;
  box-shadow: 0 12px 24px -10px rgba(44, 72, 112, 0.5);
}
.btn-dark {
  background: var(--text-inverse);
  color: var(--bg);
}
.btn-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.25);
  color: var(--text-inverse);
}
.btn-outline.on-light { border-color: rgba(20,20,25,0.2); color: var(--text); }
.btn-block { width: 100%; }
.btn-row { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 20%, rgba(44,72,112,0.4), transparent 45%),
              radial-gradient(circle at 85% 15%, rgba(168,180,194,0.16), transparent 45%),
              var(--bg);
  color: var(--text-inverse);
  padding: 140px 0 110px;
  text-align: center;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 640px;
  max-width: 70%;
  opacity: 0.07;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(circle at 15% 20%, rgba(44,72,112,0.45), transparent 45%),
              radial-gradient(circle at 85% 15%, rgba(168,180,194,0.2), transparent 45%),
              linear-gradient(180deg, rgba(10,14,20,0.6) 0%, rgba(10,14,20,0.8) 100%);
}
.hero > .container {
  position: relative;
  z-index: 2;
}
.hero h1 { font-size: clamp(40px, 6vw, 74px); margin-bottom: 26px; }
.hero .sub {
  color: var(--text-inverse-muted);
  font-size: 19px;
  max-width: 620px;
  margin: 0 auto 44px;
}
.hero .btn-row { justify-content: center; margin-bottom: 52px; }
.hero-meta {
  margin-top: 4px;
  display: inline-flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 18px 28px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.04);
}
.hero-meta div { font-size: 14px; color: var(--text-inverse-muted); }
.hero-meta strong { display: block; color: var(--text-inverse); font-size: 15px; font-weight: 600; }

.page-hero {
  background: var(--bg);
  color: var(--text-inverse);
  padding: 80px 0 64px;
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); }
.page-hero .sub { color: var(--text-inverse-muted); font-size: 17px; max-width: 640px; }

/* ---------- Stats ---------- */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-card {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 32px 20px;
}
.stat-card .num {
  font-family: 'Poppins', sans-serif;
  font-size: 38px;
  font-weight: 700;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-card .label { font-size: 14px; color: var(--text-muted); margin-top: 6px; }

/* ---------- Section headers ---------- */
.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(28px, 4vw, 40px); }
.section-head p { font-size: 16px; }

/* ---------- Grids & Cards ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card h3 { font-size: 19px; margin-bottom: 8px; }

.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
}
.testimonial-card .quote {
  font-size: 15px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 18px;
}
.testimonial-card .testimonial-author {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}
.testimonial-card .testimonial-author span {
  display: block;
  font-size: 13px;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}
.card .tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.timeline { display: flex; flex-direction: column; gap: 0; }
.timeline-item {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-top: 1px solid var(--border);
}
.timeline-item:first-child { border-top: none; }
.timeline-item .day { font-family: 'Poppins', sans-serif; font-weight: 600; color: var(--text); }
.timeline-item .day span { display: block; color: var(--text-muted); font-weight: 400; font-size: 13px; margin-top: 2px; }

.team-card {
  background: var(--surface-alt);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform .2s ease, box-shadow .2s ease;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.team-card .logo-block {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #eee, #f7f7f9);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  overflow: hidden;
}
.team-card .logo-block img { width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card .info { padding: 18px 20px; }
.team-card .info h3 { font-size: 16px; margin-bottom: 2px; }
.team-card .info .school { font-size: 13.5px; color: var(--text-muted); margin-bottom: 10px; }
.team-card .socials { display: flex; gap: 10px; }
.team-card .socials a {
  font-size: 12px; font-weight: 600; color: var(--accent);
  border: 1px solid rgba(44,72,112,0.35); padding: 4px 10px; border-radius: 999px;
}

.pricing-table { width: 100%; border-collapse: collapse; }
.pricing-table th, .pricing-table td {
  text-align: left; padding: 16px 18px; border-bottom: 1px solid var(--border); font-size: 14.5px;
}
.pricing-table th { color: var(--text-muted); font-weight: 600; font-size: 13px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- Sponsorship tier cards ---------- */
.tier-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.tier-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  background: var(--surface);
  transition: transform .2s ease, box-shadow .2s ease;
}
.tier-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.tier-card.community { border-top-color: #b5793f; background: #3a2818; color: var(--text-inverse); }
.tier-card.silver { border-top-color: #b7bec7; background: #3c3f44; color: var(--text-inverse); }
.tier-card.gold { border-top-color: #d9a520; background: #4d3c05; color: var(--text-inverse); }
.tier-card.platinum { border-top-color: var(--accent-3); background: var(--bg); color: var(--text-inverse); }
.tier-card .tier-price { font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 26px; margin-bottom: 4px; }
.tier-card.community .tier-price, .tier-card.silver .tier-price, .tier-card.gold .tier-price, .tier-card.platinum .tier-price { color: var(--text-inverse); }
.tier-card h3 { font-size: 20px; margin-bottom: 8px; }
.tier-card.community h3, .tier-card.silver h3, .tier-card.gold h3, .tier-card.platinum h3 { color: var(--text-inverse); }
.tier-card .tier-tagline { font-size: 14.5px; margin-bottom: 18px; }
.tier-card.community .tier-tagline, .tier-card.silver .tier-tagline, .tier-card.gold .tier-tagline, .tier-card.platinum .tier-tagline { color: var(--text-inverse-muted); }
.tier-card ul { list-style: none; padding: 0; margin: 0; }
.tier-card li { padding: 9px 0; border-top: 1px solid var(--border); font-size: 14px; color: var(--text-muted); }
.tier-card li:first-child { border-top: none; }
.tier-card.community li, .tier-card.silver li, .tier-card.gold li, .tier-card.platinum li { border-top-color: rgba(255,255,255,0.12); color: var(--text-inverse-muted); }
@media (max-width: 900px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.ticket-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  background: var(--surface);
}
.ticket-card.featured {
  background: var(--bg);
  color: var(--text-inverse);
  border: none;
  box-shadow: var(--shadow);
}
.ticket-card.featured p, .ticket-card.featured li { color: var(--text-inverse-muted); }
.ticket-card .price { font-family: 'Poppins', sans-serif; font-size: 40px; font-weight: 700; margin: 8px 0 16px; }
.ticket-card ul { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.ticket-card li { padding: 8px 0; border-top: 1px solid rgba(0,0,0,0.06); font-size: 14px; }
.ticket-card.featured li { border-top: 1px solid rgba(255,255,255,0.1); }
.ticket-card li:first-child { border-top: none; }

.faq-item { border-top: 1px solid var(--border); padding: 22px 0; }
.faq-item:first-child { border-top: none; }
.faq-item h3 { font-size: 16.5px; margin-bottom: 6px; }
.faq-item p { margin: 0; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid.full, .field.full { grid-column: 1 / -1; }
.field label { display: block; font-size: 13.5px; font-weight: 600; margin-bottom: 6px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 16px;
  background: var(--surface);
  color: var(--text);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-status { font-size: 14px; font-weight: 600; margin-top: 14px; min-height: 1em; }
.form-status-success { color: #1a7f4b; }
.form-status-error { color: #c0392b; }

.logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}
.logo-chip {
  padding: 14px 22px;
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-muted);
}
.logo-chip:has(img) { padding: 16px 22px; }
.logo-chip img { height: 56px; width: 130px; object-fit: contain; display: block; }
.logo-chip.logo-chip-dark { background: var(--bg); border-color: var(--bg); }

.ph {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); font-size: 12.5px;
  overflow: hidden;
}
.ph img { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-grid .ph { aspect-ratio: 1/1; }

.cta-band {
  background: var(--gradient);
  border-radius: 28px;
  padding: 56px;
  text-align: center;
  color: #ffffff;
}
.cta-band h2 { color: #ffffff; }
.cta-band p { color: rgba(255,255,255,0.85); }

.results-table { width: 100%; border-collapse: collapse; }
.results-table th, .results-table td { padding: 14px 16px; border-bottom: 1px solid var(--border); font-size: 14.5px; text-align: left; }
.results-table th { color: var(--text-muted); font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; }

/* ---------- History: year placings ---------- */
.year-block {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
  padding: 36px;
  margin-bottom: 24px;
}
.year-block-head { text-align: center; margin-bottom: 28px; }
.placings-row { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; text-align: center; }
.place-logo {
  width: 84px; height: 84px;
  border-radius: 50%;
  margin: 0 auto 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11.5px;
  color: var(--text-muted);
  background: #fff;
  border: 3px solid var(--border);
  overflow: hidden;
}
.place-logo img { width: 68%; height: 68%; object-fit: contain; }
.place-logo.gold { border-color: #e0b027; }
.place-logo.silver { border-color: #b7bec7; }
.place-logo.bronze { border-color: #c07a3f; }
.place-label {
  font-size: 12.5px; font-weight: 700; text-transform: uppercase;
  letter-spacing: .06em; color: var(--accent); margin-bottom: 10px;
}
.place-team { font-weight: 700; font-size: 16px; margin-bottom: 2px; }
.place-school { font-size: 13.5px; color: var(--text-muted); }

/* ---------- History: livestream embeds ---------- */
.video-embed {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--surface-alt);
  border: 1px solid var(--border);
}
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-embed.coming-soon {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 8px; color: var(--text-muted); font-weight: 600; font-size: 15px; text-align: center;
}
.video-embed.coming-soon span:first-child { font-size: 28px; }
.video-embed.video-thumb a { position: absolute; inset: 0; display: block; }
.video-embed.video-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.video-embed.video-thumb .play-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(10,9,12,0.65);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  padding-left: 4px;
  transition: transform .2s ease, background .2s ease;
}
.video-embed.video-thumb:hover .play-icon { transform: translate(-50%, -50%) scale(1.1); background: var(--accent); }

/* ---------- Board page ---------- */
.board-featured { margin-bottom: 56px; }
.board-featured .ph { aspect-ratio: 21/9; margin-bottom: 16px; }
.board-featured h3 { text-align: center; font-size: 24px; }
.board-item { transition: transform .2s ease; }
.board-item:hover { transform: translateY(-4px); }
.board-item .ph { aspect-ratio: 4/3; margin-bottom: 12px; }
.board-item h3 { text-align: center; font-size: 16px; margin-bottom: 0; }
@media (max-width: 900px) {
  .board-featured .ph { aspect-ratio: 16/9; }
}

.board-card { display: flex; gap: 16px; align-items: flex-start; }
.board-card .avatar {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--gradient); flex-shrink: 0;
}
.board-card h3 { font-size: 16px; margin-bottom: 2px; }
.board-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 4px; }
.board-card .email { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Director bio cards ---------- */
.director-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 24px; }
.director-card {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
}
.director-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.director-card .avatar {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 14px;
}
.director-card h3 { font-size: 17px; margin-bottom: 2px; }
.director-card .role { font-size: 13px; color: var(--accent); font-weight: 600; margin-bottom: 12px; }
.director-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 13px;
  color: var(--text-muted);
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.director-quote {
  font-size: 13.5px;
  font-style: italic;
  color: var(--text-muted);
  margin: 0;
}
@media (max-width: 900px) {
  .director-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .director-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.footer {
  background: var(--bg);
  color: var(--text-inverse-muted);
  padding: 64px 0 32px;
}
.footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer h4 { color: var(--text-inverse); font-size: 15px; margin-bottom: 16px; }
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; color: var(--text-inverse-muted); }
.footer ul a:hover { color: var(--text-inverse); }
.footer .social-links a { display: flex; align-items: center; gap: 8px; }
.footer .social-links svg { flex-shrink: 0; }
.footer-qr {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  max-width: 260px;
}
.footer-qr img { border-radius: 4px; flex-shrink: 0; }
.footer-qr span { font-size: 12.5px; line-height: 1.4; color: var(--text-inverse-muted); }
.footer-bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding: 24px 32px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 12px;
}

/* ---------- Responsive ---------- */
@media (max-width: 1180px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .nav .container { padding-left: 20px; padding-right: 20px; }
  .nav-links {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10,9,12,0.98);
    backdrop-filter: blur(10px);
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: max-height .35s ease, padding .35s ease;
  }
  body.nav-open .nav-links { max-height: 520px; padding: 12px 24px 20px; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 12px 0; border-top: 1px solid rgba(255,255,255,0.06); }
  .nav-links li:first-child a { border-top: none; }
}
@media (max-width: 900px) {
  .grid-2, .grid-3, .grid-4, .stats-grid, .gallery-grid, .form-grid { grid-template-columns: 1fr 1fr; }
  .footer .container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 64px 0; }
  .container { padding: 0 20px; }
  .grid-2, .grid-3, .grid-4, .stats-grid, .gallery-grid, .form-grid, .footer .container { grid-template-columns: 1fr; }
  .placings-row { grid-template-columns: 1fr; gap: 32px; }
  .timeline-item { grid-template-columns: 1fr; }
  .cta-band { padding: 36px 24px; }
}

/* ================= Interactive & Motion Layer ================= */

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
  background: var(--gradient);
  z-index: 999;
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--gradient);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -10px rgba(44, 72, 112, 0.45);
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px) scale(.9);
  pointer-events: none;
  transition: opacity .25s ease, transform .25s ease;
  z-index: 60;
}
.back-to-top.show { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.back-to-top:hover { transform: translateY(-3px) scale(1.05); }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s cubic-bezier(.16,.8,.3,1), transform .7s cubic-bezier(.16,.8,.3,1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.grid-2 > .reveal:nth-child(2),
.grid-3 > .reveal:nth-child(2),
.grid-4 > .reveal:nth-child(2),
.stats-grid > .reveal:nth-child(2),
.placings-row > .reveal:nth-child(2) { transition-delay: .08s; }
.grid-3 > .reveal:nth-child(3),
.grid-4 > .reveal:nth-child(3),
.stats-grid > .reveal:nth-child(3),
.placings-row > .reveal:nth-child(3) { transition-delay: .16s; }
.grid-3 > .reveal:nth-child(4),
.grid-4 > .reveal:nth-child(4),
.stats-grid > .reveal:nth-child(4) { transition-delay: .24s; }
.grid-3 > .reveal:nth-child(5),
.grid-4 > .reveal:nth-child(5) { transition-delay: .32s; }
.grid-3 > .reveal:nth-child(6),
.grid-4 > .reveal:nth-child(6) { transition-delay: .4s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* Sliding logo marquee */
.logo-strip.marquee {
  flex-wrap: nowrap;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.logo-strip.marquee .marquee-track {
  display: flex;
  gap: 18px;
  flex-wrap: nowrap;
  will-change: transform;
  backface-visibility: hidden;
}
.logo-strip.marquee .logo-chip { flex-shrink: 0; }

/* Photo strip variant (sliding dance photos instead of text chips) */
.photo-strip .logo-chip {
  padding: 0;
  overflow: hidden;
  width: 220px;
  height: 260px;
  flex-shrink: 0;
}
.photo-strip .logo-chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 600px) {
  .photo-strip .logo-chip { width: 170px; height: 200px; }
}
/* Hero cursor glow + video parallax */
.hero { --mx: 50%; --my: 40%; }
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: radial-gradient(420px circle at var(--mx) var(--my), rgba(168,180,194,0.22), transparent 60%);
  pointer-events: none;
}
.hero-video { will-change: transform; }

/* Featured card glow accents */
.ticket-card.featured, .tier-card.platinum {
  position: relative;
  overflow: hidden;
}
.ticket-card.featured::after, .tier-card.platinum::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle at 30% 20%, rgba(44,72,112,0.18), transparent 55%);
  pointer-events: none;
}

/* Animated gradient shimmer for the CTA band */
.cta-band {
  background-size: 200% 200%;
  animation: gradient-shift 8s ease infinite;
}
@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Countdown timer */
.countdown {
  display: flex;
  gap: 22px;
  justify-content: center;
  margin: 0 0 52px;
  flex-wrap: wrap;
}
.countdown-item {
  min-width: 92px;
  padding: 20px 16px;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.05);
  text-align: center;
}
.countdown-num {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 30px;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.countdown-label {
  display: block;
  margin-top: 6px;
  font-size: 11.5px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-inverse-muted);
}
@media (max-width: 600px) {
  .countdown-item { min-width: 68px; padding: 12px 8px; }
  .countdown-num { font-size: 24px; }
}

/* FAQ accordion */
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  margin-bottom: 0;
}
.faq-icon {
  font-size: 22px;
  font-weight: 400;
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  transition: transform .3s ease;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin: 0;
  transition: max-height .35s ease, opacity .3s ease, margin-top .35s ease;
}
.faq-item.open .faq-answer { max-height: 240px; opacity: 1; margin-top: 10px; }

/* Photo lightbox */
.ph.lightbox-trigger { cursor: pointer; transition: opacity .2s ease; }
.ph.lightbox-trigger:hover { opacity: .82; }
.lightbox-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,12,0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1000;
}
.lightbox-overlay.open { opacity: 1; pointer-events: auto; }
.lightbox-content { max-width: 900px; max-height: 85vh; }
.lightbox-content img { max-width: 100%; max-height: 85vh; border-radius: var(--radius); display: block; }
.lightbox-placeholder {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 600;
  padding: 140px 90px;
  text-align: center;
}
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 32px;
  background: none;
  border: none;
  color: #fff;
  font-size: 38px;
  line-height: 1;
  cursor: pointer;
  opacity: .8;
  transition: opacity .2s ease, transform .2s ease;
}
.lightbox-close:hover { opacity: 1; transform: rotate(90deg); }

/* Interactive US map */
.us-map-wrap { position: relative; max-width: 900px; margin: 0 auto; }
.us-map { width: 100%; height: auto; display: block; }
.us-map .state { fill: var(--surface); stroke: var(--border); stroke-width: 1; transition: fill .2s ease; }
.us-map .state.has-team { fill: var(--accent-2); fill-opacity: 0.32; }
.us-map .map-dot {
  fill: var(--accent);
  stroke: var(--surface);
  stroke-width: 2;
  cursor: pointer;
  transition: r .15s ease, fill .15s ease;
}
.us-map .map-dot:hover, .us-map .map-dot:focus, .us-map .map-dot.active {
  fill: var(--accent-2);
  r: 10;
}
.us-map .map-dot:focus-visible {
  outline: 3px solid var(--accent-2);
  outline-offset: 3px;
}
.map-tooltip {
  position: absolute;
  transform: translate(-50%, -120%);
  background: var(--bg);
  color: var(--text-inverse);
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  pointer-events: none;
  box-shadow: var(--shadow);
  z-index: 5;
}
.map-tooltip span {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: var(--text-inverse-muted);
  margin-top: 2px;
}
@media (max-width: 600px) {
  .map-tooltip { font-size: 12px; padding: 8px 12px; }
}

/* Committee cards + modal */
.committee-card { cursor: pointer; }
.committee-hint {
  display: block;
  text-align: center;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--accent);
  margin-top: 6px;
  opacity: 0;
  transform: translateY(-2px);
  transition: opacity .2s ease, transform .2s ease;
}
.committee-card:hover .committee-hint { opacity: 1; transform: translateY(0); }
.committee-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,9,12,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
  z-index: 1000;
}
.committee-modal-overlay.open { opacity: 1; pointer-events: auto; }
.committee-modal {
  position: relative;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 780px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
}
.committee-modal-head { text-align: center; margin-bottom: 28px; }
.committee-modal-head h3 { font-size: 26px; margin: 4px 0 0; }
.committee-modal-people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.committee-person {
  background: var(--surface-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 16px;
  text-align: center;
}
.committee-person .avatar {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gradient);
  margin: 0 auto 12px;
}
.committee-person h4 { font-size: 15px; margin-bottom: 10px; }
.committee-modal-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  opacity: .7;
  transition: opacity .2s ease, transform .2s ease;
}
.committee-modal-close:hover { opacity: 1; transform: rotate(90deg); }
@media (max-width: 700px) {
  .committee-modal-people { grid-template-columns: 1fr; }
}

/* Sticky mobile ticket bar */
.mobile-ticket-bar { display: none; }
@media (max-width: 700px) {
  .mobile-ticket-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 55;
    background: rgba(10,9,12,0.97);
    backdrop-filter: blur(10px);
    padding: 12px 18px;
    border-top: 1px solid rgba(255,255,255,0.08);
  }
  .mobile-ticket-bar span {
    color: var(--text-inverse);
    font-size: 13px;
    font-weight: 600;
    line-height: 1.25;
  }
  .mobile-ticket-bar .btn { padding: 10px 20px; font-size: 13.5px; flex-shrink: 0; white-space: nowrap; }
  body.has-mobile-bar { padding-bottom: 68px; }
  body.has-mobile-bar .back-to-top { bottom: 88px; }
}

/* Coming-soon placeholder card (e.g. teams TBD) */
.coming-soon-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  padding: 48px 32px;
  border: 1px dashed var(--border);
  border-radius: var(--radius);
  background: var(--surface-alt);
}
.coming-soon-card .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* Hero scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: none;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-inverse);
  cursor: pointer;
  opacity: 0.85;
  transition: opacity .3s ease, border-color .2s ease;
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}
.scroll-cue:hover { opacity: 1; border-color: rgba(255,255,255,0.6); }
.scroll-cue.hide { opacity: 0; pointer-events: none; }
@keyframes scroll-cue-bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Card tilt-on-hover */
.tilt-card { transition: transform .15s ease, box-shadow .2s ease; transform-style: preserve-3d; }

@media (prefers-reduced-motion: reduce) {
  .scroll-cue { animation: none; }
  .tilt-card { transition: none; }
}

/* Support page: live progress bar + supporter feed */
.support-progress-wrap { max-width: 640px; margin: 0 auto 40px; text-align: center; }
.support-total { font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 17px; margin-bottom: 14px; color: var(--text); }
.support-progress { height: 10px; border-radius: 999px; background: var(--border); overflow: hidden; }
.support-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--accent), var(--accent-2));
  border-radius: 999px;
  transition: width .2s ease-out;
}
.support-feed { max-width: 480px; margin: 0 auto; display: flex; flex-direction: column; gap: 10px; }
.support-feed-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--text);
}
.support-feed-empty { text-align: center; color: var(--text-muted); font-size: 14.5px; padding: 20px 0; }
