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

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

html, body {
    font-family: "Inter", sans-serif;
    background: #ffffff;
    color: #111;
    overflow-x: hidden;
}

[data-scroll-container] {
    overflow: hidden;
}

/* Smooth text rendering */
body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* ===========================================================
   GLOBAL HELPERS
   =========================================================== */

.vmo-btn-primary {
    background: #0a0a0a;
    color: #fff;
    border: none;
    padding: 14px 26px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s;
}

.vmo-btn-primary:hover {
    background: #2c2c2c;
}

.vmo-btn-secondary {
    background: #ffffff;
    border: 2px solid #000;
    color: #000;
    padding: 14px 26px;
    font-size: 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s;
}

.vmo-btn-secondary:hover {
    background: #000;
    color: #fff;
}


/* ===========================================================
   HERO HEADER (TINY POD STYLE)
   =========================================================== */

#vmo-header {
    position: relative;
    height: 500vh;
    width: 100%;
}

#vmo-header-overlay {
    position: fixed;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -40%);
    color: #fff;
    z-index: 10;
    text-align: center;
    width: 90%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.hero-sub {
    font-size: 1.4rem;
    opacity: 0.9;
}


/* ===========================================================
   PHASE SUMMARIES
   =========================================================== */

#vmo-phase-summaries {
    padding: 6rem 0;
    background: #fcfcfc;
    display: none; /* Shown by JS */
}

.phase-summary-card {
    width: 85%;
    max-width: 1000px;
    margin: 2rem auto;
    background: #fff;
    border: 1px solid #e8e8e8;
    padding: 2rem;
    border-radius: 12px;
}

.phase-summary-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}


/* ===========================================================
   STOPPOINT
   =========================================================== */

#vmo-stoppoint {
    text-align: center;
    padding: 8rem 2rem;
    background: #ffffff;
}

.stoppoint-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.stoppoint-desc {
    font-size: 1.15rem;
    margin: 1rem auto 2rem;
    max-width: 700px;
    line-height: 1.55;
}


/* ===========================================================
   VIDEO DEMO SECTION
   =========================================================== */

#vmo-video-demo {
    padding: 8rem 0;
    background: #f7f7f7;
}

.video-demo-wrapper {
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.video-demo-frame {
    position: relative;
    width: 100%;
    border-radius: 14px;
    overflow: hidden;
    background: #000;
    height: 600px;
}

.video-demo-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-demo-overlay {
    position: absolute;
    top: 40px;
    left: 40px;
    color: #fff;
    z-index: 5;
}

.video-demo-title {
    font-size: 2.2rem;
    font-weight: 700;
}


/* ===========================================================
   HORIZONTAL SCROLL SECTION
   =========================================================== */

#vmo-features {
    height: 100vh;
    position: relative;
}

.horizontal-scroll-wrapper {
    display: flex;
    height: 100%;
}

.h-panel {
    min-width: 100vw;
    height: 100%;
    padding: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.h-content {
    max-width: 700px;
    text-align: center;
}

.h-title {
    font-size: 2.4rem;
    margin-bottom: 1rem;
}

.h-desc {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.h-video-frame {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 14px;
}

.h-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* ===========================================================
   PARALLAX SECTION
   =========================================================== */

#vmo-parallax-1 {
    position: relative;
    height: 90vh;
    background: #fff;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: #f2f2f2;
    z-index: -1;
}

.parallax-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.parallax-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}


/* ===========================================================
   FEATURE GRID SECTION
   =========================================================== */

#vmo-feature-grid {
    padding: 6rem 0;
    background: #ffffff;
}

.grid-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    width: 90%;
    max-width: 1400px;
    margin: auto;
}

.grid-card {
    background: #fafafa;
    border: 1px solid #eaeaea;
    padding: 2rem;
    border-radius: 12px;
}

.grid-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.grid-card p {
    font-size: 1.1rem;
    line-height: 1.5;
}


/* ===========================================================
   EARLY ACCESS SECTION
   =========================================================== */

#vmo-early-access {
    text-align: center;
    padding: 8rem 2rem;
    background: #fafbff;
}

.early-title {
    font-size: 2.6rem;
    margin-bottom: 1rem;
}

.early-desc {
    max-width: 750px;
    margin: auto;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

#vmo-early-access-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 350px;
    margin: 0 auto 1rem;
}

#vmo-early-access-form input {
    padding: 1rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
}


/* ===========================================================
   FOOTER
   =========================================================== */

#vmo-footer {
    background: #000;
    color: #fff;
    padding: 4rem 2rem 2rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.footer-left {
    max-width: 350px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-right {
    display: flex;
    gap: 3rem;
}

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    font-size: 0.9rem;
    opacity: 0.8;
}


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

@media (max-width: 992px) {
    .grid-row {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .h-video-frame {
        height: 250px;
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .parallax-content h2 {
        font-size: 2rem;
    }

    .grid-card h3 {
        font-size: 1.4rem;
    }

    .grid-card p {
        font-size: 1rem;
    }
}
