:root {
    color-scheme: light;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #071e49;
    background: #f7fbff;
    font-synthesis: none;
}

* {
    box-sizing: border-box;
}

html,
body {
    min-height: 100%;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 18% 15%, rgb(65 189 226 / 18%), transparent 34rem),
        radial-gradient(circle at 84% 82%, rgb(119 61 204 / 16%), transparent 30rem),
        #f7fbff;
}

.page {
    display: flex;
    min-height: 100vh;
    min-height: 100svh;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: clamp(1rem, 3vh, 2rem);
    padding: clamp(1.25rem, 4vh, 3rem) 1.5rem;
}

.brand-logo {
    display: block;
    width: min(37.8125rem, 88vw);
    max-height: min(72svh, 34.6875rem);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 1.5rem 2.5rem rgb(42 88 161 / 13%));
}

.contact-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45rem 0.75rem;
    min-height: 3.25rem;
    padding: 0.8rem 1.3rem;
    border: 1px solid rgb(54 103 181 / 24%);
    border-radius: 999px;
    color: #173c79;
    background: rgb(255 255 255 / 78%);
    box-shadow: 0 0.75rem 2rem rgb(46 88 151 / 10%);
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    backdrop-filter: blur(0.75rem);
    transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.contact-address {
    color: #6846c7;
    font-weight: 560;
}

.contact-link:hover {
    border-color: rgb(89 69 196 / 52%);
    box-shadow: 0 1rem 2.5rem rgb(67 68 166 / 17%);
    transform: translateY(-2px);
}

.contact-link:focus-visible {
    outline: 3px solid #7350d4;
    outline-offset: 4px;
}

.noscript-contact {
    margin: -1rem 0 0;
    color: #526682;
    font-size: 0.95rem;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 32rem) {
    .contact-link {
        flex-direction: column;
        width: min(100%, 21rem);
    }
}

@media (prefers-reduced-motion: reduce) {
    .contact-link {
        transition: none;
    }
}
