/* World Cup Forecasting Championship — light-mode landing */
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Roboto+Mono:ital,wght@0,400;0,500;0,700&family=Orbitron:wght@600;700;800;900&family=Instrument+Serif:ital@0;1&display=swap");

:root {
  --accent: #2667FF;
  --accent-600: #1E59E5;
  --accent-50: #EEF3FF;
  --ink: #0B1226;
  --ink-2: #2A3354;
  --ink-3: #5A6485;
  --ink-4: #8C95B0;
  --line: rgba(11, 18, 38, 0.10);
  --line-2: rgba(11, 18, 38, 0.06);
  --bg: #FFFFFF;
  --bg-warm: #F2F3F5;

  --font-sans: "DM Sans", system-ui, -apple-system, sans-serif;
  --font-mono: "Roboto Mono", ui-monospace, Menlo, monospace;
  --font-display: "Orbitron", "DM Sans", sans-serif;
  --font-serif: "Instrument Serif", Georgia, serif;

  --maxw: 1240px;
  --pad: 56px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0s !important; transition-duration: 0s !important; }
}
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
}
body.density-tight { --pad: 24px; }
body.density-airy  { --pad: 56px; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad); }

/* Hero initial-load intro */
@keyframes hero-intro-fade {
  from { opacity: 0; transform: translateY(18px); filter: blur(4px); }
  to   { opacity: 1; transform: none; filter: none; }
}
.hero { animation: hero-intro-fade 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) both; }
.hero .hero-grid-main > * {
  opacity: 0;
  animation: hero-intro-fade 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) both;
}
.hero .hero-grid-main > *:nth-child(1) { animation-delay: 0.15s; }
.hero .hero-grid-main > *:nth-child(2) { animation-delay: 0.30s; }
.hero .hero-grid-main > *:nth-child(3) { animation-delay: 0.45s; }
.hero .hero-grid-main > *:nth-child(4) { animation-delay: 0.60s; }
.hero .hero-market-card {
  opacity: 0;
  animation: hero-intro-fade 1.1s cubic-bezier(0.2, 0.7, 0.2, 1) 0.40s both;
}
.hero .hero-meta {
  opacity: 0;
  animation: hero-intro-fade 0.9s cubic-bezier(0.2, 0.7, 0.2, 1) 0.75s both;
}
@media (prefers-reduced-motion: reduce) {
  .hero, .hero .hero-grid-main > *, .hero .hero-market-card, .hero .hero-meta {
    animation: none;
    opacity: 1;
  }
}

/* scroll-reveal */
.js-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .9s cubic-bezier(0.2, 0.7, 0.2, 1), transform .9s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.reveal.in-view { opacity: 1; transform: none; }
.js-ready .reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .7s cubic-bezier(0.2, 0.7, 0.2, 1), transform .7s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.reveal-stagger.in-view > * { opacity: 1; transform: none; }
.reveal-stagger.in-view > *:nth-child(1) { transition-delay: 0.04s; }
.reveal-stagger.in-view > *:nth-child(2) { transition-delay: 0.12s; }
.reveal-stagger.in-view > *:nth-child(3) { transition-delay: 0.20s; }
.reveal-stagger.in-view > *:nth-child(4) { transition-delay: 0.28s; }
.reveal-stagger.in-view > *:nth-child(5) { transition-delay: 0.36s; }
.reveal-stagger.in-view > *:nth-child(6) { transition-delay: 0.44s; }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
  transition: transform .15s ease, background .15s ease, box-shadow .15s ease;
}
.btn-sm { padding: 10px 18px; font-size: 13px; }
.btn-lg { padding: 18px 28px; font-size: 16px; }
.btn-primary { background: var(--ink); color: #fff; }
.btn-primary:hover { background: #000; transform: translateY(-1px); }
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-600); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(11,18,38,0.04); }
.btn-ghost-dark { background: transparent; color: #fff; border: 1px solid rgba(255,255,255,0.22); }
.btn-ghost-dark:hover { background: rgba(255,255,255,0.08); transform: translateY(-1px); }

/* nav */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: color-mix(in oklab, var(--bg) 82%, transparent);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  flex-shrink: 0;
}
.nav-brand-logo {
  height: 26px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  gap: 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--ink-2);
}
.nav-links a:hover { color: var(--accent); }
.nav-cta { display: flex; gap: 16px; align-items: center; }
.nav-presented {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
}
.nav-presented-label {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
  white-space: nowrap;
}
.nav-jt-logo {
  height: 26px;
  width: auto;
  display: block;
}

/* hero */
.hero {
  position: relative;
  padding: 80px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 15% 10%, rgba(60, 90, 180, 0.28), transparent 60%),
    radial-gradient(900px 500px at 90% 0%, rgba(30, 50, 130, 0.32), transparent 65%),
    linear-gradient(160deg, #03061a 0%, #060d2e 45%, #0a1747 100%);
  color: #f4f7ff;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(1000px 400px at 50% 100%, rgba(255,255,255,0.04), transparent 70%);
  pointer-events: none;
}
.hero > * { position: relative; z-index: 1; }

/* Light-on-dark text overrides inside the blue hero (market card untouched) */
.hero .hero-tagline {
  border-color: rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.04);
  color: rgba(255,255,255,0.85);
  backdrop-filter: blur(6px);
}
.hero .hero-presented .presented-label { color: rgba(255,255,255,0.65); }
.hero .hero-headline { color: #f6f8ff; }
.hero .hero-headline em { color: #b8c8ff; }
.hero .hero-sub p { color: rgba(230,236,255,0.78); }
.hero .hero-sub p.hero-lede { color: rgba(240,244,255,0.9); }
.hero .hero-meta {
  border-top-color: rgba(255,255,255,0.14);
  border-bottom-color: rgba(255,255,255,0.14);
}
.hero .hero-meta-cell { border-right-color: rgba(255,255,255,0.10); }
.hero .hero-meta-num { color: #ffffff; }
.hero .hero-meta-lab { color: rgba(220,228,255,0.65); }

/* Hero button + countdown text overrides for dark background */
.hero .btn-primary {
  background: #4f7bff;
  color: #ffffff;
  box-shadow: 0 8px 24px -8px rgba(79, 123, 255, 0.55);
}
.hero .btn-primary:hover { background: #6a90ff; transform: translateY(-1px); }
.hero .btn-ghost {
  background: transparent;
  color: #cfd9ff;
  border: 1px solid rgba(180, 200, 255, 0.35);
}
.hero .btn-ghost:hover { background: rgba(255,255,255,0.06); color: #ffffff; }
.hero .hero-countdown-label { color: rgba(200, 215, 255, 0.7); }
.hero .hero-cd-num { color: #ffffff; }
.hero .hero-cd-lab { color: rgba(200, 215, 255, 0.65); }
.hero .hero-cd-sep { color: rgba(200, 215, 255, 0.45); }

/* Hero "Earn the chance" — serif accent in brand blue, matching the $1M style */
.hero .hero-headline em.hero-earn {
  font-family: var(--font-serif);
  font-style: italic;
  color: #5b8bff;
  -webkit-text-fill-color: #5b8bff;
}
.hero .hero-headline em.hero-earn .ws-word {
  color: #5b8bff;
  -webkit-text-fill-color: #5b8bff;
}

/* Brand-yellow animated highlight for the $1M portfolio phrase */
.hero .hero-headline em.brand-highlight {
  color: #FFC600;
  background: linear-gradient(
    90deg,
    #FFC600 0%,
    #FFE27A 45%,
    #FFFFFF 50%,
    #FFE27A 55%,
    #FFC600 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brand-shimmer 4.5s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 198, 0, 0.15);
}
/* word-stagger wraps each word in a child span; the background must be re-applied
   to those spans, otherwise -webkit-text-fill-color: transparent inherited from
   the <em> leaves the text invisible. */
.hero .hero-headline em.brand-highlight .ws-word {
  background: linear-gradient(
    90deg,
    #FFC600 0%,
    #FFE27A 45%,
    #FFFFFF 50%,
    #FFE27A 55%,
    #FFC600 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brand-shimmer 4.5s ease-in-out infinite;
}
@keyframes brand-shimmer {
  0%, 100% { background-position: 200% 0; }
  50% { background-position: -50% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .hero .hero-headline em.brand-highlight { animation: none; }
}


.hero-tagline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  color: var(--ink-2);
  margin-bottom: 36px;
}
.hero-tagline .dot {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 10px;
}

/* "Presented by Jump Trading" hero block */
.hero-presented {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 36px;
}
.hero-presented .presented-label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hero-jt-logo {
  height: 32px;
  width: auto;
  display: block;
}
.hero-headline {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: clamp(32px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
  text-wrap: balance;
}
.hero-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.hero-sub {
  margin-top: 36px;
  display: block;
}
.hero-sub p {
  margin: 0;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 480px;
}
.hero-sub p.hero-lede {
  font-size: 16px;

  line-height: 1.5;
  color: var(--ink-2);
  font-weight: 400;
  letter-spacing: -0.005em;
}
.hero-actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-meta {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.hero-meta-cell {
  padding: 28px 24px;
  border-right: 1px solid var(--line-2);
  text-align: center;
}
.hero-meta-cell:last-child { border-right: 0; }
.hero-meta-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 36px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
}
.hero-meta-lab {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--ink-3);
}

/* section base */
section { position: relative; }
.section-pad { padding: 110px 0; }
body.density-tight .section-pad { padding: 76px 0; }
body.density-airy  .section-pad { padding: 140px 0; }

.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: end;
  margin-bottom: 64px;
}
.section-head h2 {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--ink);
  text-wrap: balance;
}
.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.section-head p {
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink-3);
  max-width: 460px;
  padding-bottom: 4px;
}

/* steps */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.step {
  position: relative;
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: #fff;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 12px;
  color: var(--accent);
  letter-spacing: 0.1em;
}
.step h3 {
  margin: 16px 0 12px;
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.02em;
  color: var(--ink);
  min-height: 2.36em;
}
.step p {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-3);
}
.step-illus {
  margin-top: auto;
  padding-top: 28px;
  display: flex;
  align-items: flex-end;
  min-height: 96px;
}

/* Step illus: signup mock */
.step-signup {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  background: rgba(11, 18, 38, 0.04);
  border-radius: 999px;
  padding: 4px 4px 4px 14px;
  align-items: center;
}
.step-signup-input {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: var(--ink);
  background: transparent;
  border: none;
  outline: none;
  width: 100%;
  min-width: 0;
  padding: 6px 0;
}
.step-signup-input::placeholder { color: var(--ink-3); }
.step-signup-input[aria-invalid="true"] { color: #d23a3a; }
.step-signup-btn {
  font-size: 11px;
  font-weight: 700;
  color: #fff;
  background: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  white-space: nowrap;
  border: none;
  cursor: pointer;
}
.step-signup-btn:hover { opacity: 0.9; }

/* Step illus: mini slider card */
.step-slider-mini {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step-slider-mini-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.step-slider-mini-q {
  font-size: 11px;
  font-weight: 600;
  color: var(--ink);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-slider-mini-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 11px;
  letter-spacing: -0.02em;
  background: var(--accent);
  color: #fff;
  padding: 3px 8px;
  border-radius: 5px;
  flex: 0 0 auto;
}
.step-slider-mini-track {
  position: relative;
  height: 5px;
  background: rgba(11, 18, 38, 0.08);
  border-radius: 999px;
}
.step-slider-mini-fill {
  position: absolute;
  inset: 0 57% 0 0;
  background: linear-gradient(90deg, var(--accent), var(--accent-600));
  border-radius: 999px;
}
.step-slider-mini-thumb {
  position: absolute;
  left: 43%;
  top: 50%;
  width: 12px;
  height: 12px;
  background: #fff;
  border: 1px solid rgba(11, 18, 38, 0.12);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 1px 3px rgba(11, 18, 38, 0.18);
}

/* Step illus: mini leaderboard */
.step-board {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 11px;
}
.step-board-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 10px;
  align-items: center;
  padding: 4px 8px;
  background: rgba(11, 18, 38, 0.03);
  border-radius: 3px;
  color: var(--ink-2);
}
.step-board-row.top {
  background: var(--ink);
  color: #fff;
}
.step-board-row .rk {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 9px;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.step-board-row.top .rk { color: #93B0FF; opacity: 1; }
.step-board-row .nm {
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.step-board-row .sc {
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.02em;
  opacity: 0.7;
}
.step-board-row.top .sc { opacity: 1; }

/* sliders demo */
.sliders-section { background: var(--bg-warm); padding: 64px 0; }
body.density-tight .sliders-section { padding: 48px 0; }
body.density-airy  .sliders-section { padding: 80px 0; }
.sliders {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 56px;
  align-items: center;
}
.sliders > * { min-width: 0; }
.try-phone-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  perspective: 2000px;
  perspective-origin: 50% 30%;
  padding: 0 20px;
}
.try-phone {
  position: relative;
  width: 100%;
  max-width: 280px;
  aspect-ratio: 9 / 16.5;
  background:
    linear-gradient(135deg, #2a2a35 0%, #0b0b0f 38%, #050507 62%, #1a1a22 100%);
  border-radius: 46px;
  padding: 12px;
  transform: rotateY(-14deg) rotateX(6deg) rotateZ(-1deg);
  transform-style: preserve-3d;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow:
    0 0 0 1.5px #000,
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 2px 4px rgba(15, 23, 42, 0.2),
    24px 40px 60px -20px rgba(15, 23, 42, 0.55),
    40px 70px 100px -30px rgba(15, 23, 42, 0.4),
    0 10px 24px -8px rgba(15, 23, 42, 0.35);
}
.try-phone-wrap:hover .try-phone {
  transform: rotateY(-8deg) rotateX(3deg) rotateZ(0deg);
}
.try-phone::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 46px;
  background: linear-gradient(115deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0.04) 18%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0) 70%,
    rgba(255, 255, 255, 0.06) 92%,
    rgba(255, 255, 255, 0.14) 100%);
  pointer-events: none;
  z-index: 4;
  mix-blend-mode: screen;
}
.try-phone::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 38px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 0 0 1px rgba(0, 0, 0, 0.6);
  pointer-events: none;
  z-index: 3;
}
.try-phone-scroll {
  position: absolute;
  inset: 12px;
  border-radius: 36px;
  overflow: hidden;
  background: #fff;
}
.try-phone-screen {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0;
}
.try-phone-nav {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  width: calc(100% - 24px);
  height: auto;
  display: block;
  background: #ffffff;
  border-bottom-left-radius: 36px;
  border-bottom-right-radius: 36px;
  box-shadow: 0 -12px 24px -10px rgba(15, 23, 42, 0.18);
  z-index: 2;
  pointer-events: none;
}
.sliders-side {
  align-self: start;
}
.sliders-side h2 {
  margin: 18px 0 0;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
  text-wrap: balance;
}
.sliders-side h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--accent);
}
.sliders-side p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--ink-1, #0b1226);
  line-height: 1.55;
}
.sliders-side ul {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sliders-side ul li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 19px;
  line-height: 1.55;
  color: var(--ink-2);
}
.sliders-side ul li svg {
  flex: 0 0 auto;
  margin-top: 2px;
  color: var(--accent);
}

/* Animated icons in the Try-it section bullet list */
.try-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 2px;
  color: var(--accent);
}
.try-ico svg { overflow: visible; }

/* Bullseye: pulsing rings + dot */
.try-ico-bullseye .ring {
  transform-origin: 12px 12px;
  animation: try-ring-pulse 2.6s ease-in-out infinite;
}
.try-ico-bullseye .ring.r2 { animation-delay: 0.3s; }
.try-ico-bullseye .dot { animation: try-dot-blink 2.6s ease-in-out infinite; }
@keyframes try-ring-pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50%      { transform: scale(1.12); opacity: 1; }
}
@keyframes try-dot-blink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

/* Trend: line draws across, repeats */
.try-ico-trend .trend-line {
  stroke-dasharray: 26;
  stroke-dashoffset: 26;
  animation: try-trend-draw 2.8s ease-in-out infinite;
}
@keyframes try-trend-draw {
  0%        { stroke-dashoffset: 26; }
  50%, 70%  { stroke-dashoffset: 0; }
  100%      { stroke-dashoffset: -26; }
}

/* Spark: star gently rotates, sparkle twinkles */
.try-ico-spark .star {
  transform-origin: 12px 12px;
  animation: try-star-spin 6s ease-in-out infinite;
}
.try-ico-spark .spark {
  transform-origin: 19px 18.5px;
  animation: try-spark-twinkle 1.8s ease-in-out infinite;
}
@keyframes try-star-spin {
  0%, 100% { transform: rotate(-6deg); }
  50%      { transform: rotate(6deg); }
}
@keyframes try-spark-twinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%      { transform: scale(0.4); opacity: 0.5; }
}

@media (prefers-reduced-motion: reduce) {
  .try-ico-bullseye .ring,
  .try-ico-bullseye .dot,
  .try-ico-trend .trend-line,
  .try-ico-spark .star,
  .try-ico-spark .spark { animation: none; }
  .try-ico-trend .trend-line { stroke-dashoffset: 0; }
}

.q-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-width: 0;
  box-shadow: 0 8px 28px -18px rgba(11, 18, 38, 0.18);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.q-card > * { min-width: 0; }
.q-card:hover {
  transform: translateY(-2px);
  border-color: rgba(38, 103, 255, 0.25);
  box-shadow: 0 18px 40px -20px rgba(11, 18, 38, 0.22);
}
.q-card + .q-card { margin-top: 18px; }

.q-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.q-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px 5px 10px;
  border-radius: 999px;
  background: rgba(20, 174, 92, 0.12);
  color: #0F8A47;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.10em;
  text-transform: uppercase;
}
.q-status .pulse {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
  flex: 0 0 auto;
}
.q-status .pulse::before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: 999px;
  background: var(--green);
  opacity: 0.4;
  animation: q-pulse 2s ease-out infinite;
}
@keyframes q-pulse {
  0% { transform: scale(0.6); opacity: 0.6; }
  80%, 100% { transform: scale(1.8); opacity: 0; }
}
.q-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--ink);
}
.q-date svg { color: var(--ink-4); }

.q-match {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  text-transform: uppercase;
}
.q-match .q-flag {
  font-size: 26px;
  line-height: 1;
  margin-right: 4px;
  filter: drop-shadow(0 2px 3px rgba(0,0,0,0.3));
}
.q-match .q-vs {
  opacity: 0.55;
  font-weight: 600;
  font-size: 13px;
}

.q-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
}
.q-card-q {
  font-size: clamp(17px, 1.7vw, 20px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.q-odds {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.q-odds-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
}
.q-odds-pill {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  letter-spacing: -0.02em;
  color: #fff;
  background: var(--accent);
  padding: 8px 16px;
  border-radius: 12px;
  min-width: 86px;
  text-align: center;
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 2px;
  box-shadow: 0 8px 20px -10px rgba(38, 103, 255, 0.55);
  transition: transform .15s ease;
}
.q-odds-pct {
  font-size: 14px;
  font-weight: 700;
  opacity: 0.9;
}
.q-card:hover .q-odds-pill { transform: scale(1.03); }

.q-slider {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.q-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: rgba(11, 18, 38, 0.08);
  cursor: ew-resize;
  user-select: none;
  touch-action: none;
}
.q-track-fill {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  background: var(--accent);
  border-radius: 999px;
  transition: width .08s ease;
}
.q-track-thumb {
  position: absolute;
  top: 50%;
  width: 22px;
  height: 22px;
  background: #fff;
  border: 1px solid rgba(11, 18, 38, 0.14);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(11, 18, 38, 0.18), 0 0 0 4px rgba(38, 103, 255, 0);
  transition: box-shadow .2s ease, transform .15s ease;
}
.q-track:hover .q-track-thumb,
.q-track:focus-visible .q-track-thumb,
.q-track.is-dragging .q-track-thumb {
  box-shadow: 0 4px 12px rgba(11, 18, 38, 0.22), 0 0 0 6px rgba(38, 103, 255, 0.14);
}
.q-track.is-dragging .q-track-thumb { transform: translate(-50%, -50%) scale(1.08); }

/* Hint: gentle wiggle + tooltip prompting users to drag the slider */
.q-track.is-hinting .q-track-thumb {
  animation: q-thumb-wiggle 4.2s ease-in-out 0.6s infinite;
}
.q-track.is-hinting .q-track-thumb::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 999px;
  border: 2px solid var(--accent);
  opacity: 0;
  animation: q-thumb-ring 4.2s ease-out 0.6s infinite;
  pointer-events: none;
}
@keyframes q-thumb-wiggle {
  0%, 40%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(calc(-50% - 8px), -50%); }
  60% { transform: translate(calc(-50% + 8px), -50%); }
  70% { transform: translate(calc(-50% - 6px), -50%); }
  80% { transform: translate(calc(-50% + 4px), -50%); }
  90% { transform: translate(calc(-50% - 2px), -50%); }
}
@keyframes q-thumb-ring {
  0%, 40% { opacity: 0; transform: scale(0.8); }
  60% { opacity: 0.6; transform: scale(1.3); }
  85%, 100% { opacity: 0; transform: scale(1.9); }
}
.q-hint {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ink-1, #0b1226);
  color: #fff;
  font: 600 11px/1 var(--font-ui, var(--font-sans));
  letter-spacing: 0.01em;
  white-space: nowrap;
  padding: 7px 10px;
  border-radius: 6px;
  box-shadow: 0 6px 18px rgba(11, 18, 38, 0.22);
  pointer-events: none;
  opacity: 0;
  animation: q-hint-fade 5s ease-out 0.4s 1 forwards;
}
.q-hint::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 5px solid transparent;
  border-top-color: var(--ink-1, #0b1226);
}
@keyframes q-hint-fade {
  0% { opacity: 0; transform: translateX(-50%) translateY(4px); }
  10%, 80% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(-2px); }
}
.q-track.is-hinted-off .q-track-thumb,
.q-track.is-hinted-off .q-track-thumb::after { animation: none; }
.q-track.is-hinted-off .q-hint { display: none; }
@media (prefers-reduced-motion: reduce) {
  .q-track.is-hinting .q-track-thumb,
  .q-track.is-hinting .q-track-thumb::after,
  .q-hint { animation: none; }
  .q-hint { opacity: 1; }
}

.q-scale {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--ink-3);
  padding: 0 2px;
}
.q-scale-mid { color: var(--ink-2); font-weight: 600; }

.q-confirm {
  margin-top: 4px;
  appearance: none;
  border: 0;
  width: 100%;
  padding: 13px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font: 700 14px/1 var(--font-ui, var(--font-sans));
  letter-spacing: -0.005em;
  cursor: pointer;
  box-shadow: 0 12px 28px -14px rgba(38, 103, 255, 0.6);
  transition: transform .15s ease, background .15s ease, box-shadow .2s ease;
}
.q-confirm:hover { background: var(--accent-600, var(--accent)); transform: translateY(-1px); }
.q-confirm:active { transform: translateY(0); }
.q-card.is-locked .q-confirm {
  background: #0F8A47;
  box-shadow: 0 12px 28px -14px rgba(15, 138, 71, 0.55);
}
.q-card.is-locked .q-track { opacity: 0.7; cursor: default; }

/* Jump Trading wordmark — text-based; replace with official asset if available */
.jt-mark {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-sans);
  line-height: 1;
  white-space: nowrap;
}
.jt-mark .jt-jump {
  font-weight: 900;
  font-style: italic;
  color: #D7252A;
  font-size: 22px;
  letter-spacing: -0.04em;
}
.jt-mark .jt-trading {
  font-weight: 800;
  color: var(--ink);
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.jt-mark.jt-mark-on-dark .jt-trading { color: #fff; }

/* prize */
.prize-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.prize-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 90% 10%, rgba(147, 176, 255, 0.12), transparent 60%),
    radial-gradient(60% 70% at 10% 90%, rgba(38, 103, 255, 0.10), transparent 65%);
  pointer-events: none;
}
.prize-section > * { position: relative; }
.prize-split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 960px) {
  .prize-split { grid-template-columns: 1fr; gap: 40px; }
}
.prize-left { max-width: 560px; }
.prize-eyebrow {
  font-family: var(--font-mono, var(--font-display));
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #93B0FF;
  margin-bottom: 22px;
}
.prize-headline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: #fff;
  text-wrap: balance;
}
.prize-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(90deg, #FFC600 0%, #FFE27A 45%, #FFFFFF 50%, #FFE27A 55%, #FFC600 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #FFC600;
  animation: brand-shimmer 4.5s ease-in-out infinite;
}
.prize-lede {
  margin: 24px 0 36px;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255,255,255,0.65);
}
.prize-points {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.prize-points li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: flex-start;
}
.prize-point-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  color: #93B0FF;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.prize-points h4 {
  margin: 2px 0 4px;
  font-size: 17px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.prize-points li p {
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255,255,255,0.6);
}

.prize-card {
  position: relative;
  background: linear-gradient(180deg, #11193A 0%, #0A1130 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 44px 44px 40px;
  box-shadow: 0 30px 80px -30px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.04);
}
.prize-card::before {
  content: "";
  position: absolute;
  top: 0; left: 24px; right: 24px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #93B0FF, transparent);
  border-radius: 2px;
}
.prize-card-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  font-family: var(--font-mono, var(--font-display));
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  margin-bottom: 32px;
}
.prize-card-badge-logo {
  display: block;
  height: 16px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.prize-card-amount {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum";
  color: #FFC600;
  background: linear-gradient(
    90deg,
    #FFC600 0%,
    #FFE27A 45%,
    #FFFFFF 50%,
    #FFE27A 55%,
    #FFC600 100%
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: brand-shimmer 4.5s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(255, 198, 0, 0.15);
}
@media (prefers-reduced-motion: reduce) {
  .prize-card-amount { animation: none; }
}
.prize-card-sub {
  font-family: var(--font-mono, var(--font-display));
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-bottom: 28px;
}
.prize-card-desc {
  margin: 0 0 22px;
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.78);
}
.prize-card-fine {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255,255,255,0.45);
}
.prize-card-cta {
  display: flex;
  width: 100%;
  justify-content: center;
  box-shadow: 0 12px 30px -10px rgba(38, 103, 255, 0.5);
}
.prize-card-terms {
  display: block;
  margin-top: 28px;
  padding-top: 4px;
  text-align: center;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}
.prize-card-terms:hover {
  color: rgba(255,255,255,0.9);
}
@media (max-width: 540px) {
  .prize-card { padding: 32px 24px; }
}



/* countdown */
.countdown {
  text-align: center;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.countdown::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(38, 103, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.countdown > * { position: relative; }
.countdown .eyebrow { color: #93B0FF; }
.countdown h2 {
  margin: 18px 0 16px;
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1;
  letter-spacing: -0.035em;
  font-weight: 600;
  color: #fff;
  text-wrap: balance;
}
.countdown h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #93B0FF;
}
.countdown p {
  margin: 0 auto;
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 16px;
}
.countdown-grid {
  margin: 56px auto 36px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  max-width: 720px;
}
.cd-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 28px 16px 22px;
  border-radius: 6px;
  text-align: center;
}
.cd-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(40px, 5vw, 64px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.cd-lab {
  margin-top: 10px;
  font-family: var(--font-mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}

/* faq */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.faq-title {
  margin: 18px 0 16px;
  font-family: var(--font-sans);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  font-weight: 600;
}
.faq-title em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-2);
}
.faq-intro {
  color: var(--ink-1, #0b1226);
  max-width: 360px;
  margin: 0;
}
.faq-intro a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-size: 17px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.faq-q .plus {
  width: 22px; height: 22px;
  border: 1px solid var(--line);
  border-radius: 999px;
  display: grid; place-items: center;
  color: var(--ink-3);
  flex: 0 0 auto;
  transition: transform .25s ease, background .15s ease;
}
.faq-item.open .plus {
  background: var(--ink);
  color: #fff;
  border-color: var(--ink);
  transform: rotate(45deg);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease;
}
.faq-a-inner {
  padding: 0 0 26px;
  font-size: 15px;
  color: var(--ink-3);
  line-height: 1.6;
  max-width: 60ch;
}

/* CTA strip */
.cta-strip {
  text-align: center;
  padding: 120px 0 100px;
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(60% 80% at 50% 0%, rgba(38, 103, 255, 0.18), transparent 70%);
  pointer-events: none;
}
.cta-strip > * { position: relative; }
.cta-strip .eyebrow {
  color: #93B0FF;
}
.cta-strip h2 {
  margin: 18px auto 28px;
  font-family: var(--font-sans);
  font-size: clamp(40px, 5.6vw, 80px);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.035em;
  max-width: 14ch;
  text-wrap: balance;
  color: #fff;
}
.cta-strip h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: #93B0FF;
}
.cta-strip p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0 auto 36px;
  max-width: 520px;
}
.cta-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* footer */
.footer {
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
  font-size: 13px;
  color: var(--ink-3);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}
.footer-brand {
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.footer h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink-2);
  margin: 0 0 18px;
}
.footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a:hover { color: var(--accent); }
.footer-brand-blurb {
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.5;
}
.footer-bot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--line-2);
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bot .powered {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--ink-3);
}
.footer-bot .powered img { height: 18px; }
.footer-bot .powered-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.footer-bot .powered .jt-mark .jt-jump { font-size: 18px; }
.footer-bot .powered .jt-mark .jt-trading { font-size: 9px; }
.footer-stamp {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-4);
  letter-spacing: 0.08em;
}

/* responsive */
@media (max-width: 980px) {
  .prize-sponsor {
    position: static;
    margin: 0 0 24px;
    width: max-content;
    max-width: 100%;
  }
  .hero-sub, .sliders, .faq-grid, .section-head {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero { padding: 56px 0 72px; }
  .hero-tagline { margin-bottom: 24px; }
  .hero-presented { margin-bottom: 24px; gap: 12px; }
  .hero-jt-logo { height: 28px; }
  .hero-headline { font-size: clamp(36px, 7vw, 72px); }
  .hero-sub { margin-top: 20px; }
  .hero-sub p.hero-lede { font-size: 15px; }
  .hero-meta { margin-top: 56px; grid-template-columns: repeat(2, 1fr); }
  .hero-meta-cell { padding: 22px 16px; }
  .hero-meta-cell:nth-child(2) { border-right: 0; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .countdown-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .prize { padding: 48px 28px; }
  .prize p { font-size: 15px; }
  .nav-links { display: none; }
  .section-head { margin-bottom: 40px; }
  body, body.density-airy { --pad: 24px; }
  body.density-airy .section-pad { padding: 80px 0; }
  .section-pad { padding: 72px 0; }
  .cta-strip { padding: 80px 0 72px; }
  .cta-strip h2 { font-size: clamp(34px, 7vw, 56px); }
  .footer-bot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .footer-bot .powered { flex-wrap: wrap; }
  .sliders { gap: 32px; }
  .q-card { padding: 18px 18px; }
  .countdown-grid { margin: 40px auto 28px; }
  .cd-cell { padding: 22px 10px 18px; }
}
@media (max-width: 560px) {
  body, body.density-airy { --pad: 20px; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-meta { grid-template-columns: 1fr; }
  .hero-meta-cell { border-right: 0; border-bottom: 1px solid var(--line-2); padding: 20px 0; }
  .hero-meta-cell:last-child { border-bottom: 0; }
  .hero-presented { gap: 10px; margin-bottom: 20px; }
  .hero-presented .presented-label { font-size: 10px; letter-spacing: 0.14em; }
  .hero-jt-logo { height: 22px; }
  .hero-headline { font-size: clamp(30px, 8.5vw, 56px); letter-spacing: -0.03em; }
  .hero-actions, .prize-actions { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-actions .btn, .prize-actions .btn { width: 100%; justify-content: center; min-width: 0; }
  .prize-actions { margin-top: 24px !important; }
  .prize-link { text-align: center; margin-top: 4px; }
  .nav-inner { height: 60px; }
  .nav-brand-logo { height: 22px; }
  .nav-presented { display: none; }
  .nav-cta { gap: 10px; }
  .countdown-grid { gap: 4px; max-width: 100%; }
  .cta-actions .btn { width: 100%; justify-content: center; }
  .cta-strip { padding: 64px 0 56px; }
  .cta-strip h2 { font-size: clamp(28px, 8vw, 44px); }
  .cta-strip p { font-size: 15px; }
  .prize { padding: 36px 22px; border-radius: 4px; }
  .prize h2 { font-size: clamp(28px, 7vw, 36px); }
  .prize-sponsor { gap: 10px; padding: 6px 12px 6px 14px; }
  .prize-sponsor-label { font-size: 9px; }
  .prize-sponsor-logo { height: 18px; }
  .step { padding: 22px 20px; min-height: auto; }
  .faq-q { font-size: 15px; padding: 18px 0; }
  .q-card-tag { display: none; }
  .footer-bot .powered { flex-direction: column; align-items: flex-start; gap: 14px; }
  .footer-jt-logo { height: 16px; }
}
@media (min-width: 561px) and (max-width: 900px) {
  .nav-presented-label { display: none; }
  .nav-jt-logo { height: 20px; }
}

/* ===== Intro / Entry Experience ===== */
.entry-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: var(--bg, #F7F7F4);
  color: var(--ink);
  font-family: var(--font-sans);
  display: flex; align-items: center; justify-content: center;
  padding: 24px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.entry-card-wrap {
  display: flex; flex-direction: column; align-items: center; gap: 36px;
  width: 100%; max-width: 520px;
}
.entry-intro { text-align: center; max-width: 460px; margin: 0 auto; }
.entry-intro__eyebrow {
  font-family: var(--font-mono);
  font-size: 11px; letter-spacing: 0.18em; color: var(--ink-3);
  margin-bottom: 10px;
  text-transform: uppercase;
}
.entry-intro__title {
  font-family: var(--font-sans);
  font-size: clamp(26px, 3.4vw, 38px);
  font-weight: 600; color: var(--ink); letter-spacing: -0.02em;
  margin: 0 0 10px;
  line-height: 1.15;
}
.entry-intro__title em {
  font-family: var(--font-serif);
  font-style: italic; font-weight: 400; color: var(--ink-2);
}
.entry-intro__lede {
  font-family: var(--font-sans);
  font-size: 15px; color: var(--ink-3); margin: 0;
}
.entry-intro__lede b { color: var(--ink); font-weight: 600; }

.entry-loader {
  font-family: var(--font-mono);
  color: var(--ink);
  font-size: 18px; line-height: 1.7;
  letter-spacing: -0.01em;
  min-width: min(420px, 90vw);
}
.entry-loader__line { white-space: pre; }
.entry-loader__line--done { opacity: 0.4; }
.entry-loader__caret {
  display: inline-block;
  width: 9px; height: 1.05em;
  background: var(--ink);
  margin-left: 2px;
  vertical-align: -2px;
  animation: entryCaret 1s steps(2) infinite;
}
@keyframes entryCaret { 50% { opacity: 0; } }

.entry-card-drag {
  width: 100%;
  display: flex; justify-content: center;
  will-change: transform, opacity;
}
.entry-q-card.q-card {
  width: min(460px, 100%);
  box-shadow: 0 30px 80px -30px rgba(15, 21, 48, 0.45), 0 2px 6px rgba(15, 21, 48, 0.08);
}
.entry-card-drag.is-locking .entry-q-card.q-card {
  box-shadow:
    0 0 0 2px var(--accent),
    0 30px 80px -20px color-mix(in oklab, var(--accent) 40%, transparent);
  transition: box-shadow .25s ease;
}
.entry-card-drag.is-locking .q-track-fill {
  filter: brightness(1.15);
}

.entry-skip {
  appearance: none; background: transparent; border: 0;
  color: var(--ink-3); font-family: var(--font-mono);
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; padding: 4px 8px;
  transition: color .15s ease;
}
.entry-skip:hover { color: var(--ink); }

@media (max-width: 600px) {
  .entry-overlay { padding: 20px 12px; }
  .entry-card-wrap { gap: 24px; }
  .entry-intro__title { font-size: 22px; }
  .entry-intro__lede { font-size: 13px; }
}
@media (prefers-reduced-motion: reduce) {
  .entry-loader__caret { animation: none; }
  .entry-card-drag { transition: none; }
}

/* ===== Relative Brier Edge strip ===== */
.brier-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: stretch;
  gap: 16px;
}
.brier-tile {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 132px;
}
.brier-lab {
  font-family: var(--font-display);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
  font-weight: 700;
}
.brier-val {
  margin-top: 10px;
  font-family: var(--font-sans);
  font-size: clamp(32px, 3.4vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
}
.brier-tile-accent {
  background: var(--ink);
  border-color: var(--ink);
}
.brier-tile-accent .brier-lab { color: rgba(255,255,255,0.6); }
.brier-tile-accent .brier-val { color: var(--accent); }
.brier-arrow {
  align-self: center;
  font-size: 22px;
  color: var(--ink-4);
  font-weight: 400;
}
@media (max-width: 860px) {
  .brier-strip { grid-template-columns: 1fr; }
  .brier-arrow { transform: rotate(90deg); justify-self: center; }
}

/* ===== Tournament multipliers ===== */
.multiplier-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mult-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 36px 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.mult-stage {
  font-family: var(--font-display);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--accent);
}
.mult-x {
  font-family: var(--font-sans);
  font-size: clamp(64px, 7vw, 96px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--ink);
  margin: 24px 0;
}
.mult-sample {
  font-size: 14px;
  color: var(--ink-3);
}
.mult-sample strong { color: var(--ink); font-weight: 600; }
.mult-card-accent {
  background: var(--ink);
  border-color: var(--ink);
}
.mult-card-accent .mult-stage { color: var(--accent); }
.mult-card-accent .mult-x { color: #fff; }
.mult-card-accent .mult-sample { color: rgba(255,255,255,0.6); }
.mult-card-accent .mult-sample strong { color: #fff; }
@media (max-width: 860px) {
  .multiplier-cards { grid-template-columns: 1fr; }
}

/* ===== Research section (dark, matches Prize) ===== */
.research-section {
  background: var(--ink);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 64px 0;
}
body.density-tight .research-section { padding: 48px 0; }
body.density-airy  .research-section { padding: 84px 0; }
.research-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(70% 80% at 90% 10%, rgba(147, 176, 255, 0.12), transparent 60%),
    radial-gradient(60% 70% at 10% 90%, rgba(38, 103, 255, 0.10), transparent 65%);
  pointer-events: none;
}
.research-section > * { position: relative; }
.research-section .eyebrow { color: #93B0FF; }
.research-section .section-head h2 { color: #fff; }
.research-section .section-head h2 em { color: #93B0FF; }
.research-section .section-head p { color: rgba(255,255,255,0.7); }
/* ===== Research chips ===== */
.research-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  padding: 32px 0 16px;
}
@media (max-width: 860px) {
  .research-chips { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 520px) {
  .research-chips { grid-template-columns: 1fr; }
}
.research-chip {
  position: relative;
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  padding: 26px 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  font-family: var(--font-sans);
  color: var(--ink);
  transition: transform 0.35s cubic-bezier(0.2,0.7,0.2,1), border-color 0.3s ease, color 0.3s ease, background 0.3s ease, box-shadow 0.4s ease;
}
.research-chip-icon {
  color: var(--accent);
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  transition: transform 0.45s cubic-bezier(0.2,0.7,0.2,1);
}
.research-chip-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  line-height: 1.2;
  min-width: 0;
}
.research-chip-label {
  font-weight: 600;
  font-size: 19px;
}
.research-chip-examples {
  font-size: 13px;
  font-weight: 400;
  opacity: 0.7;
  letter-spacing: 0.01em;
}
.research-section .research-chip-examples { color: rgba(255,255,255,0.78); opacity: 0.85; }
.research-chip:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}

/* Dark research section: glass cards with animated halo on hover */
.research-section .research-chip {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.research-section .research-chip::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 24px;
  background: var(--chip-halo, linear-gradient(90deg, #4f7cff, #7aa0ff));
  filter: blur(14px);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}
.research-section .research-chip:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.28);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 16px 36px -14px rgba(79,124,255,0.5);
}
.research-section .research-chip:hover::before { opacity: 0.55; }
.research-section .research-chip:hover .research-chip-icon { transform: scale(1.15); }

/* Per-chip accent halo + icon color */
.research-section .research-chip:nth-child(1) { --chip-halo: linear-gradient(90deg,#3b82f6,#6366f1); }
.research-section .research-chip:nth-child(1) .research-chip-icon { color: #93B0FF; }

.research-section .research-chip:nth-child(2) { --chip-halo: linear-gradient(90deg,#eab308,#60a5fa); }
.research-section .research-chip:nth-child(2) .research-chip-icon { color: #fde68a; }
.research-section .research-chip:nth-child(2):hover .research-chip-icon { transform: rotate(15deg) scale(1.15); }

.research-section .research-chip:nth-child(3) { --chip-halo: linear-gradient(90deg,#10b981,#14b8a6); }
.research-section .research-chip:nth-child(3) .research-chip-icon { color: #6ee7b7; }

.research-section .research-chip:nth-child(4) { --chip-halo: linear-gradient(90deg,#a855f7,#ec4899); }
.research-section .research-chip:nth-child(4) .research-chip-icon { color: #d8b4fe; }

.research-section .research-chip:nth-child(5) { --chip-halo: linear-gradient(90deg,#22d3ee,#3b82f6); }
.research-section .research-chip:nth-child(5) .research-chip-icon { color: #67e8f9; }
.research-section .research-chip:nth-child(5):hover .research-chip-icon { animation: pulse 1.2s ease-in-out infinite; }

.research-section .research-chip:nth-child(6) { --chip-halo: linear-gradient(90deg,#fbbf24,#f97316); }
.research-section .research-chip:nth-child(6) .research-chip-icon { color: #fcd34d; }
.research-section .research-chip:nth-child(6):hover .research-chip-icon { transform: rotate(45deg) scale(1.15); }

@media (prefers-reduced-motion: reduce) {
  .research-section .research-chip { transform: none; }
}

.scoring-cta { margin-top: 40px; display: flex; justify-content: center; }

/* ===== Hero word stagger ===== */
.ws-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.5em);
  transition: opacity .7s cubic-bezier(0.2, 0.7, 0.2, 1), transform .7s cubic-bezier(0.2, 0.7, 0.2, 1);
  will-change: opacity, transform;
}
.ws-word.in { opacity: 1; transform: none; }

/* ===== Brier final tile pop ===== */
@keyframes brierPop {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.brier-strip.in-view .brier-pop {
  animation: brierPop 0.65s cubic-bezier(0.2, 0.9, 0.3, 1.2) 0.55s both;
}
.brier-strip .brier-arrow {
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity .5s ease, transform .5s ease;
}
.brier-strip.in-view .brier-arrow { opacity: 1; transform: none; }
.brier-strip.in-view .brier-arrow:nth-of-type(2) { transition-delay: .25s; }
.brier-strip.in-view .brier-arrow:nth-of-type(4) { transition-delay: .40s; }
.brier-strip.in-view .brier-arrow:nth-of-type(6) { transition-delay: .55s; }

/* ===== Multiplier number pop ===== */
@keyframes multPop {
  0%   { transform: scale(0.5); opacity: 0; }
  55%  { transform: scale(1.12); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}
.multiplier-cards .mult-x {
  opacity: 0;
  transform-origin: center;
}
.multiplier-cards.in-view .mult-card:nth-child(1) .mult-x {
  animation: multPop 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.3) 0.15s both;
}
.multiplier-cards.in-view .mult-card:nth-child(2) .mult-x {
  animation: multPop 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.3) 0.30s both;
}
.multiplier-cards.in-view .mult-card:nth-child(3) .mult-x {
  animation: multPop 0.7s cubic-bezier(0.2, 0.9, 0.3, 1.3) 0.45s both;
}
.mult-card-accent { transition: transform .25s ease, box-shadow .25s ease; }
.mult-card-accent:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px -20px rgba(38, 103, 255, 0.55);
}

/* ===== Research chips — extended stagger cascade ===== */
.reveal-stagger.in-view > *:nth-child(7)  { transition-delay: 0.52s; }
.reveal-stagger.in-view > *:nth-child(8)  { transition-delay: 0.60s; }
.reveal-stagger.in-view > *:nth-child(9)  { transition-delay: 0.68s; }
.reveal-stagger.in-view > *:nth-child(10) { transition-delay: 0.76s; }

/* ===== Countdown digit flip ===== */
.cd-num {
  display: inline-block;
  transform-origin: 50% 100%;
  backface-visibility: hidden;
}
@keyframes cdFlip {
  0%   { transform: rotateX(-90deg); opacity: 0; }
  60%  { transform: rotateX(8deg);   opacity: 1; }
  100% { transform: rotateX(0);       opacity: 1; }
}
.cd-num.cd-flip { animation: cdFlip 0.45s cubic-bezier(0.2, 0.8, 0.3, 1.1) both; }
@media (prefers-reduced-motion: reduce) {
  .cd-num.cd-flip { animation: none; }
  .ws-word { opacity: 1 !important; transform: none !important; transition: none !important; }
  .brier-strip.in-view .brier-pop,
  .multiplier-cards.in-view .mult-x { animation: none; opacity: 1; transform: none; }
}

.step-tagline {
  font-weight: 600;
  color: var(--ink, #0b0b0f);
  margin: 0 0 0.5rem;
}

/* Leaderboard section */
.lb-section {
  background: #fff;
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.lb-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(60% 70% at 10% 10%, rgba(38, 103, 255, 0.06), transparent 60%),
    radial-gradient(70% 80% at 95% 90%, rgba(147, 176, 255, 0.10), transparent 65%);
  pointer-events: none;
}
.lb-section > * { position: relative; }
.lb-split {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.lb-split .lb-card { order: -1; }
.lb-split .lb-left { order: 1; }

@media (max-width: 960px) {
  .lb-split { grid-template-columns: 1fr; gap: 40px; }
}
.lb-left { max-width: 520px; }
.lb-eyebrow {
  font-family: var(--font-mono, var(--font-display));
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #2667FF;
  margin-bottom: 22px;
}
.lb-headline {
  margin: 0;
  font-family: var(--font-sans);
  font-size: clamp(38px, 4.4vw, 60px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  font-weight: 700;
  color: var(--ink);
  text-wrap: balance;
}
.lb-headline em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: #2667FF;
}
.lb-lede {
  margin: 24px 0 36px;
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-1, #0b1226);
}
.lb-cta {
  box-shadow: 0 12px 30px -10px rgba(38, 103, 255, 0.35);
}

.lb-card {
  background: #fff;
  border: 1px solid var(--line, rgba(15, 21, 48, 0.08));
  border-radius: 22px;
  padding: 22px 22px 12px;
  box-shadow: 0 30px 80px -30px rgba(15, 21, 48, 0.18), 0 2px 6px rgba(15, 21, 48, 0.04);
}
.lb-card-pills {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.lb-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.lb-pill-light {
  background: #fff;
  border: 1px solid var(--line, rgba(15, 21, 48, 0.10));
  color: var(--ink);
}
.lb-pill-dark {
  background: var(--ink);
  color: #fff;
}
.lb-pill-dark svg { color: #93B0FF; }
.lb-tabs {
  display: flex;
  gap: 8px;
  padding: 4px 0 18px;
}
.lb-tab {
  padding: 8px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-3, #5A6485);
  border: 1px solid var(--line, rgba(15, 21, 48, 0.10));
  background: #fff;
  cursor: default;
}
.lb-tab.is-active {
  background: #2667FF;
  color: #fff;
  border-color: #2667FF;
}
.lb-table { width: 100%; }
.lb-thead {
  display: grid;
  grid-template-columns: 56px 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 10px 8px;
  font-family: var(--font-mono, var(--font-display));
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3, #5A6485);
  font-weight: 600;
  border-bottom: 1px solid var(--line, rgba(15, 21, 48, 0.08));
}
.lb-th-rank { text-align: left; }
.lb-th-forecaster { grid-column: 2 / span 2; }
.lb-th-score {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lb-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 21, 48, 0.2) transparent;
}
.lb-rows::-webkit-scrollbar { width: 6px; }
.lb-rows::-webkit-scrollbar-thumb { background: rgba(15, 21, 48, 0.2); border-radius: 3px; }
.lb-rows::-webkit-scrollbar-track { background: transparent; }
.lb-row {
  display: grid;
  grid-template-columns: 56px 40px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 8px;
  border-bottom: 1px solid var(--line, rgba(15, 21, 48, 0.06));
}
.lb-rows li:last-child { border-bottom: none; }
.lb-rank {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink-3, #5A6485);
  text-align: left;
}
.lb-row:nth-child(1) .lb-rank,
.lb-row:nth-child(3) .lb-rank {
  color: #c79324;
}
.lb-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(38, 103, 255, 0.10);
  color: #2667FF;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.lb-name {
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lb-flag {
  font-size: 18px;
  line-height: 1;
}
.lb-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
  letter-spacing: -0.01em;
  min-width: 60px;
  text-align: right;
}
@media (max-width: 540px) {
  .lb-card { padding: 18px 16px 8px; }
  .lb-pill { padding: 10px 14px; font-size: 13px; }
  .lb-thead, .lb-row { grid-template-columns: 36px 32px 1fr auto; gap: 12px; }

}


.lb-tab { font-family: inherit; cursor: pointer; transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease; }
.lb-tab:hover:not(.is-active) { background: rgba(38, 103, 255, 0.06); color: var(--ink); }
.lb-tag {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 7px;
  border-radius: 4px;
  background: rgba(15, 21, 48, 0.06);
  color: var(--ink-3, #5A6485);
  font-family: var(--font-mono, var(--font-display));
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  vertical-align: middle;
}

.hero-fine {
  margin-top: 14px;
  font-size: 11px;
  color: var(--ink-3, #5A6485);
  font-style: italic;
  opacity: 0.7;
  letter-spacing: 0.01em;
}


.hero-countdown {
  margin-top: 22px;
  padding: 0;
  border: none;
  background: transparent;
}
.hero-countdown-under {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.hero-cd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
  max-width: 420px;
}
.hero-cd-cell {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 14px 10px 12px;
  border-radius: 6px;
  text-align: center;
}
.hero-cd-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(24px, 2.4vw, 34px);
  letter-spacing: -0.03em;
  line-height: 1;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.hero-cd-lab {
  margin-top: 8px;
  font-family: var(--font-mono);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.55);
}
@media (max-width: 540px) {
  .hero-cd-grid { gap: 6px; }
  .hero-cd-cell { padding: 16px 8px 12px; }
}

/* hero grid + market card */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 56px;
  align-items: start;
}
.hero-grid-main { min-width: 0; }

.hero-market-card {
  margin-top: 8px;
  max-width: 420px;
  margin-left: auto;
}
.hero-market-card .q-card {
  font-size: 16px;
}

/* stacked market cards */
.hero-card-stack {
  position: relative;
  isolation: isolate;
}
.hero-card-stack .q-card {
  position: relative;
  z-index: 3;
  transition: transform .45s cubic-bezier(.2,.7,.2,1), opacity .35s ease;
  will-change: transform, opacity;
}
.hero-card-ghost {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.08);
  box-shadow: 0 18px 40px -22px rgba(15,23,42,0.25);
  pointer-events: none;
  transform-origin: 50% 0%;
  transition: transform .5s cubic-bezier(.2,.7,.2,1), opacity .4s ease;
  will-change: transform, opacity;
}
.ghost-1 { z-index: 2; transform: translate(0, 26px) scale(0.955); opacity: 1; }
.ghost-2 { z-index: 1; transform: translate(0, 50px) scale(0.91);  opacity: 0.92; }
.ghost-3 { z-index: 0; transform: translate(0, 74px) scale(0.865); opacity: 0.78; }

/* advancing animation: top card flies up and fades, ghosts step forward */
.hero-card-stack.is-advancing .q-card {
  transform: translateY(-22px) scale(0.985);
  opacity: 0;
}
.hero-card-stack.is-advancing .ghost-1 { transform: translate(0, 0) scale(1); opacity: 1; }
.hero-card-stack.is-advancing .ghost-2 { transform: translate(0, 26px) scale(0.955); opacity: 1; }
.hero-card-stack.is-advancing .ghost-3 { transform: translate(0, 50px) scale(0.91); opacity: 0.92; }

/* progress dots */
.q-stack-progress {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.04em;
}
.q-stack-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255,255,255,0.2);
  transition: background .3s ease, transform .3s ease;
}
.q-stack-dot.is-active { background: var(--accent, #6ee7b7); transform: scale(1.25); }
.q-stack-label { margin-left: auto; }


.hmc-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hmc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--ink-2);
  font-weight: 600;
}
.hmc-dot {
  width: 8px; height: 8px;
  border-radius: 999px;
  background: #e54848;
  box-shadow: 0 0 0 4px rgba(229, 72, 72, 0.15);
  animation: hmcPulse 1.6s ease-in-out infinite;
}
@keyframes hmcPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 72, 72, 0.25); }
  50% { box-shadow: 0 0 0 6px rgba(229, 72, 72, 0.0); }
}
.hmc-teams {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
}
.hmc-team {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.hmc-teams .hmc-team:last-child { justify-content: flex-end; }
.hmc-flag { font-size: 22px; line-height: 1; }
.hmc-team-name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hmc-vs {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.hmc-question {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.35;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hmc-bar {
  position: relative;
  height: 38px;
  border-radius: 8px;
  background: rgba(15, 21, 48, 0.05);
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 12px;
}
.hmc-bar-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--accent), color-mix(in oklab, var(--accent) 70%, #fff));
  opacity: 0.18;
}
.hmc-bar-label, .hmc-bar-value {
  position: relative;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 600;
}
.hmc-bar-value {
  margin-left: auto;
  font-size: 13px;
  color: var(--ink);
}
.hmc-foot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line-2, rgba(15,21,48,0.06));
  padding-top: 14px;
}
.hmc-foot-cell {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hmc-foot-cell + .hmc-foot-cell { border-left: 1px solid var(--line-2, rgba(15,21,48,0.06)); padding-left: 14px; }
.hmc-foot-lab {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.hmc-foot-val {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.hmc-pos { color: #14a06b; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-market-card { max-width: 480px; }
}

/* Loading skeletons for JS-populated below-the-fold sections */
.faq-skeleton {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 4px;
  border-bottom: 1px solid var(--line, rgba(0,0,0,0.08));
}
.faq-skeleton .sk {
  display: block;
  height: 16px;
  border-radius: 6px;
  background: linear-gradient(90deg,
    rgba(127,127,127,0.10) 0%,
    rgba(127,127,127,0.22) 50%,
    rgba(127,127,127,0.10) 100%);
  background-size: 200% 100%;
  animation: sk-shimmer 1.4s linear infinite;
}
.faq-skeleton .sk-q { width: 62%; }
.faq-skeleton .sk-q-2 { width: 48%; }
.faq-skeleton .sk-q-3 { width: 72%; }
.faq-skeleton .sk-plus { width: 14px; height: 14px; border-radius: 50%; flex: 0 0 14px; }
@keyframes sk-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .faq-skeleton .sk { animation: none; }
}
