/* =====================================================
   PICK ONE — Landing
   Pixel-perfect port of Figma node 230:2 (1440×11584)
   ===================================================== */

@import url('./styles.tokens.css');

/* i18n FOUC mitigation: dim body until bootstrap finishes applying dict. */
html[data-loading] body { opacity: 0.35; }
body { transition: opacity 0.15s ease; }

/* Background music toggle button (bottom-right floating) */
.bg-audio-btn {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(10, 10, 26, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 9999;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
  font-size: 18px;
  padding: 0;
}
.bg-audio-btn:hover {
  transform: translateY(-1px);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}
.bg-audio-btn.is-on {
  color: #FF4680;
  border-color: rgba(255, 70, 128, 0.45);
  box-shadow: 0 4px 14px rgba(255, 70, 128, 0.25);
}
.bg-audio-btn__icon { display: inline-flex; line-height: 1; }
@media (max-width: 640px) {
  .bg-audio-btn { right: 12px; bottom: 12px; width: 40px; height: 40px; font-size: 16px; }
}

:root {
  /* Back-compat aliases for pre-existing selectors.
     Source of truth: styles.tokens.css (generated from design-specs/tokens.source.json). */
  --bg: var(--bg-primary);          /* was #0a0a1a — now matches Figma canvas #1A1A2E */
  --bg2: var(--bg-secondary);
  --green: var(--mint);
  --purple: var(--text-secondary); /* #8F94FB matches the old --purple value */

  --white: var(--text-primary);
  --w04: var(--surface04);
  --w05: var(--surface05);
  --w08: var(--surface08);
  --w10: var(--surface10);
  --w12: var(--surface12);
  --w30: var(--surface30);
  --w40: var(--surface40);
  --w55: var(--surface55);
  --w65: var(--surface65);
  --w85: var(--surface85);

  /* Typography aliases */
  --f-display: var(--font-display);
  --f-body: var(--font-body);

  /* Layout (landing-specific, not in token file) */
  --container: 1440px;
  --gutter: 80px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: var(--f-body);
  font-weight: 500;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }
h1,h2,h3,h4 { margin: 0; font-family: var(--f-display); line-height: 1.1; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* =====================================================
   Reveal on scroll
   ===================================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }

/* =====================================================
   Buttons
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px;
  height: 48px;
  border-radius: 14px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.2px;
  transition: transform .18s ease, box-shadow .3s ease, background .2s ease;
  white-space: nowrap;
  cursor: pointer;
}
.btn--sm { height: 40px; padding: 0 18px; font-size: 13px; border-radius: 12px; }
.btn--lg { height: 76px; padding: 0 36px; font-size: 17px; border-radius: 18px; }
.btn--xl { height: 76px; padding: 0 40px; font-size: 17px; border-radius: 18px; }

.btn--primary {
  background: var(--pink);
  color: var(--white);
  box-shadow: 0 10px 28px rgba(255,0,122,0.45), 0 0 0 1px rgba(255,0,122,0.6) inset;
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(255,0,122,0.6); }
.btn--lg.btn--primary, .btn--xl.btn--primary { box-shadow: 0 18px 50px rgba(255,0,122,0.55); }

.btn--ghost {
  background: var(--w08);
  color: var(--white);
  border: 1px solid var(--w12);
}
.btn--ghost:hover { background: var(--w12); }

.btn--ghost-lg {
  height: 76px;
  padding: 0 28px;
  border-radius: 18px;
  background: var(--w04);
  color: var(--white);
  border: 1px solid var(--w12);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
}

/* =====================================================
   Header
   ===================================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,26,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--w08);
  height: 88px;
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__dot {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ff5db1, var(--pink) 60%);
  box-shadow: 0 0 24px rgba(255,0,122,0.6);
}
.logo__text {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.5px;
}
.logo--lg .logo__dot { width: 32px; height: 32px; }

.nav { display: flex; gap: 36px; }
.nav a {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--w85);
  transition: color .2s ease;
}
.nav a:hover { color: var(--pink); }
.header__actions { display: flex; align-items: center; gap: 12px; }

/* =====================================================
   Hero
   ===================================================== */
.hero {
  position: relative;
  padding: 108px 0 24px;
  min-height: 852px;
  overflow: hidden;
}
.hero__mesh {
  position: absolute; inset: -10% -10% -10% -10%;
  background:
    radial-gradient(60% 50% at 20% 30%, rgba(255,0,122,0.30), transparent 60%),
    radial-gradient(45% 40% at 80% 25%, rgba(0,212,255,0.20), transparent 60%),
    radial-gradient(50% 40% at 50% 80%, rgba(143,148,251,0.18), transparent 60%);
  filter: blur(40px);
  z-index: 0;
}
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 560px;
  gap: 40px;
  z-index: 1;
}
.hero__tick {
  display: inline-block;
  padding: 10px 20px;
  background: var(--w08);
  border: 1px solid var(--w12);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 32px;
}
.hero__tick b { color: var(--pink); font-weight: 800; }

.hero__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 168px;
  line-height: 0.9;
  letter-spacing: -3px;
  background: linear-gradient(135deg, #ffffff 0%, var(--pink) 55%, var(--purple) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 80px rgba(255,0,122,0.4);
  margin-bottom: 18px;
  white-space: nowrap;
}
.hero__subtitle {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 72px;
  line-height: 1.1;
  margin-bottom: 28px;
  color: var(--white);
  white-space: nowrap;
}
.hero__desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--w85);
  max-width: 520px;
  margin-bottom: 36px;
}

.hero__badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 48px; }
.fmt-badge {
  display: inline-flex;
  padding: 10px 18px;
  background: var(--w05);
  border: 1px solid var(--w10);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  color: var(--w85);
}

.hero__cta { display: flex; gap: 16px; margin-bottom: 28px; }

.hero__micro {
  font-size: 13px;
  color: var(--w55);
  font-weight: 500;
}

.hero__right { position: relative; min-height: 720px; }

/* =====================================================
   Hero mockups — 3 мокапа коллажем по Figma 230:45/72/88
   ===================================================== */
.hero-mock {
  position: absolute;
  background: rgba(22,33,62,0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 28px;
}
.hero-mock__status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--w10);
  margin-bottom: 14px;
}
.hero-mock__brand {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.8px;
  color: var(--white);
}
.hero-mock__chip {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 999px;
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.2px;
}
.hero-mock__chip--pink {
  background: rgba(255,0,122,0.2);
  border: 1px solid rgba(255,0,122,0.55);
  color: var(--pink);
}
.hero-mock__chip--gold {
  background: rgba(255,215,0,0.18);
  border: 1px solid rgba(255,215,0,0.55);
  color: var(--gold);
}
.hero-mock__chip--cyan {
  background: rgba(0,212,255,0.18);
  border: 1px solid rgba(0,212,255,0.55);
  color: var(--cyan);
}

/* 3 CARDS — главный мокап (центр) */
.hero-mock--main {
  width: 380px;
  top: 20px;
  left: 40px;
  padding: 22px 22px 18px;
  border: 1px solid rgba(255,0,122,0.45);
  box-shadow: 0 40px 100px rgba(255,0,122,0.35), 0 0 0 1px rgba(255,255,255,0.05) inset;
  transform: rotate(-3deg);
  animation: float 6s ease-in-out infinite;
  z-index: 2;
}
@keyframes float { 0%,100%{ transform: rotate(-3deg) translateY(0);} 50%{ transform: rotate(-3deg) translateY(-12px);} }

.hero-mock__question {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  margin-bottom: 14px;
  color: var(--white);
}

.hmc-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--w05);
  border: 1px solid var(--w10);
  border-radius: 14px;
  padding: 12px 14px;
  margin-bottom: 10px;
  position: relative;
}
.hmc-card:last-child { margin-bottom: 0; }
.hmc-card--nirvana { border-color: rgba(255,0,122,0.5); box-shadow: 0 0 24px rgba(255,0,122,0.15); }
.hmc-card--bts { border-color: rgba(0,212,255,0.45); }
.hmc-card--metallica { border-color: rgba(255,215,0,0.45); }
.hmc-card__ph {
  width: 46px;
  height: 46px;
  background: rgba(255,255,255,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.hmc-card__meta { flex: 1; min-width: 0; }
.hmc-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.hmc-card__sub {
  font-size: 10px;
  color: var(--w55);
  margin: 2px 0 6px;
}
.hmc-card__bar {
  height: 5px;
  background: var(--w08);
  border-radius: 3px;
  overflow: hidden;
}
.hmc-card__bar > div {
  height: 100%;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
}
.hmc-card__pct {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--pink);
  flex-shrink: 0;
}
.hmc-card--bts .hmc-card__pct { color: var(--cyan); }
.hmc-card--metallica .hmc-card__pct { color: var(--gold); }

/* WORLD CUP — верхний правый мокап */
.hero-mock--wc {
  width: 230px;
  top: -10px;
  right: 0;
  padding: 18px;
  border: 1px solid rgba(255,215,0,0.5);
  box-shadow: 0 30px 80px rgba(255,215,0,0.25);
  transform: rotate(5deg);
  animation: float-wc 7s ease-in-out infinite;
  z-index: 3;
}
@keyframes float-wc { 0%,100%{ transform: rotate(5deg) translateY(0);} 50%{ transform: rotate(5deg) translateY(-10px);} }
.hero-mock__round {
  font-family: var(--f-body);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.4px;
  color: var(--gold);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.wc-card {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,215,0,0.08);
  border: 1px solid rgba(255,215,0,0.35);
  border-radius: 12px;
  padding: 10px 12px;
}
.wc-card__ph {
  width: 36px;
  height: 36px;
  background: rgba(255,215,0,0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.wc-card__meta { min-width: 0; }
.wc-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 12px;
  color: var(--white);
  letter-spacing: 0.4px;
}
.wc-card__sub {
  font-size: 9px;
  color: var(--w55);
  margin-top: 2px;
}
.wc-vs {
  text-align: center;
  margin: 10px 0;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: 2px;
  background: linear-gradient(90deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* A vs B — нижний левый мокап */
.hero-mock--ab {
  width: 200px;
  bottom: 20px;
  left: -20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(0,212,255,0.5);
  box-shadow: 0 30px 80px rgba(0,212,255,0.3);
  transform: rotate(-6deg);
  animation: float-ab 8s ease-in-out infinite;
  z-index: 4;
}
@keyframes float-ab { 0%,100%{ transform: rotate(-6deg) translateY(0);} 50%{ transform: rotate(-6deg) translateY(-8px);} }
.ab-big {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 84px;
  line-height: 1;
  background: linear-gradient(135deg, var(--cyan), var(--purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-align: center;
  margin: 8px 0 2px;
}
.ab-sub {
  text-align: center;
  font-size: 11px;
  color: var(--w55);
  letter-spacing: 0.5px;
}

/* =====================================================
   Stats bar
   ===================================================== */
.stats { padding: 60px 0 60px; }
.stats__bar {
  display: grid;
  grid-template-columns: 1fr 1px 1fr 1px 1fr 1px 1fr;
  align-items: center;
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: 24px;
  padding: 26px 40px 30px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  min-height: 140px;
}
.stats__item { text-align: center; }
.stats__num {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 52px;
  line-height: 1;
  margin-bottom: 14px;
  font-variant-numeric: tabular-nums;
}
.stats__num--pink { color: var(--pink); text-shadow: 0 0 40px rgba(255,0,122,0.5); }
.stats__num--cyan { color: var(--cyan); text-shadow: 0 0 40px rgba(0,212,255,0.5); }
.stats__num--gold { color: var(--gold); text-shadow: 0 0 40px rgba(255,215,0,0.5); }
.stats__num--green { color: var(--green); text-shadow: 0 0 40px rgba(46,213,115,0.5); }
.stats__lbl {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--w55);
  letter-spacing: 0.3em;
}
.stats__div { width: 1px; height: 60px; background: var(--w10); }

/* =====================================================
   Section head (shared)
   ===================================================== */
.section-head { text-align: center; margin-bottom: 60px; }
.section-head__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--purple);
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.section-head__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 62px;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}
.section-head__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  color: var(--w65);
}

/* =====================================================
   Formats
   ===================================================== */
.formats { padding: 80px 0 60px; }
.formats__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 20px; }

.fmt-card {
  position: relative;
  background: rgba(22,33,62,0.6);
  border: 1.5px solid var(--w10);
  border-radius: 32px;
  padding: 32px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4);
  transition: transform .3s ease, box-shadow .3s ease;
  overflow: hidden;
}
.fmt-card:hover { transform: translateY(-6px); }
.fmt-card--pink { border-color: rgba(255,0,122,0.3); box-shadow: 0 20px 50px rgba(255,0,122,0.2); }
.fmt-card--gold { border-color: rgba(255,215,0,0.3); box-shadow: 0 20px 50px rgba(255,215,0,0.15); }
.fmt-card--cyan { border-color: rgba(0,212,255,0.3); box-shadow: 0 20px 50px rgba(0,212,255,0.15); }

.fmt-card__mock {
  height: 280px;
  background: var(--w04);
  border-radius: 20px;
  margin-bottom: 22px;
  display: flex; align-items: center; justify-content: center; gap: 14px;
  padding: 30px;
}
.fmt-mini {
  flex: 1;
  height: 140px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 42px;
  font-family: var(--f-display);
  font-weight: 900;
}
.fmt-mini--purple { background: linear-gradient(160deg, rgba(143,148,251,0.3), rgba(143,148,251,0.08)); border: 1px solid rgba(143,148,251,0.5); color: var(--purple); }
.fmt-mini--gold { background: linear-gradient(160deg, rgba(255,215,0,0.3), rgba(255,215,0,0.08)); border: 1px solid rgba(255,215,0,0.5); color: var(--gold); }
.fmt-mini--cyan { background: linear-gradient(160deg, rgba(0,212,255,0.3), rgba(0,212,255,0.08)); border: 1px solid rgba(0,212,255,0.5); color: var(--cyan); }

.fmt-card__mock--bracket { flex-direction: column; align-items: center; gap: 6px; }
.fmt-mini-cell {
  width: 120px; height: 16px;
  background: rgba(255,215,0,0.12);
  border: 1px solid rgba(255,215,0,0.5);
  border-radius: 4px;
}
.fmt-mini-cell--win { background: rgba(255,215,0,0.3); border-color: var(--gold); height: 22px; }

.fmt-card__mock--vs { gap: 20px; }
.fmt-ab-card {
  flex: 1;
  height: 140px;
  background: linear-gradient(160deg, rgba(0,212,255,0.25), rgba(0,212,255,0.05));
  border: 1px solid rgba(0,212,255,0.5);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 56px;
  color: var(--cyan);
}
.fmt-ab-vs {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--white);
  opacity: 0.55;
}

.fmt-card__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--pink);
  margin-bottom: 12px;
}
.fmt-card--gold .fmt-card__eyebrow { color: var(--gold); }
.fmt-card--cyan .fmt-card__eyebrow { color: var(--cyan); }

.fmt-card__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: 0.5px;
}
.fmt-card__desc {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.55;
  color: var(--w65);
  margin-bottom: 24px;
}
.fmt-card__list li {
  position: relative;
  padding-left: 16px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--w85);
  margin-bottom: 12px;
}
.fmt-card__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 9px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--pink);
}
.fmt-card--gold .fmt-card__list li::before { background: var(--gold); }
.fmt-card--cyan .fmt-card__list li::before { background: var(--cyan); }

/* =====================================================
   Demo block
   ===================================================== */
.demo { padding: 40px 0 60px; }
.demo__box {
  background: rgba(22,33,62,0.5);
  border: 1px solid var(--w10);
  border-radius: 32px;
  padding: 48px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.demo__head { text-align: center; margin-bottom: 36px; }
.demo__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 32px;
  color: var(--white);
  margin-bottom: 8px;
}
.demo__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  color: var(--purple);
}
.demo__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}
.dc {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.dc:hover { transform: translateY(-4px); }
.dc--pink { border-color: rgba(255,0,122,0.4); box-shadow: 0 10px 40px rgba(255,0,122,0.15); }
.dc--gold { border-color: rgba(255,215,0,0.4); box-shadow: 0 10px 40px rgba(255,215,0,0.12); }
.dc--cyan { border-color: rgba(0,212,255,0.4); box-shadow: 0 10px 40px rgba(0,212,255,0.12); }

.dc__photo {
  height: 160px;
  border-radius: 14px;
  background: var(--w05);
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  margin-bottom: 16px;
}
.dc--pink .dc__photo { background: linear-gradient(160deg, rgba(255,0,122,0.25), rgba(255,0,122,0.05)); }
.dc--gold .dc__photo { background: linear-gradient(160deg, rgba(255,215,0,0.25), rgba(255,215,0,0.05)); }
.dc--cyan .dc__photo { background: linear-gradient(160deg, rgba(0,212,255,0.25), rgba(0,212,255,0.05)); }
.dc__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}
.dc__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--w55);
  margin-bottom: 16px;
}
.dc__bar {
  height: 8px;
  background: var(--w08);
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 10px;
}
.dc__fill { height: 100%; border-radius: 4px; }
.dc__fill--pink { background: var(--pink); box-shadow: 0 0 20px rgba(255,0,122,0.6); }
.dc__fill--gold { background: var(--gold); box-shadow: 0 0 20px rgba(255,215,0,0.5); }
.dc__fill--cyan { background: var(--cyan); box-shadow: 0 0 20px rgba(0,212,255,0.5); }
.dc__pct {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 24px;
}
.dc--pink .dc__pct { color: var(--pink); }
.dc--gold .dc__pct { color: var(--gold); }
.dc--cyan .dc__pct { color: var(--cyan); }

.demo__ctaRow { text-align: center; }

/* =====================================================
   Trends
   ===================================================== */
.trends { padding: 60px 0 60px; position: relative; }
.trends__grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 16px; }
.trends__more { text-align: center; margin-top: 32px; }
.trends__more a { color: var(--pink); font-size: 14px; font-weight: 600; text-decoration: none; }
.trends__more a:hover { text-decoration: underline; }

.tb {
  position: relative;
  background: rgba(22,33,62,0.6);
  border: 1px solid var(--w10);
  border-radius: 24px;
  padding: 16px;
  transition: transform .25s ease, border-color .25s ease;
  cursor: pointer;
}
.tb:hover { transform: translateY(-4px); border-color: rgba(255,0,122,0.4); }

.tb__photo {
  height: 180px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 72px;
  margin-bottom: 14px;
  overflow: hidden;
}
.tb__photo--pink { background: linear-gradient(160deg, rgba(255,0,122,0.25), rgba(255,0,122,0.05)); }
.tb__photo--cyan { background: linear-gradient(160deg, rgba(0,212,255,0.25), rgba(0,212,255,0.05)); }
.tb__photo--gold { background: linear-gradient(160deg, rgba(255,215,0,0.25), rgba(255,215,0,0.05)); }
.tb__photo--green { background: linear-gradient(160deg, rgba(46,213,115,0.25), rgba(46,213,115,0.05)); }
.tb__photo--purple { background: linear-gradient(160deg, rgba(143,148,251,0.25), rgba(143,148,251,0.05)); }

.tb__chip {
  position: absolute;
  top: 28px; left: 28px;
  padding: 4px 10px;
  border: 1px solid rgba(255,0,122,0.6);
  background: rgba(255,0,122,0.15);
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.tb__live {
  position: absolute;
  top: 28px; right: 28px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  background: rgba(10,10,26,0.65);
  border: 1px solid var(--w12);
  border-radius: 100px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 9px;
  color: var(--white);
  letter-spacing: 0.5px;
}
.tb__live i {
  width: 6px; height: 6px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--green);
  animation: pulse 1.4s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{ opacity: 1; transform: scale(1); } 50%{ opacity: .55; transform: scale(1.3); } }

.tb__meta {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 10px;
  color: var(--pink);
  letter-spacing: 1px;
  margin-bottom: 6px;
}
.tb__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 1.22;
  margin-bottom: 12px;
  color: var(--white);
  min-height: 44px;
}
.tb__votes {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--w85);
}
.tb__votes b { font-weight: 700; }
.tb__votesLbl { font-size: 11px; color: var(--w40); }

.tb__play {
  position: absolute;
  right: 16px; bottom: 16px;
  width: 36px; height: 36px;
  border-radius: 18px;
  background: var(--pink);
  color: var(--white);
  font-size: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(255,0,122,0.5);
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.tb__play:hover { filter: brightness(1.1); }

/* =====================================================
   Categories
   ===================================================== */
.categories { padding: 60px 0; }
.cat-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

.cat {
  display: block;
  padding: 24px;
  background: rgba(255,0,122,0.08);
  border: 1px solid rgba(255,0,122,0.3);
  border-radius: 24px;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
  height: 180px;
  position: relative;
  overflow: hidden;
}
.cat:nth-child(2) { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.3); }
.cat:nth-child(3) { background: rgba(143,148,251,0.08); border-color: rgba(143,148,251,0.3); }
.cat:nth-child(4) { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.3); }
.cat:nth-child(5) { background: rgba(46,213,115,0.08); border-color: rgba(46,213,115,0.3); }
.cat:nth-child(6) { background: rgba(255,0,122,0.08); border-color: rgba(255,0,122,0.3); }
.cat:nth-child(7) { background: rgba(0,212,255,0.08); border-color: rgba(0,212,255,0.3); }
.cat:nth-child(8) { background: rgba(255,215,0,0.08); border-color: rgba(255,215,0,0.3); }
.cat:hover { transform: translateY(-4px); }

.cat__emoji {
  position: absolute;
  top: 30px;
  right: 20px;
  font-size: 72px;
  line-height: 1;
  pointer-events: none;
}
.cat__txt { position: relative; z-index: 1; }
.cat__txt h3 {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--white);
  margin: 0 0 6px;
  line-height: 1.1;
  letter-spacing: 0.3px;
}
.cat__count {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 12px;
  color: var(--pink);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cat:nth-child(2) .cat__count { color: var(--cyan); }
.cat:nth-child(3) .cat__count { color: var(--purple); }
.cat:nth-child(4) .cat__count { color: var(--gold); }
.cat:nth-child(5) .cat__count { color: var(--green); }
.cat:nth-child(7) .cat__count { color: var(--cyan); }
.cat:nth-child(8) .cat__count { color: var(--gold); }
.cat__time {
  position: absolute;
  left: 24px;
  bottom: 24px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 11px;
  color: var(--w55);
}
.cat__arrow {
  position: absolute;
  right: 24px;
  bottom: 16px;
  font-size: 24px;
  color: var(--w65);
  font-weight: 700;
}

/* =====================================================
   How it works
   ===================================================== */
.how { padding: 60px 0; }
.how__grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }

.step {
  position: relative;
  background: var(--w04);
  border: 1px solid rgba(255,0,122,0.25);
  border-radius: 28px;
  padding: 32px;
  overflow: hidden;
}
.step__mock {
  height: 180px;
  background: var(--w04);
  border-radius: 18px;
  margin-bottom: 28px;
  position: relative;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 28px;
}
.step__mini {
  flex: 1;
  height: 100px;
  background: rgba(255,0,122,0.12);
  border: 1px solid rgba(255,0,122,0.35);
  border-radius: 10px;
}
.step__mini:nth-child(2) { background: rgba(0,212,255,0.12); border-color: rgba(0,212,255,0.35); }
.step__mini:nth-child(3) { background: rgba(255,215,0,0.12); border-color: rgba(255,215,0,0.35); }
.step__finger {
  position: absolute;
  bottom: 24px; left: 50%;
  transform: translateX(-50%);
  font-size: 32px;
  animation: tap 2s ease-in-out infinite;
}
@keyframes tap { 0%,100%{ transform: translateX(-50%) translateY(0); } 50%{ transform: translateX(-50%) translateY(-8px); } }

.step:nth-child(2) .step__mock { background: linear-gradient(160deg, rgba(0,212,255,0.1), transparent); }
.step:nth-child(3) .step__mock { background: linear-gradient(160deg, rgba(255,215,0,0.1), transparent); }

.step__chart {
  width: 100%; height: 100%;
  background:
    linear-gradient(90deg, rgba(255,0,122,0.6) 0 60%, rgba(255,255,255,0.12) 60% 100%) no-repeat 0 0/100% 18px,
    linear-gradient(90deg, rgba(0,212,255,0.6) 0 40%, rgba(255,255,255,0.12) 40% 100%) no-repeat 0 28px/100% 18px,
    linear-gradient(90deg, rgba(255,215,0,0.6) 0 30%, rgba(255,255,255,0.12) 30% 100%) no-repeat 0 56px/100% 18px,
    linear-gradient(90deg, rgba(143,148,251,0.6) 0 20%, rgba(255,255,255,0.12) 20% 100%) no-repeat 0 84px/100% 18px;
}
.step__dna {
  width: 100%; height: 100%;
  background:
    radial-gradient(circle 30px at 30% 40%, rgba(255,0,122,0.5), transparent 80%),
    radial-gradient(circle 30px at 60% 60%, rgba(0,212,255,0.45), transparent 80%),
    radial-gradient(circle 30px at 75% 35%, rgba(255,215,0,0.45), transparent 80%);
}

.step__big {
  position: absolute;
  top: 24px; right: 28px;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 80px;
  line-height: 1;
  color: rgba(255,255,255,0.18);
}
.step__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--pink);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.step__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 26px;
  line-height: 1.1;
  margin-bottom: 12px;
  color: var(--white);
}
.step__desc {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: var(--w65);
}

/* =====================================================
   Identity / DNA
   ===================================================== */
.identity { padding: 60px 0; }
.identity__inner { display: grid; grid-template-columns: 1fr 600px; gap: 140px; align-items: center; }

.section-head__eyebrow + .identity__title { margin-top: 16px; }
.identity__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 62px;
  line-height: 1.08;
  margin-bottom: 20px;
  color: var(--white);
  letter-spacing: -0.3px;
}
.identity__desc {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  color: var(--w65);
  margin-bottom: 28px;
}
.identity__list { margin-bottom: 32px; }
.identity__list li {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 14px;
  color: var(--w85);
  margin-bottom: 10px;
}

.dna-card {
  width: 600px;
  max-width: 100%;
  height: 540px;
  background: rgba(22,33,62,0.7);
  border: 2px solid rgba(255,0,122,0.4);
  border-radius: 32px;
  padding: 40px 44px;
  box-shadow: 0 0 60px rgba(255,0,122,0.4), 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
}
.dna-card__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 12px;
  color: var(--purple);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.dna-card__head { display: flex; align-items: center; gap: 18px; margin-bottom: 28px; }
.dna-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), #ff5db1);
  border: 3px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 28px;
  color: var(--white);
  flex-shrink: 0;
}
.dna-card__name {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 4px;
}
.dna-card__meta { font-family: var(--f-body); font-weight: 500; font-size: 12px; color: var(--w55); }
.dna-card__verdict {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1.09;
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}
.dna-card__rank {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--w85);
  margin-bottom: 28px;
}
.dna-bars li {
  display: grid;
  grid-template-columns: 120px 1fr 44px;
  gap: 14px;
  align-items: center;
  margin-bottom: 14px;
}
.dna-bars li span {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
}
.dna-bars li b {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 13px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.dna-bar {
  height: 6px;
  background: var(--w08);
  border-radius: 3px;
  overflow: hidden;
}
.dna-bar__fill { height: 100%; border-radius: 3px; }
.dna-bar__fill--pink { background: var(--pink); box-shadow: 0 0 12px rgba(255,0,122,0.6); }
.dna-bar__fill--cyan { background: var(--cyan); box-shadow: 0 0 12px rgba(0,212,255,0.5); }
.dna-bar__fill--gold { background: var(--gold); box-shadow: 0 0 12px rgba(255,215,0,0.5); }
.dna-bar__fill--green { background: var(--green); box-shadow: 0 0 12px rgba(46,213,115,0.5); }
.dna-bar__fill--purple { background: var(--purple); box-shadow: 0 0 12px rgba(143,148,251,0.5); }

/* =====================================================
   Tournaments / Bracket
   ===================================================== */
.tournaments { padding: 60px 0; }
.tournaments__inner { display: grid; grid-template-columns: 620px 1fr; gap: 60px; align-items: center; }

.bracket-card {
  width: 620px;
  max-width: 100%;
  height: 580px;
  background: rgba(22,33,62,0.7);
  border: 2px solid rgba(255,215,0,0.4);
  border-radius: 32px;
  padding: 40px;
  box-shadow: 0 0 50px rgba(255,215,0,0.3), 0 30px 80px rgba(0,0,0,0.5);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
}
.bracket-card__eyebrow {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}
.bracket-card__title {
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 24px;
}

.bracket {
  position: relative;
  height: 360px;
  display: flex;
  gap: 30px;
}
.bracket__col { display: flex; flex-direction: column; justify-content: space-between; flex-shrink: 0; width: 110px; z-index: 2; }
.bracket__col--2 { width: 110px; justify-content: space-around; }
.bracket__col--3 { width: 130px; justify-content: space-around; }
.bracket__col--4 { width: 110px; justify-content: center; align-items: center; gap: 12px; }

.bcell {
  width: 110px;
  height: 30px;
  border-radius: 6px;
  background: rgba(255,215,0,0.15);
  border: 1px solid rgba(255,215,0,0.5);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 9px;
  letter-spacing: 0.5px;
  color: var(--white);
}
.bcell--lg { width: 130px; height: 36px; font-size: 10px; }
.bcell--champ {
  width: 110px; height: 50px;
  background: rgba(255,215,0,0.3);
  border: 2px solid rgba(255,215,0,0.9);
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  box-shadow: 0 0 24px rgba(255,215,0,0.6);
}
.bracket__trophy {
  font-size: 44px;
  line-height: 1;
  filter: drop-shadow(0 0 16px rgba(255,215,0,0.6));
}

.bracket__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.bracket-card__cta {
  display: block;
  text-align: center;
  margin-top: 28px;
  padding: 14px;
  background: rgba(255,0,122,0.2);
  border: 1px solid rgba(255,0,122,0.6);
  border-radius: 12px;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
  transition: background .2s ease;
}
.bracket-card__cta:hover { background: rgba(255,0,122,0.35); }

/* =====================================================
   UGC
   ===================================================== */
.ugc { padding: 60px 0; }
.ugc__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; margin-bottom: 48px; }

.ugc-card {
  position: relative;
  background: var(--w04);
  border: 1px solid rgba(255,0,122,0.3);
  border-radius: 24px;
  padding: 28px;
  min-height: 200px;
  transition: transform .3s ease, border-color .3s ease;
}
.ugc-card:hover { transform: translateY(-4px); border-color: rgba(255,0,122,0.6); }
.ugc-card__emoji { font-size: 56px; line-height: 1; margin-bottom: 16px; }
.ugc-card__num {
  position: absolute;
  top: 24px; right: 24px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--pink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--white);
  box-shadow: 0 4px 12px rgba(255,0,122,0.4);
}
.ugc-card__title {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 20px;
  color: var(--white);
  margin-bottom: 8px;
}
.ugc-card__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--w55);
}

.ugc__ctaRow { text-align: center; }
.ugc__trust { margin-top: 20px; font-size: 13px; color: var(--w55); }


/* =====================================================
   Safety
   ===================================================== */
.safety { padding: 60px 0 60px; }
.safety__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.safety-tile {
  display: flex;
  gap: 24px;
  padding: 32px;
  background: var(--w05);
  border: 1px solid var(--w12);
  border-radius: 24px;
  transition: transform .25s ease;
}
.safety-tile:hover { transform: translateY(-4px); }
.safety-tile__icon {
  flex-shrink: 0;
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 36px;
}
.safety-tile__icon--cyan { background: rgba(0,212,255,0.15); border: 1px solid rgba(0,212,255,0.4); }
.safety-tile__icon--pink { background: rgba(255,0,122,0.15); border: 1px solid rgba(255,0,122,0.4); }
.safety-tile__icon--gold { background: rgba(255,215,0,0.15); border: 1px solid rgba(255,215,0,0.4); }
.safety-tile__icon--green { background: rgba(46,213,115,0.15); border: 1px solid rgba(46,213,115,0.4); }
.safety-tile h3 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--white);
  margin-bottom: 8px;
}
.safety-tile p {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: var(--w65);
  max-width: 490px;
}
.safety__more { text-align: center; margin-top: 32px; }
.safety__more a { color: var(--pink); font-size: 14px; font-weight: 600; text-decoration: none; }
.safety__more a:hover { text-decoration: underline; }

/* =====================================================
   FAQ
   ===================================================== */
.faq { padding: 60px 0; }
.faq__list { display: grid; gap: 12px; }

.faq-item {
  background: var(--w04);
  border: 1px solid var(--w10);
  border-radius: 16px;
  overflow: hidden;
  transition: background .2s ease;
}
.faq-item[open] { background: var(--w05); border-color: rgba(255,0,122,0.3); }
.faq-item summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 28px 32px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__q {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 16px;
  color: var(--pink);
  flex-shrink: 0;
}
.faq-item__t {
  flex: 1;
  font-family: var(--f-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--white);
}
.faq-item__plus {
  font-size: 28px;
  color: var(--w55);
  font-weight: 300;
  transition: transform .3s ease;
  flex-shrink: 0;
}
.faq-item[open] .faq-item__plus { transform: rotate(45deg); color: var(--pink); }
.faq-item p {
  padding: 0 32px 28px 72px;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  line-height: 22px;
  color: var(--w65);
  max-width: 1150px;
}

/* =====================================================
   Final CTA
   ===================================================== */
.final-cta { padding: 20px 0 20px; }
.final-cta__box {
  position: relative;
  background: rgba(255,0,122,0.12);
  border: 2px solid rgba(255,0,122,0.4);
  border-radius: 32px;
  padding: 40px 80px;
  min-height: 280px;
  display: flex;
  align-items: center;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(255,0,122,0.4), 0 30px 80px rgba(0,0,0,0.5);
}
.final-cta__deco {
  position: absolute;
  left: 40px; top: 50%;
  transform: translateY(-50%);
  width: 460px; height: 220px;
  pointer-events: none;
}
.deco-card {
  position: absolute;
  width: 120px; height: 160px;
  border-radius: 16px;
  border: 1px solid var(--w10);
}
.deco-card--pink {
  left: 15px; top: 30px;
  background: linear-gradient(160deg, rgba(255,0,122,0.5), rgba(255,0,122,0.15));
  border-color: rgba(255,0,122,0.5);
  transform: rotate(-8deg);
  box-shadow: 0 20px 40px rgba(255,0,122,0.3);
}
.deco-card--cyan {
  left: 178px; top: 11px;
  background: linear-gradient(160deg, rgba(0,212,255,0.5), rgba(0,212,255,0.15));
  border-color: rgba(0,212,255,0.5);
  transform: rotate(-4deg);
  box-shadow: 0 20px 40px rgba(0,212,255,0.25);
}
.deco-card--gold {
  left: 309px; top: 30px;
  background: linear-gradient(160deg, rgba(255,215,0,0.5), rgba(255,215,0,0.15));
  border-color: rgba(255,215,0,0.5);
  transform: rotate(3deg);
  box-shadow: 0 20px 40px rgba(255,215,0,0.25);
}

.final-cta__content {
  position: relative;
  margin-left: 460px;
  flex: 1;
}
.final-cta__title {
  font-family: var(--f-display);
  font-weight: 900;
  font-size: 60px;
  line-height: 1.14;
  color: var(--white);
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}
.grad-pc {
  background: linear-gradient(135deg, var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.final-cta__sub {
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 16px;
  color: var(--w65);
  margin-bottom: 28px;
}

/* =====================================================
   Footer
   ===================================================== */
.footer {
  background: #0a0a1a;
  padding: 100px 0 40px;
  border-top: 1px solid var(--w08);
  min-height: 480px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 260px repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 48px;
}
.footer__brand { max-width: 220px; }
.footer__brand .logo { margin-bottom: 20px; }
.footer__tag {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: 18px;
  line-height: 26px;
  color: var(--w85);
  margin-bottom: 14px;
}
.footer__sub {
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  line-height: 20px;
  color: var(--w55);
  margin-bottom: 20px;
}
.footer__col h4 {
  font-family: var(--f-body);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 1.5px;
  color: var(--purple);
  margin-bottom: 18px;
}
.footer__col a {
  display: block;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 13px;
  color: var(--w65);
  margin-bottom: 12px;
  transition: color .2s ease;
}
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  background: var(--w04);
  border-top: 1px solid var(--w08);
  padding: 22px 0;
}
.footer__bottomInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 12px;
  color: var(--w55);
}
.footer__bottomInner > div { display: flex; gap: 28px; }
.footer__bottomInner a { color: var(--w55); }
.footer__bottomInner a:hover { color: var(--white); }

/* =====================================================
   Responsive — breakpoint 1023.98px per spec
   Mobile reference: Figma 207:2 (390px viewport, iPhone).
   ===================================================== */
@media (max-width: 1023.98px) {
  :root { --container: 390px; --gutter: 16px; }
  .container { padding: 0 16px; max-width: 100%; }

  /* Header — 64px per Figma 271:10 */
  .header { height: 64px; background: rgba(26,26,46,0.92); }
  .header__inner { gap: 8px; }
  .nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10,10,26,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
  }
  .nav--open { display: flex; }
  .nav--open a { font-size: 22px; font-weight: 700; color: var(--white); }
  .btn--primary.btn--sm { display: none; }
  .logo__dot { width: 24px; height: 24px; }
  .logo__text { font-size: 18px; }
  .btn--ghost { height: 28px; padding: 0 12px; font-size: 12px; border-radius: 8px; }

  /* Hero */
  .hero { padding: 92px 0 20px; min-height: auto; }
  .hero__mesh { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 0; }
  .hero__tick {
    padding: 8px 14px;
    font-size: 10px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
  }
  .hero__title {
    font-size: 64px;
    letter-spacing: -1px;
    margin-bottom: 6px;
    white-space: nowrap;
  }
  .hero__subtitle {
    font-size: 42px;
    margin-bottom: 16px;
    white-space: normal;
  }
  .hero__desc {
    font-size: 13px;
    line-height: 1.55;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .hero__desc br { display: none; }
  .hero__badges { gap: 6px; margin-bottom: 20px; }
  .fmt-badge {
    padding: 6px 10px;
    font-size: 10px;
    letter-spacing: 0.5px;
  }
  .hero__cta { flex-direction: column; align-items: stretch; gap: 12px; margin-bottom: 16px; }
  .hero__cta .btn--lg { height: 64px; font-size: 15px; padding: 0 24px; }
  .hero__cta .btn--ghost-lg { height: 52px; font-size: 14px; padding: 0 20px; }
  .hero__micro { font-size: 11px; text-align: left; }
  .hero__right { display: none; }

  /* Stats — 3 columns on mobile per Figma 271:82 */
  .stats { padding: 28px 0 32px; }
  .stats__bar {
    grid-template-columns: 1fr 1px 1fr 1px 1fr;
    gap: 0;
    padding: 14px 10px;
    min-height: 90px;
    border-radius: 20px;
  }
  .stats__bar .stats__item:nth-child(7),
  .stats__bar .stats__div:nth-child(6) { display: none; }
  .stats__num { font-size: 26px; margin-bottom: 6px; }
  .stats__lbl { font-size: 10px; letter-spacing: 0.08em; }
  .stats__div { height: 50px; }

  /* Section heads */
  .section-head { margin-bottom: 28px; }
  .section-head__eyebrow { font-size: 11px; margin-bottom: 8px; }
  .section-head__title { font-size: 28px; line-height: 1.15; margin-bottom: 8px; }
  .section-head__sub { font-size: 13px; line-height: 1.5; }

  /* Formats — single column */
  .formats { padding: 30px 0 20px; }
  .formats__grid { grid-template-columns: 1fr; gap: 20px; }
  .fmt-card { padding: 20px; border-radius: 20px; min-height: 200px; }
  .fmt-card__mock { height: 120px; padding: 16px; margin-bottom: 12px; border-radius: 14px; }
  .fmt-mini { height: 80px; font-size: 26px; border-radius: 10px; }
  .fmt-ab-card { font-size: 40px; height: 80px; }
  .fmt-card__eyebrow { font-size: 10px; margin-bottom: 6px; }
  .fmt-card__title { font-size: 28px; margin-bottom: 10px; }
  .fmt-card__desc { font-size: 12px; margin-bottom: 14px; }
  .fmt-card__list li { font-size: 12px; margin-bottom: 8px; }

  /* Demo */
  .demo { padding: 20px 0 24px; }
  .demo__box { padding: 18px; border-radius: 24px; }
  .demo__head { margin-bottom: 20px; }
  .demo__title { font-size: 22px; }
  .demo__sub { font-size: 12px; }
  .demo__cards { grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 20px; }
  .dc { padding: 10px; border-radius: 14px; }
  .dc__photo { height: 100px; font-size: 44px; margin-bottom: 8px; border-radius: 10px; }
  .dc__title { font-size: 12px; margin-bottom: 2px; letter-spacing: 0.2px; }
  .dc__sub { font-size: 9px; margin-bottom: 8px; }
  .dc__bar { height: 4px; margin-bottom: 6px; }
  .dc__pct { font-size: 13px; }

  /* Trends — horizontal scroll strip per Figma 271:82 to 272:89 off-screen */
  .trends { padding: 30px 0 20px; }
  .trends__grid {
    grid-template-columns: repeat(5, 140px);
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  .trends__grid > .tb { scroll-snap-align: start; }
  .tb { padding: 10px; border-radius: 18px; }
  .tb__photo { height: 128px; font-size: 48px; margin-bottom: 8px; border-radius: 12px; }
  .tb__chip { top: 18px; left: 18px; font-size: 8px; padding: 3px 6px; }
  .tb__live { top: 18px; right: 18px; font-size: 8px; padding: 3px 6px; }
  .tb__meta { font-size: 8px; margin-bottom: 4px; }
  .tb__title { font-size: 13px; margin-bottom: 6px; min-height: 32px; }
  .tb__votes { font-size: 11px; }
  .tb__votesLbl { font-size: 9px; }
  .tb__play { width: 28px; height: 28px; right: 10px; bottom: 10px; font-size: 10px; }
  .trends__more a { font-size: 12px; }

  /* Categories — 2 columns per Figma 274:5 */
  .categories { padding: 24px 0 24px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .cat { padding: 18px; border-radius: 20px; height: 140px; }
  .cat__emoji { font-size: 56px; top: 24px; right: 14px; }
  .cat__txt { max-width: calc(100% - 70px); }
  .cat__txt h3 { font-size: 13px; margin-bottom: 2px; letter-spacing: 0.2px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
  .cat__count { font-size: 10px; margin-bottom: 2px; }
  .cat__time { display: none; }
  .cat__arrow { display: none; }

  /* How — single column */
  .how { padding: 24px 0 24px; }
  .how__grid { grid-template-columns: 1fr; gap: 16px; }
  .step { padding: 20px; border-radius: 24px; min-height: 160px; }
  .step__mock { display: none; }
  .step__big { top: 16px; right: 20px; font-size: 72px; }
  .step__eyebrow { font-size: 10px; margin-bottom: 6px; }
  .step__title { font-size: 20px; margin-bottom: 8px; }
  .step__desc { font-size: 13px; line-height: 1.5; }

  /* Identity */
  .identity { padding: 24px 0 20px; }
  .identity__inner { grid-template-columns: 1fr; gap: 28px; }
  .identity__title { font-size: 30px; line-height: 1.1; margin-bottom: 12px; }
  .identity__desc { font-size: 13px; line-height: 1.5; margin-bottom: 16px; }
  .identity__list li { font-size: 12px; margin-bottom: 6px; }
  .dna-card {
    width: 100%;
    height: auto;
    padding: 24px 20px;
    border-radius: 24px;
  }
  .dna-card__eyebrow { font-size: 10px; margin-bottom: 14px; }
  .dna-card__head { gap: 12px; margin-bottom: 16px; }
  .dna-card__avatar { width: 56px; height: 56px; font-size: 20px; border-width: 2px; }
  .dna-card__name { font-size: 18px; }
  .dna-card__meta { font-size: 11px; }
  .dna-card__verdict { font-size: 34px; line-height: 1.0; }
  .dna-card__rank { font-size: 16px; margin-bottom: 18px; }
  .dna-bars li { grid-template-columns: 84px 1fr 34px; gap: 10px; margin-bottom: 10px; }
  .dna-bars li span { font-size: 11px; }
  .dna-bars li b { font-size: 11px; }
  .dna-bar { height: 5px; }

  /* Tournaments — stack vertically */
  .tournaments { padding: 24px 0; }
  .tournaments__inner { grid-template-columns: 1fr; gap: 28px; }
  .bracket-card {
    width: 100%;
    height: auto;
    padding: 24px 18px;
    border-radius: 24px;
  }
  .bracket-card__eyebrow { font-size: 10px; }
  .bracket-card__title { font-size: 18px; margin-bottom: 16px; }
  .bracket {
    transform: scale(0.58);
    transform-origin: top left;
    height: 220px;
    margin-bottom: -60px;
  }
  .bracket-card__cta { margin-top: 16px; padding: 12px; font-size: 13px; }

  /* UGC — 2 columns */
  .ugc { padding: 24px 0 20px; }
  .ugc__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-bottom: 20px; }
  .ugc-card { padding: 18px; border-radius: 20px; min-height: 160px; }
  .ugc-card__emoji { font-size: 44px; margin-bottom: 10px; }
  .ugc-card__num { width: 26px; height: 26px; font-size: 13px; top: 16px; right: 16px; }
  .ugc-card__title { font-size: 15px; margin-bottom: 4px; }
  .ugc-card__sub { font-size: 11px; }
  .ugc__trust { font-size: 11px; margin-top: 14px; }

  /* Safety — 2 columns */
  .safety { padding: 24px 0 20px; }
  .safety__grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .safety-tile { flex-direction: column; gap: 10px; padding: 16px; border-radius: 20px; min-height: 160px; }
  .safety-tile__icon { width: 40px; height: 40px; font-size: 22px; border-radius: 12px; }
  .safety-tile h3 { font-size: 14px; margin-bottom: 4px; }
  .safety-tile p { font-size: 11px; line-height: 1.4; max-width: 100%; }
  .safety__more a { font-size: 12px; }

  /* FAQ */
  .faq { padding: 24px 0 20px; }
  .faq__list { gap: 8px; }
  .faq-item { border-radius: 14px; }
  .faq-item summary { padding: 18px 16px; gap: 10px; }
  .faq-item__q { display: none; }
  .faq-item__t { font-size: 14px; }
  .faq-item__plus { font-size: 22px; }
  .faq-item p { padding: 0 16px 18px 16px; font-size: 12px; line-height: 1.5; }

  /* Final CTA */
  .final-cta { padding: 16px 0 20px; }
  .final-cta__box {
    padding: 28px 20px;
    min-height: 260px;
    border-radius: 24px;
    flex-direction: column;
    text-align: center;
  }
  .final-cta__deco { display: none; }
  .final-cta__content { margin-left: 0; text-align: center; }
  .final-cta__title { font-size: 28px; line-height: 1.15; margin-bottom: 12px; }
  .final-cta__title br { display: none; }
  .final-cta__sub { font-size: 13px; margin-bottom: 18px; }
  .final-cta .btn--xl { height: 56px; font-size: 14px; padding: 0 28px; }

  /* Footer */
  .footer { padding: 40px 0 16px; min-height: auto; }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 24px 16px;
    padding-bottom: 28px;
  }
  .footer__brand { grid-column: 1 / -1; max-width: 100%; }
  .footer__tag { font-size: 14px; line-height: 1.4; margin-bottom: 8px; }
  .footer__sub { font-size: 12px; margin-bottom: 14px; }
  .footer__col h4 { font-size: 10px; margin-bottom: 10px; }
  .footer__col a { font-size: 12px; margin-bottom: 8px; }
  .footer__bottom { padding: 14px 0; }
  .footer__bottomInner {
    flex-direction: column;
    gap: 8px;
    text-align: center;
    font-size: 10px;
  }
  .footer__bottomInner > div {
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

/* Extra tiny phones */
@media (max-width: 359.98px) {
  .hero__title { font-size: 56px; }
  .hero__subtitle { font-size: 34px; }
  .section-head__title { font-size: 24px; }
}

/* Skip-to-content link (Bug #30) */
.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 10000;
  padding: 12px 24px;
  background: var(--pink);
  color: var(--white);
  font-weight: 700;
  font-size: 14px;
  border-radius: 0 0 8px 0;
  text-decoration: none;
}
.skip-link:focus {
  left: 0;
}

/* Trends scroll hint (Bug #28) */
.trends__grid {
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.trends__grid > article {
  scroll-snap-align: start;
}

/* Burger button (BUG-08) */
.burger-btn { display: none; }
@media (max-width: 1023.98px) {
  .burger-btn {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    z-index: 1000;
  }
  .burger-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
  }
  .burger-btn--open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger-btn--open span:nth-child(2) { opacity: 0; }
  .burger-btn--open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}
body.no-scroll { overflow: hidden; }

/* Demo interaction (BUG-05) */
.dc { transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s; }
.dc--selected { transform: scale(1.05); box-shadow: 0 0 24px rgba(255,107,157,0.4); }
.dc--dimmed { opacity: 0.45; transform: scale(0.95); }
.demo__ctaRow { opacity: 0; transition: opacity 0.5s; }
.demo__ctaRow--visible { opacity: 1; }

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

/* =====================================================
   Language switcher (header)
   ===================================================== */
.lang-switch { position: relative; }
.lang-switch__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  background: var(--w08);
  border: 1px solid var(--w12);
  border-radius: 12px;
  color: var(--w85);
  font-family: var(--f-body);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease, color .15s ease;
}
.lang-switch__btn:hover { background: var(--w12); color: #fff; }
.lang-switch__btn[aria-expanded="true"] { background: var(--w12); border-color: var(--w24, rgba(255,255,255,.24)); }
.lang-switch__flag { font-size: 16px; line-height: 1; }
.lang-switch__code { letter-spacing: 0.5px; }
.lang-switch__caret { font-size: 10px; opacity: .7; transition: transform .15s ease; }
.lang-switch__btn[aria-expanded="true"] .lang-switch__caret { transform: rotate(180deg); }

.lang-switch__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 180px;
  padding: 6px;
  list-style: none;
  margin: 0;
  background: rgba(20, 20, 40, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--w12);
  border-radius: 14px;
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
  z-index: 110;
}
.lang-switch__menu[hidden] { display: none; }
.lang-switch__menu li { margin: 0; }
.lang-switch__menu button {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 10px 12px;
  background: transparent;
  border: 0;
  border-radius: 10px;
  color: var(--w85);
  font-family: var(--f-body);
  font-weight: 500;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.lang-switch__menu button:hover { background: var(--w08); color: #fff; }
.lang-switch__menu button[aria-selected="true"] {
  background: rgba(255, 0, 122, 0.12);
  color: var(--pink);
}

@media (max-width: 767px) {
  .lang-switch__btn { height: 36px; padding: 0 10px; font-size: 12px; }
  .lang-switch__menu { right: -4px; }
}
