/* ═══════════════════════════════════════════════
   LEGIÓN 360 — Premium Sports Media
   style.css v2.0
═══════════════════════════════════════════════ */

/* ── TOKENS ─────────────────────────────────── */
:root {
  --black:   #050505;
  --dark:    #0d0d0d;
  --dark-2:  #141414;
  --dark-3:  #1c1c1c;
  --gold:    #d4a72c;
  --gold-lt: #e8bf52;
  --gold-dk: #9e7a1a;
  --white:   #ffffff;
  --muted:   #8a8a8a;
  --muted-2: #c0b9ac;
  --accent:  #c0392b;

  --nav-h:   72px;
  --section-pad: clamp(80px, 10vw, 140px);

  --font-display: 'Bebas Neue', 'Impact', sans-serif;
  --font-cond:    'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;

  --ease-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-back: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ── RESET ───────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── TYPOGRAPHY HELPERS ──────────────────────── */
em { font-style: normal; color: var(--gold); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 3px;
  background: var(--gold);
  color: #000;
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.2s ease, transform 0.2s var(--ease-back), box-shadow 0.2s ease;
}
.btn-primary:hover {
  background: var(--gold-lt);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 167, 44, 0.35);
}
.btn-primary.btn-large {
  padding: 18px 48px;
  font-size: 1.15rem;
}
.btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 14px 32px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease-back);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ── SECTION SHARED ──────────────────────────── */
.section {
  position: relative;
  padding: var(--section-pad) 0;
}
.section-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.section-label {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  position: relative;
  padding-left: 24px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 14px;
  height: 2px;
  background: var(--gold);
}
.section-label.light { color: var(--white); }
.section-label.light::before { background: var(--white); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 6.5rem);
  line-height: 0.92;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
}

/* ═══════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: background 0.4s ease, backdrop-filter 0.4s ease, box-shadow 0.4s ease;
}
.navbar.scrolled {
  background: rgba(5,5,5,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-inner {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 56px);
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 48px;
  width: auto;
  border-radius: 8px;
  object-fit: contain;
  filter: drop-shadow(0 2px 12px rgba(212,167,44,0.2));
  transition: filter 0.2s, transform 0.2s;
}
.nav-logo img:hover {
  filter: drop-shadow(0 4px 20px rgba(212,167,44,0.45));
  transform: scale(1.03);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}
.nav-links a {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s var(--ease-expo);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.nav-cta {
  background: var(--gold);
  color: #000;
  padding: 9px 22px;
  border-radius: 3px;
  font-weight: 800;
}
.nav-links a.nav-cta::after { display: none; }
.nav-links a.nav-cta:hover { background: var(--gold-lt); color: #000; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ═══════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transform: scale(1.04);
  animation: heroZoom 14s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.00); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.45) 40%,
    rgba(0,0,0,0.85) 100%
  );
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 40%, rgba(0,0,0,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 clamp(20px, 5vw, 60px);
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeUp 0.8s var(--ease-expo) 0.2s both;
}
.pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 0 rgba(212,167,44,0.6);
  animation: pulseDot 2s infinite;
}
@keyframes pulseDot {
  0%   { box-shadow: 0 0 0 0 rgba(212,167,44,0.6); }
  70%  { box-shadow: 0 0 0 8px rgba(212,167,44,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,167,44,0); }
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(6rem, 22vw, 18rem);
  line-height: 0.86;
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 28px;
}
.hero-title em {
  display: block;
  -webkit-text-stroke: 2px var(--gold);
  color: transparent;
  font-style: normal;
}
.line-reveal {
  display: block;
  overflow: hidden;
  animation: lineSlide 1s var(--ease-expo) 0.4s both;
}
.line-reveal.delay-1 { animation-delay: 0.6s; }
@keyframes lineSlide {
  from { transform: translateY(110%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.hero-sub {
  font-family: var(--font-cond);
  font-weight: 400;
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  color: var(--muted-2);
  letter-spacing: 0.06em;
  margin-bottom: 40px;
  animation: fadeUp 0.8s var(--ease-expo) 0.9s both;
}
.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.8s var(--ease-expo) 1.1s both;
}

/* scroll cue */
.hero-scroll-cue {
  position: absolute;
  bottom: 100px;
  left: clamp(24px, 4vw, 56px);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  writing-mode: vertical-lr;
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: fadeIn 1s 1.6s both;
}
.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, rgba(212,167,44,0.8), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { transform: scaleY(1); opacity: 1; }
  50%      { transform: scaleY(0.6); opacity: 0.4; }
}

/* ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 4;
  background: rgba(212,167,44,0.93);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: tickerScroll 40s linear infinite;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000;
}
@keyframes tickerScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════
   BRAND BANNER
═══════════════════════════════════════════════ */
.brand-banner {
  position: relative;
  height: clamp(300px, 45vw, 580px);
  overflow: hidden;
  display: flex;
  align-items: center;
}
.banner-bg {
  position: absolute;
  inset: 0;
}
.banner-bg img {
  transform: scale(1.05);
  transition: transform 0.6s ease;
}
.brand-banner:hover .banner-bg img { transform: scale(1.02); }
.banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.5) 50%,
    rgba(0,0,0,0.15) 100%
  );
}
.banner-content {
  position: relative;
  z-index: 2;
  padding: 0 clamp(32px, 8vw, 120px);
}
.banner-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.banner-headline {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
}

/* ═══════════════════════════════════════════════
   FEATURED COVERAGE
═══════════════════════════════════════════════ */
.featured {
  background: var(--dark);
}
.cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  margin-top: 56px;
}
.card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  background: var(--dark-2);
  transition: transform 0.4s var(--ease-expo);
}
.card:hover { transform: translateY(-4px); }
.card--large {
  grid-row: span 1;
}
.card--stack {
  grid-row: span 1;
}
.card-img-wrap {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.card--large .card-img-wrap { height: 320px; }
.card-img-wrap img {
  transition: transform 0.7s var(--ease-expo);
}
.card:hover .card-img-wrap img { transform: scale(1.05); }
.card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
}
.card-body {
  padding: 24px 28px 28px;
}
.card-tag {
  display: inline-block;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  border: 1px solid var(--gold-dk);
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 14px;
}
.card-body h3 {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.card-body p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap 0.2s;
}
.card-link:hover { gap: 14px; }
.card-link svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* stats card */
.stats-card {
  grid-column: span 2;
  background: linear-gradient(135deg, var(--dark-3), var(--dark-2));
  border-radius: 4px;
  border: 1px solid rgba(212,167,44,0.12);
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 48px 40px;
  gap: 24px;
}
.stat {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
}
.stat-divider {
  width: 1px;
  height: 64px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ═══════════════════════════════════════════════
   COMMUNITY SPLIT
═══════════════════════════════════════════════ */
.community {
  background: var(--black);
  overflow: hidden;
}
.community-split {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.img-frame {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.img-frame img { transition: transform 0.8s var(--ease-expo); }
.img-frame:hover img { transform: scale(1.04); }
.img-frame-accent {
  position: absolute;
  bottom: -4px;
  right: -4px;
  width: 60%;
  height: 60%;
  border-bottom: 3px solid var(--gold);
  border-right: 3px solid var(--gold);
  border-radius: 0 0 4px 0;
  pointer-events: none;
}
.community-text-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.body-text {
  color: var(--muted-2);
  font-size: 1.05rem;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 480px;
}
.feature-list {
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-list li {
  font-family: var(--font-cond);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted-2);
}
.check { color: var(--gold); font-size: 0.7rem; }

/* ═══════════════════════════════════════════════
   SPOTLIGHT — NFL
═══════════════════════════════════════════════ */
.spotlight {
  position: relative;
  min-height: 650px;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}
.spotlight-bg {
  position: absolute;
  inset: 0;
}
.spotlight-bg img {
  object-position: center 20%;
  filter: saturate(0.8);
}
.spotlight-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.92) 0%,
    rgba(0,0,0,0.65) 55%,
    rgba(0,0,0,0.1) 100%
  );
}
.spotlight-content {
  position: relative;
  z-index: 2;
  padding: var(--section-pad) clamp(32px, 8vw, 120px);
  max-width: 660px;
}
.spotlight-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.spotlight-body {
  color: var(--muted-2);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 420px;
}
.spotlight-number {
  position: absolute;
  right: clamp(20px, 6vw, 80px);
  bottom: -20px;
  font-family: var(--font-display);
  font-size: clamp(8rem, 22vw, 22rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(212,167,44,0.15);
  line-height: 1;
  pointer-events: none;
  z-index: 1;
  user-select: none;
}

/* ═══════════════════════════════════════════════
   WORLD CUP
═══════════════════════════════════════════════ */
.worldcup {
  background: var(--dark);
}
.wc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.wc-text { display: flex; flex-direction: column; align-items: flex-start; }
.wc-img {
  position: relative;
}
.wc-img-inner {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 3/4;
}
.wc-img-inner img { transition: transform 0.8s var(--ease-expo); }
.wc-img-inner:hover img { transform: scale(1.04); }
.wc-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 50%);
}
.wc-badge {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  box-shadow: 0 0 0 6px rgba(212,167,44,0.15);
  z-index: 3;
}
.badge-year {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: #000;
  line-height: 1;
}
.badge-label {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0,0,0,0.7);
  line-height: 1.2;
  text-align: center;
}

/* ═══════════════════════════════════════════════
   CTA SECTION
═══════════════════════════════════════════════ */
.cta-section {
  background: var(--black);
  text-align: center;
  overflow: hidden;
}
.cta-inner {
  position: relative;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 64px);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,167,44,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-eyebrow {
  font-family: var(--font-cond);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.cta-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.cta-sub {
  color: var(--muted);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 44px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════ */
.footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 72px clamp(20px, 5vw, 64px) 56px;
  display: grid;
  grid-template-columns: 1.4fr 2fr;
  gap: clamp(40px, 6vw, 96px);
}
.footer-brand img {
  height: 56px;
  width: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 20px;
}
.footer-brand p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 260px;
}
.footer-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer-col h4 {
  font-family: var(--font-cond);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col a {
  font-size: 0.92rem;
  color: var(--muted);
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px clamp(20px, 5vw, 64px);
  max-width: 1240px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--font-cond);
  font-size: 0.82rem;
  color: var(--muted);
}
.footer-tagline { color: rgba(212,167,44,0.6); }

/* ═══════════════════════════════════════════════
   ANIMATIONS
═══════════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* scroll-reveal class applied by JS */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s var(--ease-expo), transform 0.75s var(--ease-expo);
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5,5,5,0.98);
    align-items: center;
    justify-content: center;
    gap: 40px;
    z-index: 998;
  }
  .nav-links.open a {
    font-size: 1.6rem;
  }
  .nav-links.open a::after { display: none; }
  .nav-links.open a.nav-cta {
    padding: 12px 32px;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }
  .stats-card { grid-column: span 1; }

  .community-split,
  .wc-grid {
    grid-template-columns: 1fr;
  }
  .community-img-col { order: 2; }
  .community-text-col { order: 1; }

  .img-frame {
  aspect-ratio: auto;
  max-height: 420px;
}

.img-frame img {
  object-fit: contain;
  background: #000;
}
  .wc-img-inner { aspect-ratio: 16/10; }
  .wc-badge { width: 80px; height: 80px; top: -12px; right: -12px; }
  .badge-year { font-size: 1.4rem; }

  .spotlight-number { display: none; }

  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .hero-title { font-size: clamp(5rem, 25vw, 8rem); }
  .hero-title em { -webkit-text-stroke-width: 1.5px; }

  .banner-headline { font-size: clamp(2.8rem, 12vw, 5rem); }

  .spotlight-title { font-size: clamp(4rem, 18vw, 7rem); }
  .cta-title { font-size: clamp(4rem, 18vw, 8rem); }

  .stats-card {
    flex-direction: column;
    padding: 36px 24px;
  }
  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .footer-nav { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 700px) {
  .brand-banner {
    height: auto;
    min-height: 0;
    padding: 64px 20px;
    display: block;
    background: #050505;
  }

  .banner-bg {
    position: relative;
    inset: auto;
    width: 100%;
    max-width: 360px;
    margin: 0 auto 28px;
    border-radius: 16px;
    overflow: hidden;
  }

  .banner-bg img {
    width: 100%;
    height: auto;
    object-fit: contain;
    transform: none;
  }

  .banner-overlay {
    display: none;
  }

  .banner-content {
    position: relative;
    padding: 0;
    text-align: center;
  }

  .banner-label {
    font-size: 0.72rem;
  }

  .banner-headline {
    font-size: clamp(3rem, 18vw, 5rem);
  }
}
