:root {
  --bg: #080b10;
  --surface: #0d1117;
  --card: #111820;
  --cyan: #00c2ff;
  --amber: #f5a623;
  --red: #ff3d57;
  --text: #e8edf5;
  --muted: #6b7a90;
  --border: rgba(0, 194, 255, 0.12);
  --glow: 0 0 28px rgba(0, 194, 255, 0.24);
  --font-body: "Inter", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: "JetBrains Mono", Consolas, monospace;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--bg);
  min-width: 320px;
  overflow-x: hidden;
}

body.modal-open,
body.menu-open {
  overflow: hidden;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 2px solid var(--amber);
  outline-offset: 4px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  transition: background 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled {
  background: rgba(8, 11, 16, 0.78);
  border-color: var(--border);
  box-shadow: 0 16px 50px rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1180px, calc(100% - 32px));
  height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cyan);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand-mark {
  width: 32px;
  height: 32px;
  fill: rgba(0, 194, 255, 0.18);
  stroke: var(--cyan);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 12px rgba(0, 194, 255, 0.45));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: #aab6c8;
  font-size: 0.94rem;
  font-weight: 600;
}

.nav-links a {
  transition: color 160ms ease;
}

.nav-links a:hover {
  color: var(--text);
}

.menu-toggle,
.menu-close,
.modal-close {
  border: 0;
  color: var(--text);
  background: transparent;
  cursor: pointer;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  place-items: center;
  padding: 10px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 3px auto;
  background: var(--cyan);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 26px;
  background: rgba(8, 11, 16, 0.94);
  backdrop-filter: blur(22px);
  transform: translateX(100%);
  transition: transform 260ms ease;
  font-size: clamp(1.4rem, 7vw, 2.4rem);
  font-weight: 800;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.menu-close,
.modal-close {
  position: absolute;
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: var(--font-mono);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 0 18px;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--text);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(180deg, #22ccff, #009bd0);
  border-color: rgba(102, 225, 255, 0.7);
  color: #041017;
  box-shadow: 0 0 24px rgba(0, 194, 255, 0.34);
  animation: ctaPulse 3s ease-in-out infinite;
}

.btn-primary:hover {
  box-shadow: 0 0 36px rgba(0, 194, 255, 0.54);
}

.btn-secondary {
  background: rgba(17, 24, 32, 0.72);
  border-color: var(--border);
  color: var(--text);
}

.btn-small {
  min-height: 40px;
  padding: 0 14px;
  font-size: 0.88rem;
}

.btn-large {
  min-height: 58px;
  padding: 0 24px;
}

.btn-xl {
  min-height: 64px;
  padding: 0 30px;
  font-size: 1.05rem;
}

@keyframes ctaPulse {
  0%, 100% { box-shadow: 0 0 20px rgba(0, 194, 255, 0.26); }
  50% { box-shadow: 0 0 34px rgba(0, 194, 255, 0.52); }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 110px 18px 54px;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 45%, rgba(8, 11, 16, 0.05), rgba(8, 11, 16, 0.84) 44%, #080b10 76%),
    radial-gradient(circle at 50% 40%, rgba(0, 194, 255, 0.18), transparent 34%);
}

.hero-graph {
  position: absolute;
  inset: -5%;
  z-index: -3;
  opacity: 0.86;
}

.hero-graph svg {
  width: 100%;
  height: 100%;
}

.graph-line {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.7));
  stroke-dasharray: 1800;
  stroke-dashoffset: 1800;
  animation: graphDraw 7s linear infinite;
}

.graph-line-b {
  opacity: 0.25;
  animation-duration: 11s;
}

@keyframes graphDraw {
  0% { stroke-dashoffset: 1800; transform: translateX(0); }
  72%, 100% { stroke-dashoffset: 0; transform: translateX(-40px); }
}

.grain {
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 0.14;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.9) 0 1px, transparent 1.5px),
    radial-gradient(circle at 70% 40%, rgba(255,255,255,0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle at 35% 80%, rgba(255,255,255,0.75) 0 1px, transparent 1.5px);
  background-size: 48px 48px, 70px 70px, 96px 96px;
  animation: grainShift 1.4s steps(2) infinite;
}

@keyframes grainShift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-18px, 14px); }
}

.hero-content {
  width: min(980px, 100%);
  text-align: center;
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  padding: 9px 14px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(13, 17, 23, 0.66);
  color: #b5c4d8;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.live-badge span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 14px var(--cyan);
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 800;
  letter-spacing: 0;
}

h1 {
  max-width: 960px;
  margin: 0 auto;
  font-size: clamp(3.1rem, 8vw, 7.35rem);
  line-height: 0.92;
}

h2 {
  font-size: clamp(2rem, 4.8vw, 4.5rem);
  line-height: 1;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.12;
}

.hero-copy {
  max-width: 820px;
  margin: 26px auto 0;
  color: #a9b8c9;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin: 36px 0 26px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--border);
  box-shadow: 0 16px 60px rgba(0, 0, 0, 0.28);
}

.metric-strip span {
  display: grid;
  gap: 4px;
  align-content: center;
  min-height: 86px;
  background: rgba(13, 17, 23, 0.78);
  color: var(--muted);
  font-size: 0.84rem;
}

.metric-strip strong {
  display: block;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: clamp(1rem, 2vw, 1.55rem);
}

section,
.site-footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.band,
.leaderboard-strip,
.final-cta {
  width: 100%;
}

.problem {
  background: var(--surface);
  padding: 92px max(18px, calc((100vw - 1180px) / 2));
}

.section-heading {
  max-width: 860px;
  margin: 0 auto 42px;
  text-align: center;
}

.section-heading p,
.final-cta p,
.pricing-note,
.site-footer p,
.projection p,
.audience-card p {
  color: var(--muted);
  line-height: 1.7;
}

.comparison-grid,
.two-card-grid,
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.compare-card,
.dashboard-panel,
.audience-card,
.price-card,
.modal-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 24, 32, 0.9), rgba(13, 17, 23, 0.74));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), 0 22px 80px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  transition: transform 190ms ease, border-color 190ms ease, box-shadow 190ms ease;
}

.compare-card:hover,
.dashboard-panel:hover,
.audience-card:hover,
.price-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 194, 255, 0.36);
  box-shadow: var(--glow), 0 22px 80px rgba(0, 0, 0, 0.3);
}

.compare-card {
  padding: clamp(18px, 3vw, 28px);
}

.eyebrow {
  margin: 0 0 12px;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.muted { color: var(--muted); }
.cyan { color: var(--cyan); }
.red { color: var(--red); }

.task-graph,
.smart-chart {
  min-height: 250px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: #091018;
  overflow: hidden;
}

.task-top {
  display: flex;
  justify-content: space-between;
  padding: 14px 16px;
  color: #8290a3;
  font-family: var(--font-mono);
}

.task-graph svg,
.smart-chart svg {
  width: 100%;
  height: 220px;
}

.task-graph rect {
  stroke: rgba(107, 122, 144, 0.2);
}

.task-graph path {
  fill: none;
  stroke: #536174;
  stroke-width: 4;
}

.smart-chart {
  background: linear-gradient(180deg, #08131b, #0d1117);
}

.zone {
  opacity: 0.1;
}

.zone-good { fill: var(--cyan); }
.zone-warn { fill: var(--amber); }
.zone-bad { fill: var(--red); }
.low-line,
.callout-line {
  stroke: var(--amber);
  stroke-width: 2;
  stroke-dasharray: 6 8;
}

.draw-chart {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 10px rgba(0, 194, 255, 0.75));
  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;
  animation: drawLine 2.4s ease forwards;
}

@keyframes drawLine {
  to { stroke-dashoffset: 0; }
}

.smart-chart circle {
  fill: var(--red);
}

.smart-chart text {
  fill: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
}

.compare-card h3 {
  margin: 22px 0 16px;
}

.check-list,
.feature-list,
.price-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.check-list li,
.feature-list li,
.price-card li {
  position: relative;
  padding-left: 28px;
  margin: 12px 0;
  color: #bac5d4;
}

.bad-list li {
  color: rgba(255, 97, 119, 0.72);
  text-decoration: line-through;
}

.bad-list li::before {
  content: "x";
  position: absolute;
  left: 0;
  color: var(--red);
}

.good-list li::before,
.feature-list li::before,
.price-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 12px rgba(0, 194, 255, 0.6);
}

.features,
.creator-orgs,
.pricing {
  padding: 98px 0;
}

.tabs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 4px;
  margin: 0 0 20px;
}

.tab {
  flex: 1 0 max-content;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.72);
  color: #9eacc0;
  cursor: pointer;
  font-weight: 800;
}

.tab.is-active {
  color: #061018;
  background: var(--cyan);
  border-color: var(--cyan);
  box-shadow: var(--glow);
}

.dashboard-panel {
  min-height: 430px;
  padding: clamp(18px, 3vw, 30px);
}

.tab-panel {
  display: none;
  animation: panelIn 240ms ease both;
}

.tab-panel.is-active {
  display: grid;
}

@keyframes panelIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

#panel-analyzer {
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 22px;
}

.panel-head,
.status-dot,
.filter-pills,
.telemetry-list div,
.telemetry-grid,
.rank-row,
.gpu-card {
  font-family: var(--font-mono);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  color: var(--text);
  margin-bottom: 18px;
}

.status-dot {
  color: var(--cyan);
  font-size: 0.8rem;
}

.feature-chart {
  width: 100%;
  min-height: 280px;
  background: #091018;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
}

.chart-grid {
  stroke: rgba(107, 122, 144, 0.18);
  stroke-width: 1;
}

.annotation {
  display: inline-flex;
  margin-top: -42px;
  margin-left: min(72%, 560px);
  transform: translateY(-100%);
  padding: 9px 12px;
  border: 1px solid rgba(255, 61, 87, 0.42);
  border-radius: 8px;
  color: var(--red);
  background: rgba(255, 61, 87, 0.08);
  font-family: var(--font-mono);
  font-size: 0.82rem;
}

.telemetry-list {
  display: grid;
  gap: 10px;
}

.telemetry-list div,
.telemetry-grid div {
  display: grid;
  gap: 6px;
  padding: 16px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.5);
}

.telemetry-list span,
.telemetry-grid span {
  color: var(--muted);
  font-size: 0.78rem;
}

.telemetry-list b,
.telemetry-grid b {
  font-size: 1.18rem;
}

#panel-advisor,
#panel-esports {
  align-items: center;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.upgrade-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 14px;
}

.gpu-card {
  display: grid;
  gap: 12px;
  min-height: 180px;
  align-content: center;
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.58);
}

.gpu-card span,
.gpu-card small {
  color: var(--muted);
}

.gpu-card b {
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--text);
}

.recommended {
  border-color: rgba(0, 194, 255, 0.4);
  box-shadow: var(--glow);
}

.arrow {
  color: var(--cyan);
  font-size: 2rem;
  font-family: var(--font-mono);
}

.projection span {
  color: var(--cyan);
  font-family: var(--font-mono);
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.filter-pills span {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--cyan);
  background: rgba(0, 194, 255, 0.06);
}

.rank-table {
  display: grid;
  gap: 8px;
  overflow-x: auto;
}

.rank-row {
  display: grid;
  grid-template-columns: 1.2fr 1.3fr 1fr 0.75fr 0.75fr 0.8fr;
  gap: 12px;
  min-width: 760px;
  align-items: center;
  padding: 13px 16px;
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.52);
  color: #cbd6e4;
}

.rank-head {
  color: var(--muted);
  background: rgba(0, 194, 255, 0.07);
}

.rank-rows {
  display: grid;
  gap: 8px;
}

.latency-ring {
  width: min(330px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  border-radius: 50%;
  display: grid;
  place-content: center;
  text-align: center;
  border: 1px solid rgba(0, 194, 255, 0.44);
  background:
    radial-gradient(circle at center, rgba(0, 194, 255, 0.12), transparent 55%),
    conic-gradient(from 40deg, var(--cyan), rgba(0, 194, 255, 0.08), var(--amber), var(--cyan));
  box-shadow: var(--glow);
}

.latency-ring span {
  font-family: var(--font-mono);
  font-size: clamp(3rem, 8vw, 5.6rem);
  font-weight: 800;
}

.latency-ring small {
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 800;
}

.telemetry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}

.leaderboard-strip {
  padding: 78px 0;
  border-top: 1px solid rgba(0, 194, 255, 0.52);
  border-bottom: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(0, 194, 255, 0.07), rgba(13, 17, 23, 0.84));
  box-shadow: inset 0 18px 40px rgba(0, 194, 255, 0.08);
  overflow: hidden;
}

.compact {
  margin-bottom: 28px;
}

.ticker {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.ticker-track {
  display: flex;
  width: max-content;
  gap: 14px;
  animation: tickerMove 36s linear infinite;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
}

@keyframes tickerMove {
  to { transform: translateX(-50%); }
}

.perf-card {
  width: 270px;
  flex: 0 0 auto;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(17, 24, 32, 0.82);
}

.perf-card header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.perf-card b,
.perf-card strong {
  font-family: var(--font-mono);
}

.perf-card p {
  margin: 4px 0 0;
  color: var(--muted);
}

.tier {
  align-self: start;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  font-size: 0.72rem;
  font-weight: 800;
}

.spark {
  width: 100%;
  height: 48px;
  margin-top: 12px;
}

.spark path {
  fill: none;
  stroke: var(--cyan);
  stroke-width: 3;
}

.center-action {
  text-align: center;
  margin-top: 28px;
}

.two-card-grid {
  align-items: stretch;
}

.audience-card,
.price-card {
  padding: clamp(20px, 3vw, 30px);
}

.icon-box {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(0, 194, 255, 0.08);
}

.icon-box svg {
  width: 34px;
  height: 34px;
  fill: none;
  stroke: var(--cyan);
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.link-cta {
  display: inline-flex;
  margin-top: 10px;
  border: 0;
  background: transparent;
  color: var(--cyan);
  font-weight: 800;
  cursor: pointer;
}

.pricing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.price-card {
  display: flex;
  flex-direction: column;
  min-height: 460px;
}

.price-card .btn {
  margin-top: auto;
}

.popular {
  border-color: rgba(0, 194, 255, 0.58);
  box-shadow: var(--glow), 0 22px 80px rgba(0, 0, 0, 0.32);
}

.popular-tag {
  align-self: flex-start;
  margin: 0 0 14px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.12);
  color: var(--cyan);
  font-weight: 800;
}

.price {
  margin: 16px 0 20px;
  color: var(--text);
  font-family: var(--font-mono);
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
}

.price span {
  color: var(--muted);
  font-size: 0.95rem;
}

.custom {
  font-family: var(--font-body);
}

.pricing-note {
  text-align: center;
  margin: 24px auto 0;
}

.final-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 420px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 18px;
  padding: 78px 18px;
  text-align: center;
  background: #090f16;
}

.particle-grid {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.5;
  background-image:
    radial-gradient(circle, rgba(0, 194, 255, 0.85) 0 1px, transparent 1.6px),
    linear-gradient(rgba(0, 194, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 194, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px, 44px 44px, 44px 44px;
  animation: drift 18s linear infinite;
}

@keyframes drift {
  to { background-position: 88px 44px, 44px 44px, 44px 44px; }
}

.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 38px;
  padding: 54px 0;
  color: #aab7c9;
}

.footer-brand {
  margin-bottom: 14px;
}

.site-footer small {
  color: var(--muted);
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a,
.site-footer a:not(.brand) {
  color: #c5d0df;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0, 0, 0, 0.66);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
}

.modal-backdrop.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-card {
  position: relative;
  width: min(690px, 100%);
  max-height: min(92svh, 920px);
  overflow-y: auto;
  padding: clamp(22px, 4vw, 36px);
  transform: scale(0.95);
  transition: transform 180ms ease;
}

.modal-backdrop.is-open .modal-card {
  transform: scale(1);
}

.modal-card h2 {
  padding-right: 48px;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
}

.modal-card p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.lead-form label,
.lead-form fieldset {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.lead-form span,
.lead-form legend {
  color: #bfccdd;
  font-size: 0.9rem;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 8px;
  background: rgba(8, 11, 16, 0.72);
  color: var(--text);
  padding: 13px 14px;
}

.lead-form input::placeholder {
  color: #536174;
}

.lead-form input.invalid,
.lead-form select.invalid {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(255, 61, 87, 0.12);
}

.field-error {
  min-height: 1em;
  color: var(--red);
  font-size: 0.8rem;
}

.lead-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}

.radio-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.radio-grid label {
  display: block;
}

.radio-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-grid span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  cursor: pointer;
  background: rgba(0, 194, 255, 0.04);
}

.radio-grid input:checked + span {
  color: #061018;
  background: var(--cyan);
}

.submit-btn {
  width: 100%;
  margin-top: 8px;
}

.submit-btn.is-loading {
  color: transparent;
  position: relative;
}

.submit-btn.is-loading::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(4, 16, 23, 0.28);
  border-top-color: #041017;
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.success-state {
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 38px 0 10px;
  text-align: center;
}

.success-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 194, 255, 0.44);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 2.4rem;
  box-shadow: var(--glow);
}

.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .metric-strip,
  .comparison-grid,
  #panel-analyzer,
  #panel-advisor,
  #panel-esports,
  .two-card-grid,
  .pricing-grid,
  .site-footer {
    grid-template-columns: 1fr;
  }

  .metric-strip span {
    min-height: 72px;
  }

  .pricing-grid {
    gap: 16px;
  }

  .price-card {
    min-height: auto;
  }

  .site-footer {
    width: min(680px, calc(100% - 32px));
  }
}

@media (max-width: 620px) {
  .nav-shell {
    width: min(100% - 24px, 1180px);
    height: 64px;
  }

  .hero {
    padding-top: 92px;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .live-badge {
    white-space: normal;
    justify-content: center;
  }

  .hero-actions .btn,
  .center-action .btn,
  .final-cta .btn {
    width: 100%;
  }

  .tabs {
    margin-inline: -16px;
    padding-inline: 16px;
  }

  .radio-grid,
  .upgrade-flow,
  .telemetry-grid {
    grid-template-columns: 1fr;
  }

  .arrow {
    transform: rotate(90deg);
    justify-self: center;
  }

  .rank-row {
    min-width: 700px;
  }

  .problem,
  .features,
  .creator-orgs,
  .pricing {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

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

  .ticker-track {
    transform: none;
  }
}
