/* =====================================================================
   Thunderpick World Championship 2026 — landing page
   Rebuilt as responsive HTML/CSS/JS from the Figma desktop (1440) +
   mobile (402) exports. Desktop layout is the base; the mobile layout
   takes over at <= 768px. Content caps at 1280px; backgrounds are
   full-bleed at every viewport.
   ===================================================================== */

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  font-family: 'Inter Tight', sans-serif;
  background: var(--bg);
  color: #fff;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
ul { list-style: none; padding: 0; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 2px; border-radius: 2px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: .01ms !important; }
}

/* ------------------------------- Tokens -------------------------------- */
:root {
  --bg: #0b111a;
  --bg-deep: #04080e;
  --cyan: #16BDF9;
  --btn-blue: #007aa6;
  --gold: #fbe64d;
  --grey-1: #becde3;
  --grey-2: #a2b0c6;
  --line: rgba(255,255,255,0.1);
  --line-soft: rgba(255,255,255,0.05);
  --line-mid: rgba(255,255,255,0.2);
  --line-strong: rgba(255,255,255,0.3);
  --glow: 0 0 24px rgba(22,189,249,0.4);
  --gold-shadow: 0 0 10.7px rgba(255,208,55,0.5);

  --content-max: 1280px;
  --gutter: clamp(16px, 5vw, 48px);
}

/* ----------------------------- Utilities ------------------------------- */
.container {
  width: 100%;
  max-width: var(--content-max);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.divider-v { width: 1px; align-self: stretch; background: var(--line-strong); flex: none; }
.divider-h { display: block; width: 100%; height: 1px; background: var(--line-strong); }

.eyebrow { text-transform: uppercase; line-height: 1; font-weight: 400; }
.eyebrow-gold { color: var(--gold); }
.eyebrow-cyan { color: var(--cyan); font-size: 15px; letter-spacing: 9px; }

.section-title {
  font-size: 48px; font-weight: 800; line-height: 1.1;
  letter-spacing: -0.48px; text-transform: uppercase; color: #fff;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: 9999px; border: 1px solid var(--line);
  padding: 16px 24px; font-size: 18px; font-weight: 500; line-height: 1; color: #fff;
  white-space: nowrap; transition: filter .15s ease, transform .15s ease;
}
.btn > span { line-height: 1; }
.btn:hover { filter: brightness(1.08); }
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--btn-blue); }
.btn-ghost { background: rgba(98,98,98,0.2); backdrop-filter: blur(4px); }
.btn-glow { box-shadow: var(--glow); }
.btn-sm { padding: 12px 20px; font-size: 15px; font-weight: 600; gap: 4px; }
.btn-block { width: 100%; justify-content: space-between; padding: 20px 24px; }
.btn-block::before { content: ""; width: 20px; } /* keeps label centred opposite arrow */
.icon-arrow { width: 20px; height: 19px; flex: none; }
.btn-sm .icon-arrow { width: 17px; height: 16px; }

/* ------------------------------- Header -------------------------------- */
.site-header { position: absolute; inset: 0 0 auto 0; z-index: 20; }
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: var(--content-max); margin-inline: auto;
  padding: 24px clamp(16px, 4vw, 32px);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 0 48px rgba(0,0,0,0.2);
}
.logo { width: 180px; height: 30px; flex: none; }
.logo svg { width: 100%; height: 100%; }
.nav-actions { display: flex; align-items: center; gap: 28px; }
.nav-link { font-size: 16px; font-weight: 500; color: var(--grey-1); }
.nav-toggle { display: none; width: 26px; height: 18px; padding: 0; }
.nav-toggle svg { width: 100%; height: 100%; }
.mobile-menu { display: none; }

/* -------------------------------- Hero --------------------------------- */
.hero { position: relative; min-height: 880px; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/optimized/hero-bg-1x.webp") center/cover no-repeat;
  background-image: image-set(
    url("../assets/optimized/hero-bg-1x.avif") type("image/avif") 1x,
    url("../assets/optimized/hero-bg-2x.avif") type("image/avif") 2x,
    url("../assets/optimized/hero-bg-1x.webp") type("image/webp") 1x,
    url("../assets/optimized/hero-bg-2x.webp") type("image/webp") 2x);
}
.hero-bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,17,26,0) 50%, rgb(11,17,26) 99.8%),
    linear-gradient(90deg, rgba(0,0,0,0.2), rgba(0,0,0,0.2));
}
.hero-inner {
  position: relative; z-index: 1;
  width: 100%; max-width: var(--content-max); margin-inline: auto;
  padding-block: 120px; padding-inline: var(--gutter);
  display: flex; flex-direction: column; align-items: flex-start; gap: 36px;
}
.hero-inner > * { width: 100%; max-width: 735px; }

.hero-prize-row { display: flex; align-items: center; gap: 32px; }
.prize-block { display: flex; flex-direction: column; gap: 4px; align-items: center; justify-content: center; padding-block: 8px; width: 130px; flex: none; }
.prize-label { color: var(--gold); font-size: 12px; letter-spacing: 6px; text-transform: uppercase; line-height: 1; text-align: center; }
.prize-amount {
  display: flex; align-items: center; justify-content: center;
  padding: 10px 16px; border-radius: 4px;
  background: rgba(251,230,77,0.1); border: 1px solid rgba(251,230,77,0.1);
  backdrop-filter: blur(1.5px);
  color: var(--gold); font-size: 18px; font-weight: 700; letter-spacing: 0.9px;
  text-transform: uppercase; text-shadow: var(--gold-shadow); line-height: 1;
}
.brand-row { display: flex; align-items: center; gap: 20px; }
.emblem { position: relative; width: 80px; height: 48px; overflow: hidden; flex: none; }
.emblem img { position: absolute; height: 262.14%; width: 278.26%; left: -118.26%; top: -80.83%; max-width: none; }
.brand-plus { width: 10px; height: 10px; flex: none; }
.brand-wordmark { width: 105px; height: 20px; flex: none; }
.brand-glyph { display: none; width: 23px; height: 25px; flex: none; }

.hero-heading { display: flex; flex-direction: column; gap: 8px; }
.hero-title { font-size: 64px; font-weight: 800; line-height: 1.1; letter-spacing: -1.28px; text-transform: uppercase; color: #fff; }
.title-short { display: none; }
.hero-sub { font-size: 18px; line-height: 1.6; color: rgba(190,205,227,0.75); padding-inline: 8px; }

.hero-cta { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.cta-row { display: flex; gap: 8px; flex-wrap: wrap; }
.tag-row { display: flex; gap: 8px; padding-inline: 8px; flex-wrap: wrap; }
.tag {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 8px 10px; border-radius: 4px;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(4px);
  color: var(--grey-1); font-size: 12px; letter-spacing: 4.32px; text-transform: uppercase; line-height: 1;
}

.featuring { display: flex; flex-direction: column; gap: 24px; padding-top: 16px; }
.featuring-row { display: flex; align-items: center; gap: 37px; padding-inline: 8px; flex-wrap: wrap; }
.featuring-label { color: var(--grey-2); font-size: 12px; letter-spacing: 0.96px; text-transform: uppercase; line-height: 1.6; }
.team-logos { display: flex; align-items: center; gap: 37px; flex-wrap: wrap; }
.team-logos li { display: flex; align-items: center; }
.team-logos img { width: auto; height: 34px; object-fit: contain; }
/* per-logo height overrides */
.team-logo[data-tooltip="FURIA"] img { height: 20px; }
.team-logo[data-tooltip="Aurora"] img,
.team-logo[data-tooltip="Venom"] img { height: 30px; }

/* Team logo with hover/focus tooltip */
.team-logo { position: relative; cursor: default; outline: none; }
.team-logo::before, .team-logo::after {
  position: absolute; left: 50%; bottom: 100%; z-index: 5;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .15s ease, transform .15s ease;
}
.team-logo::after {
  content: attr(data-tooltip);
  transform: translate(-50%, -8px); margin-bottom: 12px;
  background: #35404B; color: #fff;
  font-size: 14px; font-weight: 600; line-height: 1; white-space: nowrap;
  padding: 8px 12px; border-radius: 8px;
}
.team-logo::before {
  content: ""; transform: translate(-50%, -8px); margin-bottom: 1px;
  border: 6px solid transparent; border-top-color: #35404B;
}
.team-logo:hover::before, .team-logo:hover::after,
.team-logo:focus-visible::before, .team-logo:focus-visible::after {
  opacity: 1; visibility: visible; transform: translate(-50%, 0);
}

/* --------------------------- Teams showcase (mobile) -------------------- */
.teams-showcase { display: none; position: relative; padding: 40px 16px; background: linear-gradient(180deg, var(--bg), #05121a); }
.teams-showcase .team-logos { justify-content: center; gap: 32px; max-width: 304px; margin-inline: auto; }

/* ------------------------------ Smoke divider -------------------------- */
/* Takes no layout space; the canvas straddles the hero's bottom edge so the
   smoke overlays the seam as a divider rather than pushing content down. */
.smoke-band {
  position: relative;
  height: 0;
  z-index: 3;
  pointer-events: none;
}
.smoke-band .smoke-canvas {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: -416px;   /* reaches well into the prize pool so it floats over both */
  height: 728px;    /* ~312px over the hero, ~416px over the prize pool */
  display: block;
  /* Fade the top and bottom edges so puffs dissipate instead of being
     clipped flat at the canvas edge (which read as a hard line). */
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 70%, transparent 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, #000 12%, #000 70%, transparent 100%);
}
@media (max-width: 768px) {
  .smoke-band .smoke-canvas { bottom: -260px; height: 468px; }
}

/* ------------------------------ Prize pool ----------------------------- */
.prize-pool { position: relative; overflow: hidden; }
.prize-pool-bg { position: absolute; inset: 0; z-index: 0; }
.prize-pool-bg::before {
  content: ""; position: absolute; inset: 0; opacity: 0.1;
  background: url("../assets/optimized/prize-bg-1x.webp") center/cover no-repeat;
  background-image: image-set(
    url("../assets/optimized/prize-bg-1x.avif") type("image/avif") 1x,
    url("../assets/optimized/prize-bg-2x.avif") type("image/avif") 2x,
    url("../assets/optimized/prize-bg-1x.webp") type("image/webp") 1x,
    url("../assets/optimized/prize-bg-2x.webp") type("image/webp") 2x);
}
.prize-pool-bg::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, var(--bg), rgba(11,17,26,0) 50%, var(--bg-deep)); }
.prize-pool-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 80px; padding-block: 60px 120px; }
.prize-pool-head { display: flex; flex-direction: column; align-items: center; gap: 24px; text-align: center; }
.prize-pool-head .eyebrow-gold { font-size: 20px; letter-spacing: 16px; }
.prize-pool-amount {
  font-size: 100px; font-weight: 800; line-height: 1.1; letter-spacing: -1px;
}
/* Reusable gold "shine": gold base with a narrow light band that sweeps
   across, then holds. Apply to any text element (the hero chip uses it on an
   inner <span> so the pill keeps its own background). */
.gold-sheen {
  background: linear-gradient(100deg,
    #fbd03c 0%, var(--gold) 40%,
    #fff7c2 47%, #fffdf2 50%, #fff7c2 53%,
    var(--gold) 60%, #fccf3f 100%);
  background-size: 300% 100%;
  background-position: 0% 0;
  -webkit-background-clip: text; background-clip: text;
  color: transparent; -webkit-text-fill-color: transparent;
  animation: prize-sheen 6s linear infinite;
}
/* Sweep the highlight across in the first ~0.8s, then hold gold until the
   next cycle. 0% and 100% both show pure gold, so the loop is seamless. */
@keyframes prize-sheen {
  0%   { background-position: 100% 0; }
  28%  { background-position: 0% 0; }
  100% { background-position: 0% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .gold-sheen { animation: none; }
}
/* Stagger the hero chip half a cycle out of phase with the big figure. */
.prize-amount .gold-sheen { animation-delay: -3s; }
.prize-pool-sub { font-size: 20px; color: var(--grey-1); }

.bonus-wrap { display: flex; flex-direction: column; align-items: center; gap: 12px; width: 100%; max-width: 960px; border-radius: 24px; -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px); }
.bonus-card { position: relative; width: 100%; border: 1px solid var(--line); border-radius: 24px; overflow: hidden; }
.bonus-card-bg {
  position: absolute; inset: 0; opacity: 0.2;
  background: url("../assets/optimized/welcome-bonus-bg-1x.webp") center/cover no-repeat;
  background-image: image-set(
    url("../assets/optimized/welcome-bonus-bg-1x.avif") type("image/avif") 1x,
    url("../assets/optimized/welcome-bonus-bg-2x.avif") type("image/avif") 2x,
    url("../assets/optimized/welcome-bonus-bg-1x.webp") type("image/webp") 1x,
    url("../assets/optimized/welcome-bonus-bg-2x.webp") type("image/webp") 2x);
}
.bonus-card > :not(.bonus-card-bg) { position: relative; z-index: 1; }
.bonus-card { display: flex; align-items: flex-end; justify-content: center; gap: 60px; padding-inline: 32px; }
.bonus-character { width: 237px; height: 453px; overflow: hidden; display: flex; align-items: flex-start; justify-content: center; padding-top: 60px; flex: none; }
.bonus-character img { width: 217px; height: 535px; max-width: none; object-fit: cover; object-position: bottom; }
.bonus-image-mobile { display: none; }
.bonus-body { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 48px; padding-block: 60px 48px; }
.bonus-text { display: flex; flex-direction: column; gap: 20px; }
.bonus-eyebrow { font-size: 18px; letter-spacing: 10.8px; }
.bonus-title { font-size: 56px; font-weight: 800; line-height: 1.1; letter-spacing: -1.12px; text-transform: uppercase; }
.bonus-note { font-size: 16px; color: var(--grey-1); }
.bonus-actions { display: flex; flex-direction: column; gap: 16px; }
.bonus-legal { font-size: 14px; line-height: 1.6; color: rgba(190,205,227,0.75); text-align: center; }
.prize-pool-operator { font-size: 13px; line-height: 1.6; color: rgba(190,205,227,0.5); text-align: center; }

/* ------------------------------- Schedule ------------------------------ */
#schedule { position: relative; overflow: hidden; }
#schedule::before { content: ''; width: 1380px; height: 580px; display: block; position: absolute; background-color: #0C2841; transform: rotate(-50deg); right: -700px; bottom: -100px; opacity: 0.2; z-index: 999;}
.schedule { position: relative; overflow: hidden; border-bottom: 1px solid var(--cyan); background: #050a12; }
.schedule-bg { position: absolute; inset: 0; z-index: 0; }
.schedule-bg::before {
  content: ""; position: absolute; inset: 0;
  background: url("../assets/optimized/schedule-background-1x.webp") center/cover no-repeat;
  background-image: image-set(
    url("../assets/optimized/schedule-background-1x.avif") type("image/avif") 1x,
    url("../assets/optimized/schedule-background-2x.avif") type("image/avif") 2x,
    url("../assets/optimized/schedule-background-1x.webp") type("image/webp") 1x,
    url("../assets/optimized/schedule-background-2x.webp") type("image/webp") 2x);
}
.schedule-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; gap: 48px; padding-block: 48px 80px; z-index: 9999;}

.schedule-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 32px; width: 100%; padding-inline: 8px; }
.schedule-head-text { display: flex; flex-direction: column; gap: 16px; }
.schedule .section-title { font-size: 36px; letter-spacing: -0.36px; }
.schedule-lead { font-size: 16px; line-height: 1.6; color: var(--grey-1); max-width: 560px; }
.presented-by { display: flex; flex-direction: column; align-items: flex-end; gap: 4px; flex: none; }
.presented-by-label { font-size: 15px; color: var(--grey-1); line-height: 1; }
.presented-by-mark { width: 160px; height: 31px; }

.schedule-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 24px; align-items: stretch; width: 100%; }
.schedule-figure { position: relative; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.schedule-figure iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.schedule-table-col { display: flex; flex-direction: column; gap: 16px; justify-content: center; }
.schedule-table {
  width: 100%; border: 1px solid var(--line); border-radius: 16px; overflow: hidden;
  backdrop-filter: blur(8px);
  background: rgba(18, 27, 41, 0.72);
}
.srow { display: flex; width: 100%; border-bottom: 1px solid var(--line-soft); }
.srow:last-child { border-bottom: 0; }
.srow-head { border-bottom: 1px solid var(--line); }
.scol-round { flex: 1; padding: 16px; font-size: 16px; font-weight: 600; color: #fff; }
.scol-date { width: 140px; flex: none; padding: 16px; display: flex; align-items: center; justify-content: center; font-size: 16px; color: var(--grey-1); }
.srow-head .scol-round, .srow-head .scol-date { font-size: 13px; font-weight: 400; color: rgba(190,205,227,0.75); letter-spacing: 2.6px; text-transform: uppercase; }
.muted { color: rgba(255,255,255,0.5) !important; }
.srow-active { background: rgba(22,189,249,0.1); }
.srow-active .scol-round { border-left: 3px solid var(--cyan); }

.standings { display: flex; align-items: center; gap: 12px; padding-inline: 8px; flex-wrap: wrap; }
.standings .divider-v { height: 24px; align-self: auto; }
.standings-label { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.5); }
.standings-year { font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.5); text-decoration: underline; cursor: pointer; }
.standings-year.is-active { color: rgba(255,255,255,0.75); text-decoration: none; cursor: default; }

.schedule-cta { display: flex; align-items: center; justify-content: center; gap: 36px; padding-block: 16px; width: 100%; flex-wrap: wrap; }
.schedule-cta-text { font-size: 24px; font-weight: 800; line-height: 1.1; letter-spacing: -0.48px; text-transform: uppercase; text-align: center; }

/* --------------------------------- News -------------------------------- */
.news-inner { display: flex; flex-direction: column; align-items: center; gap: 48px; padding-block: 120px 48px; z-index: 999; position: relative;}
#news { position: relative; overflow: hidden; }
#news::before { content: ''; width: 1380px; height: 580px; display: block; position: absolute; background-color: #0C2841; transform: rotate(-50deg); left: -700px; opacity: 0.2;}
.news-head { display: flex; flex-direction: column; align-items: center; gap: 16px; text-align: center; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; align-items: stretch; width: 100%; }
.news-col { display: flex; flex-direction: column; gap: 24px; }
.news-card { position: relative; border: 1px solid var(--line); border-radius: 16px; overflow: hidden; display: flex; align-items: flex-end; }
.news-card-featured { min-height: 500px; }
.news-col .news-card { flex: 1; min-height: 251px; }
.news-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; transition: transform 0.3s ease-in-out; }
.news-card:hover .news-img { transform: scale(1.1); }
.news-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(0,0,0,0), #000); z-index: 1; }
.news-card-body { position: relative; z-index: 2; width: 100%; }
.news-card-featured .news-card-body { padding: 24px 24px 32px; }
.news-col .news-card-body { padding: 20px; }
.news-tag { font-size: 15px; color: rgba(255,255,255,0.75); letter-spacing: 4.5px; text-transform: uppercase; line-height: 1; margin-bottom: 12px; text-align: left; }
.news-title { font-size: 28px; font-weight: 600; line-height: 1.3; letter-spacing: -0.28px; color: #fff; }
.news-title-sm { font-size: 24px; letter-spacing: -0.24px; }

/* --------------------------------- FAQ --------------------------------- */
.faqs-inner { display: flex; flex-direction: column; align-items: center; gap: 56px; padding-block: 80px 120px; }
.faq-list { width: 100%; max-width: 680px; }
.faq-item { padding-inline: 12px; }
.faq-item + .faq-item { border-top: 1px solid var(--line-mid); }
.faq-item { padding-block: 36px 24px; }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 24px; text-align: left;
  padding: 0;
  font-size: 18px; font-weight: 600; line-height: 1.4; letter-spacing: -0.18px; color: #fff;
}
.faq-chevron { width: 20px; height: 20px; flex: none; transition: transform .25s ease; }
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-answer { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .25s ease; }
.faq-item.is-open .faq-answer { grid-template-rows: 1fr; }
/* constant padding stays inside the animated (overflow-clipped) area, so the
   grid-rows transition is smooth — toggling padding on .is-open caused a jump */
.faq-answer > * { overflow: hidden; padding-top: 12px; }
.faq-answer p { font-size: 16px; line-height: 1.6; color: var(--grey-1); }
.faq-answer p + p { margin-top: 12px; }

/* ------------------------------- Partners ------------------------------ */
.partners { opacity: 0.75; }
.partners-inner { display: flex; flex-direction: column; align-items: center; gap: 60px; padding-block: 24px 80px; }
.partners-label { font-size: 15px; letter-spacing: 9px; color: #fff; text-align: center; }
.partner-logos { display: flex; align-items: center; justify-content: space-between; gap: 40px; width: 100%; max-width: 1024px; flex-wrap: wrap; }
.partner-logos li { display: flex; align-items: center; justify-content: center; flex: 0 0 auto; }
.partner-logos img { height: 36px; width: auto; max-width: none; flex: none; object-fit: contain; }
/* per-logo height overrides */
.partner-logos img[src*="hotspawn-logo"]  { height: 28px; }
.partner-logos img[src*="partner-grid"]    { height: 25px; }
.partner-logos img[src*="partner-gmr"]     { height: 36px; }
.partner-logos img[src*="partner-gamersx"] { height: 34px; }
.partner-logos img[src*="partner-hltv"]    { height: 36px; }
.partner-logos img[src*="partner-x"]       { height: 35px; }

/* -------------------------------- Footer ------------------------------- */
.site-footer { background: rgba(0,0,0,0.4); border-bottom: 1px solid var(--line); }
.footer-inner { display: flex; flex-direction: column; gap: 60px; padding-block: 80px 60px; }
.footer-top { display: flex; align-items: flex-start; gap: 80px; flex-wrap: wrap; }
.footer-brand { display: flex; flex-direction: column; gap: 12px; width: 404px; flex: none; }
.footer-logo-link { display: inline-block; width: 240px; max-width: 100%; }
.footer-logo { width: 240px; height: 30.667px; }
.footer-tagline { font-size: 15px; font-weight: 500; color: rgba(190,205,227,0.75); }
.footer-links { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 16px; }
.footer-links-title { font-size: 18px; font-weight: 600; letter-spacing: -0.18px; }
.footer-links-cols { display: flex; gap: 80px; }
.footer-links-cols ul { flex: 1; color: var(--grey-1); font-size: 15px; font-weight: 500; }
.footer-links-cols li { line-height: 2.4; }
.footer-divider { background: var(--line-mid); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
.footer-copy { font-size: 13px; line-height: 1.8; font-weight: 500; color: rgba(190,205,227,0.5); max-width: 660px; }
.footer-pay { display: flex; align-items: center; gap: 12px; }
.footer-pay img { width: 28px; height: 28px; object-fit: cover; }
.footer-badges { display: flex; align-items: center; gap: 20px; }
.footer-badge-link { display: inline-flex; align-items: center; }
.footer-exchange { width: 88px; height: 24px; }
.footer-badge { position: relative; width: 36px; height: 38px; overflow: hidden; display: block; flex: none; }
.footer-badge img { position: absolute; left: 0; top: 2.03%; width: 100%; height: 95.24%; max-width: none; }
.footer-badge-img { width: 34px; height: 38px; object-fit: cover; }

/* =====================================================================
   RESPONSIVE — mobile layout takes over at <= 768px (matches MobileV2)
   ===================================================================== */
@media (max-width: 768px) {
  /* nav */
  .nav-actions { display: none; }
  .nav-toggle { display: block; }
  .header-inner { padding: 20px 16px; }
  .mobile-menu { display: none; flex-direction: column; gap: 12px; padding: 16px; border-bottom: 1px solid var(--line); background: rgba(4,8,14,0.97); }
  .mobile-menu.is-open { display: flex; }
  .mobile-menu .nav-link { padding: 4px 0; }

  /* hero */
  .hero { min-height: 0; }
  .hero-bg::before {
    background-image: url("../assets/optimized/hero-bg-mobile-1x.webp");
    background-image: image-set(
      url("../assets/optimized/hero-bg-mobile-1x.avif") type("image/avif") 1x,
      url("../assets/optimized/hero-bg-mobile-2x.avif") type("image/avif") 2x,
      url("../assets/optimized/hero-bg-mobile-1x.webp") type("image/webp") 1x,
      url("../assets/optimized/hero-bg-mobile-2x.webp") type("image/webp") 2x);
  }
  .hero-inner { gap: 24px; padding-block: 96px 32px; align-items: stretch; }
  .hero-inner > * { max-width: none; }
  .hero-prize-row { flex-wrap: nowrap; justify-content: space-between; gap: 16px; }
  .prize-block { width: auto; align-items: flex-start; flex: none; }
  .prize-label { text-align: left; letter-spacing: 3.96px; }
  .prize-amount { font-size: 16px; letter-spacing: 0.8px; }
  .brand-row .divider-v, .hero-prize-row > .divider-v { display: none; }
  .emblem { width: 91px; height: 54px; }
  .brand-wordmark { display: none; }
  .brand-glyph { display: block; }
  .hero-title { font-size: clamp(48px, 16vw, 66px); letter-spacing: -1.32px; }
  .title-full { display: none; }
  .title-short { display: block; }
  .hero-heading { margin-bottom: 240px; }
  .hero-sub { font-size: 17px; padding-inline: 0; }
  .hero-cta { align-items: stretch; width: 100%; }
  .cta-row { flex-direction: column; gap: 8px; }
  .cta-row .btn { width: 100%; }
  .tag-row { justify-content: center; padding-inline: 0; }
  .featuring { display: none; }

  /* teams showcase */
  .teams-showcase { display: block; }

  /* prize pool */
  .prize-pool-inner { gap: 48px; padding-block: 48px; }
  .prize-pool-head .eyebrow-gold { font-size: 13px; letter-spacing: 8px; }
  .prize-pool-amount { font-size: clamp(44px, 15vw, 60px); }
  .prize-pool-sub { font-size: 17px; }
  .bonus-card { flex-direction: column; align-items: center; gap: 0; padding-inline: 16px; text-align: center; }
  .bonus-card-bg { display: none; }
  .bonus-character { display: none; }
  .bonus-image-mobile { display: block; width: 100%; max-width: 100%; margin-inline: auto; }
  .bonus-body { padding-block: 16px 24px; gap: 36px; align-items: center; }
  .bonus-text { align-items: center; }
  .bonus-eyebrow { letter-spacing: 0.3em; }
  .bonus-title { font-size: 32px; letter-spacing: -0.64px; }

  /* schedule */
  .schedule-inner { gap: 32px; padding-block: 40px 48px; }
  .schedule-head { flex-direction: column; align-items: flex-start; gap: 24px; padding-inline: 4px; }
  .presented-by { align-items: flex-start; }
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-figure { aspect-ratio: 16 / 9; }
  .schedule-cta { flex-direction: column; gap: 20px; }
  .schedule-cta .btn { width: 100%; }

  /* news */
  .news-inner { gap: 32px; padding-block: 64px 32px; }
  .news-grid { grid-template-columns: 1fr; }
  .news-card-featured { min-height: 300px; }
  .news-title { font-size: 22px; }
  .news-title-sm { font-size: 20px; }

  /* faq */
  .faqs-inner { gap: 36px; padding-block: 48px 64px; }
  .faq-question { gap: 16px; font-size: 16px; }

  /* partners */
  .partners-inner { gap: 40px; padding-block: 24px 64px; }
  .partner-logos { justify-content: center; gap: 32px 40px; }

  /* footer */
  .footer-inner { gap: 36px; padding-block: 48px; }
  .footer-top { flex-direction: column; gap: 48px; }
  .footer-brand { width: 100%; }
  .footer-links-cols { flex-direction: column; gap: 0; }
  .footer-links-cols li { line-height: 2.4; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 24px; }
}

/* stack footer top into a column on narrower screens */
@media (max-width: 1200px) {
  .footer-top { flex-direction: column; }
}

/* small tablet tidy-up between the two pinned designs */
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-title { font-size: clamp(44px, 6vw, 64px); }
  .bonus-title { font-size: clamp(40px, 5.5vw, 56px); }
  .footer-links-cols { gap: 40px; }
  .partner-logos { gap: 28px; }
}
