:root {
  --bg: #eef2fa;
  --surface: #ffffff;
  --surface-soft: #f7f9fe;
  --line: #dbe4f4;
  --text: #1e2750;
  --muted: #7180a7;
  --accent: #4a7dff;
  --accent-dark: #2d5fdb;
  --shadow: 0 18px 45px rgba(61, 85, 140, 0.12);
  --radius-xl: 32px;
  --radius-lg: 20px;
  --radius-pill: 999px;
  --container: 860px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(74, 125, 255, 0.08), transparent 30%),
    linear-gradient(180deg, #f5f7fc 0%, #eef2fa 100%);
}

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

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  padding: 24px 0 8px;
  text-align: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: var(--text);
}

.hero {
  padding: 32px 0 28px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  padding: 9px 14px;
  border-radius: var(--radius-pill);
  background: rgba(74, 125, 255, 0.09);
  color: var(--accent-dark);
  font-size: 0.84rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.hero h1 {
  margin: 0 auto 18px;
  max-width: 11ch;
  font-size: clamp(2.3rem, 7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.lead {
  max-width: 660px;
  margin: 0 auto;
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--muted);
}

.steps-section {
  padding: 18px 0 34px;
}

.card-wrap {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(219, 228, 244, 0.95);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 34px;
  backdrop-filter: blur(12px);
}

.card-wrap h2,
.cta-box h2 {
  margin: 0 0 24px;
  font-size: clamp(1.6rem, 4vw, 2.2rem);
  letter-spacing: -0.04em;
}

.steps-list {
  display: grid;
  gap: 18px;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: var(--radius-lg);
  background: var(--surface-soft);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(61, 85, 140, 0.08);
}

.step-num {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 800;
  box-shadow: 0 10px 20px rgba(74, 125, 255, 0.28);
}

.step-copy h3 {
  margin: 0 0 6px;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
}

.step-copy p,
.cta-box p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}

.highlights {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.highlights span {
  padding: 10px 14px;
  border-radius: var(--radius-pill);
  background: #eef3ff;
  border: 1px solid #d8e3ff;
  color: var(--accent-dark);
  font-weight: 600;
}

.cta-section {
  padding: 8px 0 64px;
}

.cta-box {
  text-align: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  padding: 36px 28px;
}

.cta-box p {
  max-width: 560px;
  margin: 0 auto 24px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: linear-gradient(180deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(74, 125, 255, 0.25);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 38px rgba(74, 125, 255, 0.3);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

@media (max-width: 640px) {
  .topbar {
    padding-top: 18px;
  }

  .brand {
  display: flex;
  align-items: center;
}

.brand-logo {
  height: 92px;
  width: auto;
  display: block;
}

  .lead {
    font-size: 1.05rem;
  }

  .card-wrap,
  .cta-box {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .step-card {
    padding: 16px;
  }

  .step-copy h3 {
    font-size: 1.1rem;
  }

  .cta-button {
    width: 100%;
    padding: 0 18px;
  }
}
