/* ===========================================================
   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;
}


/* ===========================================================
   CONSULTATION SECTION
   =========================================================== */

#vmo-consultation-section {
    padding: 6rem 0;
    background: #ffffff;
    min-height: 120vh;
    position: relative;
}

.consultation-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    position: relative;
}

/* BOOT-UP SCREEN */

#vmo-bootup-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
    transition: opacity 0.5s ease;
}

.bootup-content {
    text-align: center;
}

.bootup-ring {
    width: 80px;
    height: 80px;
    border: 6px solid #222;
    border-top-color: transparent;
    border-radius: 50%;
    margin: auto;
    animation: spin 1.2s linear infinite;
}

.bootup-text {
    font-size: 1.2rem;
    margin-top: 1.2rem;
    color: #111;
    opacity: 0.85;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}


/* MAIN CONSULTATION UI */

#vmo-consultation-ui {
    display: flex;
    gap: 2rem;
    margin-top: 4rem;
}

.consult-left-panel {
    flex: 1;
    padding-right: 1rem;
}

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

.consult-desc {
    line-height: 1.6;
    font-size: 1.05rem;
    margin-bottom: 2rem;
}


/* VOICE STATUS */

#vmo-voice-status {
    display: none;
    align-items: center;
    margin-top: 1rem;
}

.voice-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #ff0055;
    margin-right: 10px;
    animation: pulse 1s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1.0); opacity: 1; }
    to   { transform: scale(1.3); opacity: 0.6; }
}

/* CHAT PANEL */

.consult-right-panel {
    flex: 1;
    background: #fafafa;
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid #e8e8e8;
}

#vmo-chat-window {
    height: 450px;
    overflow-y: auto;
    padding: 1rem;
}

.chat-msg {
    margin-bottom: 1.2rem;
    padding: 0.8rem 1.1rem;
    border-radius: 12px;
    max-width: 85%;
    line-height: 1.45;
    font-size: 1rem;
}

.chat-ai {
    background: #f2f2f2;
    color: #000;
    border: 1px solid #ddd;
}

.chat-user {
    background: #000;
    color: #fff;
    margin-left: auto;
}

/* INPUT BAR */

#vmo-input-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 1rem;
}

#vmo-chat-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

#vmo-upload-btn,
#vmo-mic-btn,
#vmo-send-btn {
    background: #000;
    color: #fff;
    border: none;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    cursor: pointer;
}


/* ===========================================================
   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) {
    #vmo-consultation-ui {
        flex-direction: column;
    }

    .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;
    }
}
