:root {
  color-scheme: light;
  --bg: #eff4f7;
  --paper: rgba(255, 255, 255, 0.9);
  --ink: #12263f;
  --muted: #58708a;
  --line: rgba(18, 38, 63, 0.12);
  --cobalt: #1767ff;
  --teal: #13a89e;
  --lime: #8ecf3f;
  --amber: #ffb32c;
  --shadow: 0 18px 45px rgba(18, 38, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Avenir Next", "Trebuchet MS", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(23, 103, 255, 0.22), transparent 34%),
    radial-gradient(circle at top right, rgba(19, 168, 158, 0.24), transparent 28%),
    radial-gradient(circle at bottom right, rgba(142, 207, 63, 0.18), transparent 26%),
    linear-gradient(180deg, #dfeeff 0%, #eef4f7 42%, #f8fbfc 100%);
}

a {
  color: inherit;
}

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

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.brand-mark {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal);
}

.brand-title {
  font-size: 1.35rem;
  font-weight: 800;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.nav a,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  color: var(--ink);
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(18, 38, 63, 0.08);
}

.button.primary {
  background: linear-gradient(135deg, var(--cobalt) 0%, #2996ff 100%);
  color: white;
}

.hero,
.panel,
.faq-item {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.hero {
  display: grid;
  grid-template-columns: 1.45fr 1fr;
  gap: 28px;
  padding: 34px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(23, 103, 255, 0.08);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cobalt);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.05;
}

h1 {
  margin-top: 18px;
  font-size: clamp(2.4rem, 6vw, 4.8rem);
  letter-spacing: -0.04em;
}

.lede {
  margin: 18px 0 0;
  max-width: 64ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.stat-grid,
.card-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.stat-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.stat {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--line);
}

.stat strong {
  display: block;
  font-size: 1.9rem;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.5;
}

.section {
  margin-top: 26px;
}

.section h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.section-copy {
  margin: 10px 0 0;
  max-width: 68ch;
  line-height: 1.7;
  color: var(--muted);
}

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

.panel {
  padding: 24px;
}

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

.panel ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.faq-grid {
  margin-top: 18px;
}

.faq-item {
  padding: 22px;
}

.faq-item p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.inline-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.chip {
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(23, 103, 255, 0.09);
  color: var(--ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(23, 103, 255, 0.08);
  border: 1px solid rgba(23, 103, 255, 0.12);
  text-decoration: none;
  font-weight: 700;
}

.footnote {
  margin-top: 22px;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
}

footer {
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

  .topbar {
    justify-content: stretch;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }
}

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

  .hero,
  .panel,
  .faq-item {
    border-radius: 22px;
  }

  .hero {
    padding: 24px;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: clamp(2.2rem, 11vw, 3.4rem);
  }
}
