:root {
  --bg: #f3f0ff;
  --panel: rgba(255, 255, 255, 0.94);
  --text: #172033;
  --muted: #566176;
  --primary: #2563eb;
  --primary-dark: #1d4ed8;
  --border: #d9e3f2;
  --accent: #9f9aef;
  --success: #0f766e;
  --shadow: 0 22px 50px rgba(37, 99, 235, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(159, 154, 239, 0.35), transparent 32%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.18), transparent 28%),
    var(--bg);
}

a {
  color: inherit;
}

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

.topbar {
  padding: 18px 0 10px;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 26px;
  background: linear-gradient(90deg, rgba(159, 154, 239, 0.92), rgba(137, 154, 239, 0.92));
  box-shadow: 0 18px 40px rgba(31, 41, 55, 0.08);
}

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

.brand__mark {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #eef5ff;
  color: #1e3a8a;
  box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.12);
}

.brand__text {
  color: #101828;
  font-size: 1.05rem;
}

.topbar__link {
  font-size: 0.96rem;
  color: #101828;
  text-decoration: none;
  opacity: 0.82;
}

.hero {
  padding: 22px 0 18px;
}

.hero__panel {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr;
  gap: 24px;
  padding: 30px;
  border-radius: 34px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 700;
}

h1 {
  margin: 16px 0 14px;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 1.04;
  letter-spacing: -0.03em;
}

.hero__lead {
  margin: 0;
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  border: 1px solid transparent;
}

.button--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.24);
}

.button--secondary {
  color: var(--text);
  background: #fff;
  border-color: var(--border);
}

.hero-card {
  display: grid;
  gap: 14px;
  align-content: start;
}

.metric {
  padding: 18px;
  border-radius: 24px;
  background: linear-gradient(180deg, #f8fbff, #eef4ff);
  border: 1px solid var(--border);
}

.metric__label {
  margin: 0 0 8px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--primary-dark);
}

.metric__value {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 800;
}

.metric__text {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.section {
  margin: 22px 0;
}

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

.card {
  padding: 26px;
  border-radius: 28px;
  background: var(--panel);
  border: 1px solid var(--border);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

.card h2 {
  margin: 0 0 14px;
  font-size: 1.5rem;
}

.card p,
.card li {
  color: var(--muted);
  line-height: 1.7;
}

.list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}

.list li {
  position: relative;
  padding-left: 18px;
}

.list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
}

.steps {
  counter-reset: step;
}

.steps li {
  padding-left: 56px;
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  top: 0;
  border-radius: 12px;
  background: #eff6ff;
  color: var(--primary-dark);
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.faq-item + .faq-item {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e5edf7;
}

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

.mini-note {
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: #f8fbff;
  border: 1px solid #dbe7fb;
  color: var(--muted);
}

.footer {
  padding: 18px 0 38px;
  color: var(--muted);
  font-size: 0.95rem;
}

.footer a {
  color: var(--primary-dark);
}

@media (max-width: 920px) {
  .hero__panel,
  .grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .shell {
    width: min(100% - 20px, 1120px);
  }

  .topbar__inner,
  .hero__panel,
  .card {
    padding: 20px;
  }

  .topbar__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
