/* ========================================
   Homepage-Specific Styles
   ======================================== */

/* Navigation Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-img {
    height: 36px;
    width: auto;
    display: block;
    object-fit: contain;
    object-position: center;
}

/* Adjust nav height for logo */
.nav-container {
    height: 64px !important;
}

/* Navigation Dropdown */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-trigger {
    cursor: pointer;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    min-width: 220px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: var(--transition-fast);
    z-index: 1000;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.nav-dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--accent-blue);
}

/* Hero Supporting Home */
.hero-rocket-icon {
    text-align: center;
    padding: 40px 0 20px;
    position: relative;
}

.rocket-icon-img {
    width: 56px;
    height: auto;
    display: inline-block;
    filter: drop-shadow(0 4px 12px rgba(0, 113, 227, 0.3));
    animation: rocketLaunch 2s ease-out infinite;
}

@keyframes rocketLaunch {
    0% { 
        transform: translateY(0px);
        opacity: 1;
    }
    100% { 
        transform: translateY(-30px);
        opacity: 0.3;
    }
}

/* Rocket exhaust trail effect */
.hero-rocket-icon::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translateX(-50%);
    width: 3px;
    height: 40px;
    background: linear-gradient(to bottom, 
        rgba(0, 113, 227, 0.6) 0%,
        rgba(0, 113, 227, 0.3) 50%,
        rgba(0, 113, 227, 0) 100%);
    animation: exhaustTrail 2s ease-out infinite;
    pointer-events: none;
}

@keyframes exhaustTrail {
    0% { 
        opacity: 0;
        height: 0px;
    }
    50% {
        opacity: 1;
        height: 50px;
    }
    100% { 
        opacity: 0;
        height: 70px;
    }
}

.hero-supporting-home {
    max-width: 760px;
    margin: 0 auto 48px;
    text-align: center;
}

.hero-supporting-home p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 12px;
}

.hero-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

/* Hero System Visual */
.hero-system-visual {
    max-width: 1200px;
    margin: 80px auto 0;
    text-align: center;
    padding: 48px 40px;
    background: var(--light-gray);
    border-radius: 24px;
}

.system-visual-label {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.system-visual-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 48px;
    line-height: 1.6;
}

.system-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.system-step {
    flex: 0 0 auto;
    text-align: center;
}

.system-icon {
    font-size: 2rem;
    margin-bottom: 8px;
}

.system-step-title {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--accent-dark);
    white-space: nowrap;
}

.system-arrow {
    font-size: 1.5rem;
    color: var(--accent-blue);
    flex-shrink: 0;
}

/* Homepage Carousel - Smaller 3-Card Layout */
.hero .carousel-section {
    margin-top: 60px;
}

.hero .carousel-container {
    position: relative;
    max-width: 1248px; /* Exactly 3 cards (360px * 3) + 2 gaps (24px * 2) + padding (80px * 2) */
    margin: 0 auto;
    overflow: hidden;
}

.hero .carousel-track {
    display: flex;
    gap: 24px;
    padding: 20px 80px;
    scroll-behavior: smooth;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.hero .carousel-track::-webkit-scrollbar {
    display: none;
}

.hero .persona-card-small {
    flex: 0 0 360px;
    min-width: 360px;
    scroll-snap-align: start;
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.hero .persona-card-small:hover {
    border-color: var(--accent-blue);
    background: var(--white);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.hero .persona-icon-small {
    font-size: 2rem;
    margin-bottom: 16px;
}

.hero .persona-avatar-small {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.hero .avatar-circle-small {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    opacity: 0.15;
}

.hero .avatar-circle-small.bottleneck {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.hero .avatar-circle-small.expert {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.hero .avatar-circle-small.quiet {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.hero .avatar-circle-small.agency {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.hero .avatar-circle-small.regional {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.hero .avatar-circle-small.scaling {
    background: linear-gradient(135deg, #30cfd0 0%, #330867 100%);
}

.hero .avatar-circle-small.leak {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.hero .avatar-circle-small.expansion {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 100%);
}

.hero .avatar-circle-small.consultant {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.hero .persona-icon-small {
    position: relative;
    font-size: 2.5rem;
    line-height: 80px;
    z-index: 1;
}

.hero .persona-title-small {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 12px;
    line-height: 1.3;
}

.hero .persona-pain-small {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Carousel Navigation Buttons */
.hero .carousel-btn-full {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: var(--white);
    border: 2px solid var(--medium-gray);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero .carousel-btn-full:hover {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: var(--white);
}

.hero .carousel-btn-full.prev { left: 20px; }
.hero .carousel-btn-full.next { right: 20px; }

/* Carousel Dots */
.hero .carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
}

.hero .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--medium-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.hero .carousel-dot.active {
    background: var(--accent-blue);
    width: 32px;
    border-radius: 5px;
}

/* Carousel Supporting Text */
.carousel-supporting-text {
    max-width: 900px;
    margin: 48px auto 0;
    text-align: center;
    padding: 0 40px;
}

.carousel-supporting-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.carousel-supporting-text p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Proof Strip */
.proof-strip {
    padding: 60px 0;
    background: var(--light-gray);
    border-top: 1px solid var(--medium-gray);
    border-bottom: 1px solid var(--medium-gray);
}



.proof-heading {
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    color: var(--accent-dark);
    margin-bottom: 32px;
}

.proof-badges {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    max-width: 1300px;
    margin: 0 auto;
}

.proof-badge {
    text-align: center;
    padding: 20px;
}

.proof-badge strong {
    display: block;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 8px;
}

.proof-badge span {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    white-space: nowrap;
}

/* Growth Problem Section */
.growth-problem {
    padding: 100px 0;
    background: var(--white);
}

.problem-content {
    max-width: 800px;
    margin: 48px auto 0;
}

.problem-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    text-align: center;
}

.problem-list {
    margin: 40px 0;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.problem-list p {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 8px;
}

.problem-solution {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    text-align: center;
    margin: 32px 0;
}

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

.lifecycle-list p {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 500;
    padding: 16px;
    background: var(--light-gray);
    border-radius: 12px;
    text-align: center;
}

/* Desk OS Feature Section */
.desk-os-feature {
    padding: 100px 0;
    background: var(--light-gray);
}

.os-feature-intro {
    max-width: 800px;
    margin: 48px auto;
    text-align: center;
}

.os-feature-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.os-feature-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

.os-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.os-module-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.os-module-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.module-number {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    background: var(--light-gray);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.module-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.module-card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Founder Growth Desk Section */
.founder-growth-desk {
    padding: 100px 0;
    background: var(--white);
}

.growth-desk-content {
    max-width: 900px;
    margin: 48px auto;
    text-align: center;
}

.growth-desk-content > p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.desk-features {
    margin: 40px 0;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.desk-features p {
    font-size: 1.0625rem;
    color: var(--accent-dark);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 8px;
}

.desk-conclusion {
    margin-top: 32px;
}

.desk-conclusion p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 8px;
}

.desk-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
}

/* Services Snapshot */
.services-snapshot {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.service-card:hover {
    border-color: var(--accent-blue);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 24px;
}

.service-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.service-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-includes {
    margin-bottom: 24px;
}

.service-includes p {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 6px;
}

.service-includes li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.service-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--accent-blue);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.service-link:hover {
    color: var(--accent-dark);
}

/* Why Rocketura Section */
.why-rocketura {
    padding: 100px 0;
    background: var(--white);
}

.why-content {
    max-width: 900px;
    margin: 48px auto;
    text-align: center;
}

.why-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.why-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

.why-reasons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.reason-card {
    background: var(--light-gray);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: left;
}

.reason-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 12px;
}

.reason-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0;
}

/* Experience Section */
.experience-section {
    padding: 100px 0;
    background: var(--light-gray);
}

.experience-content {
    max-width: 900px;
    margin: 48px auto;
    text-align: center;
}

.experience-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.experience-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

.proof-points-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 20px;
    margin-top: 48px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

/* First row: 4 items, each spanning 2 columns */
.proof-points-grid .proof-point:nth-child(1),
.proof-points-grid .proof-point:nth-child(2),
.proof-points-grid .proof-point:nth-child(3),
.proof-points-grid .proof-point:nth-child(4) {
    grid-column: span 2;
}

/* Second row: 3 items centered, each spanning 2 columns with 1 column gap on each side */
.proof-points-grid .proof-point:nth-child(5) {
    grid-column: 2 / span 2;
}

.proof-points-grid .proof-point:nth-child(6) {
    grid-column: 4 / span 2;
}

.proof-points-grid .proof-point:nth-child(7) {
    grid-column: 6 / span 2;
}

.proof-point {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent-dark);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition-smooth);
}

.proof-point:hover {
    border-color: var(--accent-blue);
}

/* Rocketometry Section */
.rocketometry-section {
    padding: 100px 0;
    background: var(--white);
}

.rocketometry-content {
    max-width: 800px;
    margin: 48px auto;
    text-align: center;
}

.rocketometry-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.rocketometry-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

.rocketometry-questions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 40px;
    padding: 40px;
    background: var(--light-gray);
    border-radius: 16px;
}

.rocketometry-questions p {
    font-size: 1rem;
    color: var(--accent-blue);
    font-weight: 500;
    padding: 16px;
    background: var(--white);
    border-radius: 12px;
    text-align: center;
    margin-bottom: 0;
}

/* Growth Path Section */
.growth-path {
    padding: 100px 0;
    background: var(--light-gray);
}

.package-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
}

.package-card {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 32px;
    border: 2px solid var(--medium-gray);
    transition: var(--transition-smooth);
}

.package-card.featured {
    border-color: var(--accent-blue);
    background: linear-gradient(135deg, #f8f9fb 0%, var(--white) 100%);
    box-shadow: 0 12px 40px rgba(0, 113, 227, 0.12);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.package-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--accent-blue);
    background: var(--light-gray);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
}

.package-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--accent-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.package-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 32px;
}

.package-features li {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.7;
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.package-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-blue);
    font-weight: bold;
}

.package-cta {
    display: block;
    width: 100%;
    padding: 14px 28px;
    background: var(--accent-blue);
    color: var(--white);
    text-align: center;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.package-cta:hover {
    background: var(--accent-dark);
    transform: translateY(-2px);
}

.package-card.featured .package-cta {
    background: var(--accent-dark);
}

.package-card.featured .package-cta:hover {
    background: var(--accent-blue);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-content {
    max-width: 900px;
    margin: 48px auto;
    text-align: center;
}

.about-content p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.about-emphasis {
    font-size: 1.25rem !important;
    color: var(--accent-dark) !important;
    font-weight: 600 !important;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .os-modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .package-cards {
        grid-template-columns: 1fr;
    }
    
    .why-reasons {
        grid-template-columns: 1fr;
    }
    
    .lifecycle-list {
        grid-template-columns: 1fr;
    }
    
    .rocketometry-questions {
        grid-template-columns: 1fr;
    }
    
    /* Homepage carousel - show 2 cards on tablet */
    .hero .persona-card-small {
        flex: 0 0 calc(50% - 12px);
    }
    
    .proof-points-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .proof-points-grid .proof-point {
        grid-column: auto !important;
    }
}

/* ========================================
   90-Day Launch Command Center
   Split Design: Dark Top + Light Bottom
   ======================================== */

.launch-command-center {
    padding: 0;
    background: transparent;
    position: relative;
    overflow: hidden;
}

/* Dark Section - Top Half */
.launch-dark-section {
    padding: 140px 0 200px;
    background: linear-gradient(180deg, #0A0E27 0%, #111827 70%, rgba(17, 24, 39, 0) 100%);
    color: var(--white);
    position: relative;
    overflow: visible;
}

/* Subtle grid background */
.launch-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 900px;
    background-image: 
        linear-gradient(rgba(0, 113, 227, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 113, 227, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: 0;
}

/* Radial gradient overlays */
.launch-dark-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 113, 227, 0.15) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 8s ease-in-out infinite;
}

.launch-dark-section::after {
    content: '';
    position: absolute;
    bottom: 10%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.08) 0%, transparent 70%);
    pointer-events: none;
    animation: pulseGlow 10s ease-in-out infinite reverse;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.4; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
}

.launch-dark-section .container {
    position: relative;
    z-index: 1;
}

/* Eyebrow */
.launch-eyebrow {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 32px;
    color: #FF6B00;
}

/* Headline */
.launch-headline {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.15;
    text-align: center;
    margin-bottom: 40px;
    color: var(--white);
    letter-spacing: -0.03em;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.launch-headline-line1 {
    color: var(--white);
}

.launch-headline-line2 {
    background: linear-gradient(135deg, #0071E3 0%, #00A8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Intro */
.launch-intro {
    max-width: 1200px;
    margin: 0 auto 80px;
    text-align: center;
}

.launch-intro-paragraph {
    font-size: 1.25rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.launch-intro-paragraph strong {
    color: var(--white);
    font-weight: 600;
}

.launch-built-for {
    font-size: 1.0625rem !important;
    color: #FF6B00 !important;
    font-weight: 600 !important;
    margin: 0 !important;
    line-height: 1.4 !important;
}

/* Engines Title */
.launch-engines-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: -0.02em;
}

.launch-engines-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Three Engine Cards */
.launch-engines {
    display: flex;
    gap: 32px;
    align-items: stretch;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.engine-card {
    flex: 1;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 113, 227, 0.3);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: var(--transition-fast);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.engine-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0071E3 0%, #00A8FF 100%);
    border-radius: 20px 20px 0 0;
}

.engine-card:hover {
    background: rgba(10, 14, 39, 1);
    border-color: rgba(0, 113, 227, 0.6);
    transform: translateY(-8px);
    box-shadow: 0 24px 80px rgba(0, 113, 227, 0.3);
}

.engine-number {
    width: 56px;
    height: 56px;
    background: #FF6B00;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.engine-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.engine-description {
    font-size: 1.0625rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.engine-includes {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.engine-includes-label {
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B00;
    margin-bottom: 12px;
}

.engine-includes p:last-child {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

/* Pipeline connector between cards */
.engine-connector {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 113, 227, 0.5) 0%, rgba(255, 107, 0, 0.5) 100%);
    position: relative;
    flex-shrink: 0;
    align-self: center;
}

.engine-connector::after {
    content: '→';
    position: absolute;
    right: -12px;
    top: 50%;
    transform: translateY(-50%);
    color: #FF6B00;
    font-size: 1.5rem;
}

/* ========================================
   Light Section - Bottom Half (Timeline)
   ======================================== */

.launch-light-section {
    padding: 100px 0 120px;
    background: var(--white);
    position: relative;
}

/* Timeline Title */
.launch-timeline-title-light {
    font-size: 3rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    color: var(--accent-dark);
    letter-spacing: -0.02em;
}

.launch-timeline-subtitle {
    font-size: 1.25rem;
    text-align: center;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* Light Timeline Cards */
.launch-timeline-light {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.timeline-card-light {
    background: var(--white);
    border: 1px solid var(--medium-gray);
    border-radius: 16px;
    padding: 32px 28px;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.timeline-card-light:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-blue);
}

.timeline-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.timeline-days {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
}

.timeline-step-number {
    width: 40px;
    height: 40px;
    background: #FF6B00;
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--accent-dark);
}

.timeline-card-description {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Closing Statement - Light */
.launch-closing-light {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.launch-closing-text-light {
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.launch-closing-emphasis-light {
    font-size: 1.75rem;
    font-weight: 600;
    line-height: 1.4;
    color: var(--accent-dark);
}

/* CTAs - Light */
.launch-ctas-light {
    display: flex;
    gap: 24px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.btn-launch-primary-light {
    padding: 20px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    background: #FF6B00;
    color: var(--white);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-fast);
    box-shadow: 0 4px 16px rgba(255, 107, 0, 0.2);
}

.btn-launch-primary-light:hover {
    background: #FF8C33;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(255, 107, 0, 0.3);
}

.btn-launch-secondary-light {
    padding: 18px 48px;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--white);
    color: var(--accent-dark);
    border: 2px solid var(--medium-gray);
    border-radius: 30px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.btn-launch-secondary-light:hover {
    background: var(--light-gray);
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .launch-engines {
        flex-direction: column;
    }
    
    .engine-connector {
        width: 2px;
        height: 40px;
        transform: rotate(90deg);
    }
    
    .engine-connector::after {
        content: '↓';
        right: 50%;
        transform: translateX(50%) rotate(-90deg);
    }
    
    .launch-timeline-light {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-system-visual {
        padding: 32px 24px;
        margin-top: 60px;
    }
    
    .carousel-supporting-text {
        padding: 0 24px;
        margin-top: 40px;
    }
    
    .carousel-supporting-text h2 {
        font-size: 1.75rem;
    }
    
    .carousel-supporting-text p {
        font-size: 1rem;
    }
    
    .proof-badges {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .os-modules-grid {
        grid-template-columns: 1fr;
    }
    
    .system-step-title {
        font-size: 0.8125rem;
    }
    
    /* Homepage carousel - show 1 card on mobile */
    .hero .carousel-container {
        padding: 0 60px;
    }
    
    .hero .persona-card-small {
        flex: 0 0 100%;
    }
    
    .hero .carousel-btn-full {
        width: 40px;
        height: 40px;
    }
    
    .hero .carousel-btn-full.prev { left: 10px; }
    .hero .carousel-btn-full.next { right: 10px; }
    
    /* Launch Command Center mobile */
    .launch-dark-section {
        padding: 80px 0 150px;
    }
    
    .launch-headline {
        font-size: 2.25rem;
        line-height: 1.2;
        margin-bottom: 32px;
    }
    
    .launch-intro-paragraph {
        font-size: 1.125rem;
    }
    
    .launch-built-for {
        font-size: 1rem !important;
    }
    
    .launch-engines-title {
        font-size: 1.875rem;
        margin-bottom: 16px;
    }
    
    .launch-engines-subtitle {
        font-size: 1rem;
        margin-bottom: 48px;
    }
    
    .launch-light-section {
        padding: 80px 0 100px;
    }
    
    .launch-timeline-title-light {
        font-size: 2rem;
    }
    
    .launch-timeline-subtitle {
        font-size: 1.125rem;
    }
    
    .launch-timeline-light {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .launch-closing-text-light {
        font-size: 1.25rem;
    }
    
    .launch-closing-emphasis-light {
        font-size: 1.5rem;
    }
    
    .launch-ctas-light {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-launch-primary-light,
    .btn-launch-secondary-light {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-supporting-home p {
        font-size: 1rem;
    }
    
    .proof-badges {
        grid-template-columns: 1fr;
    }
    
    .system-icon {
        font-size: 1.5rem;
    }
    
    .hero .carousel-section {
        margin-top: 60px;
    }
    
    .proof-points-grid {
        grid-template-columns: 1fr;
    }
}
