:root {
    color-scheme: light;
    --ink: #17212b;
    --muted: #53616f;
    --line: #dfe5ea;
    --surface: #f7f9fb;
    --brand: #0e7a6f;
    --brand-dark: #095c54;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    background: var(--surface);
    color: var(--ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
}

a {
    color: var(--brand-dark);
}

.page {
    min-height: 100vh;
    padding: 48px 20px;
}

.hero,
article {
    max-width: 760px;
    margin: 0 auto;
}

.hero {
    padding-top: 12vh;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--brand-dark);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(2.4rem, 7vw, 5.2rem);
    line-height: 1;
    letter-spacing: 0;
}

h2 {
    margin: 36px 0 8px;
    font-size: 1.25rem;
}

.lead {
    max-width: 620px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 1.16rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    font-weight: 700;
    text-decoration: none;
}

.button.primary {
    background: var(--brand);
    border-color: var(--brand);
    color: white;
}

.button.secondary {
    background: white;
}

.policy article {
    padding: 24px 0 64px;
}

.home .content {
    padding: 56px 0 72px;
}

.home .content ol {
    margin: 12px 0 0;
    padding-left: 24px;
}

.home .content li {
    margin: 10px 0;
}

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