:root {
  --bg: #060607; --surface: #101012; --border: #222226;
  --text: #f6f6f5; --dim: #9a9aa3; --faint: #5f5f68;
}
* { box-sizing: border-box; }
body {
  margin: 0; background: var(--bg); color: var(--text);
  font-family: 'Inter', -apple-system, 'Segoe UI', sans-serif;
  font-size: 16.5px; line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 0 22px 80px; }
header.site {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.wordmark {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Space Grotesk', sans-serif; font-weight: 700;
  font-size: 15px; letter-spacing: 0.22em; color: var(--text);
  text-decoration: none;
}
.wordmark img { width: 28px; height: 28px; border-radius: 8px; background: #fff; }
.cta-link {
  background: #fff; color: #0a0a0a; text-decoration: none;
  font-size: 13.5px; font-weight: 600; padding: 9px 18px; border-radius: 999px;
}
h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 5.5vw, 42px); font-weight: 600;
  letter-spacing: -0.025em; line-height: 1.12; margin: 0 0 10px;
}
.meta { color: var(--faint); font-size: 13.5px; margin-bottom: 36px; }
h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px; font-weight: 600; letter-spacing: -0.02em;
  margin: 44px 0 12px;
}
p, li { color: var(--dim); }
strong { color: var(--text); font-weight: 600; }
a { color: var(--text); text-decoration: underline; text-underline-offset: 3px; }
ul, ol { padding-left: 22px; }
li { margin: 8px 0; }
.callout {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px; margin: 40px 0 0;
}
.callout p { margin: 6px 0 14px; }
.callout .cta-link { display: inline-block; }
footer.site {
  margin-top: 60px; padding-top: 22px; border-top: 1px solid var(--border);
  color: var(--faint); font-size: 13px;
  display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap;
}
footer.site a { color: var(--dim); }
.posts { list-style: none; padding: 0; }
.posts li {
  border: 1px solid var(--border); border-radius: 16px;
  padding: 22px 24px; margin: 14px 0; background: var(--surface);
}
.posts a.title {
  font-family: 'Space Grotesk', sans-serif; font-weight: 600;
  font-size: 19px; letter-spacing: -0.01em; text-decoration: none;
}
.posts a.title:hover { text-decoration: underline; }
.posts p { margin: 8px 0 0; font-size: 14.5px; }
