/* ============================================================
   KRYPTIA.NET
   COMING SOON
============================================================ */

:root {
    --background: #040a13;
    --background-light: #071426;
    --surface: rgba(10, 27, 48, 0.78);

    --blue: #0b2746;
    --blue-light: #17446e;

    --yellow: #f2c94c;
    --yellow-light: #ffe27a;

    --white: #f5f7fa;
    --text: #c4ced9;
    --muted: #708096;

    --border: rgba(255, 255, 255, 0.08);
    --yellow-border: rgba(242, 201, 76, 0.25);

    --max-width: 1180px;
}


/* ============================================================
   RESET
============================================================ */

* {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
    padding: 0;

    min-height: 100vh;

    background:
        radial-gradient(
            circle at 50% 30%,
            #0a2039 0%,
            #06111f 35%,
            #030811 75%
        );

    color: var(--white);

    font-family:
        Inter,
        "Segoe UI",
        Arial,
        sans-serif;

    overflow-x: hidden;

    display: flex;
    flex-direction: column;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ============================================================
   BACKGROUND
============================================================ */

.background {
    position: fixed;
    inset: 0;

    overflow: hidden;

    pointer-events: none;
    z-index: -1;
}

.background-grid {
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.018) 1px,
            transparent 1px
        );

    background-size: 48px 48px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.8),
            transparent 90%
        );
}

.background-glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(130px);

    opacity: 0.13;
}

.glow-one {
    background: #1260a8;

    top: -180px;
    left: -180px;
}

.glow-two {
    background: var(--yellow);

    right: -250px;
    bottom: -300px;

    opacity: 0.05;
}


/* ============================================================
   HEADER
============================================================ */

.site-header {
    width: min(
        calc(100% - 64px),
        var(--max-width)
    );

    min-height: 92px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: auto;
    height: 46px;

    object-fit: contain;
}

.server-status {
    display: flex;
    align-items: center;
    gap: 9px;

    color: var(--muted);

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    background: var(--yellow);

    border-radius: 50%;

    box-shadow:
        0 0 12px rgba(242, 201, 76, 0.65);
}


/* ============================================================
   MAIN
============================================================ */

.main {
    flex: 1;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 70px 24px;
}


/* ============================================================
   HERO
============================================================ */

.hero {
    width: 100%;
    max-width: 760px;

    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
}


/* ============================================================
   LOGO
============================================================ */

.logo-wrapper {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 40px;
}

.logo-glow {
    position: absolute;

    width: 220px;
    height: 120px;

    background: var(--yellow);

    filter: blur(100px);

    opacity: 0.08;

    border-radius: 50%;
}

.hero-logo {
    position: relative;

    width: min(340px, 70vw);
    max-height: 180px;

    object-fit: contain;

    filter:
        drop-shadow(
            0 15px 30px rgba(0, 0, 0, 0.5)
        );
}


/* ============================================================
   EYEBROW
============================================================ */

.eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-bottom: 22px;

    color: var(--yellow);

    font-size: 11px;
    font-weight: 800;

    letter-spacing: 0.28em;
}

.eyebrow span {
    width: 35px;
    height: 1px;

    background: var(--yellow);

    opacity: 0.45;
}


/* ============================================================
   TITLE
============================================================ */

h1 {
    margin: 0;

    max-width: 750px;

    color: var(--white);

    font-size: clamp(
        38px,
        6vw,
        68px
    );

    font-weight: 800;

    line-height: 1.02;

    letter-spacing: -0.045em;
}

h1 strong {
    display: block;

    color: var(--yellow);

    font-weight: inherit;
}


/* ============================================================
   DESCRIPTION
============================================================ */

.hero-description {
    max-width: 620px;

    margin:
        28px auto
        0;

    color: var(--text);

    font-size: 16px;

    line-height: 1.75;
}

.hero-description strong {
    color: var(--white);
    font-weight: 600;
}


/* ============================================================
   SERVER CARD
============================================================ */

.server-card {
    width: 100%;
    max-width: 520px;

    margin-top: 42px;

    padding: 1px;

    border-radius: 15px;

    background:
        linear-gradient(
            135deg,
            var(--yellow-border),
            rgba(255, 255, 255, 0.04),
            rgba(23, 68, 110, 0.35)
        );

    box-shadow:
        0 20px 70px rgba(0, 0, 0, 0.25);
}

.server-card-content {
    width: 100%;

    padding: 23px 28px;

    border-radius: 14px;

    background:
        linear-gradient(
            135deg,
            rgba(11, 39, 70, 0.75),
            rgba(5, 15, 28, 0.94)
        );

    backdrop-filter: blur(16px);

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}

.server-label,
.server-hint {
    color: var(--muted);

    font-size: 10px;
    font-weight: 800;

    letter-spacing: 0.14em;
}

.server-address {
    color: var(--yellow);

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 0.02em;
}


/* ============================================================
   DEVELOPMENT
============================================================ */

.development-status {
    width: 100%;
    max-width: 520px;

    margin-top: 25px;
}

.development-status-header {
    display: flex;
    align-items: center;
    justify-content: space-between;

    margin-bottom: 10px;

    color: var(--muted);

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.development-percentage {
    color: var(--yellow);
}

.progress {
    width: 100%;
    height: 3px;

    overflow: hidden;

    border-radius: 100px;

    background: rgba(255, 255, 255, 0.06);
}

.progress-bar {
    width: 35%;
    height: 100%;

    border-radius: inherit;

    background:
        linear-gradient(
            90deg,
            #c89d22,
            var(--yellow-light)
        );

    box-shadow:
        0 0 15px rgba(242, 201, 76, 0.35);

    animation:
        progressPulse
        3s ease-in-out
        infinite;
}

@keyframes progressPulse {

    0%,
    100% {
        opacity: 0.65;
    }

    50% {
        opacity: 1;
    }
}


/* ============================================================
   FOOTER
============================================================ */

.site-footer {
    width: min(
        calc(100% - 64px),
        var(--max-width)
    );

    min-height: 75px;

    margin: 0 auto;

    border-top: 1px solid var(--border);

    display: flex;
    align-items: center;
    justify-content: center;

    gap: 14px;

    color: var(--muted);

    font-size: 11px;

    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.footer-divider {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background: var(--yellow);
}


/* ============================================================
   TABLET
============================================================ */

@media (max-width: 768px) {

    .site-header {
        width: calc(100% - 40px);
        min-height: 78px;
    }

    .brand-logo {
        height: 38px;
    }

    .server-status {
        font-size: 9px;
    }

    .main {
        padding:
            55px 20px
            65px;
    }

    .logo-wrapper {
        margin-bottom: 32px;
    }

    .hero-description {
        font-size: 15px;
    }

    .site-footer {
        width: calc(100% - 40px);
    }
}


/* ============================================================
   MOBILE
============================================================ */

@media (max-width: 520px) {

    .site-header {
        width: calc(100% - 30px);

        min-height: 68px;
    }

    .brand-logo {
        height: 31px;
    }

    .server-status span:not(.status-dot) {
        display: none;
    }

    .main {
        padding:
            40px 18px
            50px;
    }

    .hero-logo {
        width: min(260px, 75vw);
        max-height: 135px;
    }

    .logo-wrapper {
        margin-bottom: 28px;
    }

    .eyebrow {
        gap: 10px;

        margin-bottom: 17px;

        font-size: 9px;
        letter-spacing: 0.2em;
    }

    .eyebrow span {
        width: 22px;
    }

    h1 {
        font-size: clamp(
            36px,
            12vw,
            52px
        );

        line-height: 1.04;
    }

    .hero-description {
        margin-top: 22px;

        font-size: 14px;

        line-height: 1.65;
    }

    .server-card {
        margin-top: 32px;
    }

    .server-card-content {
        padding: 20px;

        flex-direction: column;

        gap: 8px;
    }

    .server-address {
        font-size: 20px;
    }

    .development-status {
        margin-top: 20px;
    }

    .development-status-header {
        font-size: 8px;
    }

    .site-footer {
        width: calc(100% - 30px);

        min-height: 65px;

        flex-direction: column;

        gap: 5px;

        font-size: 9px;
    }

    .footer-divider {
        display: none;
    }
}


/* ============================================================
   VERY SMALL DEVICES
============================================================ */

@media (max-width: 350px) {

    .main {
        padding-left: 14px;
        padding-right: 14px;
    }

    h1 {
        font-size: 34px;
    }

    .hero-description {
        font-size: 13px;
    }

    .server-address {
        font-size: 18px;
    }
}