:root {
    --color-background: #ffffff;
    --color-text: #08133b;
    --color-muted: #5b647e;
    --color-accent: #2c64bb;
    --color-accent-strong: #1f4f98;
    --color-accent-light: #eaf1fb;
    --color-border: #e2e6f0;
    --font-sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
    min-height: 100%;
}

body {
    min-width: 320px;
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    color: var(--color-text);
    background:
        radial-gradient(circle at 88% 46%, rgba(44, 100, 187, 0.08), transparent 24rem),
        var(--color-background);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
}

.page-shell {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: min(1160px, calc(100% - 40px));
    min-height: 100vh;
    min-height: 100svh;
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    min-height: 116px;
    border-bottom: 1px solid var(--color-border);
}

.brand-logo {
    display: block;
    width: 159px;
    height: auto;
}

.coming-soon {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.58fr);
    align-items: center;
    gap: clamp(3rem, 8vw, 8rem);
    padding: clamp(4rem, 10vh, 7rem) 0;
}

.coming-soon__copy {
    max-width: 720px;
}

.eyebrow {
    margin: 0 0 1.25rem;
    color: var(--color-accent);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

h1 {
    max-width: 700px;
    margin: 0;
    font-size: clamp(3.2rem, 8vw, 6.7rem);
    font-weight: 540;
    letter-spacing: -0.055em;
    line-height: 0.98;
}

.lead {
    max-width: 640px;
    margin: 1.75rem 0 0;
    color: var(--color-muted);
    font-size: clamp(1rem, 1.7vw, 1.18rem);
    line-height: 1.7;
}

.contact {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem 1.35rem;
    margin-top: 2rem;
}

.contact__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0.72rem 1.15rem;
    border-radius: 8px;
    color: #ffffff;
    background: var(--color-accent);
    box-shadow: 0 10px 24px rgba(44, 100, 187, 0.2);
    font-size: 0.88rem;
    font-weight: 750;
    text-decoration: none;
    transition: background-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.contact__button:hover {
    background: var(--color-accent-strong);
    box-shadow: 0 13px 28px rgba(44, 100, 187, 0.24);
    transform: translateY(-1px);
}

.contact__address {
    color: var(--color-muted);
    font-size: 0.86rem;
    text-underline-offset: 0.25em;
}

.contact__address:hover {
    color: var(--color-accent);
}

.contact__fallback {
    margin: 0;
    color: var(--color-muted);
    font-size: 0.86rem;
}

.contact__button:focus-visible,
.contact__address:focus-visible {
    outline: 3px solid rgba(44, 100, 187, 0.32);
    outline-offset: 4px;
}

.brand-accent {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 1.4rem;
    min-width: 0;
    color: var(--color-text);
}

.brand-accent__mark {
    display: block;
    width: clamp(6.5rem, 12vw, 9.5rem);
    height: auto;
}

.brand-accent__line {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--color-accent), rgba(44, 100, 187, 0));
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    min-height: 92px;
    border-top: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.78rem;
}

.site-footer span:first-child {
    color: var(--color-text);
    font-weight: 750;
}

@media (max-width: 820px) {
    body {
        background:
            radial-gradient(circle at 90% 70%, rgba(44, 100, 187, 0.07), transparent 17rem),
            var(--color-background);
    }

    .site-header {
        min-height: 96px;
    }

    .coming-soon {
        grid-template-columns: 1fr;
        gap: 3.5rem;
        padding: 4.5rem 0;
    }

    .brand-accent {
        width: min(100%, 460px);
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: min(100% - 28px, 1160px);
    }

    .brand-logo {
        width: 145px;
    }

    .coming-soon {
        padding: 3.75rem 0;
    }

    h1 {
        font-size: clamp(3.05rem, 18vw, 4.6rem);
    }

    .contact {
        align-items: stretch;
        flex-direction: column;
    }

    .contact__button {
        width: 100%;
    }

    .contact__address {
        text-align: center;
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
        gap: 0.25rem;
        padding: 1.25rem 0;
    }
}

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