:root {
  color-scheme: light;
  --ink: #17201d;
  --muted: #5f6b66;
  --paper: #f8faf7;
  --line: #dce5e0;
  --mint: #cfeee4;
  --coral: #ff7d68;
  --lemon: #f5df68;
  --blue: #7bc8df;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background-color: var(--paper);
  background-image: radial-gradient(#d6dfda 0.8px, transparent 0.8px);
  background-size: 18px 18px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

a { color: inherit; }
.shell { width: min(1080px, calc(100% - 36px)); margin: 0 auto; }
.nav {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; text-decoration: none; }
.brand img { width: 36px; height: 36px; border-radius: 8px; }
.nav-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px; }
.nav-links a { color: var(--muted); font-size: 14px; text-decoration: none; }
.hero { min-height: calc(100vh - 76px); display: grid; align-content: center; padding: 52px 0 90px; }
.eyebrow { margin: 0 0 16px; color: #376b5d; font-size: 13px; font-weight: 800; text-transform: uppercase; }
h1 { max-width: 780px; margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(52px, 8vw, 96px); font-weight: 500; line-height: 0.95; }
.lede { max-width: 580px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.55; }
.ribbon { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 48px 0 32px; }
.tile { min-height: 142px; padding: 18px; border: 1px solid rgba(23,32,29,.12); border-radius: 8px; box-shadow: 0 12px 30px rgba(23,32,29,.08); transform: rotate(var(--turn)); }
.tile strong { display: block; margin-top: 46px; font-size: 17px; }
.tile span { display: block; margin-top: 6px; color: rgba(23,32,29,.68); font-size: 13px; }
.mint { background: var(--mint); --turn: -2deg; }
.coral { background: #ffd3ca; --turn: 2deg; }
.lemon { background: #fff1a8; --turn: -1deg; }
.blue { background: #cdebf4; --turn: 1.5deg; }
.steps { display: flex; flex-wrap: wrap; gap: 10px; color: var(--muted); font-size: 15px; }
.steps b { color: var(--ink); }
.dot { color: var(--coral); }
.band { border-top: 1px solid var(--line); background: rgba(255,255,255,.75); }
.content { width: min(760px, calc(100% - 36px)); margin: 0 auto; padding: 64px 0 90px; }
.content h1 { font-size: clamp(42px, 7vw, 68px); }
.content h2 { margin: 42px 0 10px; font-size: 22px; }
.content p, .content li { color: var(--muted); line-height: 1.7; }
.content li { margin-bottom: 8px; }
.updated { margin: 18px 0 38px; color: var(--muted); font-size: 14px; }
.contact { display: inline-block; margin-top: 12px; padding: 13px 18px; border-radius: 8px; background: var(--ink); color: white; font-weight: 700; text-decoration: none; }
footer { border-top: 1px solid var(--line); background: #fff; }
.footer-inner { padding: 24px 0; display: flex; justify-content: space-between; gap: 20px; color: var(--muted); font-size: 13px; }

@media (max-width: 700px) {
  .nav { align-items: flex-start; padding: 20px 0; }
  .nav-links { gap: 10px 14px; }
  .hero { min-height: auto; padding: 52px 0 72px; }
  .ribbon { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .tile { min-height: 126px; }
  .footer-inner { flex-direction: column; }
}
