:root {
    --navy-deepest: #091622;
    --navy-dark:    #0d1f2d;
    --navy-mid:     #112233;
    --navy-border:  #1a3347;

    --color-teal-dark:  #00A19C;
    --color-teal-light: #3AC0AE;
    --color-blue: #228ec2;
    --color-green: #00BD71;
    --color-green-dark: #0a1a10;
    --text-bright: #e8f4f8;
    --text-mid: #b0ccd8;
    --text-muted: #6a8fa8;

    --section-pad:  64px 0;
    --inner-width:  1160px;
    --inner-pad:    0 40px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-bright);
    background: var(--navy-deepest);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.site-logo img {
    max-height: 48px;
    width: auto;
}

@media (max-width: 768px) {
    :root {
        --section-pad: 48px 0;
        --inner-pad: 0 20px;
    }
}