:root {
  --bg: #0a0b11;
  --bg-soft: #11121a;
  --surface: #151827;
  --accent: #6df5d1;
  --accent-2: #7aa2ff;
  --text: #f5f7ff;
  --text-muted: #b6bdd6;
  --shadow: 0 30px 60px rgba(5, 8, 20, 0.45);
  --radius: 20px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
}

h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, sans-serif;
}

.background {
  position: fixed;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at top left, rgba(122, 162, 255, 0.15), transparent 45%),
    radial-gradient(circle at 20% 60%, rgba(109, 245, 209, 0.12), transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 133, 97, 0.08), transparent 45%);
}

.glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  opacity: 0.6;
}

.glow-a {
  width: 260px;
  height: 260px;
  background: rgba(109, 245, 209, 0.4);
  top: 10%;
  left: 5%;
}

.glow-b {
  width: 320px;
  height: 320px;
  background: rgba(122, 162, 255, 0.35);
  bottom: 15%;
  right: 10%;
}

.glow-c {
  width: 220px;
  height: 220px;
  background: rgba(255, 133, 97, 0.25);
  top: 55%;
  left: 40%;
}

.page {
  padding: 56px 7vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 16px 0;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(109, 245, 209, 0.16);
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
}

.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #041014;
  box-shadow: var(--shadow);
}

.button.ghost {
  border-color: rgba(255, 255, 255, 0.2);
  color: var(--text);
}

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

.hero-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

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

.card-title {
  font-weight: 700;
}

.chip {
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(122, 162, 255, 0.16);
  color: var(--accent-2);
  font-size: 0.8rem;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(80px, 1fr));
  gap: 12px;
}

.stat {
  background: var(--bg-soft);
  border-radius: 12px;
  padding: 12px;
}

.stat span {
  display: block;
  color: var(--text-muted);
  font-size: 0.85rem;
}

.stat strong {
  font-size: 1.3rem;
}

.progress {
  margin: 20px 0 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
}

.muted {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature {
  background: var(--surface);
  padding: 20px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.feature h3 {
  margin-bottom: 8px;
}

.feature p {
  color: var(--text-muted);
  line-height: 1.6;
}

.how h2 {
  margin-bottom: 20px;
}

.timeline {
  display: grid;
  gap: 16px;
}

.step {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  background: var(--surface);
  padding: 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.step span {
  font-weight: 700;
  color: var(--accent);
  font-size: 1.1rem;
}

.step p {
  color: var(--text-muted);
  margin-top: 6px;
}

.cta {
  background: linear-gradient(135deg, rgba(109, 245, 209, 0.16), rgba(122, 162, 255, 0.18));
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta p {
  color: var(--text-muted);
  margin-top: 8px;
}

@media (max-width: 720px) {
  .page {
    padding: 40px 7vw 64px;
  }

  .hero-card {
    order: -1;
  }
}
