:root {
  --primary: #1a5f8a;
  --primary-dark: #0e3d5c;
  --background: #f3f6f9;
  --surface: #ffffff;
  --text: #0f1c2e;
  --muted: #5a6b7d;
  --accent: #c45c26;
  --border: #d5dee8;
  --header-muted: #a8d4ef;
  --shadow: 0 24px 60px rgba(14, 61, 92, 0.12);
  --radius: 20px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family:
    "Segoe UI",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top, rgba(168, 212, 239, 0.45), transparent 42%),
    linear-gradient(180deg, #e8f1f8 0%, var(--background) 38%, #eef3f7 100%);
}

.page {
  width: min(720px, calc(100% - 2rem));
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 1.75rem 2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(160deg, var(--primary-dark) 0%, var(--primary) 58%, #2475a8 100%);
  color: #fff;
  text-align: center;
  box-shadow: var(--shadow);
}

.hero__glow {
  position: absolute;
  inset: auto -20% -40% auto;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 68%);
  pointer-events: none;
}

.hero__logo {
  display: block;
  margin: 0 auto 1.25rem;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.18));
}

.hero__eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--header-muted);
}

.hero h1 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 2.75rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.hero__lead {
  max-width: 34ch;
  margin: 1rem auto 1.75rem;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.hero__meta {
  margin: 1rem 0 0;
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.25rem;
  padding: 0.85rem 1.5rem;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease,
    background-color 0.18s ease;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(135deg, var(--accent) 0%, #d86f34 100%);
  box-shadow: 0 14px 28px rgba(196, 92, 38, 0.35);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(196, 92, 38, 0.42);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
}

.content {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.card {
  padding: 1.5rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(15, 28, 46, 0.05);
}

.card--muted {
  background: rgba(255, 255, 255, 0.72);
}

.card h2 {
  margin: 0 0 0.85rem;
  font-size: 1.15rem;
}

.card p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.steps {
  margin: 0;
  padding-left: 1.2rem;
  color: var(--muted);
  line-height: 1.7;
}

.steps li + li {
  margin-top: 0.45rem;
}

.steps strong {
  color: var(--text);
}

.footer {
  margin-top: 1.75rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.9rem;
}

@media (max-width: 540px) {
  .page {
    width: min(100%, calc(100% - 1.25rem));
    padding-top: 1rem;
  }

  .hero {
    padding: 2rem 1.25rem 1.75rem;
  }
}
