/* ============================================
   FIFA 2026 Newsletter — Styles
   ============================================ */

:root {
  --green-dark: #0a1f14;
  --green-mid: #1a472a;
  --green-light: #2d6a4f;
  --green-accent: #40916c;
  --gold: #d4af37;
  --gold-light: #f0d060;
  --white: #f5f5f0;
  --gray: #8a8a8a;
  --gray-dark: #2a2a2a;
  --black: #0a0a0a;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --header-h: 72px;
  --ticker-h: 40px;
}

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

html {
  font-size: 16px;
  scroll-behavior: auto;
}

html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  cursor: none;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---- Preloader ---- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-inner {
  text-align: center;
}

.preloader-ball {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--white) 33%, var(--black) 33%, var(--black) 66%, var(--white) 66%);
  margin: 0 auto 1.5rem;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.preloader-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.preloader-bar {
  width: 200px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 auto;
  overflow: hidden;
}

.preloader-bar-fill {
  width: 0%;
  height: 100%;
  background: var(--gold);
  transition: width 0.1s linear;
}

/* ---- Custom Cursor ---- */
.cursor {
  position: fixed;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s var(--ease-out-expo), height 0.3s var(--ease-out-expo), border-color 0.3s;
  mix-blend-mode: difference;
}

.cursor.hover {
  width: 64px;
  height: 64px;
  border-color: var(--gold);
}

.cursor-dot {
  position: fixed;
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.header.scrolled {
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
}

.nav-logo-img {
  height: 36px;
  width: auto;
  flex-shrink: 0;
}

.nav-logo-text {
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.2;
  white-space: nowrap;
}

.logo-wc {
  font-size: 2rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.logo-year {
  font-size: 1.25rem;
  color: var(--white);
  opacity: 0.7;
}

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

.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease-out-expo);
}

.nav-link:hover {
  opacity: 1;
  color: var(--gold);
}

.nav-link:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 0.5rem 1.25rem;
  border: 1px solid var(--gold);
  opacity: 1 !important;
  transition: background 0.3s, color 0.3s !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--black) !important;
}

.nav-cta::after {
  display: none;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Ticker ---- */
.ticker {
  position: relative;
  z-index: 10;
  height: var(--ticker-h);
  background: var(--gold);
  color: var(--black);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.ticker-label {
  flex-shrink: 0;
  padding: 0 1.25rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  background: var(--black);
  color: var(--gold);
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}

.ticker-track {
  flex: 1;
  overflow: hidden;
}

.ticker-content {
  display: flex;
  gap: 4rem;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
}

.ticker-content span {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- Hero ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}

#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border: 1px solid rgba(212, 175, 55, 0.3);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 2rem;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.9;
  margin-bottom: 1.5rem;
}

.title-line {
  display: block;
  font-size: clamp(4rem, 12vw, 10rem);
  letter-spacing: 0.02em;
}

.title-accent {
  color: var(--gold);
  -webkit-text-stroke: 0;
}

.hero-sub {
  max-width: 640px;
  font-size: 1.05rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform 0.3s var(--ease-out-expo), background 0.3s, color 0.3s, box-shadow 0.3s;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

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

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ---- Video Modal ---- */
.video-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.video-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.video-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 960px;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out-expo);
}

.video-modal.open .video-modal-content {
  transform: translateY(0) scale(1);
}

.video-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.video-modal-close:hover {
  opacity: 1;
  color: var(--gold);
}

.video-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.video-modal-player {
  width: 100%;
  max-height: 70vh;
  background: var(--black);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}

/* ---- Newsletter Modal ---- */
.newsletter-modal {
  position: fixed;
  inset: 0;
  z-index: 10001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.newsletter-modal.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.newsletter-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.newsletter-modal-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  height: min(85vh, 900px);
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.98);
  transition: transform 0.4s var(--ease-out-expo);
}

.newsletter-modal.open .newsletter-modal-content {
  transform: translateY(0) scale(1);
}

.newsletter-modal-close {
  position: absolute;
  top: -2.5rem;
  right: 0;
  background: none;
  border: none;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s, color 0.3s;
}

.newsletter-modal-close:hover {
  opacity: 1;
  color: var(--gold);
}

.newsletter-modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 1rem;
  text-transform: uppercase;
  flex-shrink: 0;
}

.newsletter-modal-frame {
  flex: 1;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: var(--black);
}

.hero-meta {
  display: none;
  align-items: center;
  gap: 2rem;
}

.meta-item {
  display: flex;
  flex-direction: column;
}

.meta-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--gold);
  line-height: 1;
}

.meta-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.5;
  margin-top: 0.25rem;
}

.meta-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  opacity: 0.4;
}

.hero-scroll span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-line {
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ---- Sections ---- */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-header {
  margin-bottom: 4rem;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--green-accent);
}

/* ---- The Story ---- */
.story-section {
  background: linear-gradient(180deg, var(--green-dark) 0%, var(--black) 100%);
}

.story-compare {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 2.5rem;
  align-items: stretch;
}

.story-column {
  display: flex;
  flex-direction: column;
}

.story-column-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.story-profile {
  display: grid;
  grid-template-columns: minmax(0, 42%) 1fr;
  gap: 1rem;
  align-items: stretch;
  flex: 1;
  min-height: var(--story-profile-h, 260px);
}

.story-photo {
  height: 100%;
  min-height: var(--story-profile-h, 260px);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.story-photo img {
  width: 100%;
  height: 100%;
  min-height: var(--story-profile-h, 260px);
  object-fit: cover;
  object-position: center top;
  display: block;
}

.story-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: var(--story-profile-h, 260px);
  padding: 1.5rem 1.25rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-top-width: 3px;
}

.story-stat-card--before {
  border-top-color: #e85d5d;
}

.story-stat-card--after {
  border-top-color: var(--green-accent);
}

.story-stat-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.story-stat-card--before .story-stat-name {
  color: #e85d5d;
}

.story-stat-card--after .story-stat-name {
  color: var(--green-accent);
}

.story-stat-value {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 6rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 0.35rem;
}

.story-flash--before {
  color: #ff6b6b;
}

.story-flash--after {
  color: #5eead4;
}

.story-flash {
  animation: storyFlash 1.4s ease-in-out infinite;
}

@keyframes storyFlash {
  0%, 100% {
    opacity: 1;
    filter: brightness(1.25);
    text-shadow:
      0 0 20px currentColor,
      0 0 40px currentColor,
      0 0 80px rgba(255, 255, 255, 0.15);
  }
  50% {
    opacity: 0.7;
    filter: brightness(0.95);
    text-shadow:
      0 0 8px currentColor,
      0 0 16px currentColor;
  }
}

.story-stat-caption {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.45);
}

.story-highlights {
  list-style: none;
  max-width: 640px;
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.story-highlights li {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.65);
  padding-left: 1.25rem;
  position: relative;
}

.story-highlights li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--gold);
}

.story-highlights strong {
  color: var(--gold);
  font-weight: 600;
}

.story-footer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
}

.story-quote {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.55);
  max-width: 520px;
}

.story-quote strong {
  color: var(--white);
  font-weight: 600;
}

.story-video-btn {
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  flex-shrink: 0;
}

.story-video-thumb {
  position: relative;
  width: 220px;
  height: 160px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s, transform 0.3s var(--ease-out-expo);
}

.story-video-btn:hover .story-video-thumb {
  border-color: rgba(212, 175, 55, 0.4);
  transform: scale(1.03);
}

.story-video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.story-video-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--white);
  background: rgba(10, 10, 10, 0.35);
}

.story-video-play::before {
  content: '';
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(64, 145, 108, 0.9);
  position: absolute;
  box-shadow: 0 0 24px rgba(64, 145, 108, 0.5);
}

.story-video-play {
  z-index: 1;
  padding-left: 4px;
}

/* ---- Featured Bento Cards ---- */
.featured-bento {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  grid-template-rows: repeat(2, minmax(220px, 1fr));
  gap: 1.25rem;
  min-height: 520px;
}

.bento-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo), box-shadow 0.4s;
}

.bento-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.25), transparent 50%, rgba(255, 255, 255, 0.05));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.4s;
}

.bento-card:hover,
.bento-card:focus-visible {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
  outline: none;
}

.bento-card:hover::before,
.bento-card:focus-visible::before {
  opacity: 1;
}

.bento-card-main {
  grid-row: 1 / 3;
}

.bento-card-media {
  position: relative;
  flex: 1;
  min-height: 160px;
  background: var(--bento-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.bento-card-main .bento-card-media {
  min-height: 280px;
}

.bento-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.65) 100%);
  pointer-events: none;
}

.bento-card-icon {
  font-size: 3rem;
  filter: grayscale(0.2);
  transition: transform 0.5s var(--ease-out-expo);
  z-index: 1;
}

.bento-card-main .bento-card-icon {
  font-size: 4rem;
}

.bento-card:hover .bento-card-icon {
  transform: scale(1.15);
}

.bento-play {
  position: absolute;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
}

.bento-card:hover .bento-play {
  background: rgba(212, 175, 55, 0.15);
  border-color: var(--gold);
  transform: scale(1.05);
}

.bento-play-icon {
  font-size: 0.65rem;
}

.bento-card-body {
  padding: 1.5rem;
}

.bento-card-main .bento-card-body {
  padding: 1.75rem 2rem 2rem;
}

.bento-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.65rem;
  display: inline-block;
}

.bento-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.bento-card-main .bento-title {
  font-size: 2rem;
}

.bento-excerpt {
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(245, 245, 240, 0.5);
}

.featured-bento--stories {
  grid-template-columns: repeat(2, minmax(0, 260px));
  grid-template-rows: auto;
  min-height: unset;
  justify-content: center;
  gap: 1rem;
  max-width: 560px;
  margin: 0 auto;
}

.featured-bento--stories .bento-card {
  border-radius: 14px;
}

.featured-bento--stories .bento-card-media {
  min-height: 130px;
  max-height: 150px;
}

.featured-bento--stories .bento-card-body {
  padding: 1rem 1.1rem 1.15rem;
}

.featured-bento--stories .bento-title {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.featured-bento--stories .bento-excerpt {
  font-size: 0.8rem;
}

.featured-bento--stories .bento-tag {
  font-size: 0.65rem;
  margin-bottom: 0.45rem;
}

.bento-card-media--thumb {
  background: rgba(245, 245, 240, 0.95);
}

.bento-card-media--thumb::after {
  display: none;
}

.bento-card-media--thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
  padding: 0.35rem 0.5rem 0;
}

/* ---- Featured Cards (legacy) ---- */
.featured {
  background: linear-gradient(180deg, var(--black) 0%, var(--green-dark) 100%);
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
}

.card:hover {
  border-color: rgba(212, 175, 55, 0.2);
}

.card-large {
  grid-row: span 2;
}

.card-img {
  height: 200px;
  background: var(--card-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.card-large .card-img {
  height: 280px;
}

.card-icon {
  font-size: 3rem;
  filter: grayscale(0.3);
  transition: transform 0.5s var(--ease-out-expo);
}

.card:hover .card-icon {
  transform: scale(1.2) rotate(5deg);
}

.card-body {
  padding: 1.75rem;
}

.card-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: inline-block;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.card-large .card-title {
  font-size: 2rem;
}

.card-excerpt {
  font-size: 0.9rem;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 1.25rem;
}

.card-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: gap 0.3s;
}

.card-link:hover {
  gap: 0.75rem;
}

.section-title--long {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  line-height: 1.1;
  max-width: 900px;
}

/* ---- Q1 Wins (hosts) ---- */
.hosts {
  background: var(--green-dark);
  overflow: hidden;
}

.hosts-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(15rem, 30vw, 25rem);
  color: rgba(255,255,255,0.02);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.hosts-rows {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.hosts-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.host-card {
  padding: 1.75rem 1.5rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.4s, transform 0.4s var(--ease-out-expo);
  display: flex;
  flex-direction: column;
}

.host-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out-expo);
}

.host-card:hover::before {
  transform: scaleX(1);
}

.host-card:hover {
  border-color: rgba(212, 175, 55, 0.15);
  transform: translateY(-4px);
}

.host-flag {
  display: none;
}

.host-num {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--gold);
  position: static;
  opacity: 1;
  margin-bottom: 1rem;
  line-height: 1;
}

.host-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 0.75rem;
  text-transform: none;
}

.host-cities {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(245, 245, 240, 0.45);
  margin-bottom: 0;
  flex: 1;
}

.host-matches,
.host-bar {
  display: none;
}

.host-stat {
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.6);
}

.host-stat strong {
  color: var(--gold);
  font-size: 1.1rem;
  margin-right: 0.25rem;
}

.host-bar {
  height: 3px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.host-bar-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  border-radius: 2px;
  transition: width 1.2s var(--ease-out-expo);
}

/* ---- Stats ---- */
.stats {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 5rem);
  color: var(--gold);
  line-height: 1;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.6;
}

.stat-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(245, 245, 240, 0.4);
  margin-top: 0.75rem;
}

.stat-desc {
  font-size: 0.8rem;
  line-height: 1.5;
  color: rgba(245, 245, 240, 0.35);
  margin-top: 0.5rem;
  text-transform: none;
  letter-spacing: 0.02em;
}

/* ---- Timeline ---- */
.timeline-section {
  display: none;
  background: linear-gradient(180deg, var(--black) 0%, var(--green-dark) 50%, var(--black) 100%);
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,0.08);
}

.timeline-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--line-progress, 0%);
  background: linear-gradient(to bottom, var(--gold), var(--green-accent));
  transition: height 0.1s linear;
}

.timeline-item {
  position: relative;
  padding-left: 60px;
  padding-bottom: 3rem;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--black);
  border: 2px solid rgba(255,255,255,0.2);
  z-index: 1;
  transition: border-color 0.4s, box-shadow 0.4s;
}

.timeline-item.active .timeline-dot {
  border-color: var(--gold);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.timeline-dot--final {
  width: 24px;
  height: 24px;
  left: 9px;
  border-color: var(--gold);
  background: var(--gold);
}

.timeline-date {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.timeline-date--final {
  font-size: 1.5rem;
}

.timeline-content h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  margin-bottom: 0.5rem;
}

.timeline-content p {
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.5);
}

.timeline-content--final h3 {
  font-size: 2rem;
  color: var(--gold);
}

/* ---- Quote ---- */
.quote-section {
  padding: 6rem 0;
  background: var(--black);
}

.quote {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.quote p {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.quote cite {
  font-style: normal;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
}

/* ---- Poll ---- */
.poll-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--black) 0%, var(--green-dark) 100%);
}

.poll-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(26, 71, 42, 0.35) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 50%, rgba(212, 175, 55, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

.poll-card {
  position: relative;
  max-width: 560px;
  margin: 0 auto;
  padding: 2.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
}

.poll-question {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  letter-spacing: 0.02em;
  line-height: 1.15;
  margin-bottom: 2rem;
  color: var(--white);
}

.poll-options {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.poll-option {
  display: block;
  width: 100%;
  padding: 0;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  color: var(--white);
  transition: opacity 0.3s;
}

.poll-option:hover:not(:disabled) .poll-option-label {
  color: var(--gold);
}

.poll-option:disabled {
  cursor: default;
}

.poll-options.has-vote .poll-option:not(.selected) {
  opacity: 0.45;
}

.poll-option.selected .poll-option-label {
  color: var(--gold);
  font-weight: 600;
}

.poll-option.selected .poll-bar-fill {
  width: 100%;
}

.poll-option-label {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.poll-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.poll-bar-fill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green-accent), var(--gold));
  transition: width 0.5s var(--ease-out-expo);
}

.poll-note {
  margin-top: 1.75rem;
  font-size: 0.8rem;
  color: rgba(245, 245, 240, 0.4);
  text-align: center;
  letter-spacing: 0.03em;
}

/* ---- Subscribe ---- */
.subscribe {
  display: none;
  position: relative;
  overflow: hidden;
}

.subscribe-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 50%, rgba(26, 71, 42, 0.4) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 50%, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
}

.subscribe-inner {
  position: relative;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.subscribe-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 4.5rem);
  line-height: 0.95;
  margin-bottom: 1rem;
}

.subscribe-title em {
  font-style: normal;
  color: var(--gold);
}

.subscribe-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.5);
  margin-bottom: 2.5rem;
}

.subscribe-form .form-group {
  display: flex;
  gap: 0;
  max-width: 480px;
  margin: 0 auto 0.75rem;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.3s;
}

.subscribe-form .form-group:focus-within {
  border-color: var(--gold);
}

.subscribe-form input {
  flex: 1;
  padding: 1rem 1.25rem;
  background: rgba(255,255,255,0.03);
  border: none;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
}

.subscribe-form input::placeholder {
  color: rgba(245, 245, 240, 0.3);
}

.subscribe-form .btn {
  border-radius: 0;
  white-space: nowrap;
}

.form-note {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.3);
}

.subscribe-success {
  display: none;
  padding: 2rem;
}

.subscribe-success.visible {
  display: block;
}

.subscribe-form.hidden {
  display: none;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--green-accent);
  color: var(--white);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.subscribe-success h3 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.subscribe-success p {
  color: rgba(245, 245, 240, 0.5);
}

/* ---- Footer ---- */
.footer {
  padding: 4rem 0 2rem;
  background: var(--green-dark);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-outro {
  margin-bottom: 3.5rem;
}

.footer-outro-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245, 245, 240, 0.35);
  margin-bottom: 1rem;
}

.footer-outro-title {
  font-family: var(--font-body);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 400;
  line-height: 1.45;
  color: var(--white);
  margin-bottom: 2rem;
  max-width: 900px;
}

.footer-outro-title strong {
  font-weight: 700;
}

.footer-outro-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: center;
  padding: 2.5rem;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(135deg, rgba(10, 10, 10, 0.9) 0%, rgba(10, 31, 20, 0.85) 55%, rgba(212, 175, 55, 0.08) 100%);
  margin-bottom: 2rem;
}

.footer-outro-content p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(245, 245, 240, 0.6);
  margin-bottom: 1rem;
}

.footer-outro-content p:last-of-type {
  margin-bottom: 1.75rem;
}

.footer-outro-squad-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.footer-outro-squad {
  font-size: 0.88rem;
  line-height: 1.75;
  color: rgba(245, 245, 240, 0.5);
  max-width: 640px;
}

.footer-outro-logo img {
  height: 56px;
  width: auto;
  flex-shrink: 0;
}

.footer-outro-closing {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-style: italic;
  letter-spacing: 0.03em;
  color: var(--gold);
  text-align: center;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  gap: 2rem;
}

.footer-brand-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  flex-shrink: 0;
}

.footer-brand-titles {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--white);
  line-height: 1.2;
}

.footer-brand-edition {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-brand p {
  font-size: 0.85rem;
  color: rgba(245, 245, 240, 0.4);
  margin-top: 1rem;
  max-width: 420px;
  line-height: 1.6;
}

.footer-links {
  display: none;
}

.footer-links a {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.5;
  transition: opacity 0.3s, color 0.3s;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(245, 245, 240, 0.3);
}

.footer-note {
  font-style: italic;
}

/* ---- Reveal animations (initial state) ---- */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .story-compare {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-footer {
    grid-template-columns: 1fr;
  }

  .story-video-btn {
    justify-self: start;
  }

  .featured-bento--stories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 100%;
  }

  .featured-bento {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
  }

  .bento-card-main {
    grid-row: auto;
  }

  .bento-card-main .bento-card-media {
    min-height: 220px;
  }

  .featured-grid {
    grid-template-columns: 1fr;
  }

  .card-large {
    grid-row: span 1;
  }

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

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

@media (max-width: 768px) {
  :root {
    --header-h: 60px;
  }

  body {
    cursor: auto;
  }

  .cursor, .cursor-dot {
    display: none;
  }

  .nav-links {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10, 10, 10, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out-expo);
  }

  .nav-links.open {
    transform: translateX(0);
  }

  .nav-link {
    font-size: 1.25rem;
  }

  .nav-toggle {
    display: flex;
  }

  .story-profile {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .story-photo {
    min-height: 240px;
    max-width: 280px;
  }

  .story-photo img {
    min-height: 240px;
  }

  .story-stat-card {
    min-height: 200px;
  }

  .story-stat-value {
    font-size: clamp(3rem, 14vw, 4.5rem);
  }

  .nav-logo-img {
    height: 28px;
  }

  .nav-logo-text {
    font-size: 0.7rem;
    max-width: 9rem;
    white-space: normal;
  }

  .hero-meta {
    gap: 1.5rem;
  }

  .hero-scroll {
    display: none;
  }

  .section {
    padding: 5rem 0;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .subscribe-form .form-group {
    flex-direction: column;
    border: none;
    gap: 0.75rem;
  }

  .subscribe-form input {
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
  }

  .subscribe-form .btn {
    border-radius: 8px;
  }

  .footer-top {
    flex-direction: column;
  }

  .footer-outro-card {
    grid-template-columns: 1fr;
    padding: 1.75rem;
  }

  .footer-outro-logo {
    justify-self: start;
  }

  .footer-outro-logo img {
    height: 44px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 1.25rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .video-modal,
  .newsletter-modal {
    padding: 1.25rem;
  }

  .video-modal-close,
  .newsletter-modal-close {
    top: -2rem;
  }

  .newsletter-modal-content {
    height: 80vh;
  }

  .btn {
    width: 100%;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .featured-bento--stories {
    grid-template-columns: 1fr;
    max-width: 280px;
  }
}
