:root {
    color-scheme: light dark;
    --background: #f6f2eb;
    --foreground: #101219;
    --muted: #5b6472;
    --accent: #d85a42;
    --panel: rgba(255, 255, 255, 0.72);
    --border: rgba(15, 20, 26, 0.12);
}

@media (prefers-color-scheme: dark) {
    :root {
        --background: #0c1017;
        --foreground: #eef1f7;
        --muted: #aab3c2;
        --accent: #f77b5f;
        --panel: rgba(18, 24, 36, 0.82);
        --border: rgba(255, 255, 255, 0.1);
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--background);
    color: var(--foreground);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
}

main {
    max-width: 760px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

header,
section {
    margin-bottom: 2rem;
}

section {
    padding: 1.25rem 1.5rem;
    background: var(--panel);
    border: 1px solid var(--border);
    border-radius: 16px;
}

h1,
h2 {
    line-height: 1.2;
}

h1 {
    margin: 0 0 0.5rem;
    font-size: clamp(2.25rem, 7vw, 3.5rem);
}

h2 {
    margin-top: 0;
    font-size: 1.25rem;
}

p:last-child,
ul:last-child {
    margin-bottom: 0;
}

.eyebrow,
.updated {
    color: var(--muted);
}

.eyebrow {
    margin: 0 0 0.5rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

a {
    color: var(--accent);
}

footer {
    color: var(--muted);
    text-align: center;
}

