:root {
  --navy: #0c1f3d;
  --navy-mid: #122a4f;
  --navy-light: #1e4a7a;
  --gold: #fbbf24;
  --gold-bright: #fde047;
  --gold-dim: #d97706;
  --green: #22c55e;
  --green-neon: #4ade80;
  --white: #f8fafc;
  --muted: #a8b8d0;
  --red: #ef4444;
  --blue: #38bdf8;
  --purple: #a78bfa;
  --font-display: "Staatliches", "Bebas Neue", sans-serif;
  --font-mono: "Bungee", sans-serif;
  --font-body: "Libre Franklin", Georgia, serif;
  --host-mx: #0b6b3a;
  --host-ca: #d52b1e;
  --host-us: #1e2b88;
  --radius: 16px;
  --shadow-glow: 0 0 50px rgba(251, 191, 36, 0.35);
  --glass: rgba(18, 42, 79, 0.55);
  --glass-border: rgba(251, 191, 36, 0.25);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* Typography — inspired by worldcupmascots.xyz */
.display {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.mono-ui,
.section-label,
.hero-badge,
.hero-issue,
.hero-venue,
.ticker-wrap,
.step-num,
.copy-btn,
.mascot-jersey,
.mascot-role,
.btn,
.brand-symbol,
.stat-label {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stencil {
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Flags — flagcdn.com */
.flag-img,
.ticker-flag {
  display: inline-block;
  width: 20px;
  height: 15px;
  object-fit: cover;
  border-radius: 2px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  vertical-align: middle;
  flex-shrink: 0;
}

.ticker-flag {
  width: 16px;
  height: 12px;
}

.flag-row,
.top-flags {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.host-country {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.mascot-role {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 0.68rem;
  color: var(--green-neon);
  margin-bottom: 0.35rem;
}

/* Host nation stripe (reference-style, theme colors) */
.host-stripe {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 110;
  display: flex;
  height: 6px;
}

.host-stripe span {
  flex: 1;
}

.host-stripe span:nth-child(1) {
  background: var(--host-mx);
}
.host-stripe span:nth-child(2) {
  background: var(--host-us);
}
.host-stripe span:nth-child(3) {
  background: var(--host-ca);
}

/* Top live bar */
.top-bar {
  position: fixed;
  top: 6px;
  left: 0;
  right: 0;
  z-index: 109;
  height: 36px;
  background: rgba(8, 18, 36, 0.95);
  border-bottom: 1px solid rgba(251, 191, 36, 0.15);
  overflow: hidden;
}

.top-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.65rem;
  height: 100%;
  padding: 0 1rem;
  font-size: 0.62rem;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.75);
  white-space: nowrap;
  animation: top-marquee 40s linear infinite;
}

@keyframes top-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-20%);
  }
}

.top-bar-sep {
  color: var(--gold);
  opacity: 0.6;
}

.top-hot,
.ticker-hot {
  color: var(--gold-bright);
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-bright);
  font-size: 0.62rem;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-neon);
  animation: live-pulse 1.6s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes live-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.35;
    transform: scale(0.85);
  }
}

.venue-label {
  color: var(--muted);
  font-size: 0.6rem;
}

/* ===== BACKGROUND LAYERS ===== */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: -4;
  background: linear-gradient(165deg, #1a3a6e 0%, #122a4f 45%, #0f2847 100%)
    url("../assets/world-cup-bg.svg") center / cover no-repeat;
}

.bg-layer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 58, 110, 0.35) 0%,
    rgba(18, 42, 79, 0.25) 45%,
    rgba(12, 31, 61, 0.5) 100%
  );
  pointer-events: none;
}

.aurora {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.aurora::before,
.aurora::after {
  content: "";
  position: absolute;
  width: 80vw;
  height: 80vw;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: aurora-drift 18s ease-in-out infinite alternate;
}

.aurora::before {
  top: -20%;
  left: -15%;
  background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
}

.aurora::after {
  bottom: -25%;
  right: -20%;
  background: radial-gradient(circle, #fbbf24 0%, transparent 70%);
  animation-delay: -9s;
  animation-direction: alternate-reverse;
}

@keyframes aurora-drift {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(8%, 6%) scale(1.15);
  }
}

.spotlight {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  --mx: 50%;
  --my: 40%;
  background: radial-gradient(
    600px circle at var(--mx) var(--my),
    rgba(251, 191, 36, 0.12) 0%,
    rgba(56, 189, 248, 0.06) 35%,
    transparent 70%
  );
  transition: background 0.15s ease-out;
}

.light-beams {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  overflow: hidden;
}

.beam {
  position: absolute;
  top: -10%;
  width: 120px;
  height: 120%;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.08) 0%,
    transparent 80%
  );
  transform-origin: top center;
  animation: beam-sway 8s ease-in-out infinite;
  opacity: 0.4;
}

.beam-1 {
  left: 12%;
  transform: rotate(-18deg);
}
.beam-2 {
  left: 50%;
  transform: rotate(0deg);
  animation-delay: -2s;
  width: 160px;
  opacity: 0.25;
}
.beam-3 {
  right: 12%;
  transform: rotate(18deg);
  animation-delay: -4s;
}

@keyframes beam-sway {
  0%,
  100% {
    opacity: 0.3;
    transform: rotate(var(--r, -18deg)) scaleX(1);
  }
  50% {
    opacity: 0.55;
    transform: rotate(calc(var(--r, -18deg) + 4deg)) scaleX(1.1);
  }
}

.beam-1 {
  --r: -18deg;
}
.beam-2 {
  --r: 0deg;
}
.beam-3 {
  --r: 18deg;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.particle-layer,
.confetti-layer {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  border-radius: 50%;
  animation: particle-float linear infinite;
  box-shadow: 0 0 8px currentColor;
}

@keyframes particle-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(15px, -30px) scale(1.2);
  }
  50% {
    transform: translate(-10px, -60px) scale(0.9);
  }
  75% {
    transform: translate(20px, -25px) scale(1.1);
  }
}

.confetti-piece {
  position: absolute;
  opacity: 0.55;
  animation: confetti-fall linear infinite;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

@keyframes confetti-fall {
  0% {
    transform: translateY(-12vh) rotate(0deg) translateX(0);
    opacity: 0;
  }
  8% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(112vh) rotate(720deg) translateX(40px);
    opacity: 0;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 200;
  background: linear-gradient(90deg, var(--green-neon), var(--gold), var(--blue));
  box-shadow: 0 0 12px var(--gold);
  transition: width 0.1s linear;
}

/* ===== TICKER ===== */
.ticker-wrap {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: rgba(8, 18, 36, 0.96);
  border-top: 1px solid rgba(251, 191, 36, 0.2);
  backdrop-filter: blur(10px);
  overflow: hidden;
  height: 38px;
  display: flex;
  align-items: center;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  color: rgba(248, 250, 252, 0.8);
  padding-left: 100%;
}

.ticker-track > * {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticker-track .sep {
  color: var(--gold);
  opacity: 0.5;
}

.ticker-track .live-dot {
  width: 7px;
  height: 7px;
}

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

.container {
  width: min(1140px, 92vw);
  margin-inline: auto;
}

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
  opacity: 0;
  transform: translateY(36px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="1"] {
  transition-delay: 0.1s;
}
[data-reveal-delay="2"] {
  transition-delay: 0.2s;
}
[data-reveal-delay="3"] {
  transition-delay: 0.3s;
}
[data-reveal-delay="4"] {
  transition-delay: 0.4s;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 42px;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.85rem 0;
  background: rgba(18, 42, 79, 0.65);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--glass-border);
  transition:
    box-shadow 0.35s,
    background 0.35s,
    padding 0.35s;
}

.site-header.scrolled {
  padding: 0.55rem 0;
  background: rgba(12, 31, 61, 0.88);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
}

.brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.5));
  animation: brand-pulse 3s ease-in-out infinite;
}

@keyframes brand-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 12px rgba(251, 191, 36, 0.4));
  }
  50% {
    filter: drop-shadow(0 0 24px rgba(251, 191, 36, 0.7));
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.brand-symbol {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--green-neon);
  text-shadow: 0 0 20px rgba(74, 222, 128, 0.5);
}

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

.nav-links a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.5rem 0.85rem;
  border-radius: 999px;
  transition:
    color 0.25s,
    background 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 6px;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  box-shadow: 0 0 8px rgba(251, 191, 36, 0.4);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
  background: rgba(251, 191, 36, 0.08);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  color: var(--white);
  font-size: 1.35rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

/* ===== BUTTONS ===== */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.75rem;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.88rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.25s;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.35) 50%,
    transparent 60%
  );
  transform: translateX(-120%);
  transition: transform 0.55s;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn:active {
  transform: translateY(0) scale(0.98);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-dim) 100%);
  color: #0c1f3d;
  box-shadow: var(--shadow-glow), 0 4px 20px rgba(0, 0, 0, 0.25);
  animation: btn-glow-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-glow-pulse {
  0%,
  100% {
    box-shadow:
      0 0 30px rgba(251, 191, 36, 0.35),
      0 4px 20px rgba(0, 0, 0, 0.2);
  }
  50% {
    box-shadow:
      0 0 55px rgba(251, 191, 36, 0.55),
      0 8px 28px rgba(0, 0, 0, 0.25);
  }
}

.btn-primary:hover {
  box-shadow:
    0 0 60px rgba(251, 191, 36, 0.65),
    0 8px 32px rgba(0, 0, 0, 0.3);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  border: 2px solid rgba(251, 191, 36, 0.45);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  border-color: var(--gold-bright);
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
}

.btn-green {
  background: linear-gradient(135deg, #4ade80 0%, var(--green) 100%);
  color: #052e16;
  box-shadow: 0 0 35px rgba(74, 222, 128, 0.35);
}

.btn-sm {
  padding: 0.6rem 1.2rem;
  font-size: 0.78rem;
}

/* ===== SECTIONS ===== */
section {
  padding: 6rem 0;
  scroll-margin-top: 130px;
  position: relative;
}

.section-head {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}

.section-index {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  padding: 0.25rem 0.65rem;
  border: 1px solid rgba(251, 191, 36, 0.35);
  border-radius: 4px;
  background: rgba(251, 191, 36, 0.08);
}

.section-head .section-label {
  margin-bottom: 0;
}

.section-divider {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(600px, 80%);
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--gold),
    var(--green-neon),
    var(--blue),
    transparent
  );
  opacity: 0.5;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--green-neon);
  margin-bottom: 0.65rem;
  padding: 0.3rem 0;
  background: none;
  border: none;
  border-radius: 0;
  animation: none;
}

.section-label::before {
  content: none;
}

@keyframes label-glow {
  0%,
  100% {
    box-shadow: 0 0 0 transparent;
  }
  50% {
    box-shadow: 0 0 20px rgba(74, 222, 128, 0.25);
  }
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  margin-bottom: 1rem;
}

.section-title .gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-dim));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 30px rgba(251, 191, 36, 0.3));
}

.section-title .white {
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.section-sub {
  color: var(--muted);
  max-width: 580px;
  font-size: 1.08rem;
}

/* Glass card utility */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(14px) saturate(1.3);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.25),
    transparent
  );
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 9.5rem;
  padding-bottom: 5rem;
  overflow: hidden;
}

.hero-issue {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--muted);
  margin-bottom: 0.65rem;
}

.hero-venue {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 0.45rem 0.9rem;
  background: rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
}

.hero::before {
  content: "";
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.15) 0%, transparent 65%);
  pointer-events: none;
  animation: hero-bloom 6s ease-in-out infinite alternate;
}

@keyframes hero-bloom {
  0% {
    opacity: 0.6;
    transform: translateX(-50%) scale(0.9);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1.1);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  background: linear-gradient(
    135deg,
    rgba(56, 189, 248, 0.2),
    rgba(167, 139, 250, 0.15)
  );
  border: 1px solid rgba(56, 189, 248, 0.4);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: badge-float 4s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(56, 189, 248, 0.2);
}

@keyframes badge-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

.hero-badge span {
  color: var(--gold-bright);
  animation: star-spin 4s linear infinite;
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6rem);
  line-height: 0.92;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.hero h1 .line-gold {
  display: block;
  background: linear-gradient(
    90deg,
    var(--gold-bright),
    var(--gold),
    var(--gold-bright)
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
  filter: drop-shadow(0 0 40px rgba(251, 191, 36, 0.4));
}

.hero h1 .line-white {
  display: block;
  color: var(--white);
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

@keyframes shimmer {
  0% {
    background-position: 0% center;
  }
  100% {
    background-position: 200% center;
  }
}

.hero-tagline {
  font-size: 1.15rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.hero-symbol {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  background: linear-gradient(90deg, var(--green-neon), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem;
  text-shadow: none;
  filter: drop-shadow(0 0 20px rgba(74, 222, 128, 0.4));
  animation: symbol-pulse 2s ease-in-out infinite;
}

@keyframes symbol-pulse {
  0%,
  100% {
    filter: drop-shadow(0 0 15px rgba(74, 222, 128, 0.35));
  }
  50% {
    filter: drop-shadow(0 0 28px rgba(74, 222, 128, 0.6));
  }
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.25rem;
}

.hero-stats {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.stat {
  flex: 1;
  min-width: 100px;
  padding: 1.1rem 1.25rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  text-align: center;
  transition:
    transform 0.3s,
    box-shadow 0.3s,
    border-color 0.3s;
}

.stat:hover {
  transform: translateY(-6px) scale(1.03);
  border-color: var(--gold);
  box-shadow: 0 12px 40px rgba(251, 191, 36, 0.2);
}

.stat-value {
  font-family: var(--font-display);
  font-size: 2.4rem;
  background: linear-gradient(180deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.7rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 480px;
  transition: transform 0.1s ease-out;
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 420px;
  margin-bottom: -1.5rem;
  z-index: 2;
}

.hero-logo-main {
  width: min(360px, 85vw);
  height: auto;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 25px 70px rgba(0, 0, 0, 0.45))
    drop-shadow(0 0 50px rgba(251, 191, 36, 0.25));
  animation: float-ball 5s ease-in-out infinite;
}

.hero-trionda {
  position: absolute;
  top: 5%;
  right: -5%;
  width: min(130px, 28vw);
  height: auto;
  z-index: 3;
  filter: drop-shadow(0 12px 35px rgba(0, 0, 0, 0.5));
  animation: trionda-spin 12s linear infinite, float-trionda 4s ease-in-out infinite;
}

@keyframes trionda-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

@keyframes float-trionda {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: -8px -12px;
  }
}

.hero-mascots {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  z-index: 4;
  padding-top: 0.5rem;
}

.hero-mascot {
  width: min(115px, 28vw);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 16px 40px rgba(0, 0, 0, 0.45));
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.hero-mascot-mex {
  animation: mascot-bob 4s ease-in-out infinite;
  animation-delay: 0s;
}

.hero-mascot-us {
  width: min(125px, 30vw);
  animation: mascot-bob 4s ease-in-out infinite;
  animation-delay: 0.6s;
  z-index: 2;
}

.hero-mascot-ca {
  animation: mascot-bob 4s ease-in-out infinite;
  animation-delay: 1.2s;
}

.hero-mascot:hover {
  transform: translateY(-12px) scale(1.06);
}

@keyframes mascot-bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
  animation: ring-expand 4s ease-out infinite;
}

.ring-1 {
  width: 280px;
  height: 280px;
  border-color: rgba(251, 191, 36, 0.25);
  animation-delay: 0s;
}

.ring-2 {
  width: 340px;
  height: 340px;
  border-color: rgba(74, 222, 128, 0.2);
  animation-delay: 1.3s;
}

.ring-3 {
  width: 400px;
  height: 400px;
  border-color: rgba(56, 189, 248, 0.15);
  animation-delay: 2.6s;
}

@keyframes ring-expand {
  0% {
    transform: scale(0.85);
    opacity: 0.8;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}

@keyframes float-ball {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(2deg);
  }
}

.hero-glow {
  position: absolute;
  width: 90%;
  height: 70%;
  background: radial-gradient(
    ellipse,
    rgba(251, 191, 36, 0.35) 0%,
    rgba(74, 222, 128, 0.1) 40%,
    transparent 70%
  );
  z-index: 0;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.08);
  }
}

/* ===== ABOUT ===== */
.about-card {
  padding: 2.75rem;
  margin-top: 0.5rem;
}

.about-card.glass-card::after {
  content: "";
  position: absolute;
  top: -50%;
  right: -30%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.about-bio {
  font-size: 1.2rem;
  font-weight: 700;
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.about-desc {
  color: var(--muted);
  white-space: pre-line;
  font-size: 1rem;
  line-height: 1.8;
}

.host-nations {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.host-pill {
  flex: 1;
  min-width: 140px;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    145deg,
    rgba(30, 74, 122, 0.6),
    rgba(18, 42, 79, 0.8)
  );
  border-radius: var(--radius);
  border: 1px solid rgba(251, 191, 36, 0.2);
  border-left: 4px solid var(--gold);
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}

.host-pill:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 16px 40px rgba(251, 191, 36, 0.15);
}

.host-pill-img {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  transition: transform 0.35s ease;
}

.host-pill:hover .host-pill-img {
  transform: scale(1.12) translateY(-4px);
}

.host-name {
  display: block;
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 0.15rem;
}

.host-pill span:last-child {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Mascot showcase */
.mascot-showcase {
  margin-top: 3.5rem;
  scroll-margin-top: 100px;
}

.showcase-heading {
  font-size: clamp(2rem, 5vw, 3.2rem);
  text-align: center;
  margin-bottom: 2rem;
  color: var(--white);
  line-height: 0.95;
}

.showcase-heading .gold,
.trionda-title .gold {
  color: var(--gold);
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.mascot-card {
  position: relative;
  padding: 1.5rem 1.25rem 1.75rem;
  text-align: center;
  transition:
    transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}

.mascot-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 24px 50px rgba(251, 191, 36, 0.15);
}

.mascot-card-featured {
  border-color: rgba(251, 191, 36, 0.45);
  background: linear-gradient(
    160deg,
    rgba(30, 74, 122, 0.7),
    rgba(18, 42, 79, 0.85)
  );
  transform: scale(1.03);
}

.mascot-card-featured:hover {
  transform: translateY(-14px) scale(1.05);
}

.mascot-card-img-wrap {
  height: 200px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 1rem;
  overflow: hidden;
}

.mascot-card-img-wrap img {
  max-height: 100%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 30px rgba(0, 0, 0, 0.4));
  transition: transform 0.4s ease;
}

.mascot-card:hover .mascot-card-img-wrap img {
  transform: scale(1.08) translateY(-6px);
}

.mascot-card h4 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.06em;
  color: var(--gold-bright);
  margin-bottom: 0.2rem;
}

.mascot-jersey {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-size: 2rem;
  color: rgba(251, 191, 36, 0.2);
  line-height: 1;
  z-index: 2;
}

.mascot-title {
  font-size: 0.82rem;
  font-style: italic;
  color: var(--muted);
  margin-bottom: 0.5rem;
}

.mascot-bars {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: left;
}

.bar-row {
  display: grid;
  grid-template-columns: 42px 1fr 28px;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
}

.bar-row span {
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.bar-row em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: 1.1rem;
  color: var(--gold-bright);
  text-align: right;
}

.bar {
  height: 6px;
  background: rgba(0, 0, 0, 0.35);
  border-radius: 3px;
  overflow: hidden;
}

.bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--gold));
  border-radius: 3px;
  animation: bar-fill 1.2s ease-out forwards;
  transform-origin: left;
}

@keyframes bar-fill {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.mascot-card p:last-child {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.5;
}

/* Trionda showcase */
.trionda-showcase {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-top: 3.5rem;
  padding: 2rem 2.5rem;
}

.trionda-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.trionda-visual img {
  width: min(240px, 40vw);
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.45));
  animation: trionda-spin 14s linear infinite;
}

.trionda-copy .section-label {
  margin-bottom: 0.75rem;
}

.trionda-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 1rem;
  color: var(--white);
}

.trionda-copy p {
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 520px;
}

/* 48 Teams */
.teams-showcase {
  margin-top: 3.5rem;
  scroll-margin-top: 100px;
  text-align: center;
}

.teams-sub {
  margin: 0 auto 2rem;
  text-align: center;
}

.teams-img-wrap {
  padding: 0.75rem;
  overflow: hidden;
  border-radius: var(--radius);
  transition: box-shadow 0.4s;
}

.teams-img-wrap:hover {
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.35),
    0 0 50px rgba(56, 189, 248, 0.12);
}

.teams-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: calc(var(--radius) - 4px);
  transition: transform 0.6s ease;
}

.teams-img-wrap:hover img {
  transform: scale(1.02);
}

/* ===== HOW TO BUY ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.step-card {
  padding: 2rem 1.35rem;
  text-align: center;
  transition:
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1),
    box-shadow 0.35s;
}

.step-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow:
    0 20px 50px rgba(0, 0, 0, 0.25),
    0 0 30px rgba(251, 191, 36, 0.1);
}

.step-icon {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: step-bounce 2s ease-in-out infinite;
}

.step-card-img {
  padding-top: 1rem;
}

.step-thumb {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin: 0 auto 0.5rem;
  display: block;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.35));
  animation: step-bounce 2.5s ease-in-out infinite;
}

.step-thumb-mascots {
  width: 56px;
  border-radius: 50%;
}

.step-card:nth-child(2) .step-icon {
  animation-delay: 0.3s;
}
.step-card:nth-child(3) .step-icon {
  animation-delay: 0.6s;
}
.step-card:nth-child(4) .step-icon {
  animation-delay: 0.9s;
}

@keyframes step-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.35), transparent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.35rem;
}

.step-card h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: var(--white);
}

.step-card p {
  font-size: 0.86rem;
  color: var(--muted);
}

.buy-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2.5rem;
}

.hero-ca {
  margin: 0 0 1.5rem;
  width: 100%;
}

.hero-ca .ca-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.hero-ca code {
  min-width: 0;
}

.contract-box {
  margin-top: 2rem;
  padding: 1.25rem 1.5rem;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.25),
    rgba(74, 222, 128, 0.05)
  );
  border-radius: var(--radius);
  border: 1px dashed rgba(74, 222, 128, 0.4);
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  animation: contract-border 4s linear infinite;
}

@keyframes contract-border {
  0%,
  100% {
    border-color: rgba(74, 222, 128, 0.35);
  }
  50% {
    border-color: rgba(251, 191, 36, 0.45);
  }
}

.contract-box code {
  flex: 1;
  font-size: 0.82rem;
  word-break: break-all;
  color: var(--green-neon);
  text-shadow: 0 0 12px rgba(74, 222, 128, 0.3);
}

.copy-btn {
  padding: 0.55rem 1.15rem;
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2), rgba(251, 191, 36, 0.05));
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  border-radius: 10px;
  font-weight: 800;
  font-size: 0.75rem;
  cursor: pointer;
  text-transform: uppercase;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.copy-btn:hover:not(:disabled) {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(251, 191, 36, 0.3);
}

.copy-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* ===== CHART ===== */
.chart-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.chart-brand-logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(251, 191, 36, 0.4));
  animation: brand-pulse 3s ease-in-out infinite;
}

.chart-brand span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.chart-wrap {
  margin-top: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  background:
    linear-gradient(var(--navy-mid), var(--navy-mid)) padding-box,
    linear-gradient(135deg, var(--gold), var(--green-neon), var(--blue)) border-box;
  min-height: 520px;
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.35),
    0 0 40px rgba(251, 191, 36, 0.08);
  animation: chart-glow 5s ease-in-out infinite;
}

@keyframes chart-glow {
  0%,
  100% {
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.35),
      0 0 30px rgba(251, 191, 36, 0.06);
  }
  50% {
    box-shadow:
      0 20px 60px rgba(0, 0, 0, 0.35),
      0 0 50px rgba(74, 222, 128, 0.12);
  }
}

.chart-wrap iframe {
  width: 100%;
  height: 520px;
  border: none;
  display: block;
}

.chart-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 520px;
  color: var(--muted);
  text-align: center;
  padding: 2rem;
  background: radial-gradient(
    ellipse at center,
    rgba(56, 189, 248, 0.08) 0%,
    transparent 70%
  );
}

.chart-placeholder strong {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ===== JOIN US ===== */
.join-banner-wrap {
  margin: 2rem 0 2.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  border: 2px solid transparent;
  background:
    linear-gradient(#000, #000) padding-box,
    linear-gradient(
        135deg,
        var(--gold),
        var(--green-neon),
        var(--blue),
        var(--gold)
      )
      border-box;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.45),
    0 0 60px rgba(251, 191, 36, 0.1);
  animation: banner-shine 6s ease-in-out infinite;
}

@keyframes banner-shine {
  0%,
  100% {
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.45),
      0 0 40px rgba(251, 191, 36, 0.08);
  }
  50% {
    box-shadow:
      0 28px 80px rgba(0, 0, 0, 0.45),
      0 0 70px rgba(74, 222, 128, 0.15);
  }
}

.join-banner-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 60%,
    rgba(12, 31, 61, 0.4) 100%
  );
  pointer-events: none;
}

.join-banner-wrap img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 8s ease-out;
}

.join-banner-wrap:hover img {
  transform: scale(1.03);
}

.join-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.join-cta-card {
  padding: 2.25rem;
  background: linear-gradient(
    145deg,
    rgba(30, 74, 122, 0.65),
    rgba(18, 42, 79, 0.85)
  );
  border: 1px solid rgba(74, 222, 128, 0.3);
  border-radius: var(--radius);
  backdrop-filter: blur(14px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.join-cta-card::before {
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    rgba(74, 222, 128, 0.08),
    transparent 30%
  );
  animation: card-rotate 8s linear infinite;
}

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

.join-cta-card > * {
  position: relative;
  z-index: 1;
}

.join-cta-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  letter-spacing: 0.05em;
  background: linear-gradient(90deg, var(--green-neon), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.85rem;
}

.join-cta-card p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

.social-links {
  display: flex;
  gap: 0.85rem;
  flex-wrap: wrap;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  background: rgba(0, 0, 0, 0.25);
  border-radius: 999px;
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition:
    transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
    border-color 0.25s,
    box-shadow 0.25s,
    background 0.25s;
}

.social-link:hover {
  transform: translateY(-4px) scale(1.04);
  border-color: var(--gold);
  background: rgba(251, 191, 36, 0.12);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.motto-block {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}

.motto-block .we-are {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.2rem);
  letter-spacing: 0.1em;
  line-height: 1.1;
  animation: motto-flicker 4s ease-in-out infinite;
}

.motto-block .we-are.gold-text {
  background: linear-gradient(90deg, var(--gold-bright), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 25px rgba(251, 191, 36, 0.35));
}

.motto-block .we-are.green-text {
  background: linear-gradient(90deg, var(--green-neon), #86efac);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes motto-flicker {
  0%,
  100% {
    opacity: 1;
  }
  92% {
    opacity: 1;
  }
  94% {
    opacity: 0.85;
  }
  96% {
    opacity: 1;
  }
}

.motto-block p:last-of-type {
  color: var(--muted);
  margin-top: 0.75rem;
}

.join-mascot-row {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.join-mascot-row img {
  width: 64px;
  height: auto;
  object-fit: contain;
  opacity: 0.85;
  filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.35));
  animation: mascot-bob 3.5s ease-in-out infinite;
}

.join-mascot-row img:nth-child(1) {
  animation-delay: 0s;
}
.join-mascot-row img:nth-child(2) {
  animation-delay: 0.5s;
}
.join-mascot-row img:nth-child(3) {
  animation-delay: 1s;
}

.join-mascot-center {
  width: 72px !important;
  opacity: 1 !important;
}

/* ===== FOOTER ===== */
.site-footer {
  padding: 2.5rem 0 4.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
  background: linear-gradient(0deg, rgba(12, 31, 61, 0.6), transparent);
}

.site-footer strong {
  color: var(--gold-bright);
}

.site-footer a {
  transition: color 0.2s, text-shadow 0.2s;
}

.site-footer a:hover {
  color: var(--gold-bright);
  text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

/* ===== REDUCED MOTION ===== */
@media (max-width: 700px) {
  .mascot-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-trionda,
  .trionda-visual img {
    animation: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .ticker-track {
    animation: none;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-grid,
  .join-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .hero-logo-main {
    width: min(260px, 70vw);
  }

  .hero-trionda {
    width: min(90px, 22vw);
    right: 0;
  }

  .hero-mascot {
    width: min(80px, 22vw);
  }

  .hero-mascot-us {
    width: min(88px, 24vw);
  }

  .mascot-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin-inline: auto;
  }

  .mascot-card-featured {
    transform: none;
    order: -1;
  }

  .trionda-showcase {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 1.75rem 1.25rem;
  }

  .trionda-copy p {
    margin-inline: auto;
  }

  .ring-3 {
    width: 320px;
    height: 320px;
  }

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(12, 31, 61, 0.97);
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    gap: 0.5rem;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta-desktop {
    display: none;
  }

  .top-bar {
    display: none;
  }

  .host-stripe {
    height: 4px;
  }

  .site-header {
    top: 4px;
  }

  .hero {
    padding-top: 7rem;
  }

  .site-footer {
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 520px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .hero-cta .btn {
    width: 100%;
  }

  section {
    padding: 4.5rem 0;
  }
}
