:root {
  --bg: #eef4f7;
  --card: rgba(255, 255, 255, 0.86);
  --text: #12202e;
  --muted: #557086;
  --line: rgba(18, 32, 46, 0.12);
  --primary: #156f9c;
  --primary-dark: #0d4a68;
  --accent: #ffd166;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Aptos", "Segoe UI", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(255, 209, 102, 0.38), transparent 24%),
    radial-gradient(circle at left center, rgba(21, 111, 156, 0.16), transparent 28%),
    linear-gradient(180deg, #f9fbfc 0%, var(--bg) 100%);
}

.page {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 64px;
}

.hero {
  padding: 40px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(243,249,252,0.88));
  box-shadow: 0 24px 80px rgba(18, 32, 46, 0.08);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
}

h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  max-width: 10ch;
}

.intro, .meta {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 12px 30px rgba(21, 111, 156, 0.28);
}

.button.primary:hover {
  background: var(--primary-dark);
}

.button.secondary {
  background: white;
  border: 1px solid var(--line);
  color: var(--text);
}

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

.card,
.footer-note {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--card);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 40px rgba(18, 32, 46, 0.05);
}

.card {
  padding: 24px;
}

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

.card ul,
.card ol {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.footer-note {
  margin-top: 18px;
  padding: 22px 24px;
}

.footer-note p {
  margin: 0;
  color: var(--muted);
}

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

  .hero {
    padding: 28px;
  }

  .intro, .meta {
    font-size: 16px;
  }
}
