/* ========================================
   RESET
======================================== */

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


/* ========================================
   PAGE
======================================== */

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

body {
    background: #050505;
    color: #ffffff;

    font-family: Arial, Helvetica, sans-serif;
}


/* ========================================
   OWNER LOGIN
======================================== */

.owner-login {
    position: fixed;

    top: 18px;
    right: 45px;

    z-index: 10;

    display: inline-block;

    margin: 0;
    padding: 4px 0;

    background: none;
    border: none;
    outline: none;

    color: rgba(255, 255, 255, 0.28);

    font-family: Arial, Helvetica, sans-serif;
    font-size: 8px;
    font-weight: 600;

    line-height: 1;

    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;

    cursor: pointer;

    transition:
        color 0.2s ease,
        opacity 0.2s ease;
}

.owner-login:visited {
    color: rgba(255, 255, 255, 0.28);
}

.owner-login:hover {
    color: rgba(255, 255, 255, 0.75);
}

.owner-login:active {
    color: #ffffff;
}

.owner-login:focus-visible {
    color: rgba(255, 255, 255, 0.75);

    outline: 1px solid rgba(255, 255, 255, 0.25);
    outline-offset: 6px;
}


/* ========================================
   MAINTENANCE
======================================== */

.maintenance-page {
    width: 100%;

    min-height: 100vh;
    min-height: 100dvh;

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

    padding: 40px 24px;
}


/* ========================================
   CONTENT
======================================== */

.maintenance-content {
    width: 100%;
    max-width: 760px;

    text-align: center;
}


/* ========================================
   KN
======================================== */

.brand {
    margin-bottom: 28px;

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

    letter-spacing: 6px;
}


/* ========================================
   DIVIDER
======================================== */

.divider {
    width: 36px;
    height: 1px;

    margin: 0 auto 28px;

    background: rgba(255, 255, 255, 0.35);
}


/* ========================================
   SITE NAME
======================================== */

.site-name {
    margin-bottom: 35px;

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

    letter-spacing: 3px;

    color: rgba(255, 255, 255, 0.5);
}


/* ========================================
   OOPS
======================================== */

h1 {
    margin-bottom: 35px;

    font-size: clamp(72px, 14vw, 150px);
    font-weight: 700;

    line-height: 0.8;
    letter-spacing: -6px;
}


/* ========================================
   HEADING
======================================== */

h2 {
    margin-bottom: 28px;

    font-size: clamp(18px, 3vw, 28px);
    font-weight: 500;

    line-height: 1.3;
    letter-spacing: 1px;
}


/* ========================================
   MESSAGE
======================================== */

.message {
    font-size: 12px;

    line-height: 1.8;
    letter-spacing: 0.5px;

    color: rgba(255, 255, 255, 0.55);
}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 600px) {

    .owner-login {
        top: 20px;
        right: 20px;

        font-size: 7px;
        letter-spacing: 1.5px;
    }

    .maintenance-page {
        padding: 60px 20px 30px;
    }

    .brand {
        font-size: 16px;
        letter-spacing: 5px;
    }

    .site-name {
        letter-spacing: 2px;
    }

    h1 {
        letter-spacing: -4px;
    }

    h2 {
        font-size: 18px;
    }
}