/* =============================================================
   SFDA · BHARAT TROPHY 2026 TRYOUTS
   Single-page static site. Mobile-first. Bold athletic.
   ============================================================= */

/* ---------- Tokens ---------- */
:root {
  --bg: #0A0E1A;
  --bg-2: #0F1422;
  --surface: #131A2A;
  --surface-2: #1B2336;
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.16);

  --ink: #FFFFFF;
  --ink-2: #E2E8F0;
  --ink-3: #94A3B8;
  --ink-4: #64748B;

  --accent: #FFD60A;
  --accent-2: #FFE34A;
  --accent-glow: rgba(255, 214, 10, 0.35);

  --navy: #18253F;
  --navy-deep: #0E1729;

  --display: 'Bebas Neue', 'Archivo Black', 'Arial Narrow', sans-serif;
  --body: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;

  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 16px;

  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --pad-x: clamp(20px, 5vw, 80px);
  --section-y: clamp(64px, 9vw, 120px);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
ol, ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
::selection { background: var(--accent); color: var(--bg); }

/* Subtle global noise/texture (CSS-only, no asset) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background:
    radial-gradient(ellipse at 20% 10%, rgba(255, 214, 10, 0.06), transparent 60%),
    radial-gradient(ellipse at 80% 90%, rgba(80, 120, 200, 0.05), transparent 60%);
  mix-blend-mode: screen;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  z-index: 2;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin: 0 0 1.25rem;
}
.eyebrow__dot {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
.eyebrow--center { justify-content: center; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255, 214, 10, 0.18); }
  50%       { box-shadow: 0 0 0 9px rgba(255, 214, 10, 0); }
}

.section-head--inline {
  display: flex; align-items: center; gap: 1.25rem;
  margin: 3rem 0 1.5rem;
}
.section-head__rule {
  flex: 0 0 56px; height: 2px; background: var(--accent);
}

/* ---------- Display type ---------- */
.display {
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -0.005em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
}
.display__line { display: block; }
.display__line--accent { color: var(--accent); }

.display--xxl { font-size: clamp(3.2rem, 11vw, 9.5rem); }
.display--xl  { font-size: clamp(2.6rem, 8vw, 6.5rem); }
.display--lg  { font-size: clamp(2rem, 6vw, 4.5rem); }
.display--md  { font-size: clamp(1.6rem, 4vw, 3rem); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.4s var(--ease-out), background 0.25s, color 0.25s, box-shadow 0.4s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }
.btn--primary {
  background: var(--accent);
  color: #0A0E1A;
  box-shadow: 0 8px 24px -10px var(--accent-glow);
}
.btn--primary:hover { background: var(--accent-2); transform: translateY(-2px); box-shadow: 0 16px 36px -12px var(--accent-glow); }
.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: rgba(255,255,255,0.04); border-color: var(--ink-3); }
.btn--sm  { padding: 10px 16px; font-size: 0.78rem; }
.btn--md  { padding: 13px 22px; font-size: 0.86rem; }
.btn--lg  { padding: 18px 28px; font-size: 1rem; }
.btn--xl  { padding: 22px 36px; font-size: 1.05rem; }

/* Outlined accent (secondary action — yellow on dark, not solid) */
.btn--outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn--outline:hover {
  background: var(--accent);
  color: #0A0E1A;
  transform: translateY(-2px);
}

/* Ghost icon-led button (tertiary action) */
.btn--ghost-icon {
  background: transparent;
  color: var(--ink-2);
  border-color: var(--line-strong);
  gap: 8px;
}
.btn--ghost-icon:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: rgba(255, 214, 10, 0.06);
}
.btn--ghost-icon svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out); }
.btn--ghost-icon:hover svg { transform: translateY(-2px); }

/* ---------- Sticky header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px var(--pad-x);
  background: rgba(10, 14, 26, 0);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), padding 0.35s var(--ease);
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}
.site-header.is-stuck {
  background: rgba(10, 14, 26, 0.78);
  border-bottom-color: var(--line);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding-top: 10px; padding-bottom: 10px;
}
.logo-img {
  width: 130px; height: auto;
  filter: drop-shadow(0 2px 12px rgba(0,0,0,0.5));
}
@media (min-width: 768px) { .logo-img { width: 160px; } }

/* ---------- Reveal animation (only when JS is available) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.js .reveal.is-in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
  .eyebrow__dot { animation: none; }
}

/* =============================================================
   SECTION 1 — HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 88vh;
  min-height: 88svh;
  display: flex;
  align-items: flex-end;
  padding: 110px var(--pad-x) clamp(44px, 7vw, 80px);
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  z-index: -1;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  filter: saturate(1.05) contrast(1.05);
  transform: scale(1.03);
  animation: heroDriftIn 1.8s var(--ease-out) both;
}
@keyframes heroDriftIn {
  from { transform: scale(1.12); opacity: 0.4; }
  to   { transform: scale(1.03); opacity: 1; }
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.45) 0%, rgba(10,14,26,0.2) 40%, rgba(10,14,26,0.92) 100%),
    linear-gradient(90deg, rgba(10,14,26,0.7) 0%, rgba(10,14,26,0.3) 60%, rgba(10,14,26,0) 100%);
}
.hero__grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse at 30% 70%, #000 0%, transparent 65%);
  -webkit-mask-image: radial-gradient(ellipse at 30% 70%, #000 0%, transparent 65%);
}
.hero__content {
  position: relative;
  max-width: 980px;
  width: 100%;
  z-index: 2;
}
.hero .display {
  margin-top: 0.5rem;
  text-shadow: 0 4px 30px rgba(0,0,0,0.35);
}
.hero__meta {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; align-items: center; gap: 14px;
  font-family: var(--body);
  font-size: 1rem;
  color: var(--ink-2);
  letter-spacing: 0.02em;
}
.hero__meta strong { color: var(--ink); font-weight: 700; }
.hero__meta-sep { width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
@media (min-width: 768px) { .hero__meta { font-size: 1.1rem; } }

.hero__actions {
  margin-top: 2.25rem;
  display: flex; flex-wrap: wrap; gap: 14px;
}

/* Highlights strip — stat-line style */
.hero__highlights {
  margin-top: clamp(1.5rem, 2.6vw, 2.25rem);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 820px;
  border-top: 1px solid var(--line-strong);
}
@media (min-width: 768px) {
  .hero__highlights { grid-template-columns: repeat(4, 1fr); }
}
.hl {
  padding: 0.95rem 1.1rem 0.95rem 0;
  display: flex; flex-direction: column; gap: 0.2rem;
  border-right: 1px solid var(--line);
  position: relative;
}
.hl:nth-child(2n) { border-right: 0; padding-right: 0; }
.hl:nth-child(odd) { padding-left: 0; }
.hl:nth-child(2n) { padding-left: 1.1rem; }
.hl:nth-child(1), .hl:nth-child(2) { border-bottom: 1px solid var(--line); }
.hl:nth-child(3), .hl:nth-child(4) { padding-top: 0.95rem; }
@media (min-width: 768px) {
  .hl { padding: 0.75rem 1.25rem; border-bottom: 0 !important; }
  .hl:nth-child(odd), .hl:nth-child(2n) { padding-left: 1.25rem; padding-right: 1.25rem; }
  .hl:nth-child(1) { padding-left: 0; }
  .hl:nth-child(4) { padding-right: 0; border-right: 0; }
  .hl:nth-child(2n) { border-right: 1px solid var(--line); }
}
.hl__value {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.95rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--ink);
  text-transform: uppercase;
}
.hl:nth-child(1) .hl__value,
.hl:nth-child(4) .hl__value { color: var(--accent); }
.hl__caption {
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  font-weight: 500;
  line-height: 1.35;
}
.hero__scroll {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--ink-3);
  font-size: 0.72rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
}
.hero__scroll svg { width: 18px; animation: scrollBounce 1.8s var(--ease) infinite; }
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 0.7; }
  50%       { transform: translateY(6px); opacity: 1; }
}
@media (min-width: 1024px) { .hero__scroll { display: flex; } }

/* =============================================================
   SECTION 2 — LEGACY + STAFF
   ============================================================= */
.legacy {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%);
}
.legacy__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.12;
}
.legacy__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: grayscale(1) contrast(1.2);
  mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
  -webkit-mask-image: linear-gradient(180deg, transparent 0%, #000 25%, #000 70%, transparent 100%);
}

.legacy .display { text-align: center; }
.legacy__body {
  margin: 1.5rem auto 0;
  max-width: 760px;
  text-align: center;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.legacy__highlight {
  color: var(--ink);
  font-weight: 600;
  font-size: 1.15rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

/* Stats */
.stats {
  margin: 3.5rem auto 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1080px;
}
@media (min-width: 768px) { .stats { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.stat {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  padding: 1.5rem 1rem;
  border-top: 1px solid var(--line-strong);
  position: relative;
}
.stat::before {
  content: '';
  position: absolute; top: -1px; left: 0;
  width: 40px; height: 2px;
  background: var(--accent);
}
.stat__number {
  font-family: var(--display);
  font-size: clamp(5rem, 12vw, 9rem);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.stat__label {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  font-weight: 600;
}

/* Staff */
.staff-block { margin-top: 4.5rem; }
.staff-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px)  { .staff-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
@media (min-width: 1024px) { .staff-grid { gap: 2rem; } }

.staff-card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}
.staff-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 214, 10, 0.4);
  box-shadow: 0 24px 60px -28px rgba(255, 214, 10, 0.35);
}
.staff-card__photo {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--navy-deep);
}
.staff-card__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(0.45) saturate(0.85) contrast(1.05);
  transition: filter 0.5s var(--ease-out), transform 0.6s var(--ease-out);
}
.staff-card:hover .staff-card__photo img {
  filter: grayscale(0) saturate(1) contrast(1.05);
  transform: scale(1.04);
}
.staff-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  border-top: 1px solid var(--line);
}
.staff-card__role {
  font-family: var(--display);
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.staff-card__name {
  font-family: var(--body);
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.staff-card__alias {
  font-weight: 400;
  color: var(--ink-3);
  font-style: italic;
}
.staff-caption {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: var(--ink-3);
  max-width: 640px;
  margin-inline: auto;
  font-style: italic;
}

/* =============================================================
   SECTION 3 — TNPP
   ============================================================= */
.tnpp {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  isolation: isolate;
}
.tnpp__bg {
  position: absolute; inset: 0; z-index: -1;
}
.tnpp__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: saturate(0) contrast(1.1) brightness(0.45);
}
.tnpp__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.92) 0%, rgba(10,14,26,0.65) 50%, rgba(10,14,26,0.95) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(255, 214, 10,0.25), transparent 55%);
}
.tnpp__inner { text-align: center; }
.tnpp__numbers {
  margin: 2.5rem auto 0;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  gap: clamp(12px, 3vw, 32px);
}
.big-num { display: flex; flex-direction: column; align-items: center; }
.big-num__value {
  font-family: var(--display);
  font-size: clamp(5rem, 16vw, 12rem);
  line-height: 0.85;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.big-num__label {
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.8rem;
  color: var(--ink-3);
  font-weight: 600;
}
.big-num__plus, .big-num__eq {
  font-family: var(--display);
  font-size: clamp(3rem, 10vw, 7rem);
  color: var(--accent);
  align-self: center;
  line-height: 1;
  padding: 0 4px;
}
.big-num--accent .big-num__value { color: var(--accent); }
.big-num--accent .big-num__label { color: var(--accent-2); }

.tnpp__body {
  margin: 2.25rem auto 0;
  max-width: 760px;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-2);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.tnpp__body strong { color: var(--ink); }

/* =============================================================
   SECTION 4 — VENUE
   ============================================================= */
.venue {
  position: relative;
  padding: 0 0 var(--section-y);
  background: var(--bg);
}
.venue__media {
  position: relative;
  width: 100%;
  aspect-ratio: 21 / 9;
  min-height: 320px;
  max-height: 72vh;
  overflow: hidden;
  margin-bottom: clamp(36px, 6vw, 72px);
}
.venue__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.venue__media-fade {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,14,26,0.15) 0%, transparent 30%, transparent 60%, rgba(10,14,26,1) 100%);
}
.venue__badge {
  position: absolute;
  bottom: clamp(24px, 5vw, 48px);
  left: var(--pad-x);
  padding: 8px 14px;
  background: rgba(10,14,26,0.7);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 600;
  color: var(--ink-2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.venue__inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
@media (min-width: 960px) {
  .venue__inner { grid-template-columns: 1.4fr 1fr; align-items: start; gap: 4rem; }
}
.venue__body {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  display: flex; flex-direction: column; gap: 1rem;
  max-width: 600px;
}
.venue__actions {
  margin-top: 1.75rem;
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 12px;
}
.venue__actions .btn--outline svg { width: 14px; height: 14px; }
@media (max-width: 480px) {
  .venue__actions .btn { flex: 1; justify-content: center; min-width: 0; }
}
.venue__specs {
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid var(--line);
}
.venue__spec {
  display: flex; justify-content: space-between; align-items: baseline; gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--line);
}
.venue__spec-key {
  font-family: var(--display);
  font-size: 1.6rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.venue__spec-val {
  font-size: 0.95rem;
  color: var(--ink-2);
  text-align: right;
}

/* =============================================================
   SECTION 5 — DIFFS
   ============================================================= */
.diffs {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy-deep) 100%);
  position: relative;
}
.diffs .display { max-width: 18ch; }
.diff-grid {
  margin-top: 2.75rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px)  { .diff-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; } }
@media (min-width: 1024px) { .diff-grid { grid-template-columns: repeat(4, 1fr); gap: 1.25rem; } }

.diff-card {
  position: relative;
  padding: 2rem 1.75rem 2rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.5s var(--ease-out), border-color 0.5s, background 0.5s;
  isolation: isolate;
  min-height: 240px;
  display: flex; flex-direction: column;
}
.diff-card::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at top right, rgba(255, 214, 10,0.18), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s var(--ease-out);
  z-index: -1;
}
.diff-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 214, 10,0.35);
  background: var(--surface-2);
}
.diff-card:hover::after { opacity: 1; }
.diff-card__num {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 1.5rem;
}
.diff-card__title {
  font-family: var(--display);
  font-size: 2rem;
  letter-spacing: 0.01em;
  margin: 0 0 0.5rem;
  line-height: 1;
  text-transform: uppercase;
}
.diff-card__desc {
  font-size: 0.96rem;
  color: var(--ink-3);
  line-height: 1.55;
  margin-top: auto;
}

/* =============================================================
   SECTION 6 — FEE
   ============================================================= */
.fee {
  padding: var(--section-y) 0;
  background: var(--navy-deep);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fee::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: clamp(360px, 60vw, 720px);
  height: clamp(360px, 60vw, 720px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255, 214, 10,0.18) 0%, transparent 65%);
  z-index: 0;
}
.fee__inner { position: relative; z-index: 1; }
.fee__money {
  display: flex; align-items: flex-end; justify-content: center; gap: clamp(12px, 4vw, 36px);
  margin: 1.25rem 0 2rem;
}
.fee__old {
  font-family: var(--display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--ink-3);
  position: relative;
  line-height: 1;
  letter-spacing: 0.02em;
  opacity: 0.7;
  align-self: flex-end;
  padding-bottom: 1rem;
}
.fee__old::after {
  content: '';
  position: absolute;
  top: 50%; left: -8%;
  width: 116%;
  height: 4px;
  background: var(--accent);
  transform: translateY(-50%) rotate(-8deg);
}
.fee__new {
  font-family: var(--display);
  color: var(--ink);
  line-height: 0.9;
  display: flex; align-items: flex-start;
}
.fee__currency {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--accent);
  padding-top: 0.5rem;
  padding-right: 4px;
}
.fee__amount {
  font-size: clamp(6rem, 18vw, 14rem);
  letter-spacing: -0.02em;
}
.fee__body {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-2);
  display: flex; flex-direction: column; gap: 1rem;
}

/* =============================================================
   SECTION 7 — FINAL CTA
   ============================================================= */
.cta-final {
  position: relative;
  padding: var(--section-y) 0;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
}
.cta-final__bg { position: absolute; inset: 0; z-index: -1; }
.cta-final__bg img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
}
.cta-final__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,14,26,0.96) 0%, rgba(10,14,26,0.78) 50%, rgba(10,14,26,0.96) 100%),
    radial-gradient(ellipse at center, transparent 0%, rgba(10,14,26,0.4) 80%);
}
.cta-final__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-final .btn--xl { margin: 1.5rem 0 3rem; box-shadow: 0 24px 60px -16px var(--accent-glow); }

/* Timeline */
.timeline {
  width: 100%;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  border-top: 1px solid var(--line);
  padding-top: 2rem;
  position: relative;
}
@media (min-width: 768px) {
  .timeline {
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
  }
  .timeline::before {
    content: '';
    position: absolute;
    top: calc(2rem + 7px); left: 8%; right: 8%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 20%, var(--line-strong) 20%);
  }
}
.timeline__step {
  display: flex; align-items: center; gap: 12px;
  text-align: left;
  padding: 0.5rem 0;
  position: relative;
}
@media (min-width: 768px) {
  .timeline__step {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
    padding: 0 8px;
  }
}
.timeline__dot {
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--surface-2);
  border: 2px solid var(--line-strong);
  flex-shrink: 0;
  transition: background 0.4s, border-color 0.4s, box-shadow 0.4s;
}
.timeline__step--active .timeline__dot {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 6px rgba(255, 214, 10, 0.2);
}
.timeline__step--final .timeline__dot {
  border-color: var(--accent);
}
.timeline__label {
  font-family: var(--display);
  font-size: 1.15rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  text-transform: uppercase;
}
.timeline__date {
  font-size: 0.78rem;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(60px, 8vw, 100px) 0 40px;
}
.site-footer__inner { display: flex; flex-direction: column; gap: 3rem; }
.site-footer__brand { display: flex; flex-direction: column; gap: 0.75rem; max-width: 480px; }
.site-footer__logo { width: 180px; }
.site-footer__tag { color: var(--ink-3); font-size: 0.95rem; }
.site-footer__cols {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) { .site-footer__cols { grid-template-columns: repeat(3, 1fr); gap: 2rem; } }
.site-footer__col p { font-size: 0.95rem; color: var(--ink-2); line-height: 1.7; }
.site-footer__col a { color: var(--ink); border-bottom: 1px solid var(--accent); transition: color 0.2s; }
.site-footer__col a:hover { color: var(--accent); }
.site-footer__label {
  font-family: var(--display);
  font-size: 1rem;
  color: var(--accent);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 0.5rem !important;
}
.site-footer__partner { color: var(--ink-3) !important; font-size: 0.85rem !important; margin-top: 1.25rem; }
.site-footer__contacts {
  margin-top: 0.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.site-footer__contacts .site-footer__label { margin-bottom: 1rem !important; }
.site-footer__people {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem 2rem;
  margin-bottom: 1rem;
}
@media (min-width: 640px) {
  .site-footer__people { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
.site-footer__people li { font-size: 0.95rem; }
.site-footer__people li a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.65rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid var(--line);
  transition: border-color 0.2s, color 0.2s;
}
.site-footer__people li a:hover {
  border-bottom-color: var(--accent);
}
.site-footer__people li a:hover .site-footer__person-name { color: var(--ink); }
.site-footer__people li a:hover .site-footer__person-phone { color: var(--accent); }
.site-footer__person-name {
  color: var(--ink-3);
  font-weight: 500;
  min-width: 5.5rem;
}
.site-footer__person-phone {
  color: var(--ink);
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

/* Get-in-touch channel rows (IG, email) — with leading icons */
.site-footer__channel { margin-top: 0.35rem; }
.site-footer__channel a {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
  border-bottom: 1px solid var(--accent);
  padding-bottom: 1px;
  transition: color 0.2s, border-color 0.2s;
}
.site-footer__channel a:hover { color: var(--accent); }
.site-footer__icon {
  width: 18px;
  height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.site-footer__bottom {
  border-top: 1px solid var(--line);
  padding-top: 1.5rem;
  color: var(--ink-4);
  font-size: 0.82rem;
}

/* =============================================================
   RESPONSIVE NUDGES
   ============================================================= */
@media (max-width: 768px) {
  :root { --section-y: clamp(56px, 11vw, 96px); }
  .section-head--inline { margin: 2.25rem 0 1.25rem; }
  .staff-block { margin-top: 3rem; }
  .stats { margin-top: 2.5rem; gap: 1.5rem; }
  .stat { padding: 1.25rem 0.5rem; }
  .stat__number { font-size: clamp(4.5rem, 22vw, 7rem); }
  .legacy__body { margin-top: 1.25rem; font-size: 1rem; }
  .tnpp__numbers { margin-top: 1.75rem; gap: 8px; }
  .tnpp__body { margin-top: 1.75rem; font-size: 1rem; }
  .big-num__plus, .big-num__eq { font-size: 3rem; }
  .diff-grid { margin-top: 2rem; }
  .diff-card { padding: 1.5rem 1.25rem; min-height: 0; }
  .diff-card__num { margin-bottom: 1rem; }
  .fee__money { margin: 1rem 0 1.5rem; }
  .cta-final .btn--xl { margin: 1.25rem 0 2.25rem; }
  .timeline { padding-top: 1.5rem; gap: 0.5rem; }
  .venue__media { aspect-ratio: 4 / 3; min-height: 280px; }
  .site-footer { padding-top: clamp(48px, 8vw, 72px); }
  .site-footer__inner { gap: 2rem; }
  .site-footer__cols { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .hero { min-height: 92vh; min-height: 92svh; padding-bottom: 60px; }
  .hero__actions .btn { flex: 1; justify-content: center; min-width: 0; }
  .hero__actions { gap: 10px; margin-top: 1.5rem; }
  .display--xxl { font-size: clamp(2.8rem, 13vw, 4.5rem); }
  .display--xl  { font-size: clamp(2.2rem, 10vw, 3.6rem); }
  .hero__meta { margin-top: 1.25rem; gap: 10px; }
  .display__line { display: block; }
}

@media (min-width: 1440px) {
  body { font-size: 17px; }
}

/* =============================================================
   MULTI-PAGE EXPANSION
   Shared nav + per-page components for the Bharat Trophy 2026
   campaign site. Appended; nothing above this line changed.
   ============================================================= */

/* ---------- Primary navigation (in .site-header) ---------- */
.site-nav { display: flex; align-items: center; }
.nav-menu { display: flex; align-items: center; gap: clamp(18px, 2.4vw, 36px); }
.nav-link {
  position: relative;
  font-family: var(--body);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-2);
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}
.nav-link::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--accent);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s var(--ease-out);
}
.nav-link:hover { color: var(--ink); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.is-active { color: var(--ink); }
.nav-link.is-active::after { transform: scaleX(1); }

/* Gallery (coming soon) — inert nav item */
.nav-link--soon {
  color: var(--ink-4);
  cursor: default;
  display: inline-flex; align-items: center; gap: 7px;
}
.nav-link--soon:hover { color: var(--ink-4); }
.nav-link--soon::after { display: none; }
.nav-soon {
  font-size: 0.56rem; letter-spacing: 0.12em; font-weight: 700;
  padding: 2px 6px; border-radius: 999px;
  background: var(--surface-2); color: var(--ink-3);
  border: 1px solid var(--line);
}

/* Hamburger toggle (mobile only) */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent; border: 0; cursor: pointer;
  padding: 10px; margin: -10px -10px -10px 0;
  flex-direction: column; justify-content: center; gap: 5px;
}
.nav-toggle__bar {
  display: block; height: 2px; width: 24px;
  background: var(--ink); border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; z-index: 60; }
  .nav-menu {
    position: fixed; inset: 0 0 0 auto;
    width: min(80vw, 320px);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    padding: 0 var(--pad-x);
    background: rgba(10, 14, 26, 0.97);
    backdrop-filter: blur(18px) saturate(140%);
    -webkit-backdrop-filter: blur(18px) saturate(140%);
    border-left: 1px solid var(--line);
    transform: translateX(105%);
    transition: transform 0.4s var(--ease-out);
    z-index: 55;
  }
  body.nav-open { overflow: hidden; }
  body.nav-open .nav-menu { transform: translateX(0); }
  body.nav-open::after {
    content: ''; position: fixed; inset: 0;
    background: rgba(5, 8, 15, 0.55);
    z-index: 54;
  }
  .nav-link { font-size: 1.15rem; }
  .nav-soon { font-size: 0.62rem; }
}

/* ---------- Hero modifiers (sub-pages) ---------- */
.hero--center { align-items: center; text-align: center; }
.hero--center .hero__content { margin: 0 auto; }
.hero--center .eyebrow { justify-content: center; }
.hero--short { min-height: 70vh; min-height: 70svh; }
.hero--tall  { min-height: 100vh; min-height: 100svh; }
.hero__subhead {
  margin-top: 1.5rem;
  max-width: 660px;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.6;
  color: var(--ink-2);
}
.hero--center .hero__subhead { margin-left: auto; margin-right: auto; }
.hero__note {
  margin-top: 1.25rem;
  font-size: 0.82rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.hero__note strong { color: var(--accent); }
.hero__line {
  margin-top: clamp(1.5rem, 4vw, 2.25rem);
  color: var(--ink-2);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  letter-spacing: 0.01em;
}

/* ---------- Banner pill (tryouts archive hero) ---------- */
.banner-pill {
  display: inline-flex; align-items: center; gap: 9px;
  margin-bottom: 1.25rem;
  padding: 9px 16px;
  background: var(--accent);
  color: #0A0E1A;
  border-radius: 999px;
  font-family: var(--body);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px -10px var(--accent-glow);
}
.banner-pill svg { width: 15px; height: 15px; flex-shrink: 0; }
@media (max-width: 480px) { .banner-pill { font-size: 0.64rem; padding: 8px 13px; } }

/* ---------- Campaign cards (home) ---------- */
.campaign {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  position: relative;
}
.campaign-grid {
  margin-top: 2.75rem;
  display: grid; grid-template-columns: 1fr; gap: 1.25rem;
}
@media (min-width: 600px)  { .campaign-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .campaign-grid { grid-template-columns: repeat(4, 1fr); } }
.campaign-card {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  min-height: 340px;
  padding: 1.75rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--line);
  isolation: isolate;
  color: var(--ink);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, box-shadow 0.5s;
}
.campaign-card__img { position: absolute; inset: 0; z-index: -2; }
.campaign-card__img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  transition: transform 0.7s var(--ease-out); filter: saturate(1.02);
}
.campaign-card::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(10,14,26,0.12) 0%, rgba(10,14,26,0.55) 55%, rgba(10,14,26,0.95) 100%);
}
.campaign-card:hover { transform: translateY(-6px); border-color: rgba(255,214,10,0.4); box-shadow: 0 28px 64px -30px rgba(255,214,10,0.4); }
.campaign-card:hover .campaign-card__img img { transform: scale(1.06); }
.campaign-card__eyebrow {
  font-family: var(--display);
  font-size: 1rem; letter-spacing: 0.18em; color: var(--accent);
  text-transform: uppercase; margin-bottom: 0.4rem;
}
.campaign-card__title {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 2.4rem); line-height: 1;
  text-transform: uppercase; margin: 0 0 0.5rem;
}
.campaign-card__desc { font-size: 0.9rem; color: var(--ink-2); line-height: 1.5; margin-bottom: 1rem; }
.campaign-card__cta {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--accent); margin-top: auto;
}
.campaign-card__cta svg { width: 16px; height: 16px; transition: transform 0.4s var(--ease-out); }
.campaign-card:hover .campaign-card__cta svg { transform: translateX(4px); }
.campaign-card--soon { pointer-events: none; }
.campaign-card--soon .campaign-card__cta { color: var(--ink-3); }

/* ---------- Countdown (TNPP teaser) ---------- */
.countdown {
  margin: clamp(1.75rem, 4vw, 2.75rem) auto 0;
  display: flex; align-items: flex-start; justify-content: center;
  gap: clamp(6px, 2.4vw, 24px);
}
.countdown__unit { display: flex; flex-direction: column; align-items: center; min-width: clamp(52px, 15vw, 116px); }
.countdown__value {
  font-family: var(--display);
  font-size: clamp(3.2rem, 13vw, 8rem);
  line-height: 0.85;
  color: var(--accent);
  letter-spacing: 0.01em;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 40px var(--accent-glow);
}
.countdown__label {
  margin-top: 0.6rem;
  font-size: clamp(0.58rem, 1.6vw, 0.8rem);
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}
.countdown__sep {
  font-family: var(--display);
  font-size: clamp(2.2rem, 9vw, 6rem);
  color: var(--ink-4); line-height: 0.85;
  align-self: flex-start; padding-top: 0.08em;
}
@media (max-width: 480px) {
  .countdown__sep { display: none; }
  .countdown { gap: 9px; }
}
.countdown__standby {
  margin: clamp(2rem, 5vw, 3rem) auto 0;
  font-family: var(--display);
  font-size: clamp(1.6rem, 5vw, 3rem);
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--accent);
}

/* ---------- Roster (TNPP reveal — the forty) ---------- */
.roster-section { padding: clamp(40px, 6vw, 80px) 0 var(--section-y); background: var(--bg); }
.roster {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 1100px; margin: 0 auto;
}
@media (min-width: 820px) { .roster { grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 4vw, 5rem); } }
.roster-col__head {
  display: flex; align-items: baseline; gap: 0.6rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 2rem);
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--ink);
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0.25rem;
}
.roster-col__count { color: var(--accent); }
.roster-row {
  display: grid;
  grid-template-columns: 2.4rem 1fr auto;
  align-items: baseline;
  gap: 0.85rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--line);
}
.roster-row__num {
  font-family: var(--display);
  font-size: 1.05rem; color: var(--accent);
  font-variant-numeric: tabular-nums; letter-spacing: 0.04em;
}
.roster-row__name {
  font-family: var(--body); font-weight: 700;
  font-size: clamp(0.98rem, 2vw, 1.12rem);
  color: var(--ink); letter-spacing: -0.005em;
}
.roster-row__club {
  font-size: 0.76rem; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: 0.06em; text-align: right;
}
/* cascade reveal (JS-gated) */
.js .roster-row__num,
.js .roster-row__name,
.js .roster-row__club {
  opacity: 0; transform: translateY(20px);
  transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
  will-change: opacity, transform;
}
.js .roster-row.is-in .roster-row__num  { opacity: 1; transform: none; transition-delay: 0s; }
.js .roster-row.is-in .roster-row__name { opacity: 1; transform: none; transition-delay: 0.03s; }
.js .roster-row.is-in .roster-row__club { opacity: 1; transform: none; transition-delay: 0.06s; }
@media (prefers-reduced-motion: reduce) {
  .js .roster-row__num,
  .js .roster-row__name,
  .js .roster-row__club { opacity: 1; transform: none; transition: none; }
}

/* ---------- Message + CTA strip (reveal, roles) ---------- */
.message {
  padding: var(--section-y) 0;
  background: linear-gradient(180deg, var(--bg) 0%, var(--navy-deep) 100%);
  text-align: center;
}
.message__inner { max-width: 760px; margin: 0 auto; }
.message__body {
  margin-top: 1.5rem;
  font-size: 1.08rem; line-height: 1.75; color: var(--ink-2);
  display: flex; flex-direction: column; gap: 1.1rem;
}
.message__body strong { color: var(--ink); }
.cta-strip {
  position: relative;
  padding: var(--section-y) 0;
  background: var(--navy-deep);
  text-align: center;
  overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; top: 50%; left: 50%;
  width: clamp(360px, 60vw, 720px); height: clamp(360px, 60vw, 720px);
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(255,214,10,0.16) 0%, transparent 65%);
  z-index: 0;
}
.cta-strip__inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; }
.cta-strip .btn { margin-top: 1.5rem; }
.cta-strip__deadline {
  margin-top: 1.25rem;
  font-size: 0.82rem; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3); font-weight: 600;
}

/* ---------- Role cards (roles) ---------- */
.roles-section { padding: var(--section-y) 0; background: var(--bg); }
.role-grid { margin-top: 2.75rem; display: grid; grid-template-columns: 1fr; gap: 1.25rem; }
@media (min-width: 860px) { .role-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }
.role-card {
  display: flex; flex-direction: column;
  padding: 2rem 1.75rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  transition: transform 0.5s var(--ease-out), border-color 0.5s, background 0.5s;
}
.role-card:hover { transform: translateY(-4px); border-color: rgba(255,214,10,0.35); background: var(--surface-2); }
.role-card__icon {
  width: 52px; height: 52px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: var(--r-md);
  background: rgba(255,214,10,0.1);
  border: 1px solid rgba(255,214,10,0.25);
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.role-card__icon svg { width: 26px; height: 26px; }
.role-card__title {
  font-family: var(--display);
  font-size: 1.8rem; letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--accent); margin: 0 0 0.75rem; line-height: 1;
}
.role-card__desc { font-size: 0.95rem; color: var(--ink-2); line-height: 1.65; }

/* ---------- Generic centered section head (sub-pages) ---------- */
.section-head--center { text-align: center; }

/* Countdown standby — gentle pulse while we wait */
.countdown__standby { animation: standbyPulse 1.5s var(--ease) infinite; }
@keyframes standbyPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.45; } }
@media (prefers-reduced-motion: reduce) { .countdown__standby { animation: none; } }

/* Reveal hero (.hero--short) — heavier overlay so the names + title dominate */
.hero--short .hero__overlay {
  background: linear-gradient(180deg, rgba(10,14,26,0.72) 0%, rgba(10,14,26,0.55) 40%, rgba(10,14,26,0.85) 80%, rgba(10,14,26,0.97) 100%);
}
