:root {
  --paper: #fbf3dd;
  --ink: #211a13;
  --muted: #75634d;
  --line: #2a2018;
  --orange: #ff5b22;
  --acid: #d5ff43;
  --white: #fffaf0;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background:
    radial-gradient(circle at 18% 0%, rgba(255,91,34,.14), transparent 28rem),
    radial-gradient(circle at 88% 8%, rgba(213,255,67,.2), transparent 24rem),
    var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.6;
}
a { color: inherit; }
.wrap { width: min(840px, calc(100% - 32px)); margin: 0 auto; }
header { padding: 26px 0; border-bottom: 2px solid rgba(33,26,19,.14); }
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 22px; font-weight: 950; text-decoration: none; }
.brand-mark { width: 34px; height: 34px; display: grid; place-items: center; position: relative; border: 2px solid var(--line); border-radius: 11px; background: var(--acid); box-shadow: 3px 3px 0 var(--line); transform: rotate(-4deg); }
.brand-mark:before, .brand-mark:after { content: ""; width: 5px; height: 5px; position: absolute; top: 11px; border-radius: 999px; background: var(--line); }
.brand-mark:before { left: 9px; }
.brand-mark:after { right: 9px; }
.brand-mark span { width: 15px; height: 5px; margin-top: 10px; border: 2px solid var(--line); border-top: 0; border-radius: 0 0 12px 12px; }
main { padding: 72px 0 88px; }
.eyebrow { color: var(--orange); font-family: var(--mono); font-size: 12px; font-weight: 950; letter-spacing: .08em; text-transform: uppercase; }
h1 { max-width: 760px; margin: 16px 0 18px; font-size: clamp(48px, 8vw, 82px); line-height: .9; letter-spacing: -.055em; }
.intro { max-width: 720px; margin: 0 0 48px; color: #5f4b37; font-size: 19px; font-weight: 700; }
section { padding: 28px 0; border-top: 2px solid rgba(33,26,19,.14); }
h2 { margin: 0 0 12px; font-size: 28px; line-height: 1.05; letter-spacing: -.035em; }
h3 { margin: 22px 0 8px; font-size: 19px; }
p, li { color: #594735; font-weight: 650; }
ul, ol { padding-left: 22px; }
.callout { margin: 22px 0; padding: 18px; border: 2px solid var(--line); border-radius: 18px; background: var(--white); box-shadow: 4px 4px 0 var(--line); }
.callout strong { display: block; margin-bottom: 5px; }
.meta { color: var(--muted); font-family: var(--mono); font-size: 12px; font-weight: 800; }
.back { display: inline-flex; margin-top: 34px; padding: 12px 16px; border: 2px solid var(--line); border-radius: 14px; background: var(--acid); box-shadow: 4px 4px 0 var(--line); font-weight: 900; text-decoration: none; }
footer { padding: 34px 0 52px; border-top: 2px solid rgba(33,26,19,.14); color: var(--muted); font-size: 13px; }
footer .wrap { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
footer a { font-weight: 850; }
@media (max-width: 600px) {
  main { padding-top: 48px; }
  h1 { font-size: 50px; }
}
