:root {
    color-scheme: light;
    --ink: #1b1720;
    --muted: #655f69;
    --line: #e5dee8;
    --brand: #6546a6;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
body { margin: 0; color: var(--ink); background: #fbf8fc; }
header, footer { max-width: 900px; margin: auto; padding: 24px; display: flex; align-items: center; justify-content: space-between; gap: 20px; }
header { border-bottom: 1px solid var(--line); }
footer { border-top: 1px solid var(--line); color: var(--muted); font-size: 14px; }
.brand { color: var(--ink); font-weight: 800; text-decoration: none; font-size: 20px; }
nav { display: flex; gap: 18px; }
nav a, main a { color: var(--brand); }
main { width: min(100% - 40px, 760px); margin: 56px auto 72px; }
h1 { margin: 0 0 14px; font-size: clamp(38px, 7vw, 58px); line-height: 1; letter-spacing: -.045em; }
h2 { margin: 38px 0 10px; font-size: 22px; }
p, li { font-size: 17px; line-height: 1.7; }
li + li { margin-top: 7px; }
.lead { color: var(--muted); font-size: 20px; }
.eyebrow { color: var(--brand); font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.button { display: inline-flex; padding: 11px 17px; border-radius: 10px; background: var(--brand); color: white; text-decoration: none; font-weight: 750; }

@media (max-width: 600px) {
    header { align-items: flex-start; flex-direction: column; }
    main { margin-top: 38px; }
}
