:root {
    --navy: #071533;
    --navy-soft: #13234a;
    --blue: #086fe8;
    --blue-dark: #0b3db8;
    --cyan: #4bc8ff;
    --text: #101a33;
    --muted: #68738a;
    --border: #e6ebf3;
    --white: #ffffff;
    --surface: #f7faff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    min-height: 100vh;
    font-family: "Inter", sans-serif;
    background: var(--white);
    color: var(--text);
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.coming-soon {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}


/* =========================================
   Background
========================================= */

.orb {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: -1;
    filter: blur(1px);
}

.orb-one {
    width: 520px;
    height: 520px;
    right: -240px;
    top: 80px;
    background:
        radial-gradient(
            circle,
            rgba(75, 200, 255, 0.14) 0%,
            rgba(8, 111, 232, 0.05) 45%,
            transparent 70%
        );
}

.orb-two {
    width: 420px;
    height: 420px;
    left: -220px;
    bottom: 30px;
    background:
        radial-gradient(
            circle,
            rgba(8, 111, 232, 0.07) 0%,
            transparent 70%
        );
}


/* =========================================
   Header
========================================= */

.header {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;
    padding: 30px 0;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.brand-icon {
    width: 54px;
    height: 38px;
    display: block;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-name {
    font-size: 21px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--navy);
}

.brand-tagline {
    margin-top: 6px;
    font-size: 7px;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--blue);
}

.header-status {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 12px;
    font-weight: 600;
    color: var(--muted);
}

.status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--blue);
    box-shadow: 0 0 0 5px rgba(8, 111, 232, 0.08);
}


/* =========================================
   Hero
========================================= */

.hero {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;

    flex: 1;

    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;

    gap: 70px;
    padding: 60px 0 80px;
}

.hero-content {
    max-width: 610px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    color: var(--blue);
}

h1 {
    max-width: 620px;

    font-size: clamp(64px, 7vw, 104px);
    line-height: 0.95;
    letter-spacing: -0.065em;
    font-weight: 700;
    color: var(--navy);
}

h1 span {
    color: var(--blue);
}

.hero-description {
    max-width: 520px;

    margin-top: 34px;

    font-size: 18px;
    line-height: 1.75;
    color: var(--muted);
}

.divider {
    width: 58px;
    height: 3px;

    margin: 30px 0 24px;

    background:
        linear-gradient(
            90deg,
            var(--blue-dark),
            var(--cyan)
        );
}

.launch-message {
    max-width: 480px;

    font-size: 14px;
    line-height: 1.7;
    color: var(--text);
}


/* =========================================
   Subscribe
========================================= */

.subscribe-form {
    display: flex;

    width: min(560px, 100%);

    margin-top: 26px;

    padding: 5px;

    background: var(--white);

    border: 1px solid var(--border);

    border-radius: 14px;

    box-shadow:
        0 12px 40px rgba(7, 21, 51, 0.07);
}

.subscribe-form input {
    flex: 1;

    min-width: 0;

    border: 0;
    outline: 0;

    padding: 15px 17px;

    color: var(--text);

    background: transparent;

    font-size: 14px;
}

.subscribe-form input::placeholder {
    color: #9aa4b5;
}

.subscribe-form button {
    border: 0;
    outline: 0;

    padding: 0 22px;

    border-radius: 10px;

    background:
        linear-gradient(
            135deg,
            var(--blue-dark),
            var(--blue)
        );

    color: var(--white);

    font-size: 13px;
    font-weight: 600;

    cursor: pointer;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.subscribe-form button span {
    margin-left: 8px;
    font-size: 16px;
}

.subscribe-form button:hover {
    transform: translateY(-1px);

    box-shadow:
        0 8px 22px rgba(8, 111, 232, 0.24);
}

.privacy-note {
    margin-top: 12px;

    font-size: 11px;
    color: #8a94a7;
}


/* =========================================
   Visual
========================================= */

.hero-visual {
    position: relative;

    min-height: 570px;

    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-glow {
    position: absolute;

    width: 430px;
    height: 430px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8, 111, 232, 0.14),
            rgba(75, 200, 255, 0.05) 40%,
            transparent 70%
        );

    filter: blur(4px);
}

.visual-ring {
    position: absolute;

    border: 1px solid rgba(8, 111, 232, 0.12);

    border-radius: 50%;

    transform: rotate(-18deg);
}

.ring-one {
    width: 500px;
    height: 250px;
}

.ring-two {
    width: 580px;
    height: 330px;
    opacity: 0.55;
}


/* Main visual card */

.visual-card {
    position: relative;

    width: min(520px, 90%);

    min-height: 400px;

    padding: 34px;

    border-radius: 26px;

    background:
        linear-gradient(
            145deg,
            #ffffff 0%,
            #f5f9ff 100%
        );

    border: 1px solid rgba(8, 111, 232, 0.12);

    box-shadow:
        0 35px 80px rgba(7, 21, 51, 0.12);

    overflow: hidden;
}

.visual-card::before {
    content: "";

    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle,
            rgba(8, 111, 232, 0.12),
            transparent 70%
        );
}

.visual-card-top {
    display: flex;
    gap: 6px;

    margin-bottom: 45px;
}

.mini-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #c7d1e1;
}

.mini-dot:first-child {
    background: var(--blue);
}

.visual-logo {
    width: 90px;
    margin-bottom: 28px;
}

.visual-logo svg {
    width: 100%;
    height: auto;
}

.visual-heading {
    position: relative;
    z-index: 2;

    max-width: 390px;

    font-size: 38px;
    line-height: 1.05;
    letter-spacing: -0.045em;
    font-weight: 700;

    color: var(--navy);
}

.visual-lines {
    display: flex;
    flex-direction: column;

    gap: 10px;

    margin-top: 34px;

    opacity: 0.8;
}

.visual-lines span {
    display: block;

    height: 3px;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--blue),
            rgba(8, 111, 232, 0)
        );
}

.visual-lines span:nth-child(1) {
    width: 72%;
}

.visual-lines span:nth-child(2) {
    width: 54%;
}

.visual-lines span:nth-child(3) {
    width: 38%;
}

.visual-bottom {
    position: absolute;

    bottom: 28px;
    left: 34px;
    right: 34px;

    display: flex;
    justify-content: space-between;

    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.16em;

    color: #8b96a8;
}


/* =========================================
   Footer
========================================= */

.footer {
    width: min(1280px, calc(100% - 80px));
    margin: 0 auto;

    padding: 24px 0 28px;

    border-top: 1px solid var(--border);

    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;

    gap: 20px;

    font-size: 11px;
    color: #7d8799;
}

.footer-links {
    text-align: center;
}

.footer-links a {
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--blue);
}

.social-links {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
}

.social-links a {
    width: 28px;
    height: 28px;

    display: grid;
    place-items: center;

    border: 1px solid var(--border);
    border-radius: 50%;

    font-size: 10px;
    font-weight: 700;

    color: var(--navy);

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.social-links a:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: var(--white);
}


/* =========================================
   Accessibility
========================================= */

.sr-only {
    position: absolute;

    width: 1px;
    height: 1px;

    padding: 0;
    margin: -1px;

    overflow: hidden;

    clip: rect(0, 0, 0, 0);

    white-space: nowrap;

    border: 0;
}


/* =========================================
   Responsive
========================================= */

@media (max-width: 1000px) {

    .header,
    .hero,
    .footer {
        width: min(100% - 48px, 720px);
    }

    .hero {
        grid-template-columns: 1fr;
        gap: 50px;
        padding-top: 50px;
    }

    .hero-content {
        max-width: 680px;
    }

    .hero-visual {
        min-height: 460px;
    }

    .visual-card {
        width: min(560px, 90%);
    }

    .footer {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links,
    .social-links {
        justify-content: center;
        text-align: center;
    }
}


@media (max-width: 600px) {

    .header,
    .hero,
    .footer {
        width: calc(100% - 32px);
    }

    .header {
        padding: 22px 0;
    }

    .brand-name {
        font-size: 18px;
    }

    .header-status {
        font-size: 10px;
    }

    .hero {
        padding: 45px 0 55px;
        gap: 30px;
    }

    h1 {
        font-size: clamp(52px, 16vw, 78px);
    }

    .hero-description {
        margin-top: 26px;
        font-size: 15px;
    }

    .subscribe-form {
        flex-direction: column;
        padding: 5px;
    }

    .subscribe-form input {
        padding: 15px;
    }

    .subscribe-form button {
        min-height: 50px;
    }

    .hero-visual {
        min-height: 390px;
    }

    .visual-card {
        min-height: 330px;
        padding: 25px;
        border-radius: 20px;
    }

    .visual-card-top {
        margin-bottom: 28px;
    }

    .visual-heading {
        font-size: 29px;
    }

    .visual-bottom {
        left: 25px;
        right: 25px;
        bottom: 22px;
        font-size: 6px;
    }

    .visual-ring {
        transform: rotate(-18deg) scale(0.75);
    }

    .footer {
        padding: 20px 0;
        gap: 14px;
    }
}