* {
    box-sizing: border-box;
}

:root {
    --bg: #f5f7fb;
    --panel: #ffffff;
    --text: #152238;
    --muted: #5f6b7a;
    --brand: #0067a6;
    --brand-dark: #034f7d;
    --border: #dfe6ef;
    --shadow: 0 18px 45px rgba(15, 35, 60, 0.08);
}

html {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at top left, #ffffff 0, var(--bg) 42rem);
    line-height: 1.6;
}

body {
    margin: 0;
}

a {
    color: var(--brand);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.page {
    width: min(1120px, calc(100% - 32px));
    margin: 0 auto;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-header,
.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 28px 0;
}

.brand {
    display: flex;
    gap: 12px;
    align-items: center;
    color: var(--text);
}

.brand:hover {
    text-decoration: none;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--brand);
    color: #fff;
    font-weight: 800;
    font-size: 1.6rem;
}

.brand small {
    display: block;
    color: var(--muted);
    font-size: 0.85rem;
}

.nav,
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.nav a,
.footer-links a {
    color: var(--text);
    font-weight: 600;
}

main {
    flex: 1;
}

.hero,
.content,
.info-grid article,
.card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    border-radius: 24px;
}

.hero {
    padding: clamp(32px, 6vw, 72px);
    margin: 28px 0;
}

.eyebrow {
    color: var(--brand);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 800;
    margin: 0 0 12px;
}

h1 {
    font-size: clamp(2.1rem, 5vw, 4.3rem);
    line-height: 1.05;
    margin: 0 0 22px;
}

h2 {
    line-height: 1.25;
    margin-top: 0;
}

.lead {
    max-width: 760px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--muted);
    margin-bottom: 32px;
}

.cta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 12px 20px;
    background: var(--brand);
    color: #fff;
    font-weight: 700;
}

.button:hover {
    background: var(--brand-dark);
    text-decoration: none;
}

.button-secondary {
    background: #eef6fb;
    color: var(--brand-dark);
}

.button-secondary:hover {
    background: #dceef8;
}

.cards,
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 18px 0;
}

.info-grid {
    grid-template-columns: 1fr 1fr;
}

.card,
.info-grid article {
    padding: 26px;
}

.card p,
.content p,
.content li {
    color: var(--muted);
}

.content {
    padding: clamp(28px, 5vw, 54px);
    margin: 28px 0;
}

.content h1 {
    font-size: clamp(2rem, 4vw, 3rem);
}

.content h2 {
    margin-top: 32px;
}

address {
    font-style: normal;
}

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

.site-footer {
    color: var(--muted);
    border-top: 1px solid var(--border);
    margin-top: 36px;
}

@media (max-width: 760px) {
    .site-header,
    .site-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .cards,
    .info-grid {
        grid-template-columns: 1fr;
    }

    .nav {
        gap: 12px;
    }
}


.lead-small {
    color: var(--muted);
    font-size: 1.1rem;
    max-width: 760px;
}

.download-list {
    display: grid;
    gap: 18px;
    margin-top: 28px;
}

.download-card {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 22px;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: #fff;
}

.download-card h2 {
    margin-bottom: 8px;
}

.download-card p {
    margin-bottom: 0;
}

.notice {
    margin-top: 28px;
    padding: 18px 20px;
    border: 1px solid var(--border);
    border-radius: 18px;
    background: #f8fbfe;
    color: var(--muted);
}

code {
    background: #eef3f8;
    border-radius: 6px;
    padding: 0.1rem 0.35rem;
}

@media (max-width: 760px) {
    .download-card {
        grid-template-columns: 1fr;
    }
}


.brand-logo {
    display: block;
    width: min(260px, 70vw);
    height: auto;
}
