:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-synthesis: none;
    --db-navy: #071947;
    --db-text: #20314f;
    --db-muted: #50617f;
    --db-teal: #087487;
    --db-copper: #b86f3b;
    --db-surface: #f4f7fa;
    --db-border: #dbe3ec;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    background: var(--db-surface);
}

body {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    display: grid;
    grid-template-rows: auto 1fr auto;
    overflow-x: hidden;
    background: var(--db-surface);
    color: var(--db-text);
    line-height: 1.5;
    letter-spacing: 0;
}

.page-width {
    width: min(100% - 48px, 1180px);
    margin-inline: auto;
}

.site-header {
    border-top: 8px solid var(--db-teal);
    border-bottom: 1px solid var(--db-border);
    background: #ffffff;
}

.site-header .page-width {
    min-height: 88px;
    display: flex;
    align-items: center;
}

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

.brand-mark {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: var(--db-teal);
    color: #ffffff;
    font-size: 14px;
    font-weight: 900;
}

.brand-name {
    font-size: 24px;
    font-weight: 900;
}

main {
    display: flex;
    align-items: center;
    padding-block: 72px;
}

.hero {
    width: min(100%, 820px);
}

.hero-rule {
    width: 112px;
    height: 8px;
    display: grid;
    grid-template-columns: 3fr 1fr;
    margin-bottom: 30px;
    background: var(--db-teal);
}

.hero-rule span {
    grid-column: 2;
    background: var(--db-copper);
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--db-teal);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
}

h1 {
    max-width: 760px;
    margin: 0;
    color: var(--db-navy);
    font-size: 64px;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: 0;
    text-wrap: balance;
}

.intro {
    max-width: 690px;
    margin: 28px 0 0;
    color: var(--db-text);
    font-size: 22px;
    font-weight: 600;
    line-height: 1.65;
}

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    margin-top: 34px;
    color: var(--db-muted);
    font-size: 15px;
    font-weight: 700;
}

.status-indicator {
    width: 10px;
    height: 10px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--db-copper);
    box-shadow: 0 0 0 5px #f1dfd1;
}

.site-footer {
    border-top: 1px solid var(--db-border);
    background: #ffffff;
    color: var(--db-muted);
}

.site-footer .page-width {
    min-height: 72px;
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 700;
}

@media (max-width: 760px) {
    .page-width {
        width: min(100% - 32px, 1180px);
    }

    .site-header .page-width {
        min-height: 76px;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
        font-size: 13px;
    }

    .brand-name {
        font-size: 22px;
    }

    main {
        padding-block: 56px;
    }

    h1 {
        font-size: 46px;
        line-height: 1.08;
    }

    .intro {
        margin-top: 22px;
        font-size: 19px;
        line-height: 1.55;
    }
}

@media (max-width: 420px) {
    h1 {
        font-size: 40px;
    }

    .eyebrow {
        font-size: 13px;
    }
}

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