:root {
    --bg: #0a0a0a;
    --surface: #161616;
    --border: #262626;
    --text: #f2f2f2;
    --muted: #a0a0a0;
    --accent: #4ade80;
    --accent-hover: #22c55e;
    --max-width: 760px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    color: var(--accent-hover);
    text-decoration: underline;
}

header.site-header {
    border-bottom: 1px solid var(--border);
    padding: 20px 24px;
}

header.site-header .wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

header.site-header .brand {
    font-weight: 700;
    font-size: 20px;
    color: var(--text);
}

header.site-header nav a {
    color: var(--muted);
    margin-left: 16px;
    font-size: 14px;
}

header.site-header nav a:hover {
    color: var(--text);
}

main {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 48px 24px 80px;
}

h1 {
    font-size: 36px;
    line-height: 1.2;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 22px;
    margin: 40px 0 12px;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 18px;
    margin: 24px 0 8px;
}

p {
    margin: 0 0 16px;
    color: var(--text);
}

.lead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 32px;
}

.meta {
    color: var(--muted);
    font-size: 14px;
    margin-bottom: 32px;
}

ul {
    padding-left: 20px;
}

li {
    margin-bottom: 6px;
}

.hero {
    padding: 56px 0 24px;
    text-align: center;
}

.hero p {
    font-size: 18px;
    color: var(--muted);
    max-width: 520px;
    margin: 0 auto 24px;
}

.card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 16px;
}

.card h3 {
    margin-top: 0;
}

footer.site-footer {
    border-top: 1px solid var(--border);
    padding: 24px;
    color: var(--muted);
    font-size: 13px;
    text-align: center;
}

footer.site-footer a {
    color: var(--muted);
    margin: 0 8px;
}

footer.site-footer a:hover {
    color: var(--text);
}

code {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 1px 6px;
    font-size: 14px;
    font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
}

strong {
    color: var(--text);
}
