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

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

body {
    font-family: "Inter", sans-serif;
    color: #08143d;
    background: #dcecff;
}


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

.maintenance-page {
    position: relative;

    min-height: 100vh;

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

    padding: 6vh 4vw;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 18% 17%,
            rgba(255,255,255,.95) 0,
            rgba(255,255,255,.30) 25%,
            transparent 46%
        ),
        linear-gradient(
            135deg,
            #e5f2ff 0%,
            #d8eaff 45%,
            #d2e6ff 100%
        );
}


/* decorative background elements */

.background-shape {
    position: absolute;

    border-radius: 50%;

    pointer-events: none;
}

.background-shape--one {
    width: 650px;
    height: 650px;

    top: -380px;
    right: -100px;

    background: rgba(157, 201, 255, .22);
}

.background-shape--two {
    width: 800px;
    height: 800px;

    bottom: -600px;
    left: -280px;

    border: 4px solid rgba(69, 142, 239, .18);
}

.background-line {
    position: absolute;

    width: 500px;
    height: 500px;

    top: -330px;
    left: 170px;

    border: 5px solid rgba(63, 137, 234, .18);
    border-radius: 50%;
}


/* =====================================
   MAIN CARD
===================================== */

.maintenance-card {
    position: relative;

    width: min(1400px, 100%);
    min-height: 830px;

    display: grid;
    grid-template-columns: 43% 57%;

    background: rgba(255, 255, 255, .95);

    border-radius: 24px;

    overflow: hidden;

    box-shadow:
        0 35px 80px rgba(55, 117, 190, .14);
}


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

.maintenance-content {
    position: relative;

    z-index: 5;

    padding:
        clamp(50px, 6vw, 84px)
        clamp(45px, 6vw, 100px);

    display: flex;
    flex-direction: column;
}


/* brand */

.brand {
    display: inline-flex;
    align-items: center;

    width: fit-content;

    text-decoration: none;

    font-size: clamp(25px, 2.3vw, 38px);
    font-weight: 800;
    font-style: italic;

    letter-spacing: -2px;

    line-height: 1;
}

.brand-fan {
    color: #1265ef;
}

.brand-link {
    color: #ff8a24;
}

.brand img{
        width: 200px;
    }
/* body */

.content-wrapper {
    margin-top: clamp(75px, 9vh, 105px);
}

.eyebrow {
    display: inline-flex;

    padding: 8px 12px;

    border-radius: 6px;

    background: #e6f1ff;

    color: #1265ef;

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

    letter-spacing: 4px;
}


h1 {
    margin-top: 24px;

    font-size: clamp(62px, 5vw, 95px);
    font-weight: 800;

    line-height: .88;

    letter-spacing: -5px;

    color: #07133e;
}

h1 span {
    display: block;

    color: #086aff;
}


.content-wrapper p {
    max-width: 495px;

    margin-top: 28px;

    color: #7686aa;

    font-size: clamp(17px, 1.4vw, 22px);
    font-weight: 400;

    line-height: 1.55;
}


/* button */

.stay-tuned-btn {
    margin-top: 34px;

    width: fit-content;

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

    gap: 20px;

    min-width: 225px;

    padding: 21px 30px;

    border-radius: 21px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #096aff 0%,
        #0060ee 100%
    );

    text-decoration: none;

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

    letter-spacing: .4px;

    box-shadow:
        0 18px 35px rgba(7, 101, 245, .26);

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}

.stay-tuned-btn:hover {
    transform: translateY(-3px);

    box-shadow:
        0 23px 45px rgba(7, 101, 245, .32);
}


/* =====================================
   RIGHT SIDE
===================================== */

.maintenance-visual {
    position: relative;

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

    padding:
        100px
        35px
        100px
        0;

    overflow: hidden;
}


/* subtle glow behind image */

.visual-glow {
    position: absolute;

    width: 720px;
    height: 520px;

    border-radius: 50%;
  
    right: -80px;
    bottom: 65px;
}


/* illustration */

.maintenance-visual img {
    position: relative;

    z-index: 2;

    width: min(100%, 780px);
    height: auto;

    object-fit: contain;

    transform: translateY(50px);
}


/* optional floating note */

.feature-note {
    position: absolute;

    z-index: 4;

    top: 37%;
    right: 35px;

    width: 145px;

    padding: 22px 20px;

    border-radius: 30px;

    background: rgba(234, 243, 255, .96);

    color: #1747b3;

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

    line-height: 1.25;

    transform: rotate(-5deg);

    box-shadow:
        0 15px 35px rgba(32, 101, 197, .06);
}

.feature-note span {
    display: block;
}


/* =====================================
   TAGLINE
===================================== */

.tagline {
    position: absolute;

    bottom: 36px;
    left: 50%;

    transform: translateX(-50%);

    display: flex;
    align-items: center;

    gap: 17px;

    color: #7284ad;

    font-size: 14px;
    font-weight: 500;

    letter-spacing: 4px;

    white-space: nowrap;
}

.tagline-line {
    width: 35px;
    height: 2px;

    background: #9ebdeb;
}


/* =====================================
   RESPONSIVE
===================================== */

@media (max-width: 1200px) {

    .maintenance-card {
        min-height: 720px;
        grid-template-columns: 47% 53%;
    }

    h1 {
        font-size: 70px;
    }

    .feature-note {
        right: 10px;
    }

}


@media (max-width: 900px) {

    .maintenance-page {
        padding: 25px;
    }

    .maintenance-card {
        min-height: auto;

        display: flex;
        flex-direction: column;

        border-radius: 20px;
    }

    .maintenance-content {
        padding: 45px 40px 20px;
    }

    .content-wrapper {
        margin-top: 55px;
    }

    h1 {
        font-size: clamp(54px, 12vw, 78px);
    }

    .content-wrapper p {
        max-width: 600px;
    }

    .maintenance-visual {
        min-height: 430px;

        padding: 0 25px 80px;
    }

    .maintenance-visual img {
        width: min(100%, 650px);

        transform: none;
    }

    .feature-note {
        top: 12%;
        right: 25px;
    }

    .tagline {
        bottom: 24px;
    }

}


@media (max-width: 600px) {

    .maintenance-page {
        align-items: flex-start;

        padding: 15px;
    }

    .maintenance-card {
        border-radius: 18px;
    }

    .maintenance-content {
        padding:
            35px
            25px
            10px;
    }

    .brand {
        font-size: 27px;
    }
    .brand img{
        width: 200px;
    }

    .content-wrapper {
        margin-top: 50px;
    }

    .eyebrow {
        font-size: 11px;

        letter-spacing: 3px;
    }

    h1 {
        margin-top: 20px;

        font-size: 53px;

        letter-spacing: -3px;
    }

    .content-wrapper p {
        margin-top: 22px;

        font-size: 16px;
    }

    .stay-tuned-btn {
        min-width: auto;

        padding: 17px 23px;

        border-radius: 16px;

        font-size: 14px;
    }

    .maintenance-visual {
        min-height: 320px;

        padding:
            30px
            10px
            75px;
    }

    .maintenance-visual img {
        width: 100%;
    }

    .feature-note {
        display: none;
    }

    .tagline {
        width: 100%;

        justify-content: center;

        gap: 10px;

        font-size: 10px;

        letter-spacing: 2px;
    }

    .tagline-line {
        width: 25px;
    }

}