/* ==========================================================================
   SAFRA Annual Report 2026 — Concept 1 (Dark)
   Same content/facts as Concept 2, different visual language: dark surface,
   glowing brand-red/gold accents, glassmorphic cards, bigger display type,
   and "fly-in" scroll transitions. Contrast pairs below are checked against
   WCAG 2.1 AA (4.5:1 body, 3:1 large text/UI) — the accent colours were
   picked specifically because they clear 4.5:1 on this near-black surface,
   so they're usable for body-scale text, not just decoration.
   ========================================================================== */

:root {
  --bg: #0A090D;
  --bg-alt: #121016;
  --red: #FF3B4E;
  --gold: #FFB84D;
  --white: #F5F4F7;
  --muted: #A8A6B3;
  --border: rgba(255,255,255,0.09);
  --border-strong: rgba(255,255,255,0.18);
  --glass: rgba(255,255,255,0.035);
  --glass-strong: rgba(255,255,255,0.055);

  --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --space-3: 0.5rem;
  --space-4: 0.75rem;
  --space-5: 1rem;
  --space-6: 1.25rem;
  --space-7: 1.5rem;
  --space-8: 2rem;
  --space-9: 2.5rem;
  --space-10: 3rem;
  --space-12: 4rem;
  --space-14: 5rem;

  --radius: 18px;
  --container: 1200px;
  --ease-fly: cubic-bezier(0.16, 1, 0.3, 1);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--white);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: var(--red); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; top: -100px; left: var(--space-5);
  background: var(--white); color: var(--bg);
  padding: var(--space-4) var(--space-6);
  border-radius: 0 0 8px 8px; z-index: 1000;
  transition: top .2s var(--ease); font-weight: 700;
}
.skip-link:focus { top: 0; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 2px; }

.demo-flag {
  background: var(--bg-alt);
  color: var(--muted);
  font-size: 0.8125rem;
  text-align: center;
  padding: var(--space-3) var(--space-5);
  border-bottom: 1px solid var(--border);
  position: relative;
  z-index: 2;
}

/* Ambient glow field — fixed behind everything, shows through glass cards */
.glow-field { position: fixed; inset: 0; overflow: hidden; z-index: 0; pointer-events: none; }
.glow { position: absolute; border-radius: 50%; filter: blur(90px); opacity: 0.28; }
.glow-red { width: 640px; height: 640px; background: var(--red); top: -160px; left: -120px; animation: drift-a 20s ease-in-out infinite alternate; }
.glow-gold { width: 520px; height: 520px; background: var(--gold); bottom: -180px; right: -140px; animation: drift-b 24s ease-in-out infinite alternate; }
@keyframes drift-a { from { transform: translate(0,0); } to { transform: translate(90px, 70px); } }
@keyframes drift-b { from { transform: translate(0,0); } to { transform: translate(-70px, -50px); } }
@media (prefers-reduced-motion: reduce) { .glow { animation: none; } }

.wrap { max-width: var(--container); margin-inline: auto; padding-inline: var(--space-6); position: relative; z-index: 1; }
.wrap.narrow { max-width: 780px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(10,9,13,0.72);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding-block: var(--space-4); gap: var(--space-6); }
.brand { display: flex; flex-direction: column; text-decoration: none; line-height: 1.1; }
.brand-mark {
  font-family: var(--font-display); font-weight: 700; font-size: 1.35rem;
  background: linear-gradient(90deg, var(--white), var(--red));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.brand-sub { font-size: 0.68rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.1em; }

.nav-toggle {
  display: none; background: var(--glass); border: 1px solid var(--border-strong);
  border-radius: 8px; width: 44px; height: 44px; align-items: center; justify-content: center; cursor: pointer;
}
.nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--white); position: relative;
}
.nav-toggle-bar::before { position: absolute; top: -6px; }
.nav-toggle-bar::after { position: absolute; top: 6px; }

.primary-nav { display: flex; gap: var(--space-6); flex-wrap: wrap; }
.primary-nav a {
  text-decoration: none; color: var(--muted); font-weight: 600; font-size: 0.86rem;
  position: relative; padding-bottom: 3px;
}
.primary-nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: linear-gradient(90deg, var(--red), var(--gold));
  transition: right 0.25s var(--ease);
}
.primary-nav a:hover, .primary-nav a:focus-visible { color: var(--white); }
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { right: 0; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute; top: 100%; left: 0; right: 0; background: var(--bg);
    flex-direction: column; padding: var(--space-6); gap: var(--space-5);
    border-bottom: 1px solid var(--border); display: none;
  }
  .primary-nav.is-open { display: flex; }
}

/* ---------- Section rhythm ---------- */
section { padding-block: var(--space-14); position: relative; z-index: 1; }
.section-tag {
  font-family: var(--font-display); font-weight: 700; font-size: 0.8rem;
  text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold);
  margin: 0 0 var(--space-4);
}
.section-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2rem, 1.3rem + 2.8vw, 3.25rem);
  color: var(--white); margin: 0 0 var(--space-6); line-height: 1.08; letter-spacing: -0.01em;
}
.lede { font-size: 1.08rem; max-width: 62ch; color: var(--muted); }

/* ---------- Hero ---------- */
.hero { min-height: 94vh; display: flex; align-items: flex-end; padding-block: var(--space-14) var(--space-12); overflow: hidden; position: relative; }
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  animation: hero-kenburns 22s var(--ease) forwards;
  filter: saturate(1.05) contrast(1.05);
}
@keyframes hero-kenburns { from { transform: scale(1); } to { transform: scale(1.1); } }
@media (prefers-reduced-motion: reduce) { .hero-bg { animation: none; } }
.hero-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,9,13,0.55) 0%, rgba(10,9,13,0.45) 35%, rgba(10,9,13,0.97) 100%);
}
.hero-content { position: relative; z-index: 1; }

@keyframes hero-fade-up { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
.hero-content > * { animation: hero-fade-up 0.75s var(--ease-fly) both; }
.hero-content > *:nth-child(2) { animation-delay: 0.08s; }
.hero-content > *:nth-child(3) { animation-delay: 0.16s; }
.hero-content > *:nth-child(4) { animation-delay: 0.26s; }
@media (prefers-reduced-motion: reduce) { .hero-content > * { animation: none; opacity: 1; transform: none; } }

.kicker {
  font-family: var(--font-display); font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.18em; font-size: 0.85rem; color: var(--gold); margin: 0 0 var(--space-5);
}
.hero-heading {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.75rem, 1.4rem + 6.5vw, 6rem);
  line-height: 0.98; letter-spacing: -0.02em; margin: 0 0 var(--space-6);
}
.hero-heading .line { display: block; }
.gradient-text {
  background: linear-gradient(90deg, var(--red) 0%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-lede { font-size: clamp(1.05rem, 0.9rem + 0.5vw, 1.3rem); max-width: 48ch; color: rgba(245,244,247,0.85); margin: 0 0 var(--space-8); }
.scroll-cue {
  display: inline-flex; width: 48px; height: 48px; border: 1px solid var(--border-strong);
  border-radius: 50%; align-items: center; justify-content: center; color: var(--white);
  text-decoration: none; font-size: 1.15rem; background: var(--glass); backdrop-filter: blur(6px);
}

/* ---------- Welcome ---------- */
.welcome { background: var(--bg); }
.pull-quote { margin: var(--space-9) 0 0; padding: var(--space-7); border-radius: var(--radius); background: var(--glass); border: 1px solid var(--border); border-left: 3px solid var(--red); }
.pull-quote p { font-family: var(--font-display); font-weight: 500; font-size: 1.2rem; color: var(--white); margin: 0 0 var(--space-4); line-height: 1.45; }
.pull-quote footer { font-size: 0.85rem; color: var(--muted); }

/* ---------- Highlights ---------- */
.highlights { background: var(--bg-alt); }
.stat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-6); }
@media (max-width: 1023px) { .stat-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 511px) { .stat-grid { grid-template-columns: 1fr; } }
.stat-card {
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  padding: var(--space-7); transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}
.stat-card:hover { border-color: rgba(255,59,78,0.5); transform: translateY(-3px); }
.stat-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.1rem, 1.6rem + 1.6vw, 2.9rem);
  color: var(--white); margin: 0 0 var(--space-3);
  text-shadow: 0 0 24px rgba(255,59,78,0.45);
}
.stat-label { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- So Drama! ---------- */
.culture { background: var(--bg); }
.culture-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
@media (max-width: 1023px) { .culture-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 511px) { .culture-grid { grid-template-columns: 1fr; } }
.culture-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-7); }
.culture-number { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--gold); margin: 0 0 var(--space-3); }
.culture-label { margin: 0; font-size: 0.92rem; color: var(--muted); }

.framed-photo { margin: var(--space-8) 0 0; }
.framed-photo img { border-radius: var(--radius); aspect-ratio: 16/9; object-fit: cover; width: 100%; border: 1px solid var(--border); }
.framed-photo figcaption { margin-top: var(--space-4); font-size: 0.85rem; color: var(--muted); }

/* ---------- Privileges ---------- */
.privileges { background: var(--bg-alt); }
.privilege-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin-top: var(--space-8); }
@media (max-width: 1023px) { .privilege-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 511px) { .privilege-grid { grid-template-columns: 1fr; } }
.privilege-card { border: 1px solid var(--border); background: var(--glass); border-radius: var(--radius); padding: var(--space-7); }
.privilege-number { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--red); margin: 0 0 var(--space-3); }
.privilege-label { margin: 0; color: var(--muted); font-size: 0.95rem; }

/* ---------- Events ---------- */
.events { background: var(--bg); }
.story-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-7); }
@media (max-width: 1023px) { .story-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 767px) { .story-grid { grid-template-columns: 1fr; } }
.story-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; transition: border-color 0.25s var(--ease); }
.story-card:hover { border-color: var(--border-strong); }
.story-media { overflow: hidden; }
.story-media img { aspect-ratio: 16/10; object-fit: cover; width: 100%; transition: transform 0.5s var(--ease); }
.story-card:hover .story-media img { transform: scale(1.06); }
.story-body { padding: var(--space-6) var(--space-7) var(--space-7); }
.story-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--gold); margin: 0 0 var(--space-3); }
.story-body h3 { font-family: var(--font-display); font-weight: 700; margin: 0 0 var(--space-3); color: var(--white); }
.story-body p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* ---------- Sporting Achievements ---------- */
.sports { background: var(--bg-alt); }
.sport-chip-grid { display: flex; flex-wrap: wrap; gap: var(--space-4); margin-top: var(--space-7); }
.sport-chip {
  background: var(--glass); border: 1px solid var(--border-strong); border-radius: 999px;
  padding: var(--space-4) var(--space-7); font-weight: 600; font-size: 0.9rem; color: var(--white);
}
.sport-highlight { margin-top: var(--space-9); display: flex; align-items: baseline; gap: var(--space-7); flex-wrap: wrap; }
.sport-highlight-number {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(2.5rem, 2rem + 2vw, 3.5rem); color: var(--white);
  text-shadow: 0 0 30px rgba(255,184,77,0.5); margin: 0;
}
.sport-highlight-label { margin: 0; max-width: 52ch; font-size: 0.98rem; color: var(--muted); }

/* ---------- Featured article ---------- */
.feature-article {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: var(--space-9); align-items: center;
  background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; margin-bottom: var(--space-9);
}
@media (max-width: 900px) { .feature-article { grid-template-columns: 1fr; } }
.feature-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4/3; }
.feature-body { padding: var(--space-8) var(--space-9) var(--space-8) 0; }
@media (max-width: 900px) { .feature-body { padding: 0 var(--space-7) var(--space-8); } }
.feature-body h3 {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(1.4rem, 1.1rem + 1.1vw, 1.85rem);
  margin: 0 0 var(--space-5); color: var(--white);
}
.feature-body p { margin: 0 0 var(--space-5); font-size: 0.98rem; color: var(--muted); }
.feature-stats { display: flex; gap: var(--space-8); margin-top: var(--space-7); padding-top: var(--space-7); border-top: 1px solid var(--border); flex-wrap: wrap; }
.feature-stats div { display: flex; flex-direction: column; gap: var(--space-3); }
.feature-stats strong { font-family: var(--font-display); font-weight: 700; font-size: 1.3rem; color: var(--white); text-shadow: 0 0 18px rgba(255,59,78,0.5); }
.feature-stats span { font-size: 0.82rem; color: var(--muted); }

/* ---------- Data table ---------- */
.table-wrap { overflow-x: auto; margin: var(--space-8) 0; border-radius: var(--radius); border: 1px solid var(--border); }
.data-table { width: 100%; border-collapse: collapse; background: var(--glass); font-size: 0.92rem; }
.data-table caption {
  text-align: left; padding: var(--space-6) var(--space-7); font-weight: 700;
  font-family: var(--font-display); color: var(--white); background: var(--glass-strong);
  border-bottom: 1px solid var(--border);
}
.data-table th, .data-table td { padding: var(--space-5) var(--space-7); text-align: left; white-space: nowrap; }
.data-table thead th { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.06em; color: var(--gold); border-bottom: 2px solid var(--border-strong); }
.data-table tbody th { font-weight: 600; color: var(--white); white-space: normal; }
.data-table tbody tr:not(:last-child) td,
.data-table tbody tr:not(:last-child) th { border-bottom: 1px solid var(--border); }
.data-table tbody td { color: var(--muted); }

/* ---------- Chart ---------- */
.chart-block { margin: var(--space-9) 0; background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-8); }
.chart-title { font-family: var(--font-display); font-weight: 700; font-size: 1rem; color: var(--white); margin: 0 0 var(--space-7); }
.bar-chart { width: 100%; height: auto; max-width: 440px; }
.chart-baseline { stroke: var(--border-strong); stroke-width: 1; }
.chart-bar-1 { fill: rgba(255,59,78,0.3); }
.chart-bar-2 { fill: rgba(255,59,78,0.6); }
.chart-bar-3 { fill: var(--red); filter: drop-shadow(0 0 10px rgba(255,59,78,0.65)); }
.chart-value { font-family: var(--font-display); font-weight: 700; font-size: 15px; fill: var(--white); text-anchor: middle; }
.chart-cat { font-family: var(--font-body); font-size: 12px; fill: var(--muted); text-anchor: middle; }

/* ---------- Awards / roadmap timeline ---------- */
.awards { background: var(--bg); }
.timeline { list-style: none; margin: 0 0 var(--space-9); padding: 0 0 0 var(--space-7); position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(180deg, var(--red), var(--gold));
  opacity: 0.5;
}
.timeline-item { position: relative; padding-bottom: var(--space-9); }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute; left: calc(-1 * var(--space-7) + 1px); top: 6px;
  width: 11px; height: 11px; border-radius: 50%; background: var(--red);
  box-shadow: 0 0 12px 2px rgba(255,59,78,0.7);
}
.timeline-index { font-family: var(--font-display); font-weight: 700; font-size: 0.8rem; color: var(--gold); letter-spacing: 0.1em; }
.timeline-item h3 { font-family: var(--font-display); font-weight: 700; margin: var(--space-3) 0; color: var(--white); font-size: 1.15rem; }
.timeline-item p { margin: 0; color: var(--muted); }

/* ---------- Looking forward ---------- */
.forward { background: var(--bg-alt); }
.forward-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-7); margin-top: var(--space-8); }
@media (max-width: 900px) { .forward-grid { grid-template-columns: 1fr; } }
.forward-card { border: 1px solid var(--border); background: var(--glass); border-radius: var(--radius); padding: var(--space-7); }
.forward-card h3 { font-family: var(--font-display); font-weight: 700; color: var(--white); margin: 0 0 var(--space-4); font-size: 1.05rem; }
.forward-card p { margin: 0; color: var(--muted); font-size: 0.92rem; }

/* ---------- Financials ---------- */
.financials { background: var(--bg); }
.fin-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-6); margin: var(--space-8) 0 var(--space-9); }
@media (max-width: 1023px) { .fin-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 511px) { .fin-grid { grid-template-columns: 1fr; } }
.fin-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--radius); padding: var(--space-7); }
.fin-number { font-family: var(--font-display); font-weight: 700; font-size: 1.6rem; color: var(--white); margin: 0 0 var(--space-3); }
.fin-label { margin: 0; font-size: 0.88rem; color: var(--muted); }
.btn-download {
  display: inline-block;
  background: linear-gradient(90deg, var(--red), var(--gold));
  color: var(--bg); text-decoration: none; font-weight: 700;
  padding: var(--space-5) var(--space-8); border-radius: 999px; margin-top: var(--space-4);
  transition: filter 0.2s var(--ease), transform 0.2s var(--ease);
}
.btn-download:hover, .btn-download:focus-visible { filter: brightness(1.1); transform: translateY(-2px); }
.fine-print { font-size: 0.8rem; color: var(--muted); opacity: 0.8; margin-top: var(--space-4); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-alt); color: var(--muted); padding-block: var(--space-9); border-top: 1px solid var(--border); position: relative; z-index: 1; }
.footer-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: var(--space-5); }
.footer-inner .brand-mark { font-size: 1.1rem; }
.footer-tagline { margin: var(--space-3) 0 0; font-size: 0.85rem; }
.footer-meta { margin: 0; font-size: 0.8rem; }

/* ---------- Scroll progress bar ---------- */
.scroll-progress {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  z-index: 200;
  background: rgba(255,255,255,0.06);
  pointer-events: none;
}
.scroll-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--red), var(--gold));
  box-shadow: 0 0 12px rgba(255,59,78,0.6);
}

/* ---------- Floating progress badge ---------- */
.progress-badge {
  position: fixed;
  right: var(--space-6);
  bottom: var(--space-6);
  z-index: 190;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  background: var(--bg-alt);
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  padding: 6px 14px 6px 6px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.progress-badge.is-visible { opacity: 1; transform: translateY(0); }
.progress-ring { width: 32px; height: 32px; transform: rotate(-90deg); }
.progress-ring-track { fill: none; stroke: var(--border-strong); stroke-width: 3; }
.progress-ring-fill {
  fill: none;
  stroke: var(--red);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 106.8;
  stroke-dashoffset: 106.8;
  filter: drop-shadow(0 0 4px rgba(255,59,78,0.8));
  transition: stroke-dashoffset 0.1s linear;
}
.progress-badge-label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--white);
  white-space: nowrap;
}
@media (max-width: 767px) { .progress-badge { display: none; } }

/* ---------- Quick-jump section nav ---------- */
.quickjump {
  position: fixed;
  top: 50%;
  right: var(--space-6);
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 13px;
  align-items: flex-end;
}
.quickjump a { position: relative; display: flex; align-items: center; justify-content: flex-end; gap: 10px; text-decoration: none; }
.qj-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-strong);
  flex-shrink: 0;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.qj-label {
  position: absolute;
  top: 50%;
  right: calc(100% + 10px);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translate(8px, -50%);
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
  pointer-events: none;
  white-space: nowrap;
}
.quickjump a:hover .qj-label,
.quickjump a:focus-visible .qj-label { opacity: 1; transform: translate(0, -50%); }
.quickjump a:hover .qj-dot,
.quickjump a:focus-visible .qj-dot,
.quickjump a.is-active .qj-dot {
  background: linear-gradient(90deg, var(--red), var(--gold));
  transform: scale(1.4);
  box-shadow: 0 0 0 4px rgba(255,59,78,0.22), 0 0 12px rgba(255,59,78,0.6);
}
.quickjump a.is-active .qj-label { color: var(--gold); }
@media (max-width: 900px) { .quickjump { display: none; } }
@media (prefers-reduced-motion: reduce) { .qj-dot, .qj-label { transition: none; } }

/* ---------- Hero parallax ---------- */
.hero-bg-wrap {
  position: absolute;
  top: -12%; left: 0; right: 0; bottom: -12%;
  will-change: transform;
}
.hero-bg-wrap .hero-bg { width: 100%; height: 100%; }

/* ---------- Scroll-linked image parallax ---------- */
.parallax { will-change: transform; }
@media (prefers-reduced-motion: reduce) { .parallax, .hero-bg-wrap { transform: none !important; } }

/* ---------- Fly-in reveal (respects reduced motion) ---------- */
.fly {
  opacity: 0;
  transform: translateY(52px) scale(0.95);
  transition: opacity 0.85s var(--ease-fly), transform 0.85s var(--ease-fly);
}
.fly-left {
  opacity: 0;
  transform: translate(-72px, 20px) rotate(-2.2deg) scale(0.94);
  transition: opacity 0.85s var(--ease-fly), transform 0.85s var(--ease-fly);
}
.fly-right {
  opacity: 0;
  transform: translate(72px, 20px) rotate(2.2deg) scale(0.94);
  transition: opacity 0.85s var(--ease-fly), transform 0.85s var(--ease-fly);
}
.fly.in-view, .fly-left.in-view, .fly-right.in-view { opacity: 1; transform: translate(0,0) rotate(0deg) scale(1); }

/* Cascade so grids feel choreographed, not N separate pop-ins */
.stat-grid > *:nth-child(1), .culture-grid > *:nth-child(1), .privilege-grid > *:nth-child(1),
.story-grid > *:nth-child(1), .fin-grid > *:nth-child(1), .forward-grid > *:nth-child(1),
.sport-chip-grid > *:nth-child(1) { transition-delay: 0ms; }
.stat-grid > *:nth-child(2), .culture-grid > *:nth-child(2), .privilege-grid > *:nth-child(2),
.story-grid > *:nth-child(2), .fin-grid > *:nth-child(2), .forward-grid > *:nth-child(2),
.sport-chip-grid > *:nth-child(2) { transition-delay: 80ms; }
.stat-grid > *:nth-child(3), .culture-grid > *:nth-child(3), .privilege-grid > *:nth-child(3),
.story-grid > *:nth-child(3), .fin-grid > *:nth-child(3), .forward-grid > *:nth-child(3),
.sport-chip-grid > *:nth-child(3) { transition-delay: 160ms; }
.stat-grid > *:nth-child(4), .culture-grid > *:nth-child(4), .privilege-grid > *:nth-child(4),
.story-grid > *:nth-child(4), .fin-grid > *:nth-child(4),
.sport-chip-grid > *:nth-child(4) { transition-delay: 240ms; }
.stat-grid > *:nth-child(5), .story-grid > *:nth-child(5),
.sport-chip-grid > *:nth-child(5) { transition-delay: 320ms; }
.stat-grid > *:nth-child(6), .story-grid > *:nth-child(6),
.sport-chip-grid > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  .fly, .fly-left, .fly-right { opacity: 1; transform: none; transition: none; }
}
