*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { color-scheme: dark; }
body {
  font-family: var(--font-sans);
  background: var(--bg-0);
  color: var(--ink-0);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  line-height: 1.55;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, select, textarea { font: inherit; color: inherit; }
h1,h2,h3,h4,h5 { margin: 0; letter-spacing: -.02em; font-weight: 600; }
p { margin: 0; }
::selection { background: rgba(245,194,76,.35); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

/* Global backdrops */
.grid-bg {
  position: fixed; inset: 0; z-index: -2; pointer-events: none;
  background:
    radial-gradient(1200px 800px at 90% -10%, rgba(242,117,34,.09), transparent 60%),
    radial-gradient(900px 700px at 5% 10%, rgba(245,194,76,.07), transparent 60%),
    linear-gradient(180deg, #06060a 0%, #05050a 100%);
}
.grid-bg::before {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.028) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(1000px 600px at 50% 0%, #000 40%, transparent 80%);
}
.noise {
  position: fixed; inset: 0; z-index: -1; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='160' height='160'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 .5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  mix-blend-mode: overlay;
}

main { display: block; }

/* Utility */
.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(16px, 3vw, 32px); }
.grad {
  background: linear-gradient(100deg, var(--gold) 20%, var(--java) 65%, var(--gold) 95%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  background-size: 220% 100%;
  animation: shimmer 8s var(--ease) infinite;
}
@keyframes shimmer {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 12px var(--gold); }
.dot--live { background: var(--ok); box-shadow: 0 0 12px var(--ok); animation: pulse 1.6s var(--ease) infinite; }
@keyframes pulse { 50% { transform: scale(1.4); opacity: .6; } }
.dot-sep { color: var(--ink-3); margin: 0 8px; }

/* Section titles */
.section__title { font-family: var(--font-display); font-size: clamp(28px, 4vw, 44px); font-weight: 500; letter-spacing: -.02em; }
.section__sub { color: var(--ink-2); margin-top: 8px; font-size: 15px; }

/* Scroll */
* { scrollbar-width: thin; scrollbar-color: #2a2a3a transparent; }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-thumb { background: #22222f; border-radius: 999px; }
*::-webkit-scrollbar-thumb:hover { background: #2f2f45; }
