/* ============================================================
   SZN SPORTSCARDS — broadcast / scorebug edition
   Palette pulled from the logo: royal blue + light blue glow
   ============================================================ */

:root {
  --blue:        #1f86ff;
  --blue-bright: #3d97ff;
  --blue-light:  #6cc0ff;
  --blue-deep:   #0a5bd6;
  --white:       #f2f7ff;

  --bg:    #060a13;
  --bg-2:  #0a1120;
  --panel: #0f1a2e;
  --panel-2: #122441;
  --line:  rgba(108, 192, 255, 0.14);

  --txt:    #dfe8f5;
  --txt-dim:#93a4bd;

  --radius: 18px;
  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --mono: 'Space Grotesk', ui-monospace, monospace;
}

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

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

body {
  font-family: 'Outfit', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--txt);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed; inset: 0;
  background:
    radial-gradient(900px 600px at 78% -5%, rgba(31,134,255,0.18), transparent 60%),
    radial-gradient(700px 700px at 0% 30%, rgba(108,192,255,0.10), transparent 60%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 55%, var(--bg) 100%);
  z-index: -2;
  pointer-events: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; }

/* keyboard focus visibility (mouse clicks stay clean) */
:focus-visible { outline: 2px solid var(--blue-light); outline-offset: 3px; border-radius: 4px; }
:focus:not(:focus-visible) { outline: none; }

.glow-word {
  background: linear-gradient(120deg, var(--blue-light), var(--blue) 55%, var(--blue-bright));
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}

/* ===================== BUTTONS ===================== */
.btn {
  --pad-y: .72rem; --pad-x: 1.25rem;
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: var(--pad-y) var(--pad-x);
  min-height: 44px; /* accessible touch target */
  border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .2px;
  cursor: pointer; border: none;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
  white-space: nowrap;
}
.btn-big { --pad-y: 1rem; --pad-x: 1.9rem; font-size: 1.05rem; }
.btn-primary {
  background: linear-gradient(120deg, var(--blue-bright), var(--blue) 55%, var(--blue-deep));
  color: #fff;
  box-shadow: 0 10px 30px rgba(31,134,255,0.45), inset 0 1px 0 rgba(255,255,255,0.25);
}
.btn-primary:hover { transform: translateY(-3px) scale(1.02); box-shadow: 0 18px 45px rgba(31,134,255,0.6), inset 0 1px 0 rgba(255,255,255,0.35); }
.btn-ghost {
  background: rgba(255,255,255,0.04); color: var(--white);
  border: 1.5px solid var(--line); backdrop-filter: blur(8px);
}
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--blue-light); background: rgba(31,134,255,0.12); }
.btn-live {
  background: rgba(31,134,255,0.12); color: var(--white);
  border: 1.5px solid rgba(108,192,255,0.35); font-size: .9rem;
}
.btn-live:hover { background: rgba(31,134,255,0.22); transform: translateY(-2px); }

.live-dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: var(--blue-light); box-shadow: 0 0 0 0 rgba(108,192,255,0.7);
  animation: pulse 1.8s infinite; flex: none;
}
.live-dot-red { background: #ff4d4d; box-shadow: 0 0 0 0 rgba(255,77,77,0.7); animation: pulseRed 1.5s infinite; }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(108,192,255,0.6)} 70%{box-shadow:0 0 0 10px rgba(108,192,255,0)} 100%{box-shadow:0 0 0 0 rgba(108,192,255,0)} }
@keyframes pulseRed { 0%{box-shadow:0 0 0 0 rgba(255,77,77,0.6)} 70%{box-shadow:0 0 0 9px rgba(255,77,77,0)} 100%{box-shadow:0 0 0 0 rgba(255,77,77,0)} }

/* ===================== NAV ===================== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1rem clamp(1rem, 4vw, 2.5rem);
  transition: background .4s var(--ease), padding .4s var(--ease), box-shadow .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(8, 13, 24, 0.72); backdrop-filter: blur(16px) saturate(140%);
  border-bottom-color: var(--line); padding-top: .7rem; padding-bottom: .7rem;
  box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}
.nav-brand { display: flex; align-items: center; }
.nav-logo { height: 42px; width: auto; filter: drop-shadow(0 4px 14px rgba(31,134,255,0.4)); transition: transform .3s var(--ease); }
.nav-brand:hover .nav-logo { transform: scale(1.06) rotate(-1deg); }
.nav-links { display: flex; gap: 1.8rem; }
.nav-links a { font-weight: 600; font-size: .98rem; color: var(--txt-dim); position: relative; padding: .25rem 0; transition: color .25s var(--ease); }
.nav-links a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: linear-gradient(90deg, var(--blue-light), var(--blue)); transition: width .3s var(--ease); }
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: none; cursor: pointer; padding: 0; }
.nav-toggle span { width: 24px; height: 2.5px; background: var(--white); border-radius: 2px; transition: .3s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7.5px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7.5px) rotate(-45deg); }

/* ===================== HERO ===================== */
.hero {
  position: relative; min-height: 100svh;
  display: flex; align-items: center;
  padding: 8rem clamp(1.25rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}
.gridiron {
  position: absolute; inset: 0; z-index: -1;
  background-image: repeating-linear-gradient(90deg, transparent 0 calc(11% - 1px), rgba(108,192,255,0.05) calc(11% - 1px) 11%);
  -webkit-mask-image: radial-gradient(130% 90% at 60% 40%, #000 30%, transparent 80%);
          mask-image: radial-gradient(130% 90% at 60% 40%, #000 30%, transparent 80%);
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(70px); z-index: -1; will-change: transform; }
.hero-glow-1 { width: 520px; height: 520px; top: -8%; right: 6%; background: radial-gradient(circle, rgba(31,134,255,0.5), transparent 65%); animation: floatGlow 14s ease-in-out infinite; }
.hero-glow-2 { width: 440px; height: 440px; bottom: -6%; left: 4%; background: radial-gradient(circle, rgba(108,192,255,0.4), transparent 65%); animation: floatGlow 16s ease-in-out infinite reverse; }
@keyframes floatGlow { 0%,100%{ transform: translate(0,0) scale(1);} 50%{ transform: translate(26px,-22px) scale(1.12);} }

/* giant ghost wordmark */
.hero-watermark {
  position: absolute; z-index: -1; left: 50%; top: 46%;
  transform: translate(-50%, -50%);
  font-family: 'Anton', sans-serif; font-size: clamp(16rem, 42vw, 46rem);
  line-height: 1; letter-spacing: -.02em; pointer-events: none;
  color: transparent; -webkit-text-stroke: 2px rgba(108,192,255,0.10);
  opacity: .9; user-select: none; white-space: nowrap;
}

.sparkle-field { position: absolute; inset: 0; z-index: -1; pointer-events: none; }
.sparkle { position: absolute; width: 3px; height: 3px; border-radius: 50%; background: var(--blue-light); opacity: 0; animation: twinkle linear infinite; box-shadow: 0 0 6px var(--blue-light); }
@keyframes twinkle { 0%{opacity:0; transform: scale(.4);} 50%{opacity:.9; transform: scale(1);} 100%{opacity:0; transform: scale(.4);} }

.hero-grid {
  position: relative; z-index: 2; width: 100%; max-width: var(--maxw); margin: 0 auto;
  display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; gap: clamp(2rem, 5vw, 4rem);
}
.hero-left { text-align: left; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .95rem; border-radius: 999px;
  background: rgba(255,77,77,0.1); border: 1px solid rgba(255,77,77,0.3);
  color: #ff8a8a; font-weight: 700; font-size: .8rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1.5rem;
}
.hero-title {
  font-family: 'Anton', sans-serif; font-weight: 400;
  font-size: clamp(3.2rem, 8.5vw, 7rem); line-height: 0.9; letter-spacing: 1px; text-transform: uppercase;
  color: var(--white); text-shadow: 0 6px 40px rgba(0,0,0,0.5);
}
.hero-title span { display: block; }
.hero-sub { margin: 1.5rem 0 0; max-width: 480px; font-size: clamp(1.02rem, 2.3vw, 1.18rem); color: var(--txt-dim); }
.hero-sub strong { color: var(--white); }
.hero-notice {
  display: inline-flex; align-items: center; gap: .55rem; margin: 1.6rem 0 0;
  padding: .5rem .95rem; border-radius: 999px;
  background: rgba(31,134,255,0.1); border: 1px solid rgba(108,192,255,0.28);
  color: var(--blue-light); font-weight: 600; font-size: .84rem;
  backdrop-filter: blur(8px);
  box-shadow: 0 0 0 0 rgba(31,134,255,0);
  animation: noticeGlow 3s ease-in-out infinite;
}
.hero-notice-icon { font-size: .95rem; filter: drop-shadow(0 0 6px rgba(108,192,255,0.6)); }
.hero-notice-sep { color: rgba(108,192,255,0.5); margin: 0 .15rem; }
@keyframes noticeGlow { 0%,100% { box-shadow: 0 0 0 0 rgba(31,134,255,0); } 50% { box-shadow: 0 0 20px 0 rgba(31,134,255,0.32); } }
.hero-ctas { margin-top: 1.4rem; display: flex; gap: 1rem; flex-wrap: wrap; }

/* broadcast scorebug card */
.scorebug {
  position: relative;
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(165deg, rgba(18,36,65,0.92), rgba(10,17,32,0.92));
  border: 1px solid rgba(108,192,255,0.28);
  box-shadow: 0 30px 70px rgba(0,0,0,0.55), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
  animation: floatCard 7s ease-in-out infinite;
}
@keyframes floatCard { 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-12px); } }
.scorebug-bar {
  display: flex; align-items: center; justify-content: space-between; gap: .5rem;
  padding: .7rem 1rem; background: linear-gradient(90deg, var(--blue-deep), var(--blue));
  font-family: var(--mono); font-weight: 700; letter-spacing: 1px; color: #fff;
}
.sb-live { display: inline-flex; align-items: center; gap: .45rem; font-size: .82rem; }
.sb-live .live-dot { background: #fff; box-shadow: 0 0 0 0 rgba(255,255,255,.7); animation: pulseRed 1.5s infinite; }
.sb-channel { font-size: .72rem; opacity: .85; }
.sb-eq { display: inline-flex; align-items: flex-end; gap: 3px; height: 16px; padding: .15rem .55rem; background: rgba(0,0,0,0.25); border-radius: 6px; }
.sb-eq i { width: 3px; height: 100%; border-radius: 2px; background: #fff; transform-origin: bottom; transform: scaleY(.35); animation: eq 1s ease-in-out infinite; }
.sb-eq i:nth-child(1) { animation-delay: -.2s; }
.sb-eq i:nth-child(2) { animation-delay: -.5s; }
.sb-eq i:nth-child(3) { animation-delay: -.1s; }
.sb-eq i:nth-child(4) { animation-delay: -.7s; }
@keyframes eq { 0%,100% { transform: scaleY(.3); } 50% { transform: scaleY(1); } }
.scorebug-body { padding: 2rem 1.5rem 1.5rem; text-align: center; }
.scorebug-logo { width: 64%; max-width: 230px; margin: 0 auto .9rem; filter: drop-shadow(0 14px 30px rgba(31,134,255,0.5)); }
.scorebug-tagline { font-family: 'Anton', sans-serif; font-size: 1.5rem; text-transform: uppercase; color: var(--white); letter-spacing: 1px; }
.scorebug-chips { display: flex; flex-wrap: wrap; justify-content: center; gap: .4rem; margin-top: 1rem; }
.scorebug-chips span {
  font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: 1px;
  padding: .3rem .6rem; border-radius: 6px; color: var(--blue-light);
  background: rgba(31,134,255,0.12); border: 1px solid rgba(108,192,255,0.25);
}
.scorebug-foot { display: flex; border-top: 1px solid var(--line); }
.sb-stat { flex: 1; text-align: center; padding: .9rem .4rem; }
.sb-stat + .sb-stat { border-left: 1px solid var(--line); }
.sb-stat b { display: block; font-family: 'Anton', sans-serif; font-size: 1.5rem; color: var(--white); font-weight: 400; line-height: 1.1; }
.sb-247 { font-size: 1.3rem !important; letter-spacing: .5px; }
.sb-stat span { display: block; font-size: .66rem; text-transform: uppercase; letter-spacing: .8px; color: var(--txt-dim); margin-top: .15rem; }

/* load-in */
.load-rise { opacity: 0; transform: translateY(28px); animation: rise .9s var(--ease) forwards; animation-delay: var(--d, 0s); }
@keyframes rise { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-left { text-align: center; }
  .hero-eyebrow { margin-left: auto; margin-right: auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-notice { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .scorebug { max-width: 380px; margin: 0 auto; width: 100%; }
}

/* phones: tighten the hero so the headline + CTA land above the fold,
   stack CTAs full-width for big tap targets, and trim motion cost */
@media (max-width: 640px) {
  .hero {
    min-height: auto;
    align-items: flex-start;
    padding: 5.75rem 1.25rem 3rem;
  }
  .hero-grid { gap: 2rem; }
  .hero-eyebrow { margin-bottom: 1rem; }
  .hero-sub { margin-top: 1rem; }
  .hero-notice { margin-top: 1.1rem; font-size: .8rem; }
  .hero-ctas { margin-top: 1.25rem; flex-direction: column; align-items: stretch; gap: .75rem; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  /* drop continuous decorative animation on phones to save battery/paint */
  .hero-glow-1, .hero-glow-2 { animation: none; filter: blur(55px); }
  .scorebug { animation: none; }
}

/* ===================== TICKER ===================== */
.ticker {
  position: relative; overflow: hidden; padding: .85rem 0;
  background: rgba(10, 17, 32, 0.6);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.ticker-track { display: flex; align-items: center; width: max-content; gap: 1.6rem; animation: scroll-x 32s linear infinite; }
.ticker-item {
  font-family: var(--mono); font-weight: 600; font-size: .92rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--txt); white-space: nowrap; transition: color .3s var(--ease);
}
.ticker-sep { color: var(--blue); font-size: .6rem; }
@keyframes scroll-x { to { transform: translateX(-50%); } }
.ticker:hover .ticker-track { animation-play-state: paused; }

/* ===================== SECTIONS ===================== */
.section { max-width: var(--maxw); margin: 0 auto; padding: clamp(4.5rem, 9vw, 8rem) clamp(1.25rem, 4vw, 2.5rem); }
.section-head { max-width: 720px; margin: 0 0 3.4rem; }
.section-tag { display: inline-block; color: var(--blue-light); font-weight: 700; letter-spacing: 2px; text-transform: uppercase; font-size: .82rem; margin-bottom: 1rem; }
.section-title { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2.2rem, 6vw, 4rem); line-height: 1; text-transform: uppercase; color: var(--white); letter-spacing: .5px; }
.section-sub { margin-top: 1rem; color: var(--txt-dim); font-size: 1.08rem; }

/* progressive enhancement: only hide when JS is active, so content
   is never stranded invisible if the script fails to run */
.js .reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease), transform .8s var(--ease); transition-delay: var(--d, 0s); }
.js .reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== WHY (BENTO) ===================== */
.bento { display: grid; grid-template-columns: repeat(3, 1fr); grid-auto-rows: 1fr; gap: 1.1rem; }
.bento-tile {
  position: relative; overflow: hidden;
  background: linear-gradient(180deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.7rem 1.6rem;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.bento-tile::before { content: ""; position: absolute; inset: 0; background: radial-gradient(320px 130px at 30% 0%, rgba(31,134,255,0.16), transparent 70%); opacity: 0; transition: opacity .35s var(--ease); }
.bento-tile:hover { transform: translateY(-6px); border-color: rgba(108,192,255,0.4); box-shadow: 0 22px 48px rgba(0,0,0,0.42); }
.bento-tile:hover::before { opacity: 1; }
.bento-feature { grid-row: span 2; display: flex; flex-direction: column; justify-content: center; background: linear-gradient(160deg, var(--panel-2), var(--bg-2)); }
/* non-feature tiles: column layout so the tag pins to the bottom and
   all tags line up on the same baseline regardless of copy length */
.bento-tile:not(.bento-feature) { display: flex; flex-direction: column; }
.bento-tile:not(.bento-feature) .bento-kicker { margin-top: auto; padding-top: 1rem; }
.bento-wide { grid-column: span 2; }
.bento-icon { font-size: 2rem; margin-bottom: .8rem; filter: drop-shadow(0 6px 14px rgba(31,134,255,0.4)); }
.bento-feature .bento-icon { font-size: 2.6rem; }
.bento-tile h3 { font-size: 1.18rem; color: var(--white); margin-bottom: .45rem; font-weight: 700; }
.bento-feature h3 { font-family: 'Anton', sans-serif; font-weight: 400; font-size: 1.9rem; text-transform: uppercase; letter-spacing: .5px; }
.bento-tile p { color: var(--txt-dim); font-size: .96rem; position: relative; }
.bento-kicker { display: inline-block; margin-top: 1rem; font-family: var(--mono); font-size: .72rem; letter-spacing: 2px; text-transform: uppercase; color: var(--blue-light); }
@media (max-width: 820px) {
  /* let each card size to its own content instead of forcing equal rows */
  .bento { grid-template-columns: 1fr 1fr; grid-auto-rows: auto; }
  .bento-feature { grid-row: span 1; grid-column: span 2; justify-content: flex-start; }
  .bento-wide { grid-column: span 2; }
  .bento-tile:not(.bento-feature) .bento-kicker { margin-top: 1rem; }
}
@media (max-width: 520px) {
  .bento { grid-template-columns: 1fr; }
  .bento-feature, .bento-wide { grid-column: span 1; }
  .bento-tile { padding: 1.5rem 1.3rem; }
  .bento-feature h3 { font-size: 1.7rem; }
}

/* ===================== BREAKS (SCOREBOARD) ===================== */
.board { display: flex; flex-direction: column; gap: 1rem; }
.board-row {
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.5rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(100deg, var(--panel), var(--bg-2));
  border: 1px solid var(--line); border-radius: 16px;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.board-row:hover { transform: translateX(8px); border-color: rgba(108,192,255,0.45); box-shadow: -8px 0 0 0 var(--blue), 0 20px 44px rgba(0,0,0,0.4); }
.board-index {
  font-family: 'Anton', sans-serif; font-size: clamp(2.6rem, 6vw, 4rem); line-height: 1;
  color: transparent; -webkit-text-stroke: 1.6px rgba(108,192,255,0.5);
  font-variant-numeric: tabular-nums; transition: -webkit-text-stroke .35s var(--ease);
}
.board-row:hover .board-index { -webkit-text-stroke-color: var(--blue-light); }
.board-main { min-width: 0; }
.board-head { display: flex; align-items: center; gap: .9rem; flex-wrap: wrap; }
.board-name { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(1.6rem, 4vw, 2.2rem); text-transform: uppercase; color: var(--white); letter-spacing: 1px; }
.board-tag { font-family: var(--mono); font-size: .72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-light); background: rgba(31,134,255,0.12); border: 1px solid rgba(108,192,255,0.28); padding: .25rem .6rem; border-radius: 6px; }
.board-desc { color: var(--txt-dim); font-size: .98rem; margin-top: .4rem; max-width: 560px; }
.board-stat { text-align: center; flex: none; }
.board-stat b { display: block; font-size: 2rem; line-height: 1; filter: drop-shadow(0 6px 14px rgba(0,0,0,0.4)); }
.board-stat span { font-family: var(--mono); font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--txt-dim); }
@media (max-width: 700px) {
  .board-row { grid-template-columns: auto 1fr; gap: 1rem 1.2rem; padding: 1.3rem 1.4rem; }
  .board-stat { grid-column: 2; text-align: left; display: flex; align-items: center; gap: .5rem; }
  .board-stat b { font-size: 1.3rem; }
  .board-row:hover { transform: translateX(4px); }
}

/* ===================== HOW (TIMELINE) ===================== */
.timeline { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; }
.timeline::before { content: ""; position: absolute; top: 22px; left: 6%; right: 6%; height: 2px; background: linear-gradient(90deg, transparent, var(--blue) 15%, var(--blue) 85%, transparent); opacity: .4; }
.tl-step { position: relative; text-align: center; padding: 0 .6rem; }
.tl-dot {
  position: relative; z-index: 2; display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 1rem;
  font-family: var(--mono); font-weight: 700; font-size: .9rem; color: #fff;
  background: linear-gradient(140deg, var(--blue-bright), var(--blue-deep));
  box-shadow: 0 8px 24px rgba(31,134,255,0.5), 0 0 0 6px rgba(8,13,24,1), 0 0 0 7px var(--line);
}
.tl-step h3 { color: var(--white); font-size: 1.12rem; margin-bottom: .35rem; font-weight: 700; }
.tl-step p { color: var(--txt-dim); font-size: .92rem; }
@media (max-width: 760px) {
  .timeline { grid-template-columns: 1fr; gap: 0; }
  .timeline::before { top: 0; bottom: 0; left: 21px; right: auto; width: 2px; height: auto; }
  .tl-step { text-align: left; display: grid; grid-template-columns: 44px 1fr; gap: 0 1.2rem; padding: 0 0 2rem; }
  .tl-dot { margin-bottom: 0; grid-row: span 2; }
}

/* ===================== LIVE BAND ===================== */
.live-band { position: relative; overflow: hidden; padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 4vw, 2.5rem); background: linear-gradient(120deg, var(--blue-deep), var(--blue) 55%, var(--blue-bright)); }
.live-band::before { content: ""; position: absolute; inset: 0; background: repeating-linear-gradient(90deg, transparent 0 calc(11% - 1px), rgba(255,255,255,0.07) calc(11% - 1px) 11%); }
.live-band-inner { position: relative; max-width: var(--maxw); margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; }
.live-band .live-badge { background: rgba(255,255,255,0.18); border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.live-band .live-badge .live-dot { background: #fff; }
.live-badge { display: inline-flex; align-items: center; gap: .5rem; padding: .4rem .85rem; border-radius: 999px; font-weight: 700; font-size: .76rem; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 1rem; }
.live-title { font-family: 'Anton', sans-serif; font-weight: 400; font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1; text-transform: uppercase; color: #fff; }
.live-title .glow-word { background: none; -webkit-text-fill-color: #cfe5ff; color: #cfe5ff; }
.live-sub { color: rgba(255,255,255,0.9); margin-top: .8rem; max-width: 540px; font-size: 1.05rem; }
.live-band .btn-primary { background: #fff; color: var(--blue-deep); box-shadow: 0 14px 36px rgba(0,0,0,0.35); }
.live-band .btn-primary:hover { background: #fff; color: var(--blue-deep); }

/* ===================== TRUSTED BY COLLECTORS ===================== */
.trusted .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 820px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 420px) { .trust-grid { grid-template-columns: 1fr; } }
.trust-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: .4rem;
  padding: 2.2rem 1.4rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(31,134,255,0.14), 0 0 0 1px rgba(108,192,255,0.05) inset;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.trust-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(300px 130px at 50% 0%, rgba(31,134,255,0.18), transparent 70%); opacity: 0; transition: opacity .35s var(--ease); }
.trust-card:hover { transform: translateY(-8px); border-color: rgba(108,192,255,0.4); box-shadow: 0 22px 48px rgba(31,134,255,0.28), 0 10px 24px rgba(0,0,0,0.4); }
.trust-card:hover::before { opacity: 1; }
.trust-num {
  position: relative; display: inline-flex; align-items: baseline; gap: .05em;
  font-family: 'Anton', sans-serif; line-height: 1;
  background: linear-gradient(120deg, var(--blue-light), var(--blue) 55%, var(--blue-bright));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-num b { font-weight: 400; font-size: clamp(2.6rem, 6vw, 3.6rem); }
.trust-num i { font-weight: 400; font-style: normal; font-size: clamp(1.4rem, 3vw, 2rem); }
.trust-sub { position: relative; color: var(--blue-light); font-weight: 600; font-size: .76rem; margin-top: .15rem; opacity: .85; }
.trust-label { position: relative; color: var(--txt-dim); font-weight: 600; font-size: .9rem; text-transform: uppercase; letter-spacing: 1px; margin-top: .3rem; }

/* ===================== SOCIALS ===================== */
.socials .section-head { text-align: center; margin-left: auto; margin-right: auto; }
.social-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
@media (max-width: 880px) { .social-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 440px) { .social-grid { grid-template-columns: 1fr; } }
.social-card {
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .35rem;
  padding: 1.7rem 1.5rem; border-radius: var(--radius);
  background: linear-gradient(180deg, var(--panel), var(--bg-2)); border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(31,134,255,0.14), 0 0 0 1px rgba(108,192,255,0.05) inset;
  transition: transform .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
}
.social-card svg { width: 34px; height: 34px; margin-bottom: .6rem; transition: transform .35s var(--ease); }
.social-name { font-weight: 800; font-size: 1.15rem; color: var(--white); }
.social-handle { color: var(--txt-dim); font-size: .9rem; }
.social-go { margin-top: .6rem; font-weight: 700; font-size: .88rem; color: var(--blue-light); opacity: 0; transform: translateX(-6px); transition: .35s var(--ease); }
.social-card::after { content: ""; position: absolute; inset: 0; opacity: 0; transition: opacity .35s var(--ease); pointer-events: none; }
.social-card:hover { transform: translateY(-8px); box-shadow: 0 22px 48px rgba(31,134,255,0.28), 0 10px 24px rgba(0,0,0,0.4); }
.social-card:hover svg { transform: scale(1.12) rotate(-6deg); }
.social-card:hover .social-go { opacity: 1; transform: translateX(0); }
.social-card.whatnot:hover { border-color: #ffd84d; }
.social-card.whatnot:hover::after { opacity: 1; background: radial-gradient(320px 140px at 50% 0%, rgba(255,216,77,0.18), transparent 70%); }
.social-card.whatnot svg, .social-card.whatnot .social-go { color: #ffd84d; }
.social-card.instagram:hover { border-color: #e1306c; }
.social-card.instagram:hover::after { opacity: 1; background: radial-gradient(320px 140px at 50% 0%, rgba(225,48,108,0.2), transparent 70%); }
.social-card.instagram svg, .social-card.instagram .social-go { color: #e1306c; }
.social-card.tiktok:hover { border-color: #25f4ee; }
.social-card.tiktok:hover::after { opacity: 1; background: radial-gradient(320px 140px at 50% 0%, rgba(37,244,238,0.16), transparent 70%); }
.social-card.tiktok svg, .social-card.tiktok .social-go { color: #25f4ee; }
.social-card.x-twitter:hover { border-color: #fff; }
.social-card.x-twitter:hover::after { opacity: 1; background: radial-gradient(320px 140px at 50% 0%, rgba(255,255,255,0.14), transparent 70%); }
.social-card.x-twitter svg, .social-card.x-twitter .social-go { color: #fff; }

/* ===================== STICKY MOBILE CTA ===================== */
.mobile-cta {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 90;
  display: none; align-items: center; justify-content: center; gap: .55rem;
  padding: 1rem 1.5rem; border-radius: 999px;
  font-weight: 700; font-size: 1.05rem; letter-spacing: .2px; color: #fff;
  background: linear-gradient(120deg, var(--blue-bright), var(--blue) 55%, var(--blue-deep));
  box-shadow: 0 12px 34px rgba(31,134,255,0.5), inset 0 1px 0 rgba(255,255,255,0.25);
  transform: translateY(160%); opacity: 0; pointer-events: none;
  transition: transform .4s var(--ease), opacity .4s var(--ease);
}
.mobile-cta.show { transform: translateY(0); opacity: 1; pointer-events: auto; }
@media (max-width: 860px) { .mobile-cta { display: flex; } }

/* ===================== FOOTER ===================== */
.footer { border-top: 1px solid var(--line); padding: 3rem 1.5rem 2.5rem; margin-top: 2rem; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; }
.footer-logo { height: 54px; width: auto; filter: drop-shadow(0 6px 18px rgba(31,134,255,0.4)); }
.footer-tag { color: var(--white); font-weight: 600; }
.footer-socials { display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center; }
.footer-socials a { display: inline-flex; align-items: center; min-height: 44px; padding: 0 .85rem; color: var(--txt-dim); font-weight: 600; font-size: .96rem; transition: color .25s var(--ease); }
.footer-socials a:hover { color: var(--blue-light); }
.footer-copy { color: #8294ad; font-size: .82rem; }

/* ===================== MOBILE NAV ===================== */
@media (max-width: 860px) {
  .nav-brand { position: relative; z-index: 102; } /* keep logo above the overlay */
  .nav-links {
    position: fixed; inset: 0 0 auto 0; top: 0;
    flex-direction: column; align-items: center; justify-content: center; gap: .5rem;
    height: 100svh; background: rgba(8, 13, 24, 0.97); backdrop-filter: blur(18px);
    transform: translateY(-100%); visibility: hidden;
    transition: transform .4s var(--ease), visibility 0s linear .4s;
  }
  .nav-links.open { transform: translateY(0); visibility: visible; transition: transform .4s var(--ease), visibility 0s; }
  /* large, well-spaced tap targets */
  .nav-links a { display: flex; align-items: center; justify-content: center; min-height: 56px; width: min(80%, 320px); font-size: 1.5rem; color: var(--white); }
  .nav-links a::after { display: none; }
  .nav-toggle { display: flex; z-index: 103; }
  .nav-ctas { display: none; }
}
