:root {
  color-scheme: dark;
  --bg: #080a0f;
  --panel: rgba(17, 20, 29, 0.72);
  --panel-strong: rgba(22, 27, 39, 0.92);
  --border: rgba(255, 255, 255, 0.09);
  --text: #f4f6fb;
  --muted: #9aa3b4;
  --accent: #8b5cf6;
  --accent-2: #3b82f6;
  --success: #34d399;
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  overflow-x: hidden;
  background:
    radial-gradient(circle at top, rgba(56, 66, 105, 0.13), transparent 42%),
    var(--bg);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
}

a {
  color: inherit;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.grid {
  position: absolute;
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.orb {
  position: absolute;
  width: 32rem;
  height: 32rem;
  border-radius: 50%;
  filter: blur(90px);
  opacity: .2;
}

.orb-one {
  top: -14rem;
  left: 7%;
  background: var(--accent);
}

.orb-two {
  top: 10rem;
  right: -13rem;
  background: var(--accent-2);
}

.site-header {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.055);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.06);
  font-weight: 800;
}

.brand-name {
  font-size: .88rem;
  font-weight: 760;
  letter-spacing: .19em;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255,255,255,.035);
  color: #c6ccd7;
  font-size: .83rem;
}

.status-dot,
.pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 16px rgba(52, 211, 153, .65);
}

main {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 68vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 80px 0 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: #b7bfce;
  font-size: .74rem;
  font-weight: 780;
  letter-spacing: .2em;
}

h1 {
  max-width: 900px;
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: .96;
  letter-spacing: -.065em;
  font-weight: 820;
}

.gradient-text {
  display: block;
  padding-bottom: .08em;
  background: linear-gradient(110deg, #ffffff 8%, #a78bfa 43%, #60a5fa 83%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy {
  max-width: 650px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 2vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  padding: 0 19px;
  border-radius: 13px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-weight: 700;
  font-size: .93rem;
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

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

.primary {
  color: white;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  box-shadow: 0 16px 38px rgba(55, 48, 163, .28);
}

.secondary {
  border: 1px solid var(--border);
  background: rgba(255,255,255,.045);
}

.secondary:hover {
  border-color: rgba(255,255,255,.19);
  background: rgba(255,255,255,.075);
}

.mini-note {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  color: #7f899a;
  font-size: .82rem;
}

.pulse {
  width: 7px;
  height: 7px;
  animation: glow 2s infinite;
}

.roadmap {
  padding: 86px 0 110px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.section-heading {
  max-width: 650px;
  margin-bottom: 34px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  letter-spacing: -.045em;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255,255,255,.047), rgba(255,255,255,.022));
  backdrop-filter: blur(14px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.035);
  transition: transform .2s ease, border-color .2s ease;
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(255,255,255,.16);
}

.active-card {
  background:
    radial-gradient(circle at 10% 0%, rgba(139,92,246,.15), transparent 45%),
    linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.022));
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 44px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  color: #aab3c2;
  font-size: .74rem;
  font-weight: 800;
  letter-spacing: .08em;
}

.card-badge {
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #8993a4;
  font-size: .72rem;
  font-weight: 700;
}

.card-badge.live {
  color: #9ff3d2;
  background: rgba(52,211,153,.1);
}

.card h3 {
  margin: 0 0 12px;
  font-size: 1.28rem;
  letter-spacing: -.02em;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: .94rem;
}

footer {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  min-height: 92px;
  border-top: 1px solid rgba(255,255,255,.06);
  display: flex;
  align-items: center;
  gap: 10px;
  color: #697386;
  font-size: .82rem;
}

.footer-separator {
  opacity: .6;
}

@keyframes glow {
  0%, 100% { opacity: .45; transform: scale(.9); }
  50% { opacity: 1; transform: scale(1.15); }
}

@media (max-width: 800px) {
  .site-header,
  main,
  footer {
    width: min(100% - 28px, 1180px);
  }

  .brand-name {
    display: none;
  }

  .status-pill {
    font-size: .75rem;
  }

  .hero {
    min-height: 66vh;
    padding: 58px 0 70px;
  }

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

  .card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
