/* --------------------------------
   Base
-------------------------------- */

* {
    box-sizing: border-box;
}

html {
    min-height: 100%;
}

body {
    margin: 0;
    min-height: 100vh;

    background: #f8f8f6;
    color: #111111;

    font-family:
        "Plus Jakarta Sans",
        sans-serif;

    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
}


/* --------------------------------
   Layout
-------------------------------- */

.coming-soon {
    position: relative;

    min-height: 100vh;

    display: flex;
    flex-direction: column;

    padding: 32px 40px;

    overflow: hidden;
}


/* --------------------------------
   Grid
-------------------------------- */

.coming-soon::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            to right,
            rgba(0, 0, 0, .035) 1px,
            transparent 1px
        ),
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, .035) 1px,
            transparent 1px
        );

    background-size: 40px 40px;

    pointer-events: none;
}


/* --------------------------------
   Header
-------------------------------- */

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

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

    width: 100%;
}

.logo {
    font-size: 20px;
    font-weight: 800;

    letter-spacing: -0.05em;
}

.location {
    font-size: 11px;
    font-weight: 600;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #777777;
}


/* --------------------------------
   Hero
-------------------------------- */

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

    width: 100%;
    max-width: 1000px;

    margin: auto 0;

    padding: 100px 0;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 28px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .1em;
    text-transform: uppercase;

    color: #666666;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #111111;

    animation:
        module7-pulse 2.5s ease-in-out infinite;
}

.hero h1 {
    max-width: 900px;

    margin: 0;

    font-size: clamp(
        56px,
        8vw,
        112px
    );

    line-height: .94;

    font-weight: 700;

    letter-spacing: -.065em;
}

.hero-copy {
    max-width: 560px;

    margin: 42px 0 0;

    font-size: 17px;
    line-height: 1.7;

    color: #5f5f5f;
}

.hero-meta {
    display: flex;
    align-items: center;
    gap: 14px;

    margin-top: 48px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: .08em;
    text-transform: uppercase;

    color: #777777;
}

.meta-line {
    width: 32px;
    height: 1px;

    background: #cccccc;
}


/* --------------------------------
   Footer
-------------------------------- */

.footer {
    position: relative;
    z-index: 1;

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

    width: 100%;

    padding-top: 24px;

    border-top: 1px solid rgba(0, 0, 0, .08);

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

    color: #777777;
}

.footer a {
    transition:
        color .2s ease;
}

.footer a:hover {
    color: #111111;
}


/* --------------------------------
   Animation
-------------------------------- */

@keyframes module7-pulse {
    0%,
    100% {
        opacity: .35;
        transform: scale(.9);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}


/* --------------------------------
   Mobile
-------------------------------- */

@media (max-width: 640px) {
    .coming-soon {
        padding: 24px;
    }

    .location {
        display: none;
    }

    .hero {
        padding: 80px 0;
    }

    .hero h1 {
        font-size: clamp(
            52px,
            15vw,
            80px
        );
    }

    .hero-copy {
        margin-top: 32px;

        font-size: 15px;
    }

    .hero-meta {
        margin-top: 36px;

        flex-wrap: wrap;
    }

    .footer {
        align-items: flex-start;

        flex-direction: column;

        gap: 10px;
    }
}


/* --------------------------------
   Reduced Motion
-------------------------------- */

@media (prefers-reduced-motion: reduce) {
    .status-dot {
        animation: none;
    }
}