:root {
  --bg-1: #180026;
  --bg-2: #2b0453;
  --bg-3: #08345a;
  --ink: #ecf3ff;
  --muted: #b8c7dd;
  --line: rgba(236, 243, 255, 0.16);
  --card: rgba(28, 2, 54, 0.74);
  --accent: #f7b732;
  --accent-2: #ef3df8;
  --accent-3: #c511ff;
  --shadow: 0 20px 60px rgba(2, 10, 24, 0.45);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Space Grotesk", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 24% 18%, rgba(164, 42, 216, 0.3), transparent 34%),
    radial-gradient(circle at 82% 78%, rgba(39, 128, 255, 0.28), transparent 30%),
    linear-gradient(170deg, var(--bg-1) 0%, var(--bg-2) 42%, var(--bg-3) 100%);
  min-height: 100vh;
}

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

.page-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 24px 18px 88px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 34px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.brand span {
  color: var(--accent);
}

.top-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pill-link {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
}

.pill-link:hover {
  border-color: rgba(255, 140, 66, 0.55);
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 24px;
}

.hero-copy,
.hero-panel {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.hero-copy {
  padding: 34px 28px;
}

.kicker {
  margin: 0 0 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
  color: var(--accent-3);
  font-weight: 700;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 4.1vw, 3.4rem);
  line-height: 1.02;
}

.hero h1 .shine {
  color: #ef3df8;
}

.hero p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.55;
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.94rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  color: #ffffff;
  background: linear-gradient(120deg, var(--accent-2), var(--accent-3));
}

.btn-secondary {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.hero-note {
  margin-top: 12px;
  font-size: 0.88rem;
  color: #9db2cf;
}

.hero-panel {
  padding: 24px;
  display: grid;
  gap: 12px;
  align-content: center;
}

.stat {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  color: #ffffff;
}

.stat span {
  color: var(--muted);
  font-size: 0.88rem;
}

.section {
  margin-top: 18px;
  background: rgba(11, 22, 39, 0.58);
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 24px 20px;
}

.section h2 {
  margin: 0 0 6px;
  font-size: 1.45rem;
}

.section > p {
  margin: 0 0 18px;
  color: var(--muted);
}

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

.card {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.02rem;
}

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

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

.step {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.03);
}

.step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  font-size: 0.84rem;
  font-weight: 700;
  color: #ffffff;
  background: linear-gradient(120deg, #ef3df8, #2f73ff);
  margin-bottom: 8px;
}

.step h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.step p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.cta {
  margin-top: 20px;
  border: 1px solid rgba(247, 183, 50, 0.42);
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(239, 61, 248, 0.14), rgba(47, 115, 255, 0.16));
  padding: 24px;
  text-align: center;
}

.cta h2 {
  margin: 0;
  font-size: clamp(1.4rem, 2.8vw, 2rem);
}

.cta p {
  margin: 8px auto 16px;
  color: var(--muted);
  max-width: 60ch;
}

.footer {
  margin-top: 18px;
  text-align: center;
  color: #a2b5d0;
  font-size: 0.84rem;
}

.reveal {
  opacity: 0;
  transform: translateY(10px);
  animation: rise 0.6s ease forwards;
}

.reveal.delay-1 { animation-delay: 0.08s; }
.reveal.delay-2 { animation-delay: 0.16s; }
.reveal.delay-3 { animation-delay: 0.24s; }

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 930px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 620px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .top-links {
    width: 100%;
  }

  .pill-link {
    flex: 1;
    text-align: center;
  }

  .hero-copy,
  .hero-panel,
  .section,
  .cta {
    border-radius: 20px;
  }

  .card-grid,
  .steps {
    grid-template-columns: 1fr;
  }
}
