@font-face {
  font-family: "Archivo";
  src: url("/assets/Archivo-Regular.woff2") format("woff2");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Archivo";
  src: url("/assets/Archivo-ExtraBold.woff2") format("woff2");
  font-style: normal;
  font-weight: 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --ink: #171717;
  --paper: #f3f0e8;
  --panel: #fffdf7;
  --accent: #ff4f00;
  --muted: #69665f;
  --line: #171717;
  --max: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Archivo", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.55;
}

a { color: inherit; text-underline-offset: 0.18em; }
a:hover { color: var(--accent); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -80px;
  z-index: 20;
  padding: 10px 14px;
  background: var(--ink);
  color: white;
}

.skip-link:focus { top: 16px; }

.site-header,
.site-footer,
main {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 84px;
  border-bottom: 2px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  background: var(--accent);
  color: white;
  font-size: 22px;
  line-height: 1;
}

nav { display: flex; gap: 24px; font-size: 15px; }
nav a { text-decoration: none; }

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, 0.6fr);
  gap: 72px;
  padding: 88px 0 96px;
  border-bottom: 2px solid var(--line);
}

.eyebrow,
.kicker {
  margin: 0 0 18px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 { max-width: 780px; margin-bottom: 30px; font-size: clamp(56px, 8vw, 106px); }
h2 { margin-bottom: 26px; font-size: clamp(38px, 5vw, 66px); }
h3 { margin-bottom: 12px; font-size: 25px; }

.lede { max-width: 680px; margin-bottom: 34px; font-size: clamp(20px, 2.3vw, 28px); line-height: 1.3; }

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  padding: 12px 18px;
  border: 2px solid var(--ink);
  background: var(--accent);
  color: white;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 5px 5px 0 var(--ink);
}

.button:hover { color: white; transform: translate(2px, 2px); box-shadow: 3px 3px 0 var(--ink); }
.button[aria-disabled="true"] { background: var(--panel); color: var(--muted); cursor: default; }
.button[aria-disabled="true"]:hover { transform: none; box-shadow: 5px 5px 0 var(--ink); }

.fact-sheet {
  align-self: end;
  border: 2px solid var(--ink);
  background: var(--panel);
  box-shadow: 10px 10px 0 var(--accent);
}

.fact-sheet div { padding: 18px 20px; border-bottom: 1px solid var(--ink); }
.fact-sheet div:last-child { border-bottom: 0; }
.fact-sheet strong { display: block; margin-bottom: 3px; font-size: 14px; }

.section { padding: 82px 0; border-bottom: 2px solid var(--line); }
.section-intro { max-width: 740px; margin-bottom: 42px; font-size: 20px; }

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.card {
  min-height: 220px;
  padding: 26px;
  border: 2px solid var(--ink);
  background: var(--panel);
}

.card-number { display: block; margin-bottom: 48px; color: var(--accent); font-weight: 800; }

.steps { counter-reset: step; display: grid; gap: 0; border-top: 2px solid var(--ink); }
.step { display: grid; grid-template-columns: 80px 1fr; padding: 28px 0; border-bottom: 1px solid var(--ink); }
.step::before { counter-increment: step; content: "0" counter(step); color: var(--accent); font-weight: 800; }
.step p { margin-bottom: 0; }

.plain { background: var(--ink); color: white; }
.promise { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; }
.promise h2 { color: white; }
.promise-list { margin: 0; padding: 0; list-style: none; }
.promise-list li { padding: 16px 0; border-top: 1px solid #777; }

.document { max-width: 780px; padding: 70px 0 96px; }
.document h1 { font-size: clamp(52px, 7vw, 86px); }
.document h2 { margin-top: 54px; font-size: 34px; line-height: 1.08; }
.document h3 { margin-top: 32px; font-size: 23px; line-height: 1.15; }
.document ul, .document ol { padding-left: 24px; }
.document li { margin-bottom: 10px; }
.meta { margin-bottom: 46px; color: var(--muted); }
.notice { margin: 34px 0; padding: 22px; border-left: 6px solid var(--accent); background: var(--panel); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  padding: 34px 0 52px;
  color: var(--muted);
  font-size: 14px;
}

.site-footer p { margin: 0; }
.footer-links { display: flex; gap: 20px; }

@media (max-width: 760px) {
  body { font-size: 16px; }
  .site-header { align-items: flex-start; padding: 18px 0; }
  nav { gap: 14px; padding-top: 8px; }
  .hero { grid-template-columns: 1fr; gap: 48px; padding: 62px 0 72px; }
  .grid-3, .promise { grid-template-columns: 1fr; }
  .section { padding: 62px 0; }
  .site-footer { flex-direction: column; }
}

@media (max-width: 480px) {
  .site-header, .site-footer, main { width: min(calc(100% - 28px), var(--max)); }
  .brand { gap: 8px; }
  .brand-mark { width: 30px; height: 30px; }
  nav { font-size: 13px; }
  h1 { font-size: 50px; }
  .step { grid-template-columns: 52px 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
