/* =========================================================
   VESTINUM INDONESIA
   Under Construction Landing Page
   ========================================================= */

/* ---------- Reset ---------- */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;

    font-family: "DM Sans", sans-serif;

    color: #f7f6f2;
    background:
        radial-gradient(
            circle at 15% 15%,
            rgba(134, 108, 70, 0.18),
            transparent 28%
        ),
        #10110f;

    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* =========================================================
   Page
   ========================================================= */

.page {
    position: relative;

    width: 100%;
    min-height: 100vh;

    display: flex;
    flex-direction: column;

    overflow: hidden;

    padding:
        clamp(24px, 4vw, 54px)
        clamp(24px, 6vw, 90px)
        30px;
}


/* =========================================================
   Background
   ========================================================= */

.background-decoration {
    position: absolute;
    inset: 0;

    pointer-events: none;
    overflow: hidden;
}

.grid-pattern {
    position: absolute;
    inset: 0;

    opacity: 0.025;

    background-image:
        linear-gradient(
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(255, 255, 255, 0.9) 1px,
            transparent 1px
        );

    background-size: 55px 55px;

    mask-image:
        linear-gradient(
            to bottom,
            rgba(0, 0, 0, 1),
            transparent 90%
        );
}

.glow {
    position: absolute;

    width: 500px;
    height: 500px;

    border-radius: 50%;

    filter: blur(130px);
    opacity: 0.12;
}

.glow-left {
    left: -280px;
    bottom: -150px;

    background: #c9a369;
}

.glow-right {
    right: -300px;
    top: 100px;

    background: #92744e;
}


/* =========================================================
   Header
   ========================================================= */

.site-header {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
}

.brand {
    display: inline-flex;
    align-items: center;

    gap: 14px;
}

.brand-mark {
    width: 46px;
    height: 46px;

    display: grid;
    place-items: center;

    border: 1px solid rgba(209, 177, 123, 0.55);

    color: #d4b37b;

    font-family: "Manrope", sans-serif;
    font-size: 20px;
    font-weight: 700;

    letter-spacing: -0.05em;
}

.brand-copy {
    display: flex;
    flex-direction: column;

    line-height: 1;
}

.brand-name {
    font-family: "Manrope", sans-serif;
    font-weight: 700;

    font-size: 17px;
    letter-spacing: 0.18em;
}

.brand-country {
    margin-top: 7px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 8px;
    font-weight: 600;

    letter-spacing: 0.4em;
}

.header-status {
    display: flex;
    align-items: center;

    gap: 10px;

    color: rgba(255, 255, 255, 0.48);

    font-size: 12px;
    font-weight: 500;

    letter-spacing: 0.04em;
}

.status-indicator {
    position: relative;

    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: #bba06e;
}

.status-indicator::after {
    content: "";

    position: absolute;
    inset: -5px;

    border: 1px solid rgba(187, 160, 110, 0.32);
    border-radius: 50%;

    animation: statusPulse 2.4s infinite;
}


/* =========================================================
   Main Hero
   ========================================================= */

.hero {
    position: relative;
    z-index: 2;

    width: 100%;
    max-width: 1440px;

    margin: auto;

    display: grid;

    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(360px, 0.75fr);

    align-items: center;

    gap: clamp(60px, 8vw, 140px);

    padding: 70px 0;
}


/* ---------- Hero Copy ---------- */

.hero-content {
    max-width: 780px;
}

.eyebrow {
    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 30px;

    color: #b9a47c;

    font-size: 11px;
    font-weight: 600;

    letter-spacing: 0.18em;

    text-transform: uppercase;
}

.eyebrow-line {
    width: 42px;
    height: 1px;

    background: #b9a47c;
}

.hero-title {
    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(
            50px,
            6.2vw,
            94px
        );

    font-weight: 500;
    line-height: 0.98;

    letter-spacing: -0.055em;
}

.hero-title span {
    display: block;

    margin-top: 6px;

    color: rgba(255, 255, 255, 0.32);
}

.hero-description {
    max-width: 620px;

    margin:
        clamp(28px, 4vw, 46px)
        0
        0;

    color: rgba(255, 255, 255, 0.55);

    font-size: 16px;
    line-height: 1.8;
}

.construction-message {
    display: inline-flex;
    align-items: center;

    gap: 18px;

    margin-top: 45px;

    padding: 16px 20px 16px 16px;

    border:
        1px solid
        rgba(255, 255, 255, 0.08);

    background:
        rgba(255, 255, 255, 0.025);

    backdrop-filter: blur(10px);
}

.construction-icon {
    width: 44px;
    height: 44px;

    display: grid;
    place-items: center;

    flex-shrink: 0;

    background:
        rgba(190, 159, 105, 0.1);

    color: #c6a872;
}

.construction-icon svg {
    width: 23px;
}

.construction-label {
    display: block;

    margin-bottom: 5px;

    color: #c3aa7d;

    font-size: 9px;
    font-weight: 700;

    letter-spacing: 0.22em;
}

.construction-message p {
    margin: 0;

    color:
        rgba(255, 255, 255, 0.66);

    font-size: 13px;
}


/* =========================================================
   Visual Card
   ========================================================= */

.hero-visual {
    width: 100%;

    display: flex;
    justify-content: flex-end;
}

.visual-card {
    position: relative;

    width: min(100%, 445px);

    min-height: 540px;

    display: flex;
    flex-direction: column;

    border:
        1px solid
        rgba(255, 255, 255, 0.12);

    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.065),
            rgba(255, 255, 255, 0.018)
        );

    backdrop-filter: blur(16px);

    box-shadow:
        0 40px 80px
        rgba(0, 0, 0, 0.22);
}

.visual-card::before {
    content: "";

    position: absolute;

    top: -1px;
    left: 12%;

    width: 45%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            #c3a36d,
            transparent
        );
}

.visual-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 22px 24px;

    border-bottom:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.5);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 0.25em;
}

.window-controls {
    display: flex;

    gap: 5px;
}

.window-controls i {
    display: block;

    width: 5px;
    height: 5px;

    border-radius: 50%;

    background: rgba(255, 255, 255, 0.22);
}

.visual-content {
    flex: 1;

    display: flex;
    flex-direction: column;

    padding:
        clamp(28px, 4vw, 44px);
}

.visual-number {
    display: flex;
    justify-content: flex-end;

    color: rgba(255, 255, 255, 0.16);

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    letter-spacing: 0.18em;
}

.visual-heading {
    margin-top: auto;

    font-family: "Manrope", sans-serif;

    font-size:
        clamp(
            33px,
            3.3vw,
            47px
        );

    font-weight: 500;
    line-height: 1.08;

    letter-spacing: -0.045em;
}

.visual-heading::after {
    content: "";

    display: block;

    width: 30px;
    height: 2px;

    margin-top: 26px;

    background: #b99b68;
}

.progress-section {
    margin-top: 48px;
}

.progress-label {
    display: flex;
    justify-content: space-between;

    margin-bottom: 12px;

    color: rgba(255, 255, 255, 0.42);

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 0.08em;
}

.progress-track {
    width: 100%;
    height: 2px;

    background:
        rgba(255, 255, 255, 0.1);

    overflow: hidden;
}

.progress-bar {
    width: 0;
    height: 100%;

    background: #c2a36e;

    transition:
        width 1.4s
        cubic-bezier(
            0.4,
            0,
            0.2,
            1
        );
}

.visual-footer {
    display: flex;
    justify-content: space-between;

    padding: 18px 24px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.28);

    font-size: 9px;

    letter-spacing: 0.16em;

    text-transform: uppercase;
}


/* =========================================================
   Footer
   ========================================================= */

.site-footer {
    position: relative;
    z-index: 3;

    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    gap: 25px;

    padding-top: 26px;

    border-top:
        1px solid
        rgba(255, 255, 255, 0.07);

    color: rgba(255, 255, 255, 0.32);

    font-size: 11px;
}

.site-footer p {
    margin: 0;
}

.footer-right {
    display: flex;
    align-items: center;

    gap: 14px;
}

.footer-right a {
    transition: color 0.25s ease;
}

.footer-right a:hover {
    color: #c5aa78;
}

.footer-separator {
    width: 3px;
    height: 3px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.2);
}


/* =========================================================
   Reveal Animation
   ========================================================= */

.reveal {
    opacity: 0;

    transform:
        translateY(18px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}


/* =========================================================
   Animations
   ========================================================= */

@keyframes statusPulse {

    0% {
        transform: scale(0.8);
        opacity: 1;
    }

    70% {
        transform: scale(1.6);
        opacity: 0;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }

}


/* =========================================================
   Tablet
   ========================================================= */

@media (max-width: 1024px) {

    .page {
        padding:
            32px
            clamp(24px, 5vw, 50px)
            25px;
    }

    .hero {
        grid-template-columns: 1fr;

        gap: 60px;

        padding:
            100px
            0
            70px;
    }

    .hero-content {
        max-width: 760px;
    }

    .hero-visual {
        justify-content: flex-start;
    }

    .visual-card {
        max-width: 560px;
        min-height: 480px;
    }

}


/* =========================================================
   Mobile
   ========================================================= */

@media (max-width: 640px) {

    .page {
        padding:
            24px
            20px
            22px;
    }

    .header-status {
        display: none;
    }

    .brand-mark {
        width: 40px;
        height: 40px;
    }

    .brand-name {
        font-size: 14px;
    }

    .hero {
        gap: 50px;

        padding:
            80px
            0
            60px;
    }

    .eyebrow {
        font-size: 9px;

        margin-bottom: 24px;
    }

    .eyebrow-line {
        width: 28px;
    }

    .hero-title {
        font-size:
            clamp(
                43px,
                14vw,
                65px
            );
    }

    .hero-description {
        font-size: 14px;

        line-height: 1.7;
    }

    .construction-message {
        width: 100%;

        margin-top: 34px;
    }

    .visual-card {
        min-height: 430px;
    }

    .visual-heading {
        font-size: 34px;
    }

    .site-footer {
        flex-direction: column;
        align-items: flex-start;

        padding-top: 20px;
    }

    .footer-right {
        flex-wrap: wrap;
    }

}


/* =========================================================
   Reduced Motion
   ========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;

        animation-duration:
            0.01ms !important;

        animation-iteration-count:
            1 !important;

        transition-duration:
            0.01ms !important;
    }

}