:root {
    --navy: #132e50;
    --navy-dark: #0d223c;
    --gray: #777b80;
    --light-gray: #a4a7ab;
    --border: rgba(19, 46, 80, 0.10);
    --background: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: "Manrope", sans-serif;
    background: var(--background);
    color: var(--navy);
}

.page {
    position: relative;
    min-height: 100vh;
    overflow: hidden;

    display: flex;
    flex-direction: column;

    padding: 46px 5vw 30px;

    background:
        radial-gradient(
            circle at 50% 42%,
            rgba(26, 65, 108, 0.035),
            transparent 33%
        ),
        linear-gradient(
            180deg,
            #ffffff 0%,
            #fcfcfc 100%
        );
}

/* AMBIENT BACKGROUND */

.ambient {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.ambient-one {
    width: 700px;
    height: 700px;
    top: -500px;
    right: -250px;

    border: 1px solid rgba(19, 46, 80, 0.045);
}

.ambient-two {
    width: 520px;
    height: 520px;
    bottom: -390px;
    left: -240px;

    border: 1px solid rgba(19, 46, 80, 0.04);
}

/* HEADER */

.header {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: center;
    align-items: center;
}

.logo {
    display: block;

    width: min(390px, 75vw);
    height: auto;

    object-fit: contain;
}

/* HERO */

.hero {
    position: relative;
    z-index: 2;

    flex: 1;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 50px 20px 90px;
}

/* STATUS */

.status {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    margin-bottom: 34px;

    font-size: 10px;
    font-weight: 600;

    letter-spacing: 0.22em;

    color: #8b8f94;
}

.status > span {
    position: relative;

    width: 6px;
    height: 6px;

    border-radius: 50%;

    background: var(--navy);
}

.status > span::before {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(19, 46, 80, 0.18);
    border-radius: 50%;

    animation: pulse 2.5s infinite;
}

/* TITLE */

h1 {
    font-size: clamp(64px, 8vw, 132px);

    line-height: 1;

    letter-spacing: -0.065em;

    font-weight: 500;

    color: var(--navy-dark);

    margin-bottom: 30px;
}

/* INTRO */

.intro {
    font-size: clamp(18px, 1.7vw, 23px);

    font-weight: 500;

    color: #4d5660;

    margin-bottom: 12px;
}

/* DESCRIPTION */

.description {
    max-width: 580px;

    font-size: 14px;

    line-height: 1.8;

    color: #8a8f95;
}

/* SIGNATURE */

.signature {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 20px;

    margin-top: 48px;

    color: #9a9da1;

    font-size: 9px;

    font-weight: 600;

    letter-spacing: 0.23em;
}

.signature .line {
    width: 55px;
    height: 1px;

    background: var(--border);
}

/* FOOTER */

footer {
    position: relative;
    z-index: 2;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding-top: 22px;

    border-top: 1px solid var(--border);

    color: #a1a4a8;

    font-size: 9px;

    font-weight: 500;

    letter-spacing: 0.08em;

    text-transform: uppercase;
}

/* ANIMATION */

@keyframes pulse {

    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    80%,
    100% {
        transform: scale(1.8);
        opacity: 0;
    }

}

/* TABLET */

@media (max-width: 900px) {

    .page {
        padding: 35px 30px 25px;
    }

    .logo {
        width: min(330px, 70vw);
    }

    .hero {
        padding-bottom: 70px;
    }

    h1 {
        font-size: clamp(62px, 12vw, 100px);
    }

}

/* MOBILE */

@media (max-width: 600px) {

    .page {
        min-height: 100svh;

        padding:
            28px 20px
            22px;
    }

    .header {
        padding-top: 5px;
    }

    .logo {
        width: min(285px, 78vw);
    }

    .hero {
        padding:
            40px 5px
            65px;
    }

    .status {
        margin-bottom: 26px;

        font-size: 8px;

        letter-spacing: 0.18em;
    }

    h1 {
        font-size: clamp(54px, 15vw, 78px);

        letter-spacing: -0.055em;

        margin-bottom: 24px;
    }

    .intro {
        font-size: 17px;

        line-height: 1.5;
    }

    .description {
        max-width: 340px;

        font-size: 13px;

        line-height: 1.7;
    }

    .signature {
        margin-top: 38px;

        gap: 12px;

        font-size: 7px;

        letter-spacing: 0.17em;
    }

    .signature .line {
        width: 25px;
    }

    footer {
        flex-direction: column;

        gap: 6px;

        text-align: center;

        font-size: 8px;
    }

}