:root {
  --orange: #f57b00;
  --orange-2: #ff9a31;
  --orange-soft: rgba(245,123,0,.13);
  --ink: #08090b;
  --ink-2: #0b0c0f;
  --panel: #111318;
  --panel-2: #151820;
  --panel-3: #1a1e27;
  --line: rgba(255,255,255,.085);
  --line-strong: rgba(255,255,255,.14);
  --text: #f5f6f8;
  --muted: #9b9faa;
  --muted-2: #737985;
  --good: #62d988;
  --danger: #ff646d;
  --max: 1280px;
  --radius: 18px;
  --shadow: 0 24px 70px rgba(0,0,0,.38);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color-scheme: dark;
}

* { box-sizing: border-box; }
html { background: var(--ink); scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at 82% 0%, rgba(245,123,0,.11), transparent 30rem),
    radial-gradient(circle at 10% 34%, rgba(255,255,255,.025), transparent 34rem),
    linear-gradient(180deg, #090a0d 0%, #07080a 100%);
  padding-bottom: 106px;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: .32;
  background-image:
    linear-gradient(rgba(255,255,255,.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.018) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
button { color: inherit; }
img { max-width: 100%; display: block; }
::selection { background: rgba(245,123,0,.3); color: white; }

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .028;
  z-index: 99;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}

.site-header {
  height: 76px;
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
  padding: 0 max(22px, calc((100vw - var(--max))/2));
  background: rgba(8,9,11,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px) saturate(125%);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  min-width: max-content;
}
.brand-emblem {
  width: 40px;
  height: 40px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border-radius: 9px;
  box-shadow: 0 0 0 1px rgba(245,123,0,.22), 0 8px 22px rgba(245,123,0,.14);
}
.brand-emblem img { width: 100%; height: 100%; object-fit: cover; }
.brand-copy { display: flex; flex-direction: column; line-height: 1; }
.brand-copy strong { font-size: 21px; letter-spacing: -.025em; font-weight: 950; }
.brand-copy strong span { color: var(--orange); }
.brand-copy small { margin-top: 6px; color: #8b8f98; font-size: 7px; letter-spacing: .2em; font-weight: 850; }

.main-nav { justify-self: center; display: flex; align-items: center; gap: 24px; }
.main-nav a {
  position: relative;
  color: #b6bac3;
  font-size: 13px;
  font-weight: 750;
  transition: color .18s ease;
}
.main-nav a:hover, .main-nav a.active { color: white; }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -18px;
  width: 18px;
  height: 2px;
  transform: translateX(-50%);
  border-radius: 2px;
  background: var(--orange);
  box-shadow: 0 0 12px rgba(245,123,0,.6);
}

.header-live {
  border: 1px solid rgba(245,123,0,.42);
  background: linear-gradient(180deg, rgba(245,123,0,.15), rgba(245,123,0,.07));
  border-radius: 999px;
  padding: 10px 15px;
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-weight: 900;
  cursor: pointer;
  transition: .18s ease;
}
.header-live:hover { border-color: rgba(245,123,0,.7); background: rgba(245,123,0,.17); }

.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--orange);
  display: inline-block;
  box-shadow: 0 0 0 0 rgba(245,123,0,.65);
  animation: pulse 1.7s infinite;
}
@keyframes pulse { 70% { box-shadow: 0 0 0 8px rgba(245,123,0,0); } 100% { box-shadow: 0 0 0 0 rgba(245,123,0,0); } }

.nav-toggle { display: none; border: 0; background: transparent; font-size: 24px; cursor: pointer; }
main { min-height: calc(100vh - 220px); outline: 0; }
.shell { width: min(var(--max), calc(100% - 44px)); margin: 0 auto; }

.hero {
  min-height: 620px;
  position: relative;
  display: grid;
  align-items: center;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  isolation: isolate;
}
.hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  width: min(46vw, 660px);
  aspect-ratio: 1;
  right: -6vw;
  top: -13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,123,0,.2) 0%, rgba(245,123,0,.08) 34%, transparent 72%);
  filter: blur(4px);
}
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,9,11,.99) 0%, rgba(8,9,11,.9) 43%, rgba(8,9,11,.28) 100%),
    repeating-linear-gradient(120deg, transparent 0 36px, rgba(245,123,0,.025) 36px 37px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0,1.05fr) minmax(360px,.72fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: center;
  padding: 54px 0;
}
.eyebrow {
  color: var(--orange-2);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: currentColor; }
.hero h1 {
  margin: 18px 0 8px;
  font-size: clamp(72px, 8.4vw, 122px);
  line-height: .78;
  letter-spacing: -.07em;
  font-weight: 950;
}
.hero h1 span { color: var(--orange); }
.hero-tagline {
  margin: 25px 0 26px;
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 820;
  color: #dedfe4;
  letter-spacing: .04em;
}
.hero-copy { max-width: 640px; color: var(--muted); line-height: 1.72; font-size: 15px; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 26px; }
.hero-stat { display: flex; flex-direction: column; gap: 3px; padding-left: 12px; border-left: 2px solid rgba(245,123,0,.45); }
.hero-stat strong { font-size: 15px; }
.hero-stat span { color: var(--muted-2); font-size: 9px; font-weight: 850; letter-spacing: .13em; text-transform: uppercase; }

.button-row { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.btn {
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 12px 17px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: #14171d;
  font-weight: 850;
  font-size: 12px;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}
.btn:hover { transform: translateY(-1px); border-color: rgba(255,255,255,.19); background: #181c23; }
.btn-primary {
  background: linear-gradient(135deg, #ff8d18, var(--orange));
  color: #15100a;
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(245,123,0,.2);
}
.btn-primary:hover { background: linear-gradient(135deg, #ffa343, #f57b00); border-color: #ff9c37; }
.btn-ghost { background: rgba(255,255,255,.035); }
