:root {
  color-scheme: light;
  --paper: #faf8f2;
  --linen: #f1ede3;
  --ink: #24312c;
  --muted: #617069;
  --cedar: #2a332e;
  --green: #426354;
  --clay: #a8541f;
  --line: rgba(42, 51, 46, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}
a { color: inherit; }
.wrap { width: min(calc(100% - 32px), 720px); margin-inline: auto; }
.topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  border-bottom: 1px solid var(--line);
  background: rgba(250, 248, 242, 0.94);
  backdrop-filter: blur(14px);
}
.topbar .wrap { display: flex; min-height: 58px; align-items: center; justify-content: space-between; gap: 16px; }
.brand { font-size: 14px; font-weight: 800; text-decoration: none; }
.toplink { color: var(--muted); font-size: 13px; font-weight: 700; text-decoration: none; }
.hero { padding: 54px 0 42px; }
.eyebrow { margin: 0 0 14px; color: var(--clay); font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1 { max-width: 14ch; margin: 0; font-size: clamp(38px, 10vw, 62px); letter-spacing: -.045em; line-height: .98; }
.answer { max-width: 58ch; margin: 20px 0 0; color: var(--muted); font-size: 17px; }
.actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 24px; }
.button { display: inline-flex; min-height: 46px; align-items: center; justify-content: center; border-radius: 999px; padding: 0 18px; background: var(--cedar); color: white; font-size: 14px; font-weight: 800; text-decoration: none; }
.button.secondary { border: 1px solid var(--line); background: transparent; color: var(--ink); }
.section { padding: 34px 0; border-top: 1px solid var(--line); }
.section h2 { margin: 0; font-size: 26px; letter-spacing: -.025em; }
.section-intro { margin: 8px 0 22px; color: var(--muted); }
.level { display: inline-flex; margin-bottom: 12px; border-radius: 999px; padding: 5px 10px; background: var(--linen); color: var(--green); font-size: 11px; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.grid { display: grid; gap: 12px; }
.card { border: 1px solid var(--line); border-radius: 20px; padding: 20px; background: rgba(255,255,255,.58); }
.card h3 { margin: 0 0 7px; font-size: 17px; }
.card p { margin: 0; color: var(--muted); font-size: 14px; }
.card a { display: inline-block; margin-top: 12px; color: var(--clay); font-size: 13px; font-weight: 800; text-underline-offset: 3px; }
.steps { margin: 20px 0 0; padding: 0; list-style: none; counter-reset: steps; }
.steps li { position: relative; padding: 0 0 22px 48px; color: var(--muted); counter-increment: steps; }
.steps li::before { content: counter(steps); position: absolute; left: 0; top: -3px; display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: var(--cedar); color: white; font-size: 13px; font-weight: 800; }
.steps strong { display: block; margin-bottom: 3px; color: var(--ink); }
.note { margin-top: 20px; border-left: 3px solid var(--clay); padding: 4px 0 4px 16px; color: var(--muted); font-size: 14px; }
.cta { margin: 34px 0; border-radius: 24px; padding: 26px; background: var(--cedar); color: white; }
.cta p { margin: 8px 0 18px; color: rgba(255,255,255,.72); }
.cta .button { background: var(--paper); color: var(--cedar); }
footer { padding: 28px 0 90px; border-top: 1px solid var(--line); color: var(--muted); font-size: 12px; }
footer .links { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 10px; }
@media (min-width: 680px) { .grid.two { grid-template-columns: repeat(2, 1fr); } }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
