/* FolioKit blog — static pages, same design language as the main site */
* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #060608;
  --panel: rgba(255, 255, 255, 0.04);
  --border: rgba(255, 255, 255, 0.09);
  --text: #e4e4e7;
  --muted: #a1a1aa;
  --faint: #71717a;
  --accent: #8b5cf6;
  --accent-soft: #a78bfa;
}
html { background: var(--bg); }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.nav {
  max-width: 720px; margin: 0 auto; padding: 20px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.nav a { color: var(--muted); text-decoration: none; font-size: 14px; }
.nav a:hover { color: var(--text); }
.brand { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 17px; color: var(--text) !important; }
.brand img { width: 26px; height: 26px; }
.brand span { color: var(--accent-soft); }
main { max-width: 720px; margin: 0 auto; padding: 40px 24px 80px; }
.kicker {
  color: var(--accent-soft); font-size: 11px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 14px;
}
h1 { font-size: 34px; line-height: 1.15; letter-spacing: -0.02em; margin-bottom: 14px; color: #fafafa; }
.byline { color: var(--faint); font-size: 13px; margin-bottom: 36px; }
article h2 { font-size: 23px; line-height: 1.3; letter-spacing: -0.01em; margin: 40px 0 14px; color: #fafafa; }
article h3 { font-size: 17px; margin: 28px 0 10px; color: #fafafa; }
article p { margin-bottom: 16px; color: var(--text); }
article ul, article ol { margin: 0 0 16px 22px; }
article li { margin-bottom: 8px; }
article strong { color: #fafafa; }
article em { color: var(--muted); }
article a { color: var(--accent-soft); text-decoration: underline; text-underline-offset: 4px; text-decoration-color: rgba(139, 92, 246, 0.4); }
article code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 0.9em; background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border); border-radius: 5px; padding: 1px 6px;
}
article blockquote {
  border-left: 3px solid var(--accent); padding: 4px 0 4px 18px;
  margin: 20px 0; color: var(--muted);
}
.callout {
  background: var(--panel); border: 1px solid var(--border);
  border-radius: 14px; padding: 18px 20px; margin: 24px 0; font-size: 15px;
}
table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14.5px; }
th, td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--border); }
th { color: var(--faint); font-weight: 600; font-size: 12px; text-transform: uppercase; letter-spacing: 0.06em; }
.cta {
  margin-top: 52px; background: linear-gradient(160deg, rgba(139, 92, 246, 0.12), rgba(139, 92, 246, 0.03));
  border: 1px solid rgba(139, 92, 246, 0.35); border-radius: 16px; padding: 26px;
}
.cta p { margin-bottom: 14px; }
.cta a.button {
  display: inline-block; background: var(--accent); color: #fff; font-weight: 600;
  font-size: 14px; padding: 10px 18px; border-radius: 10px; text-decoration: none;
}
.cta a.button:hover { background: #7c3aed; }
footer { max-width: 720px; margin: 0 auto; padding: 26px 24px 46px; color: var(--faint); font-size: 13px; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
footer a { color: var(--muted); text-decoration: none; }
/* blog index cards */
.post-card {
  display: block; background: var(--panel); border: 1px solid var(--border);
  border-radius: 16px; padding: 22px 24px; margin-bottom: 16px;
  text-decoration: none; transition: border-color 0.25s ease;
}
.post-card:hover { border-color: rgba(167, 139, 250, 0.45); }
.post-card h2 { font-size: 19px; color: #fafafa; margin: 0 0 8px; }
.post-card p { color: var(--muted); font-size: 14.5px; margin: 0 0 10px; }
.post-card .meta { color: var(--faint); font-size: 12.5px; }
