@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-400.ttf") format("truetype");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-500.ttf") format("truetype");
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Roboto";
    src: url("../fonts/roboto-700.ttf") format("truetype");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    color-scheme: light;
    --blue-50: #eff9fe;
    --blue-100: #d9f0fb;
    --blue-200: #b8e2f5;
    --blue-500: #4fa8d3;
    --blue-700: #226f96;
    --ink: #183244;
    --muted: #5f7686;
    --white: #ffffff;
    --sun: #f8c957;
    --sun-dark: #d99b1f;
    --line: rgba(79, 168, 211, .26);
}

* {
    box-sizing: border-box;
}

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

body {
    margin: 0;
    font-family: "Roboto", Arial, Helvetica, sans-serif;
    color: var(--ink);
    background:
        linear-gradient(180deg, rgba(184, 226, 245, .62) 0 30%, rgba(255, 255, 255, .98) 30% 64%, rgba(184, 226, 245, .48) 64% 100%);
}

.page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 24px;
}

.hero {
    width: min(1040px, 100%);
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(280px, .96fr);
    align-items: center;
    gap: 44px;
    padding: 48px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: 0 24px 60px rgba(34, 111, 150, .16);
    overflow: hidden;
}

.copy {
    max-width: 560px;
}

.sun {
    width: 48px;
    height: 48px;
    margin-bottom: 22px;
    border-radius: 50%;
    background: radial-gradient(circle at 34% 34%, #ffeab0, var(--sun) 58%, var(--sun-dark));
    box-shadow: 0 0 0 9px rgba(248, 201, 87, .16), 0 12px 28px rgba(217, 155, 31, .16);
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue-700);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
}

h1 {
    margin: 0;
    font-size: clamp(42px, 7vw, 76px);
    line-height: .98;
    font-weight: 700;
    letter-spacing: 0;
}

.lead {
    max-width: 520px;
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 19px;
    line-height: 1.55;
}

.status {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    margin-top: 30px;
    padding: 0 18px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--blue-50);
    color: var(--blue-700);
    font-size: 15px;
    font-weight: 700;
}

.visual {
    display: grid;
    place-items: center;
    min-width: 0;
}

.visual img {
    width: min(380px, 100%);
    height: auto;
    display: block;
    filter: drop-shadow(0 22px 38px rgba(34, 111, 150, .18));
}

@media (max-width: 780px) {
    .page {
        align-items: start;
        padding: 16px;
    }

    .hero {
        min-height: auto;
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 30px 22px;
    }

    .visual {
        order: -1;
    }

    .visual img {
        width: min(250px, 72vw);
    }

    .lead {
        font-size: 17px;
    }
}
