/* =========================================================
   LARIFY3D — COMING SOON
   FINAL CLEAN CSS
   Reference-image aligned / single-screen layout
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #123777;

    background:
        radial-gradient(
            circle at 50% 28%,
            #ffffff 0%,
            #f2faff 18%,
            #d9efff 43%,
            #b9defb 72%,
            #a2d2f7 100%
        );
}


/* =========================================================
   BACKGROUND GLOW
========================================================= */

body::before {
    content: "";
    position: fixed;
    inset: 0;

    pointer-events: none;
    z-index: 0;

    background:
        radial-gradient(
            circle at 50% 18%,
            rgba(255, 255, 255, 0.95),
            transparent 28%
        ),
        radial-gradient(
            circle at 10% 65%,
            rgba(95, 180, 255, 0.18),
            transparent 25%
        ),
        radial-gradient(
            circle at 90% 65%,
            rgba(150, 120, 255, 0.14),
            transparent 24%
        );
}


/* =========================================================
   PARTICLES
========================================================= */

#particles {
    position: fixed;
    inset: 0;

    overflow: hidden;
    pointer-events: none;

    z-index: 1;
}

.particle {
    position: absolute;

    width: 4px;
    height: 4px;

    border-radius: 50%;

    background: #ffffff;

    box-shadow:
        0 0 7px #ffffff,
        0 0 16px rgba(255, 255, 255, 0.95);

    animation:
        particleMove
        linear
        infinite;
}

.particle.blue {
    background: #65b9f5;

    box-shadow:
        0 0 8px #65b9f5,
        0 0 17px rgba(101, 185, 245, 0.8);
}

@keyframes particleMove {

    0% {
        transform:
            translate3d(0, 0, 0)
            scale(0.65);

        opacity: 0.15;
    }

    25% {
        opacity: 0.7;
    }

    50% {
        opacity: 1;
    }

    75% {
        opacity: 0.55;
    }

    100% {
        transform:
            translate3d(var(--move-x), var(--move-y), 0)
            scale(1.25);

        opacity: 0.12;
    }
}


/* =========================================================
   PAGE
========================================================= */

.page {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    padding: 0;

    overflow: hidden;

    z-index: 2;
}


/* =========================================================
   STATIC 3D BACKGROUND SCENE
========================================================= */

.coming-soon-page {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    overflow: hidden;
}

.scene-layer {
    position: fixed;
    inset: 0;

    width: 100%;
    height: 100vh;

    pointer-events: none;
    overflow: hidden;

    z-index: 1;
}

.scene-layer img {
    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center center;

    display: block;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

header {
    position: absolute;

    top: 24px;
    left: 64px;
    right: 64px;

    height: 70px;

    display: flex;
    align-items: flex-start;
    justify-content: flex-start;

    z-index: 30;
}



/* =========================================================
   CLOCK
   FIXED TO VIEWPORT
   This prevents it from moving with .hero
========================================================= */

.clock-area {
    position: fixed !important;

    top: 42px !important;
    left: 50% !important;

    width: 250px;
    height: 250px;

    transform:
        translateX(-50%)
        scale(0.76);

    margin: 0 !important;

    display: grid;
    place-items: center;

    z-index: 6;

    pointer-events: none;
}


/* =========================================================
   CLOCK ORBITS
========================================================= */

.orbit {
    position: absolute;

    border:
        1px solid
        rgba(255, 255, 255, 0.92);

    border-radius: 50%;

    box-shadow:
        0 0 15px
        rgba(255, 255, 255, 0.55);

    animation:
        orbitRotate
        22s
        linear
        infinite;
}

.orbit-one {
    width: 238px;
    height: 238px;
}

.orbit-two {
    width: 198px;
    height: 198px;

    animation-duration: 15s;
    animation-direction: reverse;
}

.orbit::after {
    content: "";

    position: absolute;

    width: 8px;
    height: 8px;

    border-radius: 50%;

    background: #55b9ff;

    box-shadow:
        0 0 10px #55b9ff,
        0 0 22px rgba(85, 185, 255, 0.75);

    top: 7%;
    left: 17%;
}

@keyframes orbitRotate {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}


/* =========================================================
   CLOCK FACE
========================================================= */

.clock {
    position: relative;

    width: 176px;
    height: 176px;

    border-radius: 50%;

    background:
        radial-gradient(
            circle at 32% 25%,
            #ffffff,
            #f4fbff 38%,
            #d7efff 78%,
            #c1e4fc 100%
        );

    border:
        6px solid
        #3a91e8;

    box-shadow:
        inset
        0 0 25px
        rgba(29, 119, 223, 0.14),

        0 0 18px
        rgba(74, 174, 255, 0.45),

        0 18px 42px
        rgba(35, 109, 181, 0.22);

    z-index: 5;
}

.clock::before {
    content: "";

    position: absolute;

    width: 55px;
    height: 25px;

    left: 25px;
    top: 16px;

    border-radius: 50%;

    background:
        rgba(255, 255, 255, 0.55);

    filter: blur(5px);

    transform: rotate(-25deg);
}

.clock-tick {
    position: absolute;

    left: 50%;
    top: 50%;

    width: 2px;
    height: 9px;

    background: #2d62a3;

    transform-origin:
        50% 72px;

    border-radius: 3px;
}

.clock-hand {
    position: absolute;

    left: 50%;
    bottom: 50%;

    transform-origin:
        50% 100%;

    border-radius: 5px;

    transform:
        translateX(-50%);

    z-index: 8;
}

.hour-hand {
    width: 5px;
    height: 45px;

    background: #153b83;
}

.minute-hand {
    width: 4px;
    height: 61px;

    background: #1976df;
}

.second-hand {
    width: 2px;
    height: 67px;

    background: #48aaff;

    box-shadow:
        0 0 5px #48aaff;
}

.clock-pin {
    position: absolute;

    width: 13px;
    height: 13px;

    left: 50%;
    top: 50%;

    transform:
        translate(-50%, -50%);

    background:
        radial-gradient(
            circle at 35% 30%,
            #ffffff,
            #36a2ff 45%,
            #126bd0 100%
        );

    border-radius: 50%;

    box-shadow:
        0 0 10px #55baff;

    z-index: 10;
}


/* =========================================================
   HERO CONTENT
   IMPORTANT:
   No clock positioning here.
========================================================= */

.hero,
.content,
.coming-soon {
    position: absolute;

    top: 287px;
    left: 50%;

    width: min(900px, 90vw);

    transform: translateX(-50%);

    display: flex;
    flex-direction: column;
    align-items: center;

    margin: 0;
    padding: 0;

    z-index: 12;
}


/* =========================================================
   EYEBROW
========================================================= */

.eyebrow,
.tagline,
.hero-subtitle {
    margin: 0 0 8px;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 7px;

    color: #315894;

    text-align: center;

    text-shadow:
        0 1px 0 white;
}


/* =========================================================
   MAIN HEADING
========================================================= */

h1 {
    margin: 0 0 13px;

    font-size:
        clamp(
            52px,
            5.25vw,
            78px
        );

    line-height: 0.95;

    letter-spacing: -3px;

    font-weight: 800;

    white-space: nowrap;

    color: #0f3578;

    text-align: center;

    text-shadow:
        0 3px 12px
        rgba(39, 104, 177, 0.08);
}

h1 span {
    color: #3198ee;
}


/* =========================================================
   SUBTITLE
========================================================= */

.subtitle {
    max-width: 680px;

    margin: 0 0 18px;

    font-size: 17px;

    line-height: 1.4;

    color: #31578d;

    text-align: center;
}


/* =========================================================
   EMAIL SIGNUP
========================================================= */

.signup,
.newsletter,
.email-form,
.subscribe-form {
    width: 535px;
    max-width: 72vw;

    height: 58px;

    margin: 0 auto;

    border-radius: 32px;

    background:
        rgba(255, 255, 255, 0.80);

    border:
        1px solid
        rgba(38, 120, 220, 0.17);

    display: flex;

    align-items: center;

    padding:
        6px
        7px
        6px
        20px;

    box-shadow:
        0 12px 35px
        rgba(30, 101, 184, 0.14);

    backdrop-filter:
        blur(14px);
}

.signup:focus-within,
.newsletter:focus-within,
.email-form:focus-within,
.subscribe-form:focus-within {
    box-shadow:
        0 15px 40px
        rgba(30, 101, 184, 0.22);
}

.signup input,
.newsletter input,
.email-form input,
.subscribe-form input {
    flex: 1;

    min-width: 0;

    border: none;
    outline: none;

    background: transparent;

    font-size: 15px;

    color: #1c4d8e;
}

.signup input::placeholder,
.newsletter input::placeholder,
.email-form input::placeholder,
.subscribe-form input::placeholder {
    color: #7190b2;
}

.signup button,
.newsletter button,
.email-form button,
.subscribe-form button {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #359af1,
            #1977dd
        );

    color: white;

    font-size: 23px;

    cursor: pointer;

    box-shadow:
        0 7px 16px
        rgba(30, 119, 221, 0.28);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.signup button:hover,
.newsletter button:hover,
.email-form button:hover,
.subscribe-form button:hover {
    transform: scale(1.08);

    box-shadow:
        0 10px 20px
        rgba(30, 119, 221, 0.36);
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 13px;

    margin-top: 20px;

    flex-wrap: nowrap;
}


/* Support existing .time-box markup */
.time-box,
.countdown > div {
    width: 94px;
    min-width: 94px;

    height: 74px;

    padding: 9px 8px;

    border:
        1px solid
        rgba(38, 120, 220, 0.17);

    background:
        rgba(255, 255, 255, 0.53);

    border-radius: 14px;

    backdrop-filter:
        blur(10px);

    box-shadow:
        0 7px 20px
        rgba(50, 120, 190, 0.08);

    display: flex;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    transition:
        transform 0.25s ease;
}

.time-box:hover,
.countdown > div:hover {
    transform: translateY(-3px);
}

.time-box strong,
.countdown .number {
    display: block;

    font-size: 26px;

    line-height: 1.1;

    color: #123a80;
}

.time-box small,
.countdown .label {
    display: block;

    margin-top: 4px;

    font-size: 10px;

    text-transform: uppercase;

    letter-spacing: 1.4px;

    color: #52719d;
}


/* =========================================================
   SCENE / 3D OBJECT LAYER
========================================================= */

.scene {
    position: absolute;

    left: 50%;
    bottom: 105px;

    transform: translateX(-50%);

    width: min(1100px, 96vw);

    height: 285px;

    perspective: 1000px;

    transform-style: preserve-3d;

    pointer-events: none;

    z-index: 4;
}


/* =========================================================
   CONTACT FOOTER
   ALWAYS AT BOTTOM
========================================================= */

footer {
    position: absolute !important;

    left: 50%;
    bottom: 25px;

    width: min(860px, 82vw);

    height: 62px;

    transform: translateX(-50%);

    margin: 0 !important;
    padding: 0 !important;

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 25;
}

.contact {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 45px;

    margin: 0 !important;
    padding: 0 !important;

    color: #123a80;
}

.contact-item {
    flex: 1;

    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    min-width: 0;

    font-size: 13px;

    white-space: nowrap;
}

.contact-item b {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;
}

.contact-item a {
    color: #123a80;

    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}


/* =========================================================
   CONTACT ICONS
========================================================= */

.contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    border-radius: 50%;

    display: grid;
    place-items: center;

    color: white;

    font-size: 19px;

    background:
        linear-gradient(
            145deg,
            #2387e8,
            #0754bd
        );

    box-shadow:
        0 8px 17px
        rgba(29, 103, 190, 0.22);
}


/* =========================================================
   REMOVE ALL SOCIAL ICONS
========================================================= */

.social,
.social-links,
.social-icons,
footer .social,
footer .social-links,
footer .social-icons {
    display: none !important;
}


/* =========================================================
   REMOVE EXTRA FOOTER TEXT
========================================================= */

.footer,
.footer-tagline,
footer .tagline {
    display: none !important;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    left: 50%;
    bottom: 22px;

    transform:
        translate(-50%, 70px);

    opacity: 0;

    transition: 0.3s;

    background: #103579;

    color: white;

    padding:
        11px
        18px;

    border-radius: 22px;

    z-index: 100;

    font-size: 13px;

    box-shadow:
        0 10px 25px
        rgba(0, 0, 0, 0.18);
}

.toast.show {
    opacity: 1;

    transform:
        translate(-50%, 0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    header {
        left: 35px;
        right: 35px;
    }

    .hero,
    .content,
    .coming-soon {
        top: 275px;

        width: 92vw;
    }

    h1 {
        font-size: clamp(46px, 7vw, 68px);
    }

    .contact {
        gap: 18px;
    }

    .contact-item {
        font-size: 12px;
    }

    .contact-item b {
        font-size: 12px;
    }

    footer {
        width: 90vw;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .page,
    .coming-soon-page {
        min-height: 560px;
    }

    header {
        top: 15px;

        left: 20px;
        right: 20px;

        height: 55px;
    }




    /* Hero moves down enough to avoid clock */
    .hero,
    .content,
    .coming-soon {
        top: 210px;

        width: 94vw;
    }

    .eyebrow,
    .tagline,
    .hero-subtitle {
        font-size: 9px;
        letter-spacing: 4px;

        margin-bottom: 7px;
    }

    h1 {
        font-size: 42px;

        letter-spacing: -1.5px;

        margin-bottom: 10px;
    }

    .subtitle {
        max-width: 90vw;

        font-size: 14px;

        line-height: 1.35;

        margin-bottom: 14px;
    }

    .signup,
    .newsletter,
    .email-form,
    .subscribe-form {
        width: 90vw;
        max-width: 90vw;

        height: 54px;
    }

    .signup button,
    .newsletter button,
    .email-form button,
    .subscribe-form button {
        width: 43px;
        height: 43px;
    }

    .countdown {
        gap: 7px;

        margin-top: 15px;
    }

    .time-box,
    .countdown > div {
        width: 72px;
        min-width: 72px;

        height: 62px;

        padding: 7px 5px;
    }

    .time-box strong,
    .countdown .number {
        font-size: 21px;
    }

    .time-box small,
    .countdown .label {
        font-size: 8px;

        letter-spacing: 1px;
    }


    /* Footer remains bottom, but becomes compact */
    footer {
        left: 50%;
        bottom: 8px;

        width: 94vw;

        height: 58px;
    }

    .contact {
        gap: 8px;
    }

    .contact-item {
        gap: 7px;

        font-size: 10px;
    }

    .contact-item b {
        font-size: 10px;
    }

    .contact-icon {
        width: 35px;
        height: 35px;

        font-size: 15px;
    }


    /* Scene becomes smaller */
    .scene {
        width: 100vw;

        height: 200px;

        bottom: 72px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    header {
        left: 12px;
        right: 12px;
    }


    .clock-area {
        top: 36px !important;

        transform:
            translateX(-50%)
            scale(0.53);
    }

    .hero,
    .content,
    .coming-soon {
        top: 190px;
    }

    .eyebrow,
    .tagline,
    .hero-subtitle {
        font-size: 8px;

        letter-spacing: 3px;
    }

    h1 {
        font-size: 35px;

        letter-spacing: -1px;
    }

    .subtitle {
        font-size: 12px;
    }

    .signup,
    .newsletter,
    .email-form,
    .subscribe-form {
        width: 94vw;
    }

    .countdown {
        gap: 5px;
    }

    .time-box,
    .countdown > div {
        width: 68px;
        min-width: 68px;

        height: 58px;
    }

    .time-box strong,
    .countdown .number {
        font-size: 19px;
    }

    .contact-item {
        font-size: 8px;
    }

    .contact-item b {
        font-size: 9px;
    }

    .contact-icon {
        width: 31px;
        height: 31px;

        font-size: 13px;
    }

    footer {
        width: 98vw;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;
    }
}









/*css fimnal override*/

/* =========================================================
   LARIFY3D — FINAL LAYOUT FIX
   DO NOT ADD ANOTHER POSITIONING BLOCK AFTER THIS
========================================================= */


/* =========================================================
   1. GLOBAL PAGE
========================================================= */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;

    overflow: hidden !important;
}

body {
    position: relative;

    font-family: "Segoe UI", Arial, sans-serif;

    color: #123777;
}


/* =========================================================
   2. BACKGROUND IMAGE
========================================================= */

.scene-layer {
    position: fixed !important;

    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 1 !important;

    pointer-events: none !important;

    overflow: hidden !important;
}

.scene-layer img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* =========================================================
   3. PAGE CONTAINER
========================================================= */

.page {
    position: relative !important;

    width: 100% !important;
    height: 100vh !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    z-index: 2 !important;
}




/* ========================================================
   9. HERO CONTENT
   ONLY TEXT + EMAIL + COUNTDOWN
========================================================= */

.hero {
    position: absolute !important;

    top: 292px !important;
    left: 50% !important;

    width: min(850px, 90vw) !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;

    text-align: center !important;

    z-index: 20 !important;
}


/* =========================================================
   10. EYEBROW
========================================================= */

.hero .eyebrow {
    margin: 0 0 8px !important;

    font-size: 12px !important;

    line-height: 1 !important;

    letter-spacing: 7px !important;

    white-space: nowrap !important;
}


/* =========================================================
   11. COMING SOON
========================================================= */

.hero h1 {
    margin: 0 0 12px !important;

    padding: 0 !important;

    font-size: clamp(
        52px,
        5.2vw,
        78px
    ) !important;

    line-height: 0.95 !important;

    letter-spacing: -3px !important;

    white-space: nowrap !important;

    text-align: center !important;
}


/* =========================================================
   12. DESCRIPTION
========================================================= */

.hero .subtitle {
    margin: 0 0 18px !important;

    padding: 0 !important;

    max-width: 680px !important;

    font-size: 17px !important;

    line-height: 1.4 !important;

    text-align: center !important;
}


/* =========================================================
   13. EMAIL BOX
========================================================= */

.hero .signup {
    width: 535px !important;

    max-width: 72vw !important;

    height: 58px !important;

    margin: 0 auto !important;

    display: flex !important;

    align-items: center !important;

    padding:
        6px
        7px
        6px
        20px !important;

    border-radius: 32px !important;
}


/* =========================================================
   14. COUNTDOWN
   SMALLER + SLIGHTLY HIGHER
========================================================= */

.hero .countdown {
    width: auto !important;

    margin-top: 17px !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    flex-wrap: nowrap !important;

    gap: 10px !important;
}


/* =========================================================
   15. COUNTDOWN BOX
========================================================= */

.hero .countdown .time-box {
    width: 82px !important;
    min-width: 82px !important;

    height: 68px !important;

    padding: 7px 6px !important;

    border-radius: 13px !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;
}


/* Countdown number */

.hero .countdown .time-box strong {
    display: block !important;

    font-size: 24px !important;

    line-height: 1.05 !important;
}


/* Countdown label */

.hero .countdown .time-box small {
    display: block !important;

    margin-top: 4px !important;

    font-size: 9px !important;

    line-height: 1 !important;

    letter-spacing: 1.2px !important;
}


/* =========================================================
   16. 3D CSS SCENE
   KEEP IT BELOW MAIN CONTENT
========================================================= */

.page > .hero > .scene {
    position: absolute !important;

    left: 50% !important;
    bottom: -330px !important;

    width: min(1100px, 96vw) !important;

    height: 285px !important;

    transform: translateX(-50%) !important;

    z-index: 3 !important;

    pointer-events: none !important;
}


/*
   IMPORTANT:
   The static background image is already providing
   the real 3D scene.

   Therefore the old CSS-generated objects/platform
   should not sit over the main content.
*/

.page > .hero > .scene {
    display: none !important;
}


/* =========================================================
   17. CONTACT AREA
   THIS IS THE REAL "FOOTER" IN YOUR HTML
========================================================= */

.page > .contact {
    position: fixed !important;

    left: 50% !important;
    bottom: 24px !important;

    width: min(860px, 82vw) !important;

    height: 58px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 35px !important;

    z-index: 40 !important;

    color: #123a80 !important;
}


/* =========================================================
   18. CONTACT ITEMS
   EQUAL WIDTH = PERFECT ALIGNMENT
========================================================= */

.page > .contact > .contact-item {
    flex: 1 1 0 !important;

    min-width: 0 !important;

    height: 50px !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 11px !important;

    margin: 0 !important;

    padding: 0 !important;

    font-size: 13px !important;

    white-space: nowrap !important;
}


/* =========================================================
   19. CONTACT TEXT
========================================================= */

.page > .contact > .contact-item > div:last-child {
    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;

    justify-content: center !important;

    min-width: 0 !important;
}


.page > .contact .contact-item b {
    margin: 0 0 3px !important;

    font-size: 13px !important;

    line-height: 1.1 !important;
}


.page > .contact .contact-item a {
    margin: 0 !important;

    line-height: 1.1 !important;

    white-space: nowrap !important;
}


/* =========================================================
   20. CONTACT ICONS
========================================================= */

.page > .contact .contact-icon {
    width: 44px !important;
    height: 44px !important;

    min-width: 44px !important;

    flex-shrink: 0 !important;

    display: grid !important;

    place-items: center !important;

    border-radius: 50% !important;
}


/* =========================================================
   21. REMOVE SOCIAL ICONS
========================================================= */

.page > .contact > .social,
.page > .contact .social,
.social,
.social-links,
.social-icons {
    display: none !important;
}


/* =========================================================
   22. REMOVE OLD FOOTER TEXT
========================================================= */

.page > .footer,
.footer,
.footer-tagline,
footer .tagline {
    display: none !important;
}


/* =========================================================
   23. OLD FOOTER RULES CANNOT AFFECT CONTACT
========================================================= */

footer {
    display: none !important;
}


/* =========================================================
   24. TOAST
========================================================= */

.toast {
    z-index: 100 !important;
}


/* =========================================================
   25. TABLET
========================================================= */

@media (max-width: 1000px) {

    header {
        left: 35px !important;
        right: 35px !important;
    }

    .hero {
        top: 285px !important;

        width: 92vw !important;
    }

    .hero h1 {
        font-size: clamp(
            46px,
            7vw,
            68px
        ) !important;
    }

    .page > .contact {
        width: 90vw !important;

        gap: 15px !important;
    }

    .page > .contact > .contact-item {
        font-size: 12px !important;
    }

    .page > .contact .contact-item b {
        font-size: 12px !important;
    }
}


/* =========================================================
   26. MOBILE
========================================================= */

@media (max-width: 800px) {

    header {
        top: 15px !important;

        left: 20px !important;
        right: 20px !important;

        height: 50px !important;
    }



    /* HERO */

    .hero {
        top: 205px !important;

        width: 94vw !important;
    }


    .hero .eyebrow {
        font-size: 9px !important;

        letter-spacing: 4px !important;

        margin-bottom: 7px !important;
    }


    .hero h1 {
        font-size: 42px !important;

        letter-spacing: -1.5px !important;

        margin-bottom: 10px !important;
    }


    .hero .subtitle {
        max-width: 90vw !important;

        font-size: 14px !important;

        line-height: 1.35 !important;

        margin-bottom: 14px !important;
    }


    .hero .signup {
        width: 90vw !important;

        max-width: 90vw !important;

        height: 54px !important;
    }


    .hero .signup button {
        width: 43px !important;
        height: 43px !important;
    }


    /* COUNTDOWN */

    .hero .countdown {
        gap: 7px !important;

        margin-top: 14px !important;
    }


    .hero .countdown .time-box {
        width: 70px !important;
        min-width: 70px !important;

        height: 60px !important;

        padding: 6px 4px !important;
    }


    .hero .countdown .time-box strong {
        font-size: 21px !important;
    }


    .hero .countdown .time-box small {
        font-size: 8px !important;

        letter-spacing: 1px !important;
    }


    /* CONTACT */

    .page > .contact {
        left: 50% !important;
        bottom: 8px !important;

        width: 94vw !important;

        height: 55px !important;

        gap: 5px !important;
    }


    .page > .contact > .contact-item {
        flex: 1 1 0 !important;

        gap: 7px !important;

        height: 42px !important;

        font-size: 10px !important;
    }


    .page > .contact .contact-item b {
        font-size: 10px !important;

        margin-bottom: 2px !important;
    }


    .page > .contact .contact-icon {
        width: 35px !important;
        height: 35px !important;

        min-width: 35px !important;

        font-size: 15px !important;
    }
}


/* =========================================================
   27. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    header {
        left: 12px !important;
        right: 12px !important;
    }



    .hero {
        top: 188px !important;

        width: 96vw !important;
    }


    .hero .eyebrow {
        font-size: 8px !important;

        letter-spacing: 3px !important;
    }


    .hero h1 {
        font-size: 35px !important;

        letter-spacing: -1px !important;
    }


    .hero .subtitle {
        font-size: 12px !important;
    }


    .hero .signup {
        width: 94vw !important;

        max-width: 94vw !important;
    }


    .hero .countdown {
        gap: 5px !important;
    }


    .hero .countdown .time-box {
        width: 68px !important;

        min-width: 68px !important;

        height: 58px !important;
    }


    .hero .countdown .time-box strong {
        font-size: 19px !important;
    }


    .page > .contact {
        width: 98vw !important;

        gap: 2px !important;
    }


    .page > .contact > .contact-item {
        gap: 5px !important;

        font-size: 8px !important;
    }


    .page > .contact .contact-item b {
        font-size: 9px !important;
    }


    .page > .contact .contact-icon {
        width: 31px !important;
        height: 31px !important;

        min-width: 31px !important;

        font-size: 13px !important;
    }
}



/* =========================================================
   LARIFY3D — FINAL PRODUCTION ALIGNMENT
   CLOCK → TEXT → EMAIL → COUNTDOWN → CONTACT
========================================================= */

html,
body {
    width: 100% !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
}

body {
    position: relative !important;
}


/* =========================================================
   MAIN PAGE
========================================================= */

.page {
    position: relative !important;

    width: 100% !important;
    height: 100vh !important;
    min-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;

    overflow: hidden !important;

    z-index: 2 !important;
}


/* =========================================================
   BACKGROUND IMAGE
========================================================= */

.scene-layer {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    overflow: hidden !important;

    z-index: 1 !important;

    pointer-events: none !important;
}

.scene-layer img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;
    object-position: center center !important;

    display: block !important;
}


/* =========================================================
   HEADER
   LOGO + SOUND BUTTON
========================================================= */

header {
    position: absolute !important;

    top: 22px !important;
    left: 60px !important;
    right: 60px !important;

    width: auto !important;
    height: 55px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;

    z-index: 100 !important;
}

header .logo {
    margin: 0 !important;
}





/* =========================================================
   HERO CONTENT
   EVERYTHING BELOW CLOCK
========================================================= */

.hero {
    position: absolute !important;

    top: 282px !important;
    left: 50% !important;

    width: min(900px, 90vw) !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    display: flex !important;
    flex-direction: column !important;

    align-items: center !important;
    justify-content: flex-start !important;

    text-align: center !important;

    z-index: 20 !important;
}


/* =========================================================
   EYEBROW
========================================================= */

.hero .eyebrow {
    margin: 0 0 9px !important;
    padding: 0 !important;

    font-size: 12px !important;
    line-height: 1 !important;

    letter-spacing: 7px !important;

    white-space: nowrap !important;
}


/* =========================================================
   COMING SOON
========================================================= */

.hero h1 {
    margin: 0 0 13px !important;
    padding: 0 !important;

    font-size: clamp(
        52px,
        5.2vw,
        78px
    ) !important;

    line-height: 0.94 !important;

    letter-spacing: -3px !important;

    white-space: nowrap !important;

    text-align: center !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.hero .subtitle {
    margin: 0 0 18px !important;
    padding: 0 !important;

    max-width: 680px !important;

    font-size: 17px !important;
    line-height: 1.4 !important;

    text-align: center !important;
}


/* =========================================================
   EMAIL BOX
========================================================= */

.hero .signup {
    width: 535px !important;
    max-width: 72vw !important;

    height: 58px !important;

    margin: 0 !important;
    padding:
        6px
        7px
        6px
        20px !important;

    display: flex !important;
    align-items: center !important;

    border-radius: 32px !important;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.hero .countdown {
    width: auto !important;

    margin: 16px 0 0 !important;
    padding: 0 !important;

    display: flex !important;

    flex-direction: row !important;

    align-items: center !important;
    justify-content: center !important;

    flex-wrap: nowrap !important;

    gap: 10px !important;
}


/* =========================================================
   COUNTDOWN BOXES
========================================================= */

.hero .countdown .time-box {
    width: 82px !important;
    min-width: 82px !important;

    height: 67px !important;

    padding: 7px 6px !important;

    margin: 0 !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: center !important;
    justify-content: center !important;

    border-radius: 13px !important;
}


/* NUMBER */

.hero .countdown .time-box strong {
    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    font-size: 24px !important;
    line-height: 1 !important;
}


/* LABEL */

.hero .countdown .time-box small {
    display: block !important;

    margin: 5px 0 0 !important;
    padding: 0 !important;

    font-size: 9px !important;

    line-height: 1 !important;

    letter-spacing: 1.2px !important;
}


/* =========================================================
   HIDE CSS-GENERATED 3D SCENE
   Background PNG already contains the scene
========================================================= */

.scene {
    display: none !important;
}


/* =========================================================
   CONTACT / BOTTOM INFORMATION
========================================================= */

.page > .contact {
    position: absolute !important;

    left: 50% !important;
    bottom: 22px !important;

    width: min(900px, 84vw) !important;
    height: 55px !important;

    margin: 0 !important;
    padding: 0 !important;

    transform: translateX(-50%) !important;

    display: flex !important;

    align-items: center !important;
    justify-content: space-between !important;

    gap: 35px !important;

    z-index: 50 !important;
}


/* =========================================================
   CONTACT ITEMS
   THREE EQUAL COLUMNS
========================================================= */

.page > .contact > .contact-item {
    flex: 1 1 0 !important;

    width: 0 !important;
    min-width: 0 !important;

    height: 50px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 11px !important;

    white-space: nowrap !important;

    font-size: 13px !important;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.page > .contact .contact-icon {
    width: 44px !important;
    min-width: 44px !important;

    height: 44px !important;

    flex-shrink: 0 !important;

    display: grid !important;
    place-items: center !important;

    border-radius: 50% !important;
}


/* =========================================================
   CONTACT TEXT
========================================================= */

.page > .contact .contact-item > div:last-child {
    min-width: 125px !important;

    display: flex !important;

    flex-direction: column !important;

    align-items: flex-start !important;
    justify-content: center !important;
}

.page > .contact .contact-item b {
    display: block !important;

    margin: 0 0 3px !important;

    font-size: 13px !important;

    line-height: 1.1 !important;
}

.page > .contact .contact-item a {
    display: block !important;

    margin: 0 !important;

    line-height: 1.1 !important;

    white-space: nowrap !important;
}


/* =========================================================
   REMOVE SOCIAL ICONS
========================================================= */

.social,
.social-links,
.social-icons,
.page > .contact > .social,
footer .social {
    display: none !important;
}


/* =========================================================
   REMOVE OLD FOOTER TEXT
========================================================= */

.footer,
.footer-tagline,
footer .tagline,
.page > .footer {
    display: none !important;
}


/* =========================================================
   OLD FOOTER CANNOT INTERFERE
========================================================= */

footer {
    display: none !important;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    header {
        left: 35px !important;
        right: 35px !important;
    }

    .clock-area {
        top: 35px !important;
        transform:
            translateX(-50%)
            scale(0.68) !important;
    }

    .hero {
        top: 270px !important;
        width: 94vw !important;
    }

    .hero h1 {
        font-size: clamp(
            46px,
            7vw,
            68px
        ) !important;
    }

    .page > .contact {
        width: 92vw !important;
        gap: 15px !important;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    header {
        top: 14px !important;

        left: 20px !important;
        right: 20px !important;

        height: 45px !important;
    }


    .clock-area {
        top: 32px !important;

        width: 210px !important;
        height: 210px !important;

        transform:
            translateX(-50%)
            scale(0.57) !important;
    }


    .hero {
        top: 205px !important;

        width: 94vw !important;
    }


    .hero .eyebrow {
        font-size: 9px !important;

        letter-spacing: 4px !important;

        margin-bottom: 7px !important;
    }


    .hero h1 {
        font-size: 42px !important;

        letter-spacing: -1.5px !important;

        margin-bottom: 10px !important;
    }


    .hero .subtitle {
        font-size: 14px !important;

        max-width: 90vw !important;

        margin-bottom: 14px !important;
    }


    .hero .signup {
        width: 90vw !important;

        max-width: 90vw !important;

        height: 54px !important;
    }


    .hero .signup button {
        width: 43px !important;
        height: 43px !important;
    }


    .hero .countdown {
        gap: 6px !important;

        margin-top: 13px !important;
    }


    .hero .countdown .time-box {
        width: 70px !important;
        min-width: 70px !important;

        height: 59px !important;
    }


    .hero .countdown .time-box strong {
        font-size: 21px !important;
    }


    .hero .countdown .time-box small {
        font-size: 8px !important;
    }


    /* CONTACT */

    .page > .contact {
        left: 50% !important;
        bottom: 7px !important;

        width: 96vw !important;

        height: 48px !important;

        gap: 4px !important;
    }


    .page > .contact > .contact-item {
        gap: 6px !important;

        height: 42px !important;

        font-size: 9px !important;
    }


    .page > .contact .contact-item > div:last-child {
        min-width: 0 !important;
    }


    .page > .contact .contact-item b {
        font-size: 9px !important;
    }


    .page > .contact .contact-icon {
        width: 34px !important;
        min-width: 34px !important;

        height: 34px !important;

        font-size: 14px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    header {
        left: 12px !important;
        right: 12px !important;
    }


    .clock-area {
        top: 28px !important;

        transform:
            translateX(-50%)
            scale(0.50) !important;
    }


    .hero {
        top: 185px !important;
    }


    .hero h1 {
        font-size: 35px !important;
    }


    .hero .subtitle {
        font-size: 12px !important;
    }


    .hero .signup {
        width: 94vw !important;
        max-width: 94vw !important;
    }


    .hero .countdown {
        gap: 4px !important;
    }


    .hero .countdown .time-box {
        width: 67px !important;
        min-width: 67px !important;

        height: 57px !important;
    }


    .page > .contact {
        width: 99vw !important;
    }


    .page > .contact > .contact-item {
        gap: 4px !important;
        font-size: 8px !important;
    }


    .page > .contact .contact-item b {
        font-size: 8px !important;
    }


    .page > .contact .contact-icon {
        width: 30px !important;
        min-width: 30px !important;

        height: 30px !important;

        font-size: 12px !important;
    }
}


/* =========================================================
   LARIFY3D — FINAL REFERENCE ALIGNMENT
   WATCH REMOVED
   DO NOT ADD MORE POSITIONING BELOW THIS BLOCK
========================================================= */

/* ---------- FULL SCREEN ---------- */

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
}

.page {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 100vh;
    overflow: hidden !important;
    padding: 0 !important;
}


/* =========================================================
   HEADER / LOGO
========================================================= */

header {
    position: absolute !important;

    top: 22px !important;
    left: 55px !important;
    right: 55px !important;

    height: 65px !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;

    z-index: 30 !important;
}

.logo {
    margin: 0 !important;
}


/* =========================================================
   CLOCK
   WATCH HAS BEEN REMOVED
========================================================= */

.clock-area {
    display: none !important;
}


/* =========================================================
   MAIN CONTENT
   SHIFTED UP
========================================================= */

.hero,
.content,
.coming-soon {
    position: absolute !important;

    top: 285px !important;
    left: 50% !important;

    width: min(780px, 82vw) !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;

    text-align: center !important;

    z-index: 20 !important;
}


/* =========================================================
   SMALL HEADING
========================================================= */

.eyebrow {
    margin: 0 0 10px !important;

    font-size: 12px !important;

    line-height: 1 !important;

    letter-spacing: 7px !important;

    color: #315894 !important;

    white-space: nowrap !important;
}


/* =========================================================
   COMING SOON
========================================================= */

h1 {
    margin: 0 0 14px !important;

    font-size: clamp(52px, 5vw, 76px) !important;

    line-height: 0.95 !important;

    letter-spacing: -2px !important;

    white-space: nowrap !important;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.subtitle {
    margin: 0 0 18px !important;

    max-width: 650px !important;

    font-size: 17px !important;

    line-height: 1.4 !important;

    text-align: center !important;
}


/* =========================================================
   EMAIL BOX
========================================================= */

.signup,
.newsletter,
.email-form,
.subscribe-form {
    width: 535px !important;
    max-width: 72vw !important;

    height: 58px !important;

    margin: 0 auto !important;

    transform: none !important;
}


/* =========================================================
   EMAIL INPUT
========================================================= */

.signup input {
    font-size: 15px !important;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.signup button {
    width: 47px !important;
    height: 47px !important;

    flex-shrink: 0 !important;
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown {
    display: flex !important;

    align-items: center !important;
    justify-content: center !important;

    gap: 14px !important;

    margin-top: 20px !important;

    width: 100% !important;
}


/* COUNTDOWN BOX */

.time-box,
.countdown > div {
    width: 96px !important;
    min-width: 96px !important;
    height: 76px !important;

    padding: 10px 8px !important;

    border-radius: 14px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;

    box-sizing: border-box !important;
}


/* NUMBER */

.time-box strong,
.countdown .number {
    display: block !important;

    margin: 0 !important;

    font-size: 28px !important;

    line-height: 1 !important;
}


/* LABEL */

.time-box small,
.countdown .label {
    display: block !important;

    margin-top: 6px !important;

    font-size: 11px !important;

    line-height: 1 !important;

    letter-spacing: 1px !important;
}


/* =========================================================
   3D BACKGROUND SCENE
   KEEP IMAGE FIXED
========================================================= */

.scene-layer {
    position: fixed !important;

    inset: 0 !important;

    width: 100% !important;
    height: 100vh !important;

    z-index: 1 !important;

    pointer-events: none !important;

    overflow: hidden !important;
}

.scene-layer img {
    width: 100% !important;
    height: 100% !important;

    object-fit: cover !important;

    object-position: center bottom !important;

    display: block !important;
}


/* =========================================================
   CONTACT / FOOTER
========================================================= */

footer {
    position: absolute !important;

    left: 50% !important;
    bottom: 18px !important;

    width: min(850px, 82vw) !important;

    height: 62px !important;

    transform: translateX(-50%) !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    z-index: 30 !important;
}


/* CONTACT ROW */

.contact {
    width: 100% !important;

    display: flex !important;

    align-items: center !important;

    justify-content: space-between !important;

    gap: 35px !important;

    margin: 0 !important;
}


/* CONTACT ITEMS */

.contact-item {
    flex: 1 !important;

    min-width: 0 !important;

    display: flex !important;

    align-items: center !important;

    justify-content: center !important;

    gap: 12px !important;

    font-size: 13px !important;
}


/* CONTACT ICON */

.contact-icon {
    width: 44px !important;
    height: 44px !important;

    flex-shrink: 0 !important;
}


/* CONTACT TEXT */

.contact-item b {
    margin-bottom: 3px !important;

    font-size: 13px !important;
}

.contact-item a {
    font-size: 13px !important;
}


/* =========================================================
   SOCIAL ICONS — REMOVE
========================================================= */

.social,
.social-links,
.social-icons,
footer .social {
    display: none !important;
}


/* =========================================================
   EXTRA FOOTER TEXT — REMOVE
========================================================= */

.footer-tagline,
footer .tagline {
    display: none !important;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    header {
        top: 14px !important;
        left: 20px !important;
        right: 20px !important;
    }

    .hero,
    .content,
    .coming-soon {
        top: 220px !important;

        width: 94vw !important;
    }

    .eyebrow {
        font-size: 9px !important;

        letter-spacing: 4px !important;
    }

    h1 {
        font-size: 42px !important;

        letter-spacing: -1.5px !important;
    }

    .subtitle {
        font-size: 14px !important;

        max-width: 90vw !important;
    }

    .signup,
    .newsletter,
    .email-form,
    .subscribe-form {
        width: 90vw !important;
        max-width: 90vw !important;
    }

    .countdown {
        gap: 7px !important;
    }

    .time-box,
    .countdown > div {
        width: 72px !important;
        min-width: 72px !important;
        height: 64px !important;
    }

    .time-box strong,
    .countdown .number {
        font-size: 22px !important;
    }

    .time-box small,
    .countdown .label {
        font-size: 9px !important;
    }

    footer {
        width: 94vw !important;

        bottom: 8px !important;
    }

    .contact {
        gap: 8px !important;
    }

    .contact-item {
        gap: 7px !important;

        font-size: 11px !important;
    }

    .contact-item b,
    .contact-item a {
        font-size: 11px !important;
    }

    .contact-icon {
        width: 38px !important;
        height: 38px !important;

        font-size: 16px !important;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .hero,
    .content,
    .coming-soon {
        top: 205px !important;
    }

    h1 {
        font-size: 38px !important;
    }

    .countdown {
        gap: 5px !important;
    }

    .time-box,
    .countdown > div {
        width: 68px !important;
        min-width: 68px !important;
    }

    footer {
        bottom: 5px !important;
    }

    .contact-item {
        gap: 5px !important;
    }

    .contact-icon {
        width: 34px !important;
        height: 34px !important;
    }
}




/* =========================================================
   LARIFY3D — COMING SOON
   CLEAN FINAL VERSION
   NO SCROLL / NO CLOCK
========================================================= */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden !important;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    color: #123777;

    background:
        radial-gradient(
            circle at 50% 25%,
            #ffffff 0%,
            #f2faff 25%,
            #d9efff 55%,
            #a9d8f8 100%
        );
}


/* =========================================================
   MAIN PAGE
========================================================= */

.page {
    position: relative;

    width: 100%;
    height: 100vh;
    min-height: 600px;

    padding: 0;

    overflow: hidden;
}


/* =========================================================
   BACKGROUND 3D SCENE
========================================================= */

.scene-layer {
    position: fixed;

    inset: 0;

    width: 100%;
    height: 100vh;

    overflow: hidden;

    pointer-events: none;

    z-index: 1;
}

.scene-layer img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
    object-position: center center;

    pointer-events: none;
}


/* =========================================================
   HEADER
========================================================= */

.top-header {
    position: absolute;

    top: 24px;
    left: 42px;
    right: 42px;

    height: 70px;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    z-index: 50;
}








/* =========================================================
   CLOCK — COMPLETELY REMOVED
========================================================= */

.clock-area,
.clock,
.orbit,
.clock-tick,
.clock-hand,
.clock-pin {
    display: none !important;
}


/* =========================================================
   HERO / MAIN CONTENT
========================================================= */

.hero,
.content,
.coming-soon {
    position: absolute;

    top: 285px;
    left: 50%;

    width: min(780px, 82vw);

    transform: translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;

    z-index: 20;
}


/* =========================================================
   SMALL TOP TEXT
========================================================= */

.eyebrow {
    margin: 0 0 10px;

    color: #174a8d;

    font-size: 12px;

    font-weight: 800;

    letter-spacing: 8px;

    line-height: 1;

    text-transform: uppercase;

    white-space: nowrap;
}


/* =========================================================
   MAIN HEADING
========================================================= */

h1 {
    margin: 0 0 15px;

    font-size: clamp(
        52px,
        5.3vw,
        78px
    );

    line-height: 0.94;

    letter-spacing: -3px;

    font-weight: 850;

    white-space: nowrap;

    color: #103b82;

    text-shadow:
        0 3px 12px
        rgba(39,104,177,0.08);
}

h1 span {
    color: #3198ee;
}


/* =========================================================
   DESCRIPTION
========================================================= */

.subtitle {
    max-width: 650px;

    margin: 0 0 18px;

    color: #315d92;

    font-size: 17px;

    line-height: 1.45;

    text-align: center;
}


/* =========================================================
   EMAIL FORM
========================================================= */

.signup,
.newsletter,
.email-form,
.subscribe-form {
    width: 535px;

    max-width: 72vw;

    height: 58px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    padding: 6px 7px 6px 20px;

    border:
        1px solid
        rgba(38,120,220,0.16);

    border-radius: 32px;

    background:
        rgba(255,255,255,0.86);

    box-shadow:
        0 12px 35px
        rgba(30,101,184,0.14);

    backdrop-filter: blur(14px);
}

.signup input,
.newsletter input,
.email-form input,
.subscribe-form input {
    flex: 1;

    min-width: 0;

    border: none;

    outline: none;

    background: transparent;

    color: #1c4d8e;

    font-family: inherit;

    font-size: 15px;
}

.signup input::placeholder,
.newsletter input::placeholder,
.email-form input::placeholder,
.subscribe-form input::placeholder {
    color: #7190b2;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.signup button,
.newsletter button,
.email-form button,
.subscribe-form button {
    width: 47px;
    height: 47px;

    flex-shrink: 0;

    border: none;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #359af1,
            #1977dd
        );

    color: #ffffff;

    font-size: 22px;

    cursor: pointer;

    box-shadow:
        0 7px 16px
        rgba(30,119,221,0.28);

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.signup button:hover,
.newsletter button:hover,
.email-form button:hover,
.subscribe-form button:hover {
    transform: scale(1.06);

    box-shadow:
        0 10px 20px
        rgba(30,119,221,0.36);
}


/* =========================================================
   COUNTDOWN
========================================================= */

.countdown {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 14px;

    margin-top: 22px;

    width: 100%;
}


/* =========================================================
   COUNTDOWN BOXES
========================================================= */

.time-box,
.countdown > div {
    width: 96px;
    min-width: 96px;
    height: 76px;

    padding: 10px 8px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: center;

    border:
        1px solid
        rgba(38,120,220,0.15);

    border-radius: 14px;

    background:
        rgba(255,255,255,0.67);

    box-shadow:
        0 8px 20px
        rgba(50,120,190,0.09);

    backdrop-filter: blur(10px);
}

.time-box strong,
.countdown > div strong {
    display: block;

    margin-bottom: 2px;

    color: #123a80;

    font-size: 28px;

    line-height: 1;

    font-weight: 800;
}

.time-box small,
.countdown > div small {
    color: #52719d;

    font-size: 10px;

    line-height: 1;

    letter-spacing: 1.3px;

    text-transform: uppercase;
}


/* =========================================================
   HIDE OLD ARTIFICIAL OBJECTS
   Background image already contains the objects.
========================================================= */

.object,
.hanging-wire,
.platform {
    display: none !important;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    position: absolute;

    left: 50%;
    bottom: 18px;

    width: min(850px, 82vw);

    height: 62px;

    transform: translateX(-50%);

    display: flex;

    align-items: center;
    justify-content: center;

    z-index: 40;
}


/* =========================================================
   CONTACT ROW
========================================================= */

.contact {
    width: 100%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 30px;

    color: #123a80;
}


/* =========================================================
   CONTACT ITEM
========================================================= */

.contact-item {
    flex: 1;

    min-width: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 11px;

    font-size: 12px;

    line-height: 1.25;

    text-align: left;
}

.contact-item b {
    display: block;

    margin-bottom: 3px;

    font-size: 13px;

    font-weight: 800;
}

.contact-item a {
    color: #123a80;

    text-decoration: none;
}


/* =========================================================
   CONTACT ICON
========================================================= */

.contact-icon {
    width: 44px;
    height: 44px;

    flex-shrink: 0;

    display: grid;

    place-items: center;

    border-radius: 50%;

    background:
        linear-gradient(
            145deg,
            #2387e8,
            #0754bd
        );

    color: #ffffff;

    font-size: 18px;

    box-shadow:
        0 8px 17px
        rgba(29,103,190,0.22);
}


/* =========================================================
   SOCIAL — REMOVE
========================================================= */

.social,
.social-links,
.social-icons,
footer .social {
    display: none !important;
}


/* =========================================================
   EXTRA FOOTER TEXT — REMOVE
========================================================= */

.footer,
.footer-tagline,
footer .tagline {
    display: none !important;
}


/* =========================================================
   TOAST
========================================================= */

.toast {
    position: fixed;

    left: 50%;
    bottom: 20px;

    transform:
        translate(-50%,70px);

    opacity: 0;

    padding: 11px 18px;

    border-radius: 22px;

    background: #103579;

    color: #ffffff;

    font-size: 13px;

    z-index: 100;

    transition: 0.3s ease;

    box-shadow:
        0 10px 25px
        rgba(0,0,0,0.18);
}

.toast.show {
    opacity: 1;

    transform:
        translate(-50%,0);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {

    .top-header {
        left: 30px;
        right: 30px;
    }

    .brand-logo,
    .brand-logo img {
        width: 135px;
        max-width: 135px;
    }

    .hero,
    .content,
    .coming-soon {
        top: 275px;

        width: 88vw;
    }

    h1 {
        font-size: clamp(
            46px,
            6vw,
            68px
        );
    }

    .contact {
        gap: 15px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 800px) {

    .page {
        min-height: 600px;
    }

    .top-header {
        top: 15px;

        left: 20px;
        right: 20px;

        height: 55px;
    }

    .brand-logo,
    .brand-logo img {
        width: 115px;
        max-width: 115px;
    }

    .sound-button {
        padding: 5px 8px;

        border-radius: 50%;
    }

    .sound-button span:last-child {
        display: none;
    }

    .sound-icon {
        width: 32px;
        height: 32px;

        font-size: 15px;
    }


    /* Main content */

    .hero,
    .content,
    .coming-soon {
        top: 205px;

        width: 94vw;
    }

    .eyebrow {
        font-size: 8px;

        letter-spacing: 4px;

        margin-bottom: 9px;
    }

    h1 {
        font-size: 42px;

        letter-spacing: -1.5px;

        margin-bottom: 12px;
    }

    .subtitle {
        max-width: 90vw;

        margin-bottom: 15px;

        font-size: 14px;
    }


    /* Email */

    .signup,
    .newsletter,
    .email-form,
    .subscribe-form {
        width: 90vw;

        max-width: 90vw;

        height: 54px;

        padding-left: 17px;
    }

    .signup button,
    .newsletter button,
    .email-form button,
    .subscribe-form button {
        width: 43px;
        height: 43px;
    }


    /* Countdown */

    .countdown {
        gap: 7px;

        margin-top: 17px;
    }

    .time-box,
    .countdown > div {
        width: 72px;
        min-width: 72px;
        height: 62px;

        padding: 7px 5px;
    }

    .time-box strong,
    .countdown > div strong {
        font-size: 21px;
    }

    .time-box small,
    .countdown > div small {
        font-size: 8px;

        letter-spacing: 1px;
    }


    /* Footer */

    footer {
        bottom: 7px;

        width: 94vw;

        height: 58px;
    }

    .contact {
        gap: 5px;
    }

    .contact-item {
        gap: 6px;

        font-size: 9px;
    }

    .contact-item b {
        font-size: 10px;
    }

    .contact-icon {
        width: 34px;
        height: 34px;

        font-size: 14px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .brand-logo,
    .brand-logo img {
        width: 100px;
        max-width: 100px;
    }

    .hero,
    .content,
    .coming-soon {
        top: 190px;
    }

    h1 {
        font-size: 36px;
    }

    .subtitle {
        font-size: 13px;
    }

    .countdown {
        gap: 5px;
    }

    .time-box,
    .countdown > div {
        width: 68px;
        min-width: 68px;
        height: 58px;
    }

    .contact-item {
        font-size: 8px;
    }

    .contact-item b {
        font-size: 9px;
    }

    .contact-icon {
        width: 30px;
        height: 30px;
    }
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;

        animation-iteration-count: 1 !important;

        scroll-behavior: auto !important;
    }
}


/* =========================================================
   REMOVE CLOCK / WATCH COMPLETELY
========================================================= */

.clock-area,
.clock,
.orbit,
.orbit-one,
.orbit-two,
.clock-tick,
.clock-hand,
.hour-hand,
.minute-hand,
.second-hand,
.clock-pin {
    display: none !important;
}



/* =========================================================
   FINAL REAL LARIFY3D LOGO
   ========================================================= */

.top-header {
    position: absolute !important;

    top: 22px !important;
    left: 38px !important;
    right: 38px !important;

    width: auto !important;
    height: 70px !important;

    margin: 0 !important;
    padding: 0 !important;

    display: flex !important;
    align-items: flex-start !important;
    justify-content: space-between !important;

    z-index: 1000 !important;

    pointer-events: none !important;
}


/* REAL LOGO */

.top-header .logo {
    position: absolute !important;

    top: 0 !important;
    left: 0 !important;

    width: 145px !important;
    height: auto !important;

    margin: 0 !important;
    padding: 0 !important;

    display: block !important;

    z-index: 1001 !important;

    visibility: visible !important;
    opacity: 1 !important;

    pointer-events: auto !important;

    text-decoration: none !important;
}


/* REAL LOGO IMAGE */

.top-header .logo img {
    display: block !important;

    width: 145px !important;
    height: auto !important;

    max-width: 145px !important;
    max-height: 70px !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    visibility: visible !important;
    opacity: 1 !important;
}


/* SOUND BUTTON */

.top-header .sound-button {
    position: absolute !important;

    top: -4px !important;
    right: 0 !important;

    z-index: 1002 !important;

    pointer-events: auto !important;
}


/* =========================================================
   MOBILE LOGO
   ========================================================= */

@media (max-width: 800px) {

    .top-header {
        top: 15px !important;
        left: 20px !important;
        right: 20px !important;
    }

    .top-header .logo,
    .top-header .logo img {
        width: 110px !important;
        max-width: 110px !important;
    }
}


@media (max-width: 480px) {

    .top-header {
        top: 12px !important;
        left: 15px !important;
        right: 15px !important;
    }

    .top-header .logo,
    .top-header .logo img {
        width: 95px !important;
        max-width: 95px !important;
    }
}


/* ================================
   LARIFY3D HEADER LOGO
   ================================ */

.top-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.top-header .logo {
    position: absolute;
    top: 22px;
    left: 38px;
    width: 145px;
    height: auto;
    display: block;
    z-index: 101;
}

.top-header .logo img {
    display: block;
    width: 145px;
    height: auto;
    max-width: 145px;
    object-fit: contain;
}
/* =========================================
   HERO CONTENT POSITION & ALIGNMENT
   ========================================= */

.hero {
    position: relative;
}

.hero-content {
    position: absolute;
    top: 120px;
    left: 50%;
    transform: translateX(-50%);

    width: 705px;
    height: 560px;

    text-align: center;
    z-index: 10;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-sizing: border-box;
}


/* =========================================
   SOMETHING AMAZING IS
   ========================================= */

.hero-content .eyebrow,
.hero-content .subtitle-small {
    margin-top: 178px;
    margin-bottom: 8px;
}


/* =========================================
   COMING SOON
   ========================================= */

.hero-content h1 {
    margin: 0 0 12px 0;
}


/* =========================================
   DESCRIPTION
   ========================================= */

.hero-content p {
    margin: 0 0 20px 0;
}


/* =========================================
   EMAIL BOX
   ========================================= */

.hero-content .email-form,
.hero-content .email-input-wrapper {
    margin-top: 0;
    margin-bottom: 18px;
}


/* =========================================
   COUNTDOWN
   ========================================= */

.hero-content .countdown,
.hero-content .countdown-container {
    margin-top: 0;
}


/* =========================================
   CONTACT DETAILS
   ========================================= */

.contact-info,
.contact-section,
.hero-contact {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    z-index: 15;
}



/* =========================================================
   SUBTLE MOVING DOTS OVER BACKGROUND
   EXISTING PNG / HERO / CONTENT UNCHANGED
========================================================= */

#particles {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    overflow: hidden !important;

    pointer-events: none !important;

    z-index: 5 !important;
}

/* Existing particle elements */
#particles .particle {
    position: absolute !important;

    width: 4px !important;
    height: 4px !important;

    border-radius: 50% !important;

    background: rgba(255, 255, 255, 0.85) !important;

    box-shadow:
        0 0 6px rgba(255, 255, 255, 0.8),
        0 0 14px rgba(90, 180, 255, 0.45) !important;

    pointer-events: none !important;

    animation:
        larifyParticleMove
        7s
        ease-in-out
        infinite alternate !important;
}

#particles .particle.blue {
    background: rgba(65, 160, 245, 0.9) !important;

    box-shadow:
        0 0 7px rgba(65, 160, 245, 0.9),
        0 0 16px rgba(65, 160, 245, 0.45) !important;
}

@keyframes larifyParticleMove {

    0% {
        transform: translate3d(0, 0, 0) scale(0.65);
        opacity: 0.15;
    }

    30% {
        opacity: 0.55;
    }

    60% {
        opacity: 0.9;
    }

    100% {
        transform: translate3d(
            var(--move-x, 35px),
            var(--move-y, -45px),
            0
        ) scale(1.15);

        opacity: 0.18;
    }
}

/* =========================================================
   PARTICLES — ABOVE PNG, BELOW PAGE CONTENT
========================================================= */

.scene-layer {
    z-index: 1 !important;
}

#particles {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    overflow: hidden !important;
    pointer-events: none !important;

    /* ABOVE PNG */
    z-index: 3 !important;
}

/* Keep ALL actual website content above particles */
.page {
    position: relative !important;
    z-index: 4 !important;
}


/* =========================================================
   MOVING GLOWING DOTS
========================================================= */

#particles .particle {
    position: absolute !important;

    width: 4px !important;
    height: 4px !important;

    border-radius: 50% !important;

    background: #ffffff !important;

    opacity: 0.85 !important;

    box-shadow:
        0 0 6px #ffffff,
        0 0 14px rgba(255,255,255,0.9),
        0 0 24px rgba(60,160,255,0.65) !important;

    animation:
        particleMove
        linear
        infinite !important;
}

#particles .particle.blue {
    background: #4aa9ff !important;

    box-shadow:
        0 0 7px #4aa9ff,
        0 0 16px rgba(74,169,255,0.95),
        0 0 28px rgba(74,169,255,0.55) !important;
}


/* =========================================================
   PARTICLE MOVEMENT
========================================================= */

@keyframes particleMove {

    0% {
        transform:
            translate3d(0, 0, 0)
            scale(0.5);

        opacity: 0.15;
    }

    25% {
        opacity: 0.7;
    }

    50% {
        transform:
            translate3d(
                calc(var(--move-x) * 0.5),
                calc(var(--move-y) * 0.5),
                0
            )
            scale(1);

        opacity: 1;
    }

    75% {
        opacity: 0.6;
    }

    100% {
        transform:
            translate3d(
                var(--move-x),
                var(--move-y),
                0
            )
            scale(0.6);

        opacity: 0.1;
    }
}

/* =========================================================
   FINAL PARTICLE LAYER FIX
   PNG → PARTICLES → CONTENT
========================================================= */

/* Do NOT keep the whole page above particles */
.page {
    position: relative !important;
    z-index: auto !important;
}

/* Background PNG */
.scene-layer {
    position: absolute !important;
    z-index: 1 !important;
}

/* Particles ABOVE PNG */
#particles {
    position: fixed !important;
    inset: 0 !important;

    width: 100vw !important;
    height: 100vh !important;

    z-index: 5 !important;
    pointer-events: none !important;
}

/* Hero content ABOVE particles */
.hero-content {
    position: absolute !important;
    z-index: 10 !important;
}

/* Header above particles */
.top-header {
    position: relative !important;
    z-index: 20 !important;
}

/* Contact information above particles */
.contact-info,
.contact-section,
.hero-contact {
    z-index: 15 !important;
}


/* =========================================================
   MAKE PARTICLES ACTUALLY VISIBLE
========================================================= */

#particles .particle {
    position: absolute !important;

    width: 5px !important;
    height: 5px !important;

    background: white !important;
    border-radius: 50% !important;

    opacity: 1 !important;

    box-shadow:
        0 0 5px white,
        0 0 12px white,
        0 0 22px rgba(40, 150, 255, 0.9) !important;

    animation-name: particleMove !important;
    animation-iteration-count: infinite !important;
    animation-timing-function: linear !important;
}

#particles .particle.blue {
    background: #269cff !important;

    box-shadow:
        0 0 6px #269cff,
        0 0 15px #269cff,
        0 0 28px rgba(38, 156, 255, 0.8) !important;
}

/* ================================
   WELCOME POPUP
================================ */

.welcome-overlay {
    position: fixed;
    inset: 0;
    background: rgba(5, 35, 75, 0.45);
    backdrop-filter: blur(5px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99999;
}

.welcome-overlay.show {
    display: flex;
}

.welcome-popup {
    width: 420px;
    max-width: 90%;
    background: #ffffff;
    border-radius: 24px;
    padding: 38px 32px 32px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 60, 130, 0.25);
    animation: welcomePopupIn 0.3s ease;
}

.welcome-close {
    position: absolute;
    top: 14px;
    right: 18px;
    border: none;
    background: transparent;
    font-size: 28px;
    color: #52749b;
    cursor: pointer;
}

.welcome-icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 18px;
    border-radius: 50%;
    background: #2388e8;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    font-weight: bold;
}

.welcome-popup h2 {
    margin: 0 0 12px;
    color: #123f80;
    font-size: 27px;
}

.welcome-popup p {
    margin: 0 0 25px;
    color: #55759b;
    line-height: 1.6;
    font-size: 15px;
}

.welcome-continue {
    border: none;
    background: #2388e8;
    color: white;
    padding: 13px 25px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
}

.welcome-continue span {
    margin-left: 8px;
    font-size: 18px;
}

@keyframes welcomePopupIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* =========================================
   WELCOME POPUP
   ========================================= */

.welcome-overlay {
    position: fixed;
    inset: 0;
    background: rgba(8, 35, 75, 0.45);
    backdrop-filter: blur(5px);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: opacity 0.3s ease, visibility 0.3s ease;

    z-index: 99999;
}

.welcome-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.welcome-popup {
    position: relative;
    width: 420px;
    max-width: calc(100% - 40px);

    padding: 40px 35px;

    background: rgba(255, 255, 255, 0.97);
    border-radius: 24px;

    text-align: center;

    box-shadow: 0 25px 70px rgba(0, 70, 150, 0.25);

    transform: translateY(20px) scale(0.96);
    transition: transform 0.3s ease;
}

.welcome-overlay.active .welcome-popup {
    transform: translateY(0) scale(1);
}

.welcome-close {
    position: absolute;
    top: 15px;
    right: 18px;

    width: 32px;
    height: 32px;

    border: none;
    background: transparent;

    font-size: 28px;
    color: #17498c;

    cursor: pointer;
}

.welcome-icon {
    width: 58px;
    height: 58px;

    margin: 0 auto 18px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #2589e8;
    color: white;

    font-size: 30px;
    font-weight: bold;
}

.welcome-popup h2 {
    margin: 0 0 12px;

    color: #123f7d;
    font-size: 27px;
}

.welcome-popup p {
    margin: 0 0 25px;

    color: #55749c;
    line-height: 1.6;
    font-size: 15px;
}

.welcome-continue {
    border: none;

    padding: 12px 24px;

    border-radius: 30px;

    background: #2589e8;
    color: white;

    font-size: 15px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.2s ease;
}

.welcome-continue:hover {
    transform: translateY(-2px);
}

.welcome-continue span {
    margin-left: 8px;
}


/* =========================================================
   ADVANCE ORDER TEXT
========================================================= */

.advance-order {
    width: min(650px, 90vw);
    margin: 0 auto 18px;
    text-align: center;
    color: #31578d;
}

.advance-order h2 {
    margin: 0 0 10px;

    font-size: 23px;
    line-height: 1.2;
    font-weight: 800;

    color: #123f7d;
}

.advance-order p {
    margin: 0 auto 7px;

    font-size: 14px;
    line-height: 1.5;

    color: #31578d;
}

.advance-order p:last-child {
    margin-bottom: 0;

    font-size: 13px;
    color: #52719d;
}


/* =========================================================
   FINAL HERO POSITION — MOVE ENTIRE CONTENT UP
   BACKGROUND + PARTICLES + CONTACT UNCHANGED
========================================================= */

.hero {
    top: 155px !important;
}

/* =========================================
   MOVE HERO CONTENT SLIGHTLY UP
   ========================================= */

.hero-content .eyebrow,
.hero-content .subtitle-small {
    margin-top: 120px !important;
}



/* =========================================
   FINAL — BLUE DOTS MOVEMENT
   Do not disturb PNG or page elements
========================================= */

#particles .particle.blue {
    animation-name: blueDotMove !important;
    animation-duration: 8s !important;
    animation-timing-function: ease-in-out !important;
    animation-iteration-count: infinite !important;
    animation-direction: alternate !important;
    animation-fill-mode: both !important;
}

@keyframes blueDotMove {

    0% {
        transform: translate3d(0, 0, 0) scale(0.65);
        opacity: 0.35;
    }

    25% {
        transform:
            translate3d(
                calc(var(--move-x) * 0.35),
                calc(var(--move-y) * 0.35),
                0
            )
            scale(0.85);
        opacity: 0.7;
    }

    50% {
        transform:
            translate3d(
                calc(var(--move-x) * 0.7),
                calc(var(--move-y) * 0.7),
                0
            )
            scale(1);
        opacity: 1;
    }

    75% {
        transform:
            translate3d(
                calc(var(--move-x) * 0.45),
                calc(var(--move-y) * 0.45),
                0
            )
            scale(0.9);
        opacity: 0.75;
    }

    100% {
        transform:
            translate3d(
                var(--move-x),
                var(--move-y),
                0
            )
            scale(0.65);
        opacity: 0.35;
    }
}

/* Move contact information slightly upward */
.contact-info,
.contact-section,
.hero-contact {
    bottom: 45px !important;
}


/* =========================================================
   MOBILE RESPONSIVE FIX
   ========================================================= */

@media (max-width: 600px) {

    /* Prevent horizontal overflow */
    html,
    body {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Main page */
    .coming-soon-page {
        width: 100%;
        min-height: 100vh;
        overflow-x: hidden;
    }

    /* Contact section */
    .contact-section {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 18px;
        padding: 20px 15px 30px;
        box-sizing: border-box;
    }

    .contact-item {
        width: 100%;
        max-width: 280px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .contact-info {
        min-width: 0;
    }

    .contact-info h4,
    .contact-info p {
        margin: 0;
        white-space: normal;
    }

    /* Countdown */
    .countdown {
        width: 100%;
        max-width: 360px;
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .countdown-box {
        min-width: 0;
        flex: 1;
    }

}


/* =========================================================
   MOBILE CONTACT FIX
========================================================= */

@media (max-width: 600px) {

    .contact {
        width: 100%;
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 18px;
        padding: 20px 15px 30px;
        box-sizing: border-box;
        overflow: hidden;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        box-sizing: border-box;
        margin: 0;
    }

    .contact-item > div:last-child {
        min-width: 0;
        max-width: 220px;
        overflow-wrap: anywhere;
    }

    .contact-item b {
        display: block;
        margin-bottom: 2px;
    }

    .contact-item a {
        display: block;
        white-space: nowrap;
    }

    .contact-icon {
        flex: 0 0 42px;
        width: 42px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}



/* =========================================
   GLOBAL RESPONSIVE SYSTEM
========================================= */

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
}

.hero,
.hero-content,
.contact {
    max-width: 100%;
}

/* Prevent fixed-width elements from overflowing */
.hero-content {
    width: min(705px, 92vw);
}

/* Contact automatically adapts */
.contact {
    width: min(90%, 1000px);
}

/* Smaller screens */
@media (max-width: 768px) {

    .hero-content {
        width: 92vw;
    }

    .contact {
        width: 92vw;
        flex-wrap: wrap;
    }
}

/* Phones */
@media (max-width: 480px) {

    .hero-content {
        width: 94vw;
    }

    .contact {
        width: 94vw;
        flex-direction: column;
        align-items: center;
    }

    .contact-item {
        width: 100%;
        max-width: 300px;
    }
}


/*RESPONSIVE */

/* ================================
   MOBILE RESPONSIVE - STEP 1
   ================================ */

@media (max-width: 768px) {
    html,
    body {
        width: 100%;
        min-height: 100%;
        margin: 0;
        padding: 0;
        overflow-x: hidden;
    }

    .page {
        width: 100%;
        min-height: 100vh;
        overflow-x: hidden;
    }
}

/* =========================================
   MOBILE RESPONSIVE - STEP 2
   Coming Soon Content
   ========================================= */

@media (max-width: 768px) {

    .page {
        width: 100%;
        min-height: 100vh;
        overflow: hidden;
    }

    .hero {
        width: 100%;
        min-height: 100vh;
        padding: 20px 15px;
        box-sizing: border-box;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        text-align: center;
    }

    .hero h1 {
        font-size: clamp(38px, 11vw, 64px);
        line-height: 0.95;
        margin: 10px 0 15px;
    }

    .hero p {
        font-size: 15px;
        line-height: 1.5;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

}

/* =========================================
   MOBILE RESPONSIVE - STEP 3
   PNG SCENE
   ========================================= */

@media (max-width: 768px) {

    .scene-layer {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        overflow: hidden !important;

        z-index: 1 !important;
        pointer-events: none !important;
    }

    .scene-layer img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;

        display: block !important;
    }

}

/* =========================================
   MOBILE RESPONSIVE - STEP 4
   CONTACT + FULL PAGE
   ========================================= */

@media (max-width: 768px) {

    html,
    body {
        height: auto !important;
        min-height: 100% !important;
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    .page {
        width: 100% !important;
        min-height: 100vh !important;
        height: auto !important;
        overflow: visible !important;
        padding-bottom: 130px !important;
    }


    /* BACKGROUND */

    .scene-layer {
        position: fixed !important;
        inset: 0 !important;

        width: 100vw !important;
        height: 100vh !important;

        z-index: 1 !important;
        overflow: hidden !important;
    }

    .scene-layer img {
        width: 100% !important;
        height: 100% !important;

        object-fit: cover !important;
        object-position: center center !important;
    }


    /* CONTACT INFORMATION */

    .page > .contact {
        position: relative !important;

        left: auto !important;
        bottom: auto !important;

        width: 92vw !important;
        height: auto !important;

        margin: 25px auto 20px !important;
        padding: 0 !important;

        transform: none !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: stretch !important;
        justify-content: center !important;

        gap: 12px !important;

        z-index: 50 !important;
    }


    .page > .contact > .contact-item {
        width: 100% !important;
        min-width: 0 !important;

        height: auto !important;
        min-height: 55px !important;

        display: flex !important;

        align-items: center !important;
        justify-content: flex-start !important;

        gap: 12px !important;

        padding: 8px 12px !important;

        box-sizing: border-box !important;

        font-size: 12px !important;

        white-space: normal !important;
    }


    .page > .contact .contact-icon {
        width: 42px !important;
        min-width: 42px !important;

        height: 42px !important;

        flex-shrink: 0 !important;
    }


    .page > .contact .contact-item > div:last-child {
        min-width: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        align-items: flex-start !important;
        justify-content: center !important;

        text-align: left !important;
    }


    .page > .contact .contact-item b {
        font-size: 12px !important;
        margin-bottom: 3px !important;
    }


    .page > .contact .contact-item a,
    .page > .contact .contact-item div:last-child {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

}

/* =========================================
   MOBILE RESPONSIVE - STEP 5
   COMPACT CONTACT SECTION
   ========================================= */

@media (max-width: 768px) {

    .page > .contact {
        width: 90vw !important;
        margin: 10px auto 10px !important;
        gap: 4px !important;
        padding: 0 !important;
    }

    .page > .contact > .contact-item {
        min-height: 42px !important;
        height: 42px !important;

        padding: 4px 8px !important;

        gap: 9px !important;

        background: transparent !important;
    }

    .page > .contact .contact-icon {
        width: 34px !important;
        min-width: 34px !important;
        height: 34px !important;
    }

    .page > .contact .contact-item b {
        font-size: 11px !important;
        margin-bottom: 1px !important;
    }

    .page > .contact .contact-item a,
    .page > .contact .contact-item div:last-child {
        font-size: 10px !important;
        line-height: 1.15 !important;
    }

}

/* MOBILE - Reduce logo to heading gap */
.hero {
    justify-content: flex-start;
}

.hero-content {
    margin-top: 100px;
}

/* MOBILE - Compact Contact Section */
@media (max-width: 768px) {

    .contact-item {
        width: 100%;
        max-width: 300px;
        margin: 0 !important;
        padding: 0 !important;
    }

    .contact-item + .contact-item {
        margin-top: 8px !important;
    }

    .contact-item p,
    .contact-item span,
    .contact-item strong {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

}


/* =========================================================
   FINAL COUNTDOWN → CONTACT ALIGNMENT
   Contact always stays directly below countdown
========================================================= */

.page > .contact {
    position: fixed !important;
    left: 50% !important;
    bottom: auto !important;

    transform: translateX(-50%) !important;

    width: min(900px, 84vw) !important;
    height: 55px !important;

    margin: 0 !important;
    padding: 0 !important;

    z-index: 50 !important;
}

.page > .contact > .contact-item {
    margin: 0 !important;
    padding: 0 !important;
}

@media (max-width: 800px) {

    .page > .contact {
        width: 96vw !important;
        height: 48px !important;
    }

    .page > .contact > .contact-item {
        height: 42px !important;
    }
}

/* =========================================
   MOBILE / TABLET CONTACT — COMPACT 2 + 1
========================================= */

@media (max-width: 800px) {

    .page > .contact {
        position: absolute !important;

        left: 50% !important;
        transform: translateX(-50%) !important;

        width: 94% !important;
        max-width: 430px !important;

        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;

        column-gap: 10px !important;
        row-gap: 4px !important;

        align-items: center !important;
        justify-items: center !important;

        margin: 4px 0 0 0 !important;
        padding: 0 !important;

        bottom: auto !important;
    }


    /* CALL + EMAIL */
    .page > .contact .contact-item {
        width: 100% !important;
        max-width: 190px !important;

        height: 42px !important;
        min-height: 42px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important;

        margin: 0 !important;
        padding: 0 !important;

        gap: 7px !important;
    }


    /* LOCATION — CENTER BELOW */
    .page > .contact .contact-item:nth-child(3) {
        grid-column: 1 / 3 !important;
        justify-self: center !important;

        max-width: 210px !important;
    }


    .page > .contact .contact-icon {
        width: 38px !important;
        height: 38px !important;

        min-width: 38px !important;
        min-height: 38px !important;

        flex-shrink: 0 !important;

        margin: 0 !important;
        padding: 0 !important;
    }


    .page > .contact .contact-info {
        margin: 0 !important;
        padding: 0 !important;

        display: flex !important;
        flex-direction: column !important;

        justify-content: center !important;

        line-height: 1.1 !important;
    }


    .page > .contact .contact-info * {
        margin: 0 !important;
        padding: 0 !important;

        line-height: 1.15 !important;
    }
}


/* =========================================
   SMALL MOBILE
========================================= */

@media (max-width: 480px) {

    .page > .contact {
        width: 96% !important;
        max-width: 360px !important;

        column-gap: 6px !important;
        row-gap: 3px !important;
    }

    .page > .contact .contact-item {
        max-width: 165px !important;
        height: 40px !important;
        min-height: 40px !important;

        gap: 6px !important;
    }

    .page > .contact .contact-item:nth-child(3) {
        max-width: 190px !important;
    }

    .page > .contact .contact-icon {
        width: 36px !important;
        height: 36px !important;

        min-width: 36px !important;
        min-height: 36px !important;
    }
}

@media (max-width: 800px) {

    .page > .contact {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: 42px 42px !important;

        column-gap: 6px !important;
        row-gap: 4px !important;

        height: 88px !important;
        overflow: visible !important;
    }

    /* Call Us */
    .page > .contact .contact-item:nth-child(1) {
        grid-column: 1 !important;
        grid-row: 1 !important;
        justify-self: end !important;
    }

    /* Email Us */
    .page > .contact .contact-item:nth-child(2) {
        grid-column: 2 !important;
        grid-row: 1 !important;
        justify-self: start !important;
    }

    /* Location */
    .page > .contact .contact-item:nth-child(3) {
        grid-column: 1 / 3 !important;
        grid-row: 2 !important;

        justify-self: center !important;
        align-self: start !important;

        display: flex !important;
        width: 190px !important;
        max-width: 190px !important;
        height: 42px !important;
        min-height: 42px !important;

        margin: 0 !important;
    }
}