:root {
  color-scheme: light;
  --bg-top: #f5e2c3;
  --bg-bottom: #c7895f;
  --surface: rgba(255, 250, 243, 0.9);
  --surface-strong: #fffaf3;
  --ink: #2d1b14;
  --muted: #6f5446;
  --accent: #ef8749;
  --accent-deep: #3e8d97;
  --line: rgba(92, 57, 39, 0.12);
  --shadow: 0 24px 60px rgba(58, 32, 19, 0.12);
  --radius: 28px;
}

* {
  box-sizing: border-box;
}

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(255, 255, 255, 0.45), transparent 32%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
}

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

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

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

.card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 252, 247, 0.95), rgba(250, 241, 229, 0.92));
  box-shadow: var(--shadow);
}

.hero {
  padding: 36px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
}

.button-primary {
  background: var(--accent);
  color: white;
}

.button-secondary {
  background: rgba(62, 141, 151, 0.14);
  color: var(--accent-deep);
}

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

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

h1 {
  font-size: clamp(2.3rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
}

h3 {
  font-size: 1.05rem;
  margin-top: 18px;
}

p,
li {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
}

.lede {
  max-width: 42rem;
  font-size: 1.18rem;
}

.text-link {
  font-weight: 700;
}

.summary {
  margin-top: 18px;
}

.fact-list {
  margin: 18px 0 0;
  padding-left: 20px;
}

.section-block {
  margin-top: 18px;
}

.policy-head {
  margin-bottom: 18px;
}

.faq p {
  margin-top: 8px;
}

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

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

  .card,
  .hero {
    padding: 22px;
    border-radius: 24px;
  }

  .button {
    width: 100%;
  }
}
