*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", "Roboto", "Arial", sans-serif;
  line-height: 1.6;
  color: #e6e9f0;
  background: #0b0f1a;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.hero {
  padding: 48px 0 36px;
  background: radial-gradient(1200px 800px at 20% -10%, #1f2a44 0%, transparent 60%),
    radial-gradient(800px 600px at 90% 10%, #1d1f3c 0%, transparent 55%);
}

.hero__content {
  max-width: 640px;
}

.hero__card {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px;
  backdrop-filter: blur(10px);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: #8aa1ff;
  margin: 0 0 12px;
}

h1 {
  font-size: clamp(28px, 5vw, 44px);
  margin: 0 0 14px;
  line-height: 1.2;
}

h2 {
  font-size: clamp(22px, 3.8vw, 30px);
  margin: 0 0 18px;
}

h3 {
  margin: 0 0 12px;
  font-size: 18px;
}

p {
  margin: 0 0 14px;
  color: #cbd2e4;
}

.lead {
  font-size: 16px;
  color: #d5dbef;
}

.inline-link {
  color: #9bc1ff;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #5b7bff;
  color: #081022;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 24px rgba(71, 108, 255, 0.25);
}

.btn:active {
  transform: translateY(1px);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(155, 193, 255, 0.4);
  color: #cfe0ff;
  box-shadow: none;
}

.hero__stats {
  display: grid;
  gap: 12px;
}

.stat__label {
  display: block;
  font-size: 12px;
  color: #8e9fc7;
  margin-bottom: 4px;
}

.stat__value {
  font-size: 16px;
  color: #f0f3ff;
  font-weight: 600;
}

.card__note {
  margin-top: 16px;
  color: #cdd5ee;
}

.section {
  padding: 36px 0;
}

.section--alt {
  background: #0f1628;
}

.grid {
  display: grid;
  gap: 16px;
  margin-top: 18px;
}

.grid--two {
  margin-top: 18px;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 18px;
}

ul {
  padding-left: 18px;
  margin: 0;
  color: #d2d8ec;
}

li {
  margin-bottom: 8px;
}

.note {
  margin-top: 16px;
  color: #b8c2dd;
}

.columns {
  columns: 1;
  column-gap: 24px;
}

.footer {
  padding: 26px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__title {
  font-size: 18px;
  margin-bottom: 6px;
  color: #f0f3ff;
}

.footer__text {
  color: #b8c2dd;
}

.footer__meta {
  color: #9aa6c9;
  font-size: 14px;
}

@media (min-width: 760px) {
  .hero {
    padding: 64px 0 48px;
  }

  .hero__stats {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .columns {
    columns: 2;
  }

  .footer__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
