@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Inter:wght@300;400;500;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    min-height: 100%;
}

body {
    background: #080808;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

.workfolio-page {
    min-height: 100vh;
    width: 100%;
    position: relative;
    overflow: hidden;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255, 255, 255, 0.035),
            transparent 45%
        ),
        #080808;
}

/* Subtle background grid */

.workfolio-page::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.025) 1px,
            transparent 1px
        );

    background-size: 70px 70px;

    mask-image: linear-gradient(
        to bottom,
        transparent,
        black 30%,
        black 70%,
        transparent
    );

    pointer-events: none;
}

/* Background glow */

.glow {
    position: absolute;
    width: 450px;
    height: 450px;
    border-radius: 50%;

    filter: blur(130px);
    opacity: 0.12;

    pointer-events: none;
}

.glow-one {
    background: #ffffff;
    top: -220px;
    left: -150px;
}

.glow-two {
    background: #777777;
    right: -200px;
    bottom: -250px;
}

/* Main container */

.coming-soon {
    width: min(1100px, 90%);
    min-height: 650px;

    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: space-between;

    padding: 35px 0;
}

/* Top */

.top-line {
    display: flex;
    align-items: center;
    gap: 18px;
}

.top-line span {
    height: 1px;
    width: 45px;
    background: rgba(255, 255, 255, 0.35);
}

.top-line p {
    font-size: 10px;
    letter-spacing: 4px;
    color: rgba(255, 255, 255, 0.55);
}

/* Center */

.content {
    text-align: center;
    max-width: 800px;
    margin: auto;
}

/* Status */

.status {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 9px 15px;

    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 100px;

    background: rgba(255, 255, 255, 0.035);

    font-size: 10px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.65);

    margin-bottom: 35px;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: #ffffff;
    border-radius: 50%;

    box-shadow: 0 0 12px rgba(255, 255, 255, 0.8);

    animation: pulse 1.8s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.35;
        transform: scale(0.7);
    }
}

/* Heading */

h1 {
    font-family: "Bebas Neue", sans-serif;

    font-size: clamp(80px, 12vw, 170px);
    line-height: 0.82;

    letter-spacing: -2px;
    text-transform: uppercase;

    font-weight: 400;

    margin-bottom: 35px;
}

h1 span {
    display: block;

    color: transparent;

    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.55);

    margin-left: 70px;
}

/* Description */

.description {
    max-width: 530px;
    margin: auto;

    color: rgba(255, 255, 255, 0.5);

    font-size: 14px;
    line-height: 1.8;
    font-weight: 300;
}

/* Launch box */

.launch-box {
    margin: 45px auto 0;

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 25px;
}

.launch-line {
    width: 70px;
    height: 1px;

    background: rgba(255, 255, 255, 0.15);
}

.launch-box div {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.launch-box small {
    font-size: 8px;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.35);
}

.launch-box strong {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
}

/* Bottom */

.bottom-line {
    display: flex;
    justify-content: space-between;
    align-items: center;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding-top: 20px;
}

.bottom-line p {
    font-size: 8px;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.3);
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .coming-soon {
        width: 86%;
        min-height: 620px;
        padding: 25px 0;
    }

    .top-line {
        gap: 12px;
    }

    .top-line span {
        width: 25px;
    }

    .top-line p {
        font-size: 8px;
        letter-spacing: 3px;
    }

    .content {
        width: 100%;
    }

    .status {
        font-size: 8px;
        letter-spacing: 2px;

        padding: 8px 12px;

        margin-bottom: 30px;
    }

    h1 {
        font-size: clamp(70px, 21vw, 110px);
        line-height: 0.84;
        letter-spacing: -1px;

        margin-bottom: 30px;
    }

    h1 span {
        margin-left: 20px;
        -webkit-text-stroke: 0.7px rgba(255, 255, 255, 0.55);
    }

    .description {
        width: 90%;
        font-size: 12px;
        line-height: 1.7;
    }

    .launch-box {
        margin-top: 35px;
        gap: 12px;
    }

    .launch-line {
        width: 30px;
    }

    .launch-box strong {
        font-size: 9px;
        letter-spacing: 2px;
    }

    .launch-box small {
        font-size: 7px;
    }

    .bottom-line {
        padding-top: 15px;
    }

    .bottom-line p {
        font-size: 6px;
        letter-spacing: 1.5px;
    }

}