/* Pingworth "Daylight Utility" tokens (pingworth-design skill). */
:root {
  --bg: #F6F5F1; --card: #FFFFFF; --ink: #14181D; --muted: #5D6570;
  --border: #D8D6CE; --accent: #0E7C5B;
  color-scheme: light dark;
}
@media (prefers-color-scheme: dark) {
  :root { --bg: #2E333B; --card: #383E47; --ink: #EEF0F3; --muted: #A3ACB6; --border: #4A515B; --accent: #21B182; }
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--ink);
  font: 400 17px/1.6 'Instrument Sans', 'Segoe UI', system-ui, sans-serif;
  -webkit-text-size-adjust: 100%;
}
a { color: var(--accent); }
header, main, footer { max-width: 760px; margin: 0 auto; padding: 0 16px; }
header { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding-top: 20px; padding-bottom: 20px; flex-wrap: wrap; }
.brand { display: inline-flex; align-items: center; gap: 10px; color: var(--ink); text-decoration: none; font-weight: 600; font-size: 20px; }
.brand .dial { width: 34px; height: 34px; }
nav { display: flex; gap: 18px; }
nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
nav a[aria-current="page"], nav a:hover { color: var(--ink); }
main { padding-bottom: 48px; }
h1, h2 { font-family: 'Space Grotesk', 'Segoe UI', system-ui, sans-serif; line-height: 1.2; }
h1 { font-size: clamp(30px, 6vw, 40px); margin: 24px 0 8px; }
h2 { font-size: 22px; margin: 36px 0 8px; }
ul { padding-left: 22px; }
li { margin: 6px 0; }
.table { overflow-x: auto; }
table { border-collapse: collapse; width: 100%; font-size: 15px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); vertical-align: top; }
th { color: var(--muted); font-weight: 600; }
.hero { padding: 48px 0 24px; }
.hero .dial { width: 96px; height: 96px; }
.hero h1 { font-size: clamp(34px, 8vw, 56px); }
.accent { color: var(--accent); }
.muted { color: var(--muted); }
footer { display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; padding-top: 20px; padding-bottom: 32px; border-top: 1px solid var(--border); color: var(--muted); font-size: 14px; }
