body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background:
        radial-gradient(circle at top left, rgb(15 118 110 / 8%), transparent 40%),
        linear-gradient(180deg, #f7f7f5 0%, #eef1ef 100%);
    line-height: 1.6;
    min-height: 100vh;
}

h1,
h2,
h3 {
    line-height: 1.2;
    color: var(--color-primary);
    font-weight: 700;
}

h1 {
    font-size: clamp(2rem, 4vw, 3.25rem);
    margin-bottom: 0.75rem;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

p {
    margin-bottom: 1rem;
}

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

.lead {
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    color: var(--color-muted);
}

.button {
    display: inline-block;
    padding: 0.75rem 1.25rem;
    background: var(--color-accent);
    color: #fff;
    text-decoration: none;
    border: 0;
    border-radius: var(--radius-small);
    cursor: pointer;
}

.button:hover,
.button:focus-visible {
    filter: brightness(0.95);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 0;
    background: #000;
    color: #fff;
    padding: 0.5rem 1rem;
    z-index: 1000;
}

.skip-link:focus {
    left: 0.5rem;
    top: 0.5rem;
}

:focus-visible {
    outline: 2px solid var(--color-accent);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}
