:root {
  --bg: #04050a;
  --card: #0b1020;
  --text: #f7f8fb;
  --muted: #a7adbd;
  --primary: #3ae8ff;
  --primary-2: #7b61ff;
  --border: rgba(255, 255, 255, 0.09);
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  background: radial-gradient(circle at 10% 10%, #2a2a2f 0%, var(--bg) 45%), var(--bg);
  color: var(--text);
  min-height: 100vh;
}

.bg-glow {
  position: fixed;
  inset: -20% auto auto -10%;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(180, 180, 190, 0.18), transparent 62%);
  pointer-events: none;
  z-index: 0;
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.topbar {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
}

.brand {
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.live-metric {
  display: inline-flex;
  flex-direction: column;
  gap: .1rem;
  padding: .55rem .9rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(7, 11, 23, .75);
}

.live-label {
  font-size: .72rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.live-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--primary);
}

.links {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.links a,
.btn {
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: .55rem .8rem;
  font-weight: 600;
  transition: .2s ease;
}

.links a:hover,
.btn:hover {
  border-color: rgba(58, 232, 255, .45);
  transform: translateY(-1px);
}

.hero {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.5rem;
  margin-top: .9rem;
  min-height: 420px;
}

.card {
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.8rem;
  background: linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  backdrop-filter: blur(4px);
}

.eyebrow {
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

h1 {
  margin: .35rem 0 .8rem;
  font-size: clamp(1.75rem, 3.3vw, 3rem);
  line-height: 1.1;
}

h1 span {
  color: var(--primary);
  white-space: nowrap;
}

.lead {
  color: #d5dae8;
  max-width: 60ch;
}

.cta-row {
  display: flex;
  gap: .75rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

.btn.primary {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  color: #000;
  border: none;
}

.btn.ghost {
  background: rgba(255,255,255,.01);
}

.hero-image-wrap {
  display: grid;
  place-items: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  border-radius: 16px;
  border: 1px solid var(--border);
  object-fit: cover;
}

.grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
}

.grid .card {
  min-height: 255px;
}

h2 {
  margin: 0 0 .7rem;
  font-size: 1.2rem;
}

p, li {
  color: #d9deea;
  line-height: 1.65;
  font-size: 1.05rem;
}

ul { margin: 0; padding-left: 1rem; }

.footer {
  padding: 1.1rem 0 1.4rem;
  color: var(--muted);
  text-align: center;
}

@media (max-width: 980px) {
  .topbar {
    grid-template-columns: 1fr;
    gap: .7rem;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .grid {
    grid-template-columns: 1fr;
  }
}
