:root {
  color-scheme: light;
  --bg: #eef3f1;
  --surface: rgba(255, 255, 255, 0.84);
  --surface-border: rgba(19, 54, 53, 0.12);
  --text: #173033;
  --muted: #52696c;
  --accent: #0c8f72;
  --shadow: 0 20px 56px rgba(22, 45, 47, 0.1);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Helvetica, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(23, 166, 137, 0.16), transparent 30%),
    radial-gradient(circle at top right, rgba(241, 161, 63, 0.18), transparent 24%),
    linear-gradient(180deg, #f9fcfb 0%, var(--bg) 100%);
}

a {
  color: var(--accent);
}

.shell {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 40px 0 72px;
}

.hero {
  padding: 40px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 18px;
  font-size: clamp(2.5rem, 6vw, 5.2rem);
  line-height: 0.96;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.lede,
.section-head p {
  max-width: 62ch;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--muted);
}

section + section {
  margin-top: 34px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.grid.three {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.card {
  padding: 20px;
  border: 1px solid var(--surface-border);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.card h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.card p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.58;
}

.faq {
  display: grid;
  gap: 16px;
}

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

  h1 {
    max-width: none;
  }

  .card {
    border-radius: 18px;
  }
}
