@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Regular.ttf") format("truetype");
    font-style: normal;
    font-weight: 400;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Semibold.ttf") format("truetype");
    font-style: normal;
    font-weight: 600;
    font-display: swap;
}

@font-face {
    font-family: "Source Sans 3";
    src: url("../fonts/SourceSans3-Bold.ttf") format("truetype");
    font-style: normal;
    font-weight: 700;
    font-display: swap;
}

:root {
    --charcoal: #222a2e;
    --rain-blue: #2d8ecf;
    --warm-yellow: #f2c14e;
    --cloud: #f4f7f8;
    --white: #ffffff;
    color-scheme: light;
    font-family: "Source Sans 3", "Helvetica Neue", Arial, sans-serif;
    font-synthesis: none;
}

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

html {
    min-height: 100%;
    background: var(--cloud);
}

body {
    min-height: 100vh;
    min-height: 100svh;
    margin: 0;
    display: grid;
    place-items: center;
    padding:
        max(1.5rem, env(safe-area-inset-top))
        max(1.5rem, env(safe-area-inset-right))
        max(1.5rem, env(safe-area-inset-bottom))
        max(1.5rem, env(safe-area-inset-left));
    color: var(--charcoal);
    background: var(--cloud);
}

.coming-soon {
    width: min(100%, 42rem);
    text-align: center;
}

.brand {
    width: clamp(15rem, 52vw, 30rem);
    margin-inline: auto;
}

.brand svg {
    display: block;
    width: 100%;
    height: auto;
}

h1 {
    margin: clamp(1rem, 3vw, 1.75rem) 0 0;
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    letter-spacing: -0.035em;
}

.accent {
    display: block;
    width: clamp(3.75rem, 10vw, 5.25rem);
    height: 0.45rem;
    margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
    border-radius: 999px;
    background: var(--warm-yellow);
}

@media (max-width: 28rem) {
    .brand {
        width: min(100%, 19rem);
    }
}

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