:root {
  color-scheme: light;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --bg: #f4f7fb;
  --ink: #0d1b3d;
  --muted: #5c6885;
  --accent: #2f6ff2;
  --card: #ffffff;
  --card-border: rgba(13, 27, 61, 0.08);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--ink);
  min-height: 100vh;
  line-height: 1.6;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

h1,
h2,
h3,
h4 {
  font-weight: 900;
}

a {
  color: inherit;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5rem 1.5rem 4rem;
  background: linear-gradient(125deg, #0f8be0 0%, #1276d4 45%, #0b3f91 100%);
  color: #f5f8ff;
}


.hero__content {
  max-width: 780px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: -0.04em;
  margin-bottom: 0.5rem;
}

.hero__details {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin: 1.5rem auto 0;
  align-items: center;
}

.hero__meta {
  font-size: clamp(1.05rem, 3vw, 1.45rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(245, 248, 255, 0.9);
}

.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  background: #fff;
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 10px 20px rgba(6, 34, 82, 0.15);
}

.cta-link:hover {
  transform: translateY(-2px);
}

main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.section {
  padding: 3.5rem 1.5rem;
}

.section--light {
  background: #edf2fb;
}

.section__content {
  max-width: 960px;
  margin: 0 auto;
}

.section h3 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section p {
  color: var(--muted);
}

.eyebrow {
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.8rem;
}

footer {
  padding: 2.8rem 1.5rem 3.2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

footer a {
  text-decoration: none;
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 640px) {
  .hero {
    padding-top: 4.5rem;
  }
}
