@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Bricolage+Grotesque:wght@600;700;800&family=Playfair+Display:ital,wght@1,400;1,700&display=swap');

:root {
    --primary-orange: #F47B33; /* Softer, premium orange */
    --dark-orange: #E06A2A;    /* For gradients and depth */
    --light-orange: #F58843;   /* Center point for glows */
    --warm-white: #FFF8F4;
    --pure-white: #FFFFFF;
    --near-black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --mid-gray: #666666;
    --orange-muted: #FFE0C8;
    --orange-light-tint: #FFF0E6;
    --card-border: #FFD4B3;
    --white-on-orange: #FFFFFF;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--pure-white);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.6s;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.loader-text {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-orange);
    letter-spacing: -0.5px;
    animation: loaderPulse 2s infinite ease-in-out;
}

@keyframes loaderPulse {
    0%, 100% { opacity: 1; transform: translateY(0); }
    50% { opacity: 0.6; transform: translateY(5px); }
}

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

html, body {
    max-width: 100%;
    overflow-x: hidden;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark-gray);
    background-color: var(--pure-white);
    line-height: 1.7;
    font-size: 16px;
    font-weight: 400;
}

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Typography Utility Classes */
.h1-hero {
    line-height: 1.1;
    margin-bottom: 32px;
}

.hero-line-top {
    font-family: 'Playfair Display', serif;
    font-size: clamp(20px, 2.5vw, 28px);
    font-style: italic;
    font-weight: 500;
    color: var(--mid-gray);
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 12px;
}

h1, h2, h3, .h1-hero, .h2-section, .h3-card, .column-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    letter-spacing: -0.02em;
}

.hero-line-main {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 800;
    color: var(--near-black);
    display: block;
    letter-spacing: -2px;
    line-height: 1;
}

.h2-section {
    font-size: 38px;
    font-weight: 800;
}

.h2-section.on-orange {
    color: var(--pure-white);
}

.h2-section.on-white {
    color: var(--near-black);
}

.h3-card {
    font-size: 22px;
    font-weight: 600;
}

.h3-card.on-white {
    color: var(--near-black);
}

.h3-card.on-orange {
    color: var(--pure-white);
}

.text-small-label {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary-orange);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.text-small-label.on-orange {
    color: var(--orange-muted);
}

.text-body {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.7;
}

.text-body.on-white {
    color: var(--dark-gray);
}

.text-body.on-orange {
    color: var(--orange-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: none;
}

.btn-primary-pill {
    background-color: var(--primary-orange);
    color: var(--pure-white);
    border-radius: 50px;
    padding: 14px 32px;
    box-shadow: 0 4px 15px rgba(244, 123, 51, 0.2);
}

.btn-primary-pill:hover {
    background-color: var(--dark-orange);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(244, 123, 51, 0.3);
}

.btn-secondary-outline {
    background-color: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    border-radius: 50px;
    padding: 14px 32px;
}

.btn-secondary-outline:hover {
    background-color: rgba(244, 123, 51, 0.05);
    transform: translateY(-3px);
}

.btn-primary-on-white {
    background-color: var(--primary-orange);
    color: var(--pure-white);
}

.btn-primary-on-white:hover {
    background-color: var(--dark-orange);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 26, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--pure-white);
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

@media (max-width: 767px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95); /* White background */
    backdrop-filter: blur(15px);
    z-index: 1000;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

@media (min-width: 1024px) {
    .navbar {
        padding: 16px 60px;
    }
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-menu-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

@media (max-width: 1023px) {
    .nav-menu-wrapper {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: linear-gradient(135deg, var(--primary-orange) 0%, var(--dark-orange) 100%);
        flex-direction: column;
        justify-content: center;
        padding: 60px 24px;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
        overflow-y: auto;
    }

    .nav-menu-wrapper.active {
        right: 0;
    }

    .nav-links-center {
        flex-direction: column;
        align-items: center;
        gap: 24px;
        margin-bottom: 40px;
    }

    .nav-links-center a {
        font-size: 28px;
        font-weight: 800;
        letter-spacing: -0.5px;
        color: var(--pure-white);
    }

    .menu-close-btn {
        display: block;
        position: absolute;
        top: 24px;
        right: 24px;
        background: rgba(255, 255, 255, 0.1);
        border: none;
        color: var(--pure-white);
        cursor: pointer;
        width: 48px;
        height: 48px;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .menu-close-btn svg {
        width: 32px;
        height: 32px;
    }

    .nav-menu-wrapper .nav-btn {
        width: 100%;
        max-width: 320px;
        font-size: 18px;
        padding: 18px 0;
    }
}

@media (min-width: 1024px) {
    .menu-close-btn {
        display: none;
    }
}

.nav-links-center {
    display: flex;
    gap: 32px;
}

.nav-links-center a {
    color: var(--dark-gray); /* Dark links */
    font-size: 15px;
    font-weight: 500;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.nav-links-center a:hover {
    opacity: 1;
    color: var(--primary-orange);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    display: block;
}

@media (max-width: 767px) {
    .nav-logo-img {
        height: 32px;
    }
}

.footer-logo-img {
    height: 130px;
    width: auto;
    margin-bottom: 32px;
}

.mobile-menu-btn {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-orange); /* Orange hamburger for white bg */
    padding: 8px;
}

@media (min-width: 1024px) {
    .mobile-menu-btn {
        display: none;
    }
}

.mobile-menu-btn svg {
    width: 24px;
    height: 24px;
}

/* Sections */
section {
    padding: 20px 0;
}

/* Futuristic Hero - White Theme */
.futuristic-hero {
    background-color: var(--pure-white);
    background-image: 
        radial-gradient(circle at 50% 0%, rgba(244, 123, 51, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(244, 123, 51, 0.02) 0%, transparent 50%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
    width: 100%;
}

.hero-bg-visuals {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.wave {
    position: absolute;
    width: 600px;
    height: 800px;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    filter: blur(80px);
    opacity: 0.4;
}

.wave-left {
    top: -200px;
    left: -200px;
    background: radial-gradient(circle at center, rgba(244, 123, 51, 0.05), transparent);
    border-radius: 45% 55% 70% 30% / 30% 40% 60% 70%;
    animation: morphing 15s infinite alternate ease-in-out;
}

.wave-right {
    bottom: -200px;
    right: -200px;
    background: radial-gradient(circle at center, rgba(244, 123, 51, 0.03), transparent);
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
    animation: morphing 18s infinite alternate-reverse ease-in-out;
}

@keyframes morphing {
    0% { border-radius: 45% 55% 70% 30% / 30% 40% 60% 70%; transform: translate(0, 0) rotate(0deg); }
    100% { border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; transform: translate(50px, 50px) rotate(15deg); }
}

.hero-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text-content {
    text-align: left;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--mid-gray);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 550px;
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

.scarcity-line-new {
    font-size: 14px;
    color: var(--mid-gray);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Orbital Visuals */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-only-visual {
    display: none;
}

.desktop-only-visual {
    display: block;
}

.orbital-scene {
    position: relative;
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.ring {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    pointer-events: none;
}

.ring-1 { width: 110%; height: 40%; border-color: rgba(244,123,51,0.1); transform: rotateX(75deg) rotateY(15deg); animation: rotateRing 10s infinite linear; }
.ring-2 { width: 120%; height: 50%; border-color: rgba(244,123,51,0.15); transform: rotateX(70deg) rotateY(-25deg); animation: rotateRing 15s infinite linear reverse; }
.ring-3 { width: 130%; height: 60%; border-color: rgba(244,123,51,0.08); transform: rotateX(80deg) rotateY(45deg); animation: rotateRing 20s infinite linear; }

@keyframes rotateRing {
    from { transform: rotateX(75deg) rotateY(15deg) rotateZ(0deg); }
    to { transform: rotateX(75deg) rotateY(15deg) rotateZ(360deg); }
}

.central-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--orange-muted) 0%, transparent 70%);
    filter: blur(40px);
    opacity: 0.3;
    z-index: 1;
}

.video-container-premium {
    position: relative;
    width: 100%;
    z-index: 2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12); /* Softer but deeper shadow for white BG */
    border: 1px solid rgba(244, 123, 51, 0.15); /* Orange tint border */
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container-premium:hover {
    transform: scale(1.02);
    border-color: var(--primary-orange);
}

.video-inner-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(255, 107, 26, 0.4);
    pointer-events: none;
    z-index: 2;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.premium-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--pure-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s ease;
}

.premium-play-btn svg {
    width: 32px;
    height: 32px;
    fill: var(--primary-orange);
    margin-left: 6px;
}

.pulse-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--pure-white);
    border-radius: 50%;
    animation: pulseGlow 2s infinite;
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.8); opacity: 0; }
}

/* Glass Stat Cards - Dark Theme for White BG */
.glass-stat-card {
    position: absolute;
    padding: 20px 24px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(244, 123, 51, 0.1);
    border-radius: 16px;
    z-index: 3;
    min-width: 160px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.card-left {
    top: 10%;
    left: -40px;
}

.card-right {
    bottom: 10%;
    right: -40px;
}

.stat-num {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--mid-gray);
    line-height: 1.4;
    font-weight: 600;
}

.floating-anim { animation: floating 4s infinite ease-in-out; }
.floating-anim-delayed { animation: floating 4s infinite ease-in-out 2s; }

.particle-field {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.particle {
    position: absolute;
    background: var(--primary-orange);
    border-radius: 50%;
    pointer-events: none;
    animation: twinkle infinite ease-in-out;
}

@keyframes floating {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

/* Workflow Visualization Background */
.workflow-visualization {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    max-width: 1400px;
    max-height: 500px;
    opacity: 0.35;
    pointer-events: none;
    z-index: 1;
}

.workflow-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.workflow-path-active {
    filter: drop-shadow(0 0 8px var(--pure-white));
    animation: energyFlow 15s infinite linear;
}

@keyframes energyFlow {
    0% { stroke-dashoffset: 1000; }
    100% { stroke-dashoffset: -1000; }
}

.nodes-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.workflow-node {
    position: absolute;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.node-glass {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    animation: nodePulse 4s infinite ease-in-out;
}

.node-num {
    position: absolute;
    top: -8px;
    right: -8px;
    font-size: 10px;
    font-weight: 800;
    background: var(--primary-orange);
    color: var(--pure-white);
    padding: 2px 4px;
    border-radius: 4px;
}

.node-icon {
    font-size: 24px;
}

.node-info {
    text-align: center;
    pointer-events: auto;
}

.node-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--pure-white);
    margin-bottom: 2px;
}

.node-sub {
    font-size: 10px;
    color: var(--orange-muted);
    max-width: 120px;
}

/* Sequential Lighting */
@keyframes nodePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 20px rgba(0,0,0,0.1); }
    50% { transform: scale(1.1); box-shadow: 0 0 30px rgba(255,255,255,0.2); }
}

/* Sequential Lighting Glow */
@keyframes nodeActivate {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.8); box-shadow: 0 0 50px rgba(255, 255, 255, 0.4); }
}

.node-1 .node-glass { animation: nodePulse 4s infinite ease-in-out 0s, nodeActivate 15s infinite ease-in-out 0s; }
.node-2 .node-glass { animation: nodePulse 4s infinite ease-in-out 1s, nodeActivate 15s infinite ease-in-out 2.5s; }
.node-3 .node-glass { animation: nodePulse 4s infinite ease-in-out 2s, nodeActivate 15s infinite ease-in-out 5s; }
.node-4 .node-glass { animation: nodePulse 4s infinite ease-in-out 3s, nodeActivate 15s infinite ease-in-out 7.5s; }
.node-5 .node-glass { animation: nodePulse 4s infinite ease-in-out 4s, nodeActivate 15s infinite ease-in-out 10s; }
.node-6 .node-glass { animation: nodePulse 4s infinite ease-in-out 5s, nodeActivate 15s infinite ease-in-out 12.5s; }

@media (max-width: 992px) {
    .workflow-visualization {
        opacity: 0.2;
        transform: translate(-50%, -50%) scale(0.65);
    }
    .node-sub { display: none; }
}

@media (max-width: 768px) {
    .workflow-visualization {
        display: none; /* Hide on mobile for performance and clarity */
    }
}

@keyframes twinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.2); }
}

/* Framework Section */
.framework {
    background-color: var(--pure-white);
    text-align: center;
}

.framework .section-header {
    margin-bottom: 64px;
}

.framework .section-header .text-small-label {
    margin-bottom: 16px;
    display: inline-block;
}

.framework-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    text-align: left;
    margin-bottom: 64px;
}

.framework-card {
    padding: 40px;
    border-radius: 10px;
}

.framework-card.negative {
    background-color: var(--warm-white);
    border: 1.5px solid var(--card-border);
}

.framework-card.negative .card-header {
    color: var(--dark-orange);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.framework-card.negative ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--dark-gray);
}

.framework-card.positive {
    background-color: var(--primary-orange);
    color: var(--pure-white);
}

.framework-card.positive .card-header {
    color: var(--pure-white);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.framework-card.positive ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--orange-muted);
}

.vibe-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    background: var(--warm-white);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--card-border);
}

.vibe-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.vibe-step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-orange);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
}

.vibe-step-title {
    font-weight: 700;
    color: var(--near-black);
    margin-bottom: 8px;
}

.vibe-arrow {
    color: var(--card-border);
}

/* Discover Section */
.discover {
    background-color: var(--warm-white);
    text-align: center;
}

.discover .sub-text {
    color: var(--mid-gray);
    margin-top: 16px;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.discover-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.discover-card {
    background-color: #0B1120;
    border-top: 4px solid #D4AF37; /* Gold accent */
    padding: 40px;
    border-radius: 8px;
    text-align: left;
    color: var(--pure-white);
}

.discover-icon {
    font-size: 40px;
    margin-bottom: 24px;
}

.discover-card h3 {
    color: var(--pure-white);
    margin-bottom: 16px;
}

.discover-card p {
    color: #9CA3AF; /* Light gray for dark background */
}

/* Exclusively For Section */
.exclusively {
    background-color: #FFF7F0; /* 50% + Lighter orange tint */
    text-align: center;
    color: var(--near-black);
    border-top: 1px solid var(--orange-light-tint);
    border-bottom: 1px solid var(--orange-light-tint);
}

.exclusively .h2-section {
    color: var(--near-black);
    margin-bottom: 16px;
}

.exclusively .qualifier-line {
    color: var(--primary-orange);
    font-style: italic;
    margin-bottom: 48px;
    font-size: 18px;
    font-weight: 600;
}

.exclusively-list {
    max-width: 800px;
    margin: 0 auto 48px;
    text-align: left;
}

.exclusively-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
    font-size: 18px;
    font-weight: 500;
    color: var(--dark-gray);
    line-height: 1.6;
}

.exclusively-list li .check {
    color: var(--primary-orange);
    font-weight: bold;
    font-size: 20px;
}

.exclusively .sub-text-btn {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--mid-gray);
}

/* Mobile Tweaks for Exclusively Section */
@media (max-width: 767px) {
    .exclusively .h2-section {
        font-size: 24px;
    }
    
    .exclusively .qualifier-line {
        font-size: 14px;
        margin-bottom: 32px;
    }

    .exclusively-list li {
        font-size: 14px;
        margin-bottom: 16px;
        gap: 10px;
    }

    .exclusively-list li .check {
        font-size: 16px;
    }
}

/* Switch Section */
.switch {
    background-color: var(--pure-white);
    text-align: center;
}

.switch .h2-section {
    margin-bottom: 64px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.carousel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.carousel-card {
    background: var(--warm-white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--card-border);
}

.carousel-img {
    height: 200px;
    background-color: #E5E7EB;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--mid-gray);
    font-weight: 600;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    padding: 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--near-black);
    text-align: left;
}

/* Case Studies */
.case-studies {
    background-color: var(--warm-white);
    text-align: center;
}

.case-studies .h2-section {
    margin-bottom: 64px;
}

.case-study-card {
    background: var(--pure-white);
    border-radius: 16px;
    padding: 48px;
    margin-bottom: 48px;
    text-align: left;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.cs-content h3 {
    font-size: 28px;
    color: var(--near-black);
    margin-bottom: 24px;
}

/* Case Study Refined Styles */
.cs-badge {
    display: inline-block;
    background: rgba(244, 123, 51, 0.1);
    color: var(--primary-orange);
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(244, 123, 51, 0.2);
}

.cs-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 32px;
}

.cs-stat-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 3px solid #F3F4F6;
    padding-left: 16px;
    transition: all 0.3s ease;
}

.cs-stat-box:hover {
    border-left-color: var(--primary-orange);
}

.cs-number {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-orange);
    line-height: 1;
}

.cs-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--mid-gray);
    line-height: 1.3;
}

.cs-visual {
    background: #FFF7F0; /* Branded light tint */
    border-radius: 12px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 0 40px rgba(0,0,0,0.02);
}

.cs-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cs-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.8);
    color: var(--pure-white);
    padding: 12px;
    text-align: center;
    font-size: 14px;
}

.case-studies-cta {
    margin-top: 64px;
}

.case-studies-cta .sub-text {
    display: block;
    margin-top: 16px;
    font-size: 14px;
    color: var(--mid-gray);
}

/* About Section */
.about {
    background-color: var(--near-black);
    color: var(--pure-white);
    text-align: center;
}

.about .h2-section {
    color: var(--pure-white);
    margin-bottom: 32px;
}

.about .about-text {
    max-width: 700px;
    margin: 0 auto 64px;
    color: #D1D5DB;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 64px;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--pure-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.founder-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.1);
}

.founder-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #374151;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 10px 30px rgba(244, 123, 51, 0.2);
}

.founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.founder-info h4 {
    font-size: 22px;
    color: var(--pure-white);
    margin-bottom: 4px;
}

.founder-info .title {
    color: var(--primary-orange);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    display: block;
}

.founder-info .quote {
    font-size: 18px;
    font-style: italic;
    color: #D1D5DB;
    line-height: 1.6;
}

/* Featured In */
.featured {
    background-color: var(--pure-white);
    text-align: center;
    padding: 60px 0;
}

.featured h3 {
    font-size: 20px;
    color: var(--mid-gray);
    margin-bottom: 40px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 48px;
}

.media-logo {
    height: 40px;
    filter: grayscale(100%) opacity(0.6);
    transition: all 0.3s ease;
}

.media-logo:hover {
    filter: grayscale(0%) opacity(1);
}

.media-placeholder {
    padding: 10px 20px;
    background: #F3F4F6;
    border-radius: 6px;
    color: #9CA3AF;
    font-weight: 600;
    font-size: 14px;
}

/* FAQ */
.faq {
    background-color: var(--pure-white);
    text-align: center;
}

.faq .h2-section {
    margin-bottom: 64px;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid #E5E7EB;
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 0;
    font-size: 18px;
    font-weight: 600;
    color: var(--near-black);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 24px;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

/* Comparison Layout Framework */
.comparison-layout {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-top: 60px;
    position: relative;
}

.comparison-column {
    flex: 1;
    max-width: 450px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.column-title {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 40px;
    color: var(--near-black);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pill-stack {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    width: 100%;
}

/* Connecting Line */
.pill-stack::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: #e0e0e0;
    transform: translateX(-50%);
    z-index: 0;
}

.new-way .pill-stack::before {
    background: var(--primary-orange);
    opacity: 0.3;
}

.pill-item {
    background: var(--pure-white);
    border: 1px solid #eee;
    border-radius: 50px;
    padding: 14px 24px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.pill-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-gray);
}

/* New Way Highlights */
.new-way .pill-item.highlighted {
    border: 2px solid var(--primary-orange);
    box-shadow: 0 8px 25px rgba(244, 123, 51, 0.15);
}

.new-way .pill-item.highlighted .pill-text {
    color: var(--near-black);
    font-weight: 700;
}

/* Status Items */
.status-bad {
    background: #fdf2f2;
    border-color: #fecaca;
}

.status-bad .pill-text {
    color: #b91c1c;
}

.status-good {
    background: var(--primary-orange);
    border: none !important;
}

.status-good .pill-text {
    color: var(--pure-white);
    font-weight: 800;
}

/* Annotations */
.annotation {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--mid-gray);
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
    pointer-events: none;
}

.annotation.left {
    right: 105%;
    top: 50%;
    transform: translateY(-50%);
}

.annotation.right {
    left: 105%;
    top: 50%;
    transform: translateY(-50%);
}

.arrow-svg {
    width: 40px;
    height: 20px;
    stroke-dasharray: 100;
    animation: drawLine 2s infinite alternate;
}

.column-footer {
    margin-top: 32px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--mid-gray);
}

.new-way .column-footer {
    color: var(--primary-orange);
}

@keyframes drawLine {
    from { stroke-dashoffset: 100; }
    to { stroke-dashoffset: 0; }
}

@media (max-width: 1023px) {
    .comparison-layout {
        flex-direction: row; /* Changed from column to keep side-by-side */
        align-items: flex-start;
        gap: 12px;
    }

    .comparison-column {
        flex: 1;
        min-width: 0;
    }

    .column-title {
        font-size: 13px;
        margin-bottom: 24px;
        text-align: center;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pill-stack {
        gap: 12px;
    }

    .pill-item {
        padding: 10px 6px;
        min-height: 46px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .pill-text {
        font-size: 11px;
        line-height: 1.2;
    }

    .annotation {
        display: none; /* Hide annotations on smaller screens to prevent overlap */
    }

    .column-footer {
        font-size: 10px;
        margin-top: 20px;
        text-align: center;
    }
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding-bottom: 24px;
    color: var(--mid-gray);
    display: none;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

/* Final CTA - Redesigned to Light Theme */
.final-cta {
    background-color: #FFF9F5; /* Softer, reduced background color */
    text-align: center;
    color: var(--near-black);
    padding: 60px 0; /* Reduced overall height */
    border-top: 1px solid #FFE5D4;
}

.final-cta .h2-section {
    font-size: 36px; /* Slightly smaller for better balance */
    color: var(--near-black);
    margin-bottom: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .sub-heading {
    color: var(--primary-orange); /* Changed from yellow to brand orange */
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 24px;
}

.final-cta .body-text {
    max-width: 600px;
    margin: 0 auto 32px;
    color: var(--dark-gray);
    line-height: 1.6;
    font-size: 16px;
}

.final-cta .btn {
    /* Uses .btn-primary-pill from global styles */
    margin-bottom: 24px;
}

.final-cta .qual-reminder {
    font-size: 14px;
    color: var(--mid-gray);
    margin-bottom: 8px;
    font-weight: 600;
}

.final-cta .trust-line {
    font-size: 12px;
    color: var(--mid-gray);
    opacity: 0.8;
}

@media (max-width: 767px) {
    .final-cta {
        padding: 40px 20px;
    }
    .final-cta .h2-section {
        font-size: 26px;
    }
    .final-cta .sub-heading {
        font-size: 16px;
    }
}

/* Footer */
footer {
    background-color: var(--near-black);
    color: var(--pure-white);
    padding: 80px 0 32px;
}

.logo-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px; /* Generous gap for super-sized logos */
    flex-wrap: wrap;
    margin-top: 60px;
}

.media-logo {
    height: 105px; /* Additional 30% increase for massive visibility */
    width: auto;
    filter: none;
    opacity: 1; /* Maximum boldness */
    transition: all 0.3s ease;
}

.media-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 767px) {
    .logo-strip {
        gap: 50px;
    }
    
    .media-logo {
        height: 70px; /* Extra large mobile size */
    }
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 64px;
    flex-wrap: wrap;
    gap: 48px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-desc {
    color: #9CA3AF;
    margin-bottom: 24px;
    max-width: 400px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    color: var(--pure-white);
    font-weight: 600;
    font-size: 14px;
}

.social-links a:hover {
    color: var(--primary-orange);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    color: #9CA3AF;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--pure-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    text-align: center;
    color: #6B7280;
    font-size: 13px;
    line-height: 1.6;
}

@media (max-width: 767px) {
    .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 40px;
    }
    
    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .social-links {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-logo-img {
        height: 80px; /* Scaled down slightly for mobile but still large */
    }
}

/* Sticky CTA Bar */
.sticky-cta-bar {
    display: none; /* Hidden on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.08);
    padding: 16px 0;
    z-index: 9999;
    border-top: 1px solid #FFE5D4;
    transition: transform 0.3s ease;
}

.sticky-flex {
    display: flex;
    justify-content: center;
    align-items: center;
}

.sticky-btn {
    padding: 12px 56px !important; /* Prominent button */
    font-size: 16px !important;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .sticky-cta-bar {
        display: block; /* Shown only on mobile */
        padding: 12px 0;
    }
    
    .sticky-flex {
        justify-content: center;
    }

    .sticky-btn {
        width: 90%;
        padding: 12px 20px !important;
        font-size: 15px !important;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.hero .h1-hero, 
.hero .qualifier-text, 
.hero-video-placeholder, 
.hero .btn, 
.hero .scarcity-line {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero .h1-hero { animation-delay: 0.1s; }
.hero .qualifier-text { animation-delay: 0.2s; }
.hero-video-placeholder { animation-delay: 0.3s; }
.hero .btn { animation-delay: 0.4s; }
.hero .scarcity-line { animation-delay: 0.5s; }

/* Section Gradient Overlays */
.hero {
    background: var(--pure-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(244, 123, 51, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

/* Mobile Responsive Improvement */
@media (max-width: 1023px) {
    .hero-layout {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 48px;
    }

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

    .hero-subtitle {
        margin: 0 auto 24px;
        font-size: 15px; /* Reduced from 18px */
        color: var(--mid-gray);
        max-width: 90%;
    }

    .desktop-only-visual {
        display: none !important;
    }

    .mobile-only-visual {
        display: block !important;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: row; /* Side by side */
        gap: 8px;
        padding: 0 10px;
        width: 100%;
    }

    .hero-cta-group .btn {
        flex: 1; /* Equal width */
        min-height: 40px;
        font-size: 13px; /* Slightly smaller to fit better */
        padding: 10px 5px;
        white-space: nowrap;
    }

    .scarcity-line-new {
        justify-content: center;
    }

    .hero-visual-wrapper {
        margin-top: 24px;
    }

    .video-container-premium {
        border-radius: 12px;
    }

    .premium-play-btn {
        width: 60px;
        height: 60px;
    }

    .premium-play-btn svg {
        width: 24px;
        height: 24px;
    }

    .glass-stat-card {
        display: none !important;
    }

    .orbital-scene {
        flex-direction: column;
        gap: 20px;
        height: auto;
    }

    .ring, .workflow-visualization {
        display: none !important;
    }

    section {
        padding: 64px 0;
    }

    .hero {
        padding: 80px 0 40px;
        min-height: auto; /* Allow content to dictate height on mobile */
    }

    .h2-section {
        font-size: 30px;
        line-height: 1.3;
    }

    .framework-card, .discover-card {
        padding: 32px 20px;
    }

    .framework-grid, .discover-grid, .case-study-card {
        grid-template-columns: 1fr;
    }

    .vibe-flow {
        flex-wrap: wrap;
        justify-content: center;
        gap: 24px;
    }

    .vibe-arrow {
        transform: rotate(90deg);
    }
}

@media (max-width: 767px) {
    .h1-hero {
        margin-bottom: 24px;
    }

    .hero-line-top {
        font-size: 16px;
        letter-spacing: 0;
    }

    .hero-line-main {
        font-size: 32px;
        font-weight: 600; /* Reduced from 800 for mobile balance */
        letter-spacing: -0.5px;
        line-height: 1.2;
        text-align: center;
    }

    .h2-section {
        font-size: 28px;
        font-weight: 700;
        text-align: center;
        line-height: 1.3;
    }

    .h3-card {
        font-size: 20px;
    }

    .case-study-card {
        padding: 30px 20px;
        gap: 24px;
    }

    .cs-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        margin-top: 24px;
        text-align: left;
    }

    .cs-stat-box {
        padding-left: 10px;
        border-left-width: 2px;
    }

    .cs-number {
        font-size: 18px;
    }

    .cs-label {
        font-size: 11px;
    }

    .cs-badge {
        margin-bottom: 12px;
    }

    .carousel-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }

    .founder-section {
        flex-direction: column;
        text-align: center;
        padding: 24px 16px;
    }

    .founder-photo {
        width: 120px;
        height: 120px;
    }

    .footer-top {
        flex-direction: column;
        gap: 32px;
        text-align: center;
        align-items: center;
    }

    .footer-desc {
        margin-left: auto;
        margin-right: auto;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 16px;
    }

    .hero-cta-group .btn {
        padding: 10px 5px !important;
        font-size: 12px !important; /* Extra small for mobile width */
        min-height: 40px !important;
        flex: 1 !important;
        width: auto !important;
    }

    .vibe-flow {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding: 24px 16px;
    }

    .vibe-step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .vibe-arrow {
        display: none;
    }
}

/* VIBE System Container */
.vibe-system-container {
    background: #FFF9F5; /* Very light orange tint */
    border: 1px solid #FFE5D4;
    border-radius: 24px;
    padding: 40px;
    margin: 40px auto 0; /* Added top margin to prevent overlap */
    max-width: 1100px;
}

.vibe-container-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Align to top of labels */
    margin-bottom: 40px;
    width: 100%;
}

.path-label {
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0.05em;
    line-height: 1.3;
    text-transform: uppercase;
}

.path-bad {
    color: var(--mid-gray);
    opacity: 0.6;
    text-align: left;
}

.path-good {
    color: var(--primary-orange);
    text-align: right;
}

.vibe-flow-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start; /* Anchor to top to keep circles level */
    gap: 10px;
    padding: 0 10px;
}

.vibe-step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.vibe-icon-circle {
    width: 80px;
    height: 80px;
    background: var(--primary-orange);
    color: var(--pure-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    font-family: 'Bricolage Grotesque', sans-serif;
    margin-bottom: 20px;
    box-shadow: 0 10px 25px rgba(244, 123, 51, 0.2);
    flex-shrink: 0; /* Prevent shrinking */
}

.vibe-step-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-height: 60px; /* Ensure consistent spacing for text */
}

.meta-title {
    font-family: 'Bricolage Grotesque', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--near-black);
    line-height: 1.2;
}

.meta-desc {
    font-size: 12px;
    color: var(--mid-gray);
    line-height: 1.4;
}

.vibe-flow-arrow {
    color: #FFDCC5;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 28px; /* Perfectly centers 24px arrow with 80px circle center (40px) */
    flex-shrink: 0;
}

@media (max-width: 1023px) {
    .vibe-system-container {
        padding: 30px 20px;
    }

    .vibe-flow-wrapper {
        flex-wrap: wrap;
        gap: 30px;
        justify-content: center;
    }

    .vibe-step-item {
        flex: 0 0 40%; /* 2x2 grid */
    }

    .vibe-flow-arrow {
        display: none;
    }
}

@media (max-width: 767px) {
    .vibe-system-container {
        padding: 15px 10px;
        margin: 20px 10px;
    }

    .vibe-flow-wrapper {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 5px;
        justify-content: space-between;
    }

    .vibe-step-item {
        flex: 1;
        min-width: 0;
    }

    .vibe-icon-circle {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .meta-title {
        font-size: 9px;
        letter-spacing: -0.2px;
    }

    .meta-desc {
        font-size: 7px;
        display: none; /* Hide descriptions on mobile to save space */
    }

    .vibe-flow-arrow {
        display: flex;
        width: 12px;
        height: 12px;
        margin-top: -30px;
    }

    .vibe-container-header {
        margin-bottom: 20px;
        flex-direction: row;
        font-size: 9px;
    }
}

/* Horizontal Discovery Path */
.horizontal-discovery-path {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 180px 0; /* Restored space for absolutely positioned cards */
    max-width: 1100px;
    margin: 0 auto;
}

.path-svg-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 100px;
    transform: translateY(-50%);
    z-index: 1;
}

.horiz-step {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
}

.step-dot {
    width: 16px;
    height: 16px;
    background: var(--primary-orange);
    border: 3px solid var(--pure-white);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(244, 123, 51, 0.3);
    z-index: 3;
    position: relative;
}

.step-card-horiz {
    position: absolute;
    background: var(--pure-white);
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 16px;
    width: 220px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    text-align: center;
}

.step-card-horiz:hover {
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.step-top .step-card-horiz {
    bottom: 40px;
}

.step-bottom .step-card-horiz {
    top: 40px;
}

.card-icon {
    font-size: 20px;
    margin-bottom: 8px;
}

.card-text h4 {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px;
}

.card-text p {
    font-size: 12px;
    color: var(--mid-gray);
    line-height: 1.4;
}

/* Mobile Discovery Path */
@media (max-width: 1023px) {
    .horizontal-discovery-path {
        flex-direction: column;
        padding: 40px 20px;
        height: auto;
        gap: 30px;
    }

    .path-svg-horizontal {
        display: none;
    }

    .horiz-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        flex: none;
    }

    .step-dot {
        flex-shrink: 0;
    }

    .step-card-horiz {
        position: relative !important;
        top: auto !important;
        bottom: auto !important;
        width: 100%;
        text-align: left;
        display: flex;
        gap: 15px;
        align-items: center;
        transform: none !important;
    }

    .card-icon {
        margin-bottom: 0;
    }
}

/* System Glimpse (Carousel Grid) */
.carousel-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.carousel-card {
    background: var(--pure-white);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #FFE5D4;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(244, 123, 51, 0.1);
    border-color: var(--primary-orange);
}

.carousel-img {
    width: 100%;
    height: 220px;
    background: #fdfaf8;
    overflow: hidden;
}

.carousel-img img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures dashboard visuals are crisp and fill the space */
    transition: transform 0.6s ease;
}

.carousel-card:hover .carousel-img img {
    transform: scale(1.05);
}

.carousel-caption {
    padding: 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--near-black);
    line-height: 1.4;
    text-align: center;
    border-top: 1px solid #FFF1E8;
}

/* Case Study Visuals */
.cs-visual {
    flex: 1.2;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0,0,0,0.08);
    background: #fdfaf8;
    height: 400px;
}

.cs-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-caption {
    padding: 12px 20px;
    background: var(--near-black);
    color: var(--pure-white);
    font-size: 13px;
    font-weight: 600;
    text-align: center;
}

@media (max-width: 1023px) {
    .carousel-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .cs-visual {
        height: 300px;
    }
}

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

    .carousel-img {
        height: 180px;
    }

    .cs-visual {
        height: 240px;
    }
}
