:root {
    --pico-border-radius: 0.85rem;
}

body {
    min-height: 100vh;
}

.site-header {
    border-bottom: 1px solid var(--pico-muted-border-color);
}

.site-header nav {
    padding-block: 0.85rem;
}

.brand {
    font-weight: 700;
    text-decoration: none;
}

.hero {
    padding: 4rem 0 2rem;
}

.hero h1 {
    max-width: 780px;
}

.hero p {
    max-width: 720px;
    font-size: 1.1rem;
}

.eyebrow {
    color: var(--pico-primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.trust-card {
    align-self: center;
}

.cards article {
    height: 100%;
}

.link-grid {
    display: grid;
    gap: 0.75rem;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.link-grid a {
    display: block;
    padding: 1rem;
    border: 1px solid var(--pico-muted-border-color);
    border-radius: var(--pico-border-radius);
    text-decoration: none;
}

.legal {
    max-width: 860px;
    margin: 3rem auto;
}

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

.support-box {
    padding: 1rem;
    border: 1px solid var(--pico-muted-border-color);
    border-radius: var(--pico-border-radius);
    background: var(--pico-card-background-color);
}

.site-footer {
    border-top: 1px solid var(--pico-muted-border-color);
    margin-top: 4rem;
    padding: 2rem 0;
    color: var(--pico-muted-color);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

@media (max-width: 700px) {
    .hero {
        padding-top: 2rem;
    }

    .site-header nav ul:last-child {
        display: none;
    }
}