* {
  box-sizing: border-box;
}

:root {
  --bg: #020617;
  --text: #f5f7fa;
  --muted: #9fb0d0;
  --primary: #3567e8;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 18% 20%, rgba(53, 103, 232, .12), transparent 28%),
    radial-gradient(circle at 82% 34%, rgba(90, 130, 255, .08), transparent 24%),
    linear-gradient(180deg, #020617 0%, #061226 48%, #020817 100%);
  overflow-x: hidden;
}

.stars,
.stars::before,
.stars::after,
.stars-layer-2 {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.stars,
.stars::before,
.stars::after {
  content: "";
}

.stars {
  background-image:
    radial-gradient(1px 1px at 7% 14%, rgba(255,255,255,.42), transparent 60%),
    radial-gradient(1px 1px at 18% 44%, rgba(255,255,255,.32), transparent 60%),
    radial-gradient(1px 1px at 36% 18%, rgba(255,255,255,.36), transparent 60%),
    radial-gradient(1px 1px at 54% 36%, rgba(255,255,255,.28), transparent 60%),
    radial-gradient(1px 1px at 76% 16%, rgba(255,255,255,.34), transparent 60%),
    radial-gradient(1px 1px at 92% 42%, rgba(255,255,255,.38), transparent 60%);
  opacity: .42;
}

.stars-layer-2 {
  background-image:
    radial-gradient(1.6px 1.6px at 14% 76%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(1.4px 1.4px at 48% 82%, rgba(255,255,255,.08), transparent 60%),
    radial-gradient(1.6px 1.6px at 86% 68%, rgba(255,255,255,.09), transparent 60%);
  filter: blur(.6px);
  opacity: .55;
}

.landing-container {
  position: relative;
  z-index: 1;
  width: min(1040px, calc(100% - 44px));
  margin: 0 auto;
}

.hero-section,
.section-block,
.final-section {
  min-height: 100vh;
  padding: 96px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.final-section {
  align-items: center;
  text-align: center;
}

.eyebrow {
  margin: 0 0 28px;
  color: rgba(159,176,208,.92);
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 900;
  letter-spacing: .32em;
  text-transform: uppercase;
}

h1,
h2 {
  max-width: 920px;
  margin: 0;
  color: var(--text);
  font-weight: 900;
  letter-spacing: -.055em;
  line-height: 1.03;
}

h1 {
  font-size: clamp(42px, 6vw, 78px);
}

h2 {
  font-size: clamp(34px, 4.8vw, 62px);
}

.hero-text,
.section-block p,
.final-section p {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.72;
  margin: 30px 0 0;
}

.primary-cta,
.secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 40px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 900;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.primary-cta {
  color: #fff;
  background: linear-gradient(180deg, #4773f0, #3567e8);
  box-shadow: 0 18px 46px rgba(53,103,232,.30);
}

.secondary-cta {
  color: #fff;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.04);
}

.primary-cta:hover,
.secondary-cta:hover {
  transform: translateY(-2px);
}

.word-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
  max-width: 760px;
}

.word-list span {
  padding: 12px 16px;
  border-radius: 999px;
  color: #dce6ff;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  font-size: 15px;
  font-weight: 800;
}

.statement {
  color: var(--text) !important;
  font-size: clamp(24px, 2.8vw, 36px) !important;
  line-height: 1.28 !important;
  font-weight: 900;
  letter-spacing: -.035em;
}

.steps {
  display: grid;
  gap: 26px;
  margin-top: 48px;
  width: 100%;
  max-width: 860px;
}

.steps p {
  display: grid;
  grid-template-columns: 76px 1fr;
  align-items: baseline;
  gap: 18px;
  margin: 0;
  color: var(--text);
  font-size: clamp(26px, 3.4vw, 48px);
  line-height: 1.16;
  font-weight: 900;
  letter-spacing: -.045em;
}

.steps span {
  color: var(--primary);
  font-size: .9em;
}

@media (max-width: 720px) {
  .landing-container {
    width: min(100% - 28px, 1040px);
  }

  .hero-section,
  .section-block,
  .final-section {
    min-height: 100vh;
    padding: 72px 0;
  }

  .steps p {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .word-list {
    gap: 8px;
  }

  .word-list span {
    font-size: 14px;
    padding: 10px 13px;
  }
}