/* ================================================================
   IMMERSIVE 3D CORRIDOR WALK - The Chander Dhall Experience
   A true 3D walkthrough where you feel like you're moving through space
   
   MOBILE-FIRST: On mobile (<= 768px), all 3D is disabled and content
   displays as a simple scrolling page. GSAP is not even loaded.
   ================================================================ */

/* ================================================================
   MOBILE-FIRST RESET - This runs FIRST to ensure mobile works
   Even if other styles try to hide things, these !important rules win
   ================================================================ */
@media (max-width: 768px) {
    /* Kill ALL 3D - make everything a normal stacked page */
    .scroll-spacer,
    .universe,
    .camera {
        all: unset !important;
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        background: #06142A !important;
    }
    
    /* ALL panels visible, no transforms, no opacity tricks */
    .content-panel,
    .panel-gateway,
    .panel-portrait,
    .panel-impact,
    .panel-method,
    .panel-companies,
    .panel-stage,
    .panel-connection,
    #panel-1,
    #panel-2,
    #panel-3,
    #panel-4,
    #panel-5,
    #panel-6,
    #panel-7 {
        all: unset !important;
        display: block !important;
        position: relative !important;
        width: 100% !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        filter: none !important;
        padding: 2rem 1rem !important;
        box-sizing: border-box !important;
    }
    
    /* Panel inner content */
    .panel-inner {
        all: unset !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        opacity: 1 !important;
        visibility: visible !important;
        text-align: center !important;
    }

    /* Ensure animated child elements are visible on mobile */
    #panel-1 .gateway-title,
    #panel-1 .gateway-subtitle,
    #panel-1 .gateway-cta,
    #panel-2 .portrait-image,
    #panel-2 .portrait-text,
    #panel-2 .credential-badge,
    #panel-3 .impact-header,
    #panel-3 .stat-item,
    #panel-3 .case-studies-row,
    #panel-3 .case-studies-link,
    #panel-3 .clients-marquee,
    #panel-4 .method-header,
    #panel-4 .phase-item,
    #panel-4 .urgency-cta,
    #panel-5 .companies-header,
    #panel-5 .companies-intro,
    #panel-5 .venture-logo-card,
    #panel-6 .stage-header,
    #panel-6 .stage-intro,
    #panel-6 .world-map-container,
    #panel-6 .venue-tag,
    #panel-6 .book-speaking-cta,
    #panel-7 .connection-glow,
    #panel-7 .section-label,
    #panel-7 .connection-title,
    #panel-7 .connection-subtitle,
    #panel-7 .scroll-continue-hint {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Hide 3D decorations */
    .corridor-floor,
    .corridor-ceiling,
    .corridor-wall-left,
    .corridor-wall-right,
    .floor-light-strip,
    .wall-light-left,
    .wall-light-right,
    .ceiling-lights,
    .ceiling-light,
    .particles-container,
    .particle-3d,
    .progress-dots,
    .depth-indicator,
    .scroll-hint {
        display: none !important;
    }
    
    /* Keep Skip Tour button visible on mobile */
    #skip-tour-btn,
    .skip-tour-btn {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: fixed !important;
        z-index: 99999 !important;
    }

    /* Allow normal scrolling on mobile */
    body:has(.scroll-spacer) {
        overflow: auto !important;
        height: auto !important;
    }

    .scroll-spacer {
        overflow: visible !important;
    }

    /* When summary is active, hide the skip button even on mobile */
    body.tour-summary-active #skip-tour-btn,
    body.tour-summary-active .skip-tour-btn {
        display: none !important;
    }
}

/* ============================================
   ROOT & RESETS
   ============================================ */
:root {
    --gold: #F5C542;
    --gold-glow: rgba(245, 197, 66, 0.6);
    --blue: #2A8BFF;
    --blue-glow: rgba(42, 139, 255, 0.5);
    --deep-navy: #06142A;
    --dark-navy: #0B1829;
    --corridor-depth: 14000px;
}

html, body {
    overflow-x: hidden;
}

/* ============================================
   INTRO ANIMATION - BOOM ON LOAD
   First panel animates in automatically
   ============================================ */

/* Universe starts visible - we animate content inside */
.universe {
    opacity: 1;
}

/* Intro animation keyframes for content */
@keyframes introTitleSlam {
    0% {
        opacity: 0;
        transform: translateY(100px) scale(1.3);
        filter: blur(10px);
    }
    50% {
        opacity: 1;
        transform: translateY(-10px) scale(1.02);
        filter: blur(0px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes introSubtitleFade {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes introCTAPop {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    70% {
        transform: scale(1.1);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============================================
   THE 3D UNIVERSE CONTAINER
   Everything exists in 3D space inside this
   ============================================ */

.universe {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    perspective: 1800px;
    perspective-origin: 50% 50%;
    overflow: hidden;
    background: var(--deep-navy);
    z-index: 50; /* Above footer, below summary section */
    pointer-events: auto; /* Universe receives clicks */
}

/* ============================================
   NETWORK BACKGROUND - Systems & Connections
   ============================================ */

/* Subtle gradient depth with breathing animation */
.universe::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 100% 80% at 50% 120%, rgba(42, 139, 255, 0.15), transparent 60%),
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(42, 139, 255, 0.08), transparent 50%),
        radial-gradient(ellipse 60% 80% at 85% 30%, rgba(245, 197, 66, 0.06), transparent 50%),
        linear-gradient(180deg, #020810 0%, var(--deep-navy) 40%, #0a1f3d 100%);
    z-index: 0;
    pointer-events: none;
    animation: backgroundBreathe 8s ease-in-out infinite;
}

/* Breathing color animation for premium feel */
@keyframes backgroundBreathe {
    0%, 100% { 
        filter: brightness(1) saturate(1);
    }
    50% { 
        filter: brightness(1.1) saturate(1.15);
    }
}

/* Network ambient glow with floating animation */
.universe .nebula-glow {
    position: absolute;
    inset: -20%;
    background: 
        radial-gradient(ellipse 60% 50% at 30% 70%, rgba(42, 139, 255, 0.12), transparent 50%),
        radial-gradient(ellipse 50% 60% at 75% 25%, rgba(42, 139, 255, 0.1), transparent 50%),
        radial-gradient(ellipse 45% 40% at 60% 80%, rgba(245, 197, 66, 0.06), transparent 40%);
    z-index: 0;
    pointer-events: none;
    animation: nebulaFloat 12s ease-in-out infinite;
}

@keyframes nebulaFloat {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 1;
    }
    33% { 
        transform: translate(3%, -2%) scale(1.05);
        opacity: 0.9;
    }
    66% { 
        transform: translate(-2%, 3%) scale(0.98);
        opacity: 1.1;
    }
}

/* Mouse-reactive glow layer */
.universe .mouse-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(42, 139, 255, 0.15) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    filter: blur(40px);
}

.universe.mouse-active .mouse-glow {
    opacity: 1;
}

/* SVG Network lines container */
.network-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.4;
}

.network-line {
    stroke: rgba(42, 139, 255, 0.3);
    stroke-width: 1;
    fill: none;
    stroke-dasharray: 8 4;
    animation: networkPulse 3s ease-in-out infinite;
}

.network-line:nth-child(odd) {
    animation-delay: -1.5s;
    stroke: rgba(245, 197, 66, 0.2);
}

@keyframes networkPulse {
    0%, 100% { opacity: 0.2; stroke-dashoffset: 0; }
    50% { opacity: 0.5; stroke-dashoffset: 24; }
}

/* This is our CAMERA - we move THIS to "walk" */
.camera {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    transform: translateZ(0px);
    will-change: transform;
    pointer-events: none; /* Camera container doesn't block clicks */
}

/* ============================================
   THE INFINITE CORRIDOR
   Floor, ceiling, walls - all in 3D space
   DISABLED - Using clean network background instead
   ============================================ */

/* FLOOR - HIDDEN for cleaner look */
.corridor-floor {
    display: none;
}

/* Center light strip on floor - HIDDEN */
.floor-light-strip {
    display: none;
}

/* CEILING - HIDDEN */
.corridor-ceiling {
    display: none;
}

/* Ceiling light fixtures - HIDDEN */
.ceiling-lights {
    display: none;
}

.ceiling-light {
    display: none;
}

/* LEFT WALL - HIDDEN */
.corridor-wall-left {
    display: none;
}

.wall-light-left {
    display: none;
}

/* RIGHT WALL - HIDDEN */
.corridor-wall-right {
    display: none;
}

.wall-light-right {
    display: none;
}

/* ============================================
   3D CONTENT PANELS
   Panels are positioned in 3D space (different X positions)
   Camera moves TO each panel, so it appears centered on arrival
   ============================================ */

.content-panel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    opacity: 0; /* Start invisible - animate in */
    visibility: hidden; /* Also hide from layout until shown */
    pointer-events: none; /* Panel container doesn't block */
}

/* Panel 1 starts visible (JS will handle intro animation) */
#panel-1 {
    opacity: 1;
    visibility: visible;
}

/* Hide panel 1 content initially - JS animates them in */
#panel-1 .gateway-title,
#panel-1 .gateway-subtitle,
#panel-1 .gateway-cta {
    opacity: 0;
}

/* Pre-hide all panel content that will be animated in by JS
   This prevents any flash/flicker before JS sets initial states */
#panel-1 .gateway-title,
#panel-1 .gateway-subtitle,
#panel-1 .gateway-cta,
#panel-2 .portrait-image,
#panel-2 .portrait-text,
#panel-2 .credential-badge,
#panel-3 .impact-header,
#panel-3 .stat-item,
#panel-3 .case-studies-row,
#panel-3 .case-studies-link,
#panel-3 .clients-marquee,
#panel-4 .method-header,
#panel-4 .phase-item,
#panel-4 .urgency-cta,
#panel-5 .companies-header,
#panel-5 .companies-intro,
#panel-5 .venture-logo-card,
#panel-6 .stage-header,
#panel-6 .stage-intro,
#panel-6 .world-map-container,
#panel-6 .venue-tag,
#panel-6 .book-speaking-cta,
#panel-7 .connection-glow,
#panel-7 .section-label,
#panel-7 .connection-title,
#panel-7 .connection-subtitle,
#panel-7 .scroll-continue-hint {
    opacity: 0;
}

.panel-inner {
    text-align: center;
    pointer-events: auto; /* Inner content is clickable */
    max-width: 90vw;
    position: relative;
    z-index: 1;
}

/* Make all interactive elements in panels explicitly clickable */
.panel-inner a,
.panel-inner button,
.panel-inner .case-study-card,
.panel-inner .video-hotspot,
.panel-inner .credential-badge,
.panel-inner .expertise-card {
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 10;
}

/* Panels positioned straight ahead - camera stops 300px in front of each */
/* 7 panels: camera at 0, 1750, 3500, 5250, 7000, 8750, 10500 */
/* Panel positions = camera position + 300px viewing distance */
.panel-gateway { transform: translateZ(-300px); }
.panel-portrait { transform: translateZ(-2050px); }
.panel-impact { transform: translateZ(-3800px); }
.panel-method { transform: translateZ(-5550px); }
.panel-companies { transform: translateZ(-7300px); }
.panel-stage { transform: translateZ(-9050px); }
.panel-connection { transform: translateZ(-10800px); }

/* PANEL SPECIFIC STYLES */

/* Remove individual panel transforms - now set in the winding path section above */

.panel-gateway .panel-inner {
    max-width: 1100px;
    padding-top: 0;
}

.gateway-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 6vw, 3.5rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    margin-top: -2rem;
    text-shadow: 0 0 40px rgba(0,0,0,0.5);
}

/* Gateway Expertise Grid */
.gateway-expertise {
    margin-top: 2rem;
}

.gateway-expertise .expertise-card {
    padding: 1.25rem;
}

.gateway-expertise .expertise-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gateway-expertise .expertise-card p {
    font-size: 0.9rem;
    line-height: 1.5;
}

.gateway-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #FF9F43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gateway-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.gateway-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--gold) 0%, #FF9F43 100%);
    color: var(--deep-navy);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 40px var(--gold-glow);
    transition: transform 0.3s, box-shadow 0.3s;
    pointer-events: auto !important;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.gateway-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 60px var(--gold-glow);
}

.gateway-cta svg {
    width: 20px;
    height: 20px;
    animation: bounce 1.5s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* PANEL 2: Portrait styles */
.panel-portrait .panel-inner {
    max-width: 1000px;
}

.portrait-container {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
}

.portrait-image {
    position: relative;
    width: 280px;
    height: 280px;
    flex-shrink: 0;
}

/* Nav buttons positioned on portrait-image container */
.portrait-image .polaroid-prev {
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.portrait-image .polaroid-next {
    position: absolute;
    right: -20px;
    top: 50%;
    transform: translateY(-50%);
}

.portrait-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 3px solid transparent;
    background: conic-gradient(from 0deg, var(--gold), var(--blue), var(--gold)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: ringRotate 8s linear infinite;
    pointer-events: none;
}

@keyframes ringRotate {
    to { transform: rotate(360deg); }
}

.portrait-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid var(--dark-navy);
}

.portrait-glow {
    position: absolute;
    inset: -30px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: -1;
}

.portrait-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.portrait-text h2 span {
    color: var(--gold);
}

.portrait-text p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.credential-badges {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    justify-content: flex-start;
}

.credential-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.25rem;
    background: rgba(42, 139, 255, 0.1);
    border: 1px solid rgba(42, 139, 255, 0.3);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: #fff;
    white-space: nowrap;
}

.credential-badge svg {
    width: 16px;
    height: 16px;
    fill: var(--gold);
}

/* PANEL 3: Companies styles */
.panel-companies .panel-inner {
    max-width: 900px;
}

.companies-header {
    margin-bottom: 1.5rem;
}

.companies-intro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

/* Simple centered logo row */
.venture-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.venture-logo-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 2rem;
    background: rgba(11, 24, 41, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.venture-logo-card:hover {
    border-color: rgba(245, 197, 66, 0.4);
    background: rgba(11, 24, 41, 0.8);
    transform: translateY(-4px);
}

.venture-logo-card img {
    height: 60px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.1);
}

@media (max-width: 768px) {
    .venture-logos {
        gap: 1.5rem;
    }
    
    .venture-logo-card {
        padding: 1rem 1.5rem;
    }
    
    .venture-logo-card img {
        height: 45px;
        max-width: 140px;
    }
}

/* PANEL 4: Products styles */
.panel-products .panel-inner {
    max-width: 900px;
}

.products-header {
    margin-bottom: 1.5rem;
}

.products-intro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

.featured-product {
    margin-bottom: 2rem;
}

.product-showcase {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    background: rgba(11, 24, 41, 0.85);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 139, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    text-align: left;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.product-showcase:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 197, 66, 0.4);
    box-shadow: 0 20px 50px rgba(245, 197, 66, 0.1);
}

.product-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    filter: brightness(1.1);
}

.product-details {
    flex: 1;
}

.product-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem 0;
}

.product-tagline {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    margin: 0 0 1rem 0;
}

.product-description {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1.25rem 0;
}

.product-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.product-tag {
    display: inline-block;
    padding: 0.35rem 0.75rem;
    background: rgba(42, 139, 255, 0.15);
    border: 1px solid rgba(42, 139, 255, 0.3);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: var(--blue);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.products-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(245, 197, 66, 0.1);
    border: 1px solid rgba(245, 197, 66, 0.3);
    border-radius: 60px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

.products-cta:hover {
    background: rgba(245, 197, 66, 0.2);
    border-color: rgba(245, 197, 66, 0.5);
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .product-showcase {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }
    
    .product-logo {
        width: 100px;
        height: 100px;
    }
    
    .product-tags {
        justify-content: center;
    }
}

/* PANEL 5: Expertise styles */
.panel-expertise .panel-inner {
    max-width: 1100px;
}

.expertise-header {
    margin-bottom: 3rem;
}

.section-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
}

.section-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #fff;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--gold) 0%, #FF9F43 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.expertise-card {
    background: rgba(11, 24, 41, 0.8);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(42, 139, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: left;
    transition: transform 0.4s, border-color 0.4s, box-shadow 0.4s;
}

.expertise-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(42, 139, 255, 0.5);
    box-shadow: 0 20px 60px rgba(42, 139, 255, 0.2);
}

.expertise-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--blue) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--deep-navy);
}

.expertise-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.75rem;
}

.expertise-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* PANEL 6: Impact styles */
.panel-impact .panel-inner {
    max-width: 1000px;
    padding-top: 2rem;
}

.impact-header {
    margin-bottom: 2rem;
}

.stats-row {
    display: flex;
    justify-content: center;
    gap: 5rem;
    margin-bottom: 2rem;
}

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

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 0.5rem;
}

.clients-marquee {
    width: 100%;
    overflow: hidden;
    padding: 1rem 0;
    margin-bottom: 1rem;
    min-width: 0;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    animation: marquee 40s linear infinite;
    align-items: center;
    min-width: 0;
}

.marquee-duplicate {
    display: contents;
}

.client-logo {
    flex-shrink: 0;
    height: 55px;
    width: auto;
    background: white;
    border-radius: 8px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.1);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-quote {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-quote::before {
    content: '"';
    font-size: 3rem;
    color: var(--gold);
    opacity: 0.6;
    display: block;
    line-height: 0.5;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: var(--gold);
}

/* His Companies Section (Tour Panel 4) */
.his-companies {
    margin-top: 2rem;
    text-align: center;
}

.companies-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1rem;
}

.companies-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.company-logo-tour {
    height: 40px;
    width: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s ease;
    filter: brightness(1.1);
}

.company-logo-tour:hover {
    opacity: 1;
    transform: scale(1.1);
}

/* PANEL 7: Method styles */
.panel-method .panel-inner {
    max-width: 1000px;
}

.method-header {
    margin-bottom: 3rem;
}

.phases-container {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 3rem;
}

.phases-line {
    position: absolute;
    top: 35px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: rgba(42, 139, 255, 0.2);
    z-index: 0;
}

.phases-line-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    box-shadow: 0 0 20px var(--blue-glow);
    transition: width 1s ease;
}

.phase-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    width: 22%;
}

.phase-number {
    width: 70px;
    height: 70px;
    background: var(--dark-navy);
    border: 2px solid rgba(42, 139, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 1rem;
    position: relative;
}

.phase-number::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(42, 139, 255, 0.2);
    border-radius: 50%;
}

.phase-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.phase-desc {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.urgency-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(245, 197, 66, 0.1);
    border: 1px solid rgba(245, 197, 66, 0.4);
    border-radius: 50px;
}

.urgency-cta .pulse {
    width: 12px;
    height: 12px;
    background: var(--gold);
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 var(--gold-glow); }
    50% { box-shadow: 0 0 20px 5px var(--gold-glow); }
}

.urgency-cta span {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    color: var(--gold);
}

/* PANEL 6: Stage styles */
.panel-stage .panel-inner {
    max-width: 1000px;
    padding-top: 2rem;
    padding-bottom: 5rem; /* Extra space so content doesn't overlap scroll hint */
}

.stage-header {
    margin-bottom: 1rem;
}

.venues-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    margin-bottom: 0.75rem;
}

.venue-tag {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.globe-visual {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 2rem auto;
}

.globe-ring {
    position: absolute;
    inset: 0;
    border: 2px solid rgba(42, 139, 255, 0.4);
    border-radius: 50%;
    animation: globeSpin 20s linear infinite;
}

.globe-ring:nth-child(2) {
    transform: rotateX(60deg);
    animation-direction: reverse;
    animation-duration: 25s;
}

.globe-ring:nth-child(3) {
    transform: rotateY(60deg);
    animation-duration: 30s;
}

@keyframes globeSpin {
    to { transform: rotateY(360deg); }
}

.globe-core {
    position: absolute;
    inset: 25px;
    background: radial-gradient(circle at 30% 30%, rgba(42, 139, 255, 0.3) 0%, var(--dark-navy) 100%);
    border-radius: 50%;
    box-shadow:
        inset -20px -20px 40px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(42, 139, 255, 0.3);
}

.continent-dot {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold), 0 0 20px var(--gold-glow);
}

.continent-dot:nth-child(5) { top: 35%; left: 20%; }
.continent-dot:nth-child(6) { top: 30%; left: 55%; }
.continent-dot:nth-child(7) { top: 40%; left: 75%; }
.continent-dot:nth-child(8) { top: 65%; left: 80%; }

.globe-label {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 1rem;
}

.speaking-topics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.topic-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: left;
}

.topic-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.6rem;
}

.topic-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
}

/* PANEL 9: Connection styles */
.panel-connection .panel-inner {
    max-width: 700px;
}

.connection-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 60%);
    opacity: 0.3;
    z-index: -1;
    animation: glowPulse 4s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.2; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.4; transform: translate(-50%, -50%) scale(1.1); }
}

.connection-title {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
}

.connection-subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.scroll-continue-hint {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    color: var(--gold);
    opacity: 0.8;
    animation: bounce 1.5s ease-in-out infinite;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 60px;
    text-decoration: none;
    transition: all 0.4s;
    pointer-events: auto;
    cursor: pointer;
    position: relative;
    z-index: 100;
}

.cta-btn--primary {
    background: linear-gradient(135deg, var(--gold) 0%, #FF9F43 100%);
    color: var(--deep-navy);
    box-shadow: 0 10px 40px var(--gold-glow);
}

.cta-btn--primary:hover {
    transform: scale(1.05) translateY(-3px);
    box-shadow: 0 20px 60px var(--gold-glow);
}

.cta-btn--secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

/* Mobile CTA section - hidden by default, shown on mobile */
.mobile-cta-section {
    display: none;
}

/* ============================================
   NETWORK NODES IN 3D SPACE
   These represent connection points in a system
   ============================================ */

.particles-container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    pointer-events: none;
}

/* Network node styling - alive and breathing */
.particle-3d {
    position: absolute;
    border-radius: 50%;
    border: 1px solid currentColor;
    background: radial-gradient(circle at 30% 30%, currentColor, transparent 70%);
    box-shadow: 
        0 0 8px currentColor,
        0 0 16px currentColor,
        inset 0 0 6px currentColor;
    animation: nodePulse 4s ease-in-out infinite, nodeFloat 6s ease-in-out infinite;
    transition: transform 0.4s ease-out, box-shadow 0.3s ease;
}

/* Depth-of-field blur based on z-position */
.particle-3d.depth-far {
    filter: blur(2px);
    opacity: 0.3;
}

.particle-3d.depth-mid {
    filter: blur(0.5px);
    opacity: 0.6;
}

.particle-3d.depth-near {
    filter: blur(0);
    opacity: 1;
}

/* Hub nodes - larger, more prominent, stronger glow */
.particle-3d.hub-node {
    border-width: 2px;
    background: radial-gradient(circle at 30% 30%, currentColor 20%, transparent 70%);
    box-shadow: 
        0 0 15px currentColor,
        0 0 30px currentColor,
        0 0 45px currentColor,
        inset 0 0 8px currentColor;
    animation: nodePulse 3s ease-in-out infinite, hubGlow 2s ease-in-out infinite;
}

.particle-3d:nth-child(3n) {
    animation-duration: 3.5s, 7s;
    animation-delay: -0.5s, -1s;
}

.particle-3d:nth-child(5n) {
    animation-duration: 5s, 8s;
    animation-delay: -1.5s, -3s;
}

.particle-3d:nth-child(7n) {
    animation-delay: -2.5s, -4s;
}

.particle-3d:nth-child(11n) {
    animation-duration: 4.5s, 9s;
    animation-delay: -3s, -2s;
}

@keyframes nodePulse {
    0%, 100% { 
        opacity: var(--base-opacity, 0.5);
        transform: translateZ(var(--z, 0)) scale(1);
    }
    50% { 
        opacity: calc(var(--base-opacity, 0.5) * 1.6);
        transform: translateZ(var(--z, 0)) scale(1.2);
    }
}

@keyframes nodeFloat {
    0%, 100% { 
        margin-top: 0;
        margin-left: 0;
    }
    25% { 
        margin-top: 8px;
        margin-left: 4px;
    }
    50% { 
        margin-top: -4px;
        margin-left: 8px;
    }
    75% { 
        margin-top: 4px;
        margin-left: -6px;
    }
}

@keyframes hubGlow {
    0%, 100% { 
        box-shadow: 
            0 0 15px currentColor,
            0 0 30px currentColor,
            0 0 45px currentColor,
            inset 0 0 8px currentColor;
    }
    50% { 
        box-shadow: 
            0 0 20px currentColor,
            0 0 40px currentColor,
            0 0 60px currentColor,
            0 0 80px currentColor,
            inset 0 0 12px currentColor;
    }
}

/* Connection lines between nodes with traveling light effect */
.network-connection {
    position: absolute;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(42, 139, 255, 0.3) 20%,
        rgba(42, 139, 255, 0.5) 50%,
        rgba(42, 139, 255, 0.3) 80%,
        transparent 100%
    );
    transform-origin: left center;
    pointer-events: none;
    opacity: 0.4;
    overflow: hidden;
}

/* Traveling light particle on connection */
.network-connection::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -20px;
    width: 20px;
    height: 5px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.9),
        rgba(42, 139, 255, 1),
        transparent
    );
    border-radius: 50%;
    filter: blur(1px);
    animation: travelLight var(--travel-duration, 3s) linear infinite;
    animation-delay: var(--travel-delay, 0s);
}

.network-connection:nth-child(odd)::after {
    animation-direction: reverse;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(245, 197, 66, 1),
        rgba(255, 255, 255, 0.9),
        transparent
    );
}

@keyframes travelLight {
    0% { left: -20px; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { left: calc(100% + 20px); opacity: 0; }
}

/* Hub-to-hub connections are thicker and brighter */
.network-connection.hub-connection {
    height: 2px;
    opacity: 0.6;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(42, 139, 255, 0.5) 15%,
        rgba(100, 170, 255, 0.7) 50%,
        rgba(42, 139, 255, 0.5) 85%,
        transparent 100%
    );
}

.network-connection.hub-connection::after {
    width: 30px;
    height: 6px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 1),
        rgba(100, 170, 255, 1),
        rgba(42, 139, 255, 1),
        transparent
    );
    filter: blur(2px);
}

/* ============================================
   UI ELEMENTS
   ============================================ */

/* Scroll spacer - viewport locked for snap navigation */
.scroll-spacer {
    height: 100vh;
    width: 100%;
    position: relative;
    z-index: 100;
    pointer-events: auto; /* Receives wheel/touch events */
    overflow: hidden; /* Prevent any internal scrolling */
}

/* Hide the site footer when on the home page corridor experience */
body:has(.scroll-spacer) #site-footer {
    display: none;
}

/* Prevent body scrolling when in corridor mode */
body:has(.scroll-spacer) {
    overflow: hidden;
    height: 100vh;
}

.depth-indicator {
    position: fixed;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
}

.depth-bar {
    width: 4px;
    height: 200px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.depth-fill {
    width: 100%;
    height: 0%;
    background: linear-gradient(to top, var(--gold), var(--blue));
    border-radius: 2px;
    transition: height 0.2s;
}

.progress-dots {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 10000;
    pointer-events: auto;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
    pointer-events: auto;
}

.progress-dot.active {
    background: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 0 20px var(--gold-glow);
    transform: scale(1.3);
}

.progress-dot:hover:not(.active) {
    background: rgba(255, 255, 255, 0.4);
}

.scroll-hint {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 100;
    opacity: 1;
    transition: opacity 0.5s;
    pointer-events: none;
}

.scroll-hint.hidden {
    opacity: 0;
    pointer-events: none;
}

.scroll-hint-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(245, 197, 66, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
    0%, 100% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.3; }
}

/* Scroll indicators row */
.scroll-indicators {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.scroll-or {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Keyboard key with animation */
.keyboard-key {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(6, 20, 42, 0.8);
    border: 2px solid rgba(245, 197, 66, 0.5);
    border-radius: 6px;
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    box-shadow: 0 3px 0 rgba(245, 197, 66, 0.3);
    animation: keyPress 1.5s ease-in-out infinite;
}

@keyframes keyPress {
    0%, 100% { transform: translateY(0); box-shadow: 0 3px 0 rgba(245, 197, 66, 0.3); }
    50% { transform: translateY(3px); box-shadow: 0 0 0 rgba(245, 197, 66, 0.3); }
}

/* ============================================
   HEADER STYLING
   Ensure header is always accessible
   ============================================ */

header.fixed {
    background: transparent !important;
    -webkit-backdrop-filter: none !important;
    backdrop-filter: none !important;
    transition: all 0.5s ease;
    z-index: 9999 !important; /* Always on top of 3D corridor */
    pointer-events: auto !important; /* Ensure clicks work */
}

/* Mobile: solid background for hamburger menu */
@media (max-width: 767px) {
    header.fixed {
        background: rgb(6, 20, 42) !important;
    }
}

header.fixed.scrolled {
    background: rgba(6, 20, 42, 0.9) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    backdrop-filter: blur(20px) !important;
}

/* Ensure all nav elements are clickable */
header.fixed nav,
header.fixed a,
header.fixed button {
    pointer-events: auto !important;
}

/* Hide floating contact during experience */
body:has(.scroll-spacer) .fixed.bottom-8.right-8 {
    display: none !important;
}

/* Footer is handled by _Layout.cshtml */

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

@media (max-width: 968px) {
    .portrait-container {
        flex-direction: column;
        text-align: center;
    }

    .portrait-image {
        width: 220px;
        height: 220px;
    }

    .portrait-text {
        text-align: center;
    }

    .credential-badges {
        justify-content: center;
    }

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

    .stats-row {
        flex-direction: column;
        gap: 2rem;
    }

    .phases-container {
        flex-direction: column;
        gap: 2rem;
    }

    .phases-line {
        display: none;
    }

    .phase-item {
        width: 100%;
    }

    .speaking-topics {
        grid-template-columns: 1fr;
    }

    .progress-dots {
        left: 1rem;
    }

    .depth-indicator {
        right: 1rem;
    }
}

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

    .cta-buttons {
        flex-direction: column;
    }

    .venues-row {
        gap: 0.5rem;
    }

    .venue-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
}

/* ============================================
   PREFERS-REDUCED-MOTION SUPPORT
   Accessibility: Respect user motion preferences
   Keep the look, just stop the movement
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    /* Stop spinning/rotating elements */
    .portrait-ring {
        animation: none !important;
    }

    .globe-ring {
        animation: none !important;
    }

    /* Stop pulsing effects */
    .urgency-cta .pulse {
        animation: none !important;
    }

    .connection-glow {
        animation: none !important;
        opacity: 0.3 !important;
    }

    /* Stop marquee */
    .marquee-track {
        animation: none !important;
    }

    /* Stop scroll wheel animation */
    .scroll-mouse::before {
        animation: none !important;
    }

    /* Stop bouncing CTA arrow */
    .gateway-cta svg {
        animation: none !important;
    }

    /* Show first panel immediately without animation */
    #panel-1 {
        opacity: 1 !important;
        visibility: visible !important;
    }

    #panel-1 .gateway-title,
    #panel-1 .gateway-subtitle,
    #panel-1 .gateway-cta {
        opacity: 1 !important;
        transform: none !important;
    }

    /* Smoother camera movement */
    .camera {
        transition: transform 0.3s ease-out !important;
    }

    /* Disable the fizzle/blur transitions */
    .content-panel {
        filter: none !important;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   GPU acceleration and paint hints
   Note: backface-visibility hidden can cause issues on mobile
   when transforms are removed, so we only apply on desktop
   ============================================ */

@media (min-width: 769px) {
    .content-panel,
    .panel-inner,
    .corridor-floor,
    .corridor-ceiling,
    .corridor-wall-left,
    .corridor-wall-right {
        will-change: transform, opacity;
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
    }
}

.particle-3d {
    will-change: transform;
}

/* ============================================
   TOUR SUMMARY - THE HUB DESTINATION PAGE
   Premium final page with navigation hub
   ============================================ */

/* When summary is active */
body.tour-summary-active {
    overflow: hidden !important;
}

body.tour-summary-active .scroll-spacer {
    display: none !important;
}

body.tour-summary-active .progress-dots,
body.tour-summary-active .depth-indicator,
body.tour-summary-active .skip-tour-btn,
body.tour-summary-active .scroll-hint {
    display: none !important;
}

body.tour-summary-active .universe {
    display: none !important;
}

body.tour-summary-active #site-footer {
    display: none !important;
}

/* Hide main site header on summary */
body.tour-summary-active header.nav-shell {
    display: none !important;
}

/* Summary overlay */
.tour-summary {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(180deg, #030a14 0%, var(--deep-navy) 30%, #0a1f3d 100%);
    z-index: 10000;
    overflow-y: auto;
    overflow-x: hidden;
}

body.tour-summary-active .tour-summary {
    display: block !important;
}

/* ============================================
   SUMMARY NAVIGATION BAR
   ============================================ */
.summary-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(6, 20, 42, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-logo {
    text-decoration: none;
}

.summary-logo .logo-text {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.summary-logo .logo-text .gold {
    color: var(--gold);
}

.summary-nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.summary-nav-links a {
    padding: 0.6rem 1rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.summary-nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.summary-nav-links .nav-cta-gold {
    background: linear-gradient(135deg, var(--gold), #ffb800);
    color: var(--deep-navy) !important;
    font-weight: 600;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    margin-left: 0.5rem;
}

.summary-nav-links .nav-cta-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.3);
}

/* ============================================
   SUMMARY PAGE LAYOUT
   ============================================ */
.summary-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    padding: 100px 2rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

/* ============================================
   COMPACT SUMMARY - One Page, No Scroll
   ============================================ */
.summary-page.compact {
    padding: 80px 3rem 2rem;
    justify-content: space-between;
    gap: 1.5rem;
    overflow: hidden;
}

/* Compact Hero - Horizontal layout */
.summary-compact-hero {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.compact-hero-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.compact-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

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

.compact-intro h1 {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
}

.compact-credentials {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    margin: 0;
}

.compact-cta {
    flex-shrink: 0;
}

/* Recap Grid - 4 cards */
.recap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    flex: 1;
}

.recap-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.recap-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.recap-icon {
    font-size: 1.5rem;
}

.recap-header h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.recap-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0 0 0.5rem;
}

.recap-card p:last-child {
    margin-bottom: 0;
}

.recap-card strong {
    color: var(--gold);
}

/* Bottom Row - Companies + Actions */
.summary-bottom-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 2rem;
    background: rgba(42, 139, 255, 0.05);
    border: 1px solid rgba(42, 139, 255, 0.15);
    border-radius: 20px;
}

.company-pills {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.company-pill {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.company-pill:hover {
    background: rgba(255, 255, 255, 0.1);
}

.company-pill img {
    height: 28px;
    width: auto;
    object-fit: contain;
}

.summary-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-outline-sm {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-outline-sm:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn-ghost {
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-ghost:hover {
    color: #fff;
}

/* ============================================
   SNAPSHOT SUMMARY - SINGLE VIEWPORT, NO SCROLL
   ============================================ */

.snapshot-page {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 2rem;
    padding: 70px 2rem 0;
    height: calc(100vh - 70px);
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

/* LEFT COLUMN */
.snapshot-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.snapshot-identity {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.snapshot-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--gold);
    flex-shrink: 0;
}

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

.snapshot-intro h1 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.25rem;
    line-height: 1.3;
}

.snapshot-creds {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: var(--gold);
    margin: 0;
}

/* Expertise List */
.snapshot-expertise {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.expertise-item {
    display: flex;
    flex-direction: column;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-left: 2px solid var(--gold);
    border-radius: 0 8px 8px 0;
}

.expertise-item strong {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    color: #fff;
}

.expertise-item span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

/* Company Logos */
.snapshot-companies {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.snapshot-company-logo {
    padding: 0.5rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.snapshot-company-logo:hover {
    background: rgba(255, 255, 255, 0.06);
}

.snapshot-company-logo img {
    height: 22px;
    width: auto;
}

/* CENTER COLUMN */
.snapshot-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1rem;
    min-width: 0;
}

/* Stats */
.snapshot-stats {
    display: flex;
    gap: 2.5rem;
}

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

.snap-stat-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.snap-stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Case Highlights */
.snapshot-cases {
    display: flex;
    gap: 1rem;
}

.snap-case {
    padding: 0.5rem 1rem;
    background: rgba(42, 139, 255, 0.1);
    border: 1px solid rgba(42, 139, 255, 0.2);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.snap-case span {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    color: #fff;
}

/* Process Steps */
.snapshot-process {
    display: flex;
    gap: 0.5rem;
}

.snap-step {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
}

.snap-step span {
    display: inline-block;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: var(--gold);
    color: var(--deep-navy);
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Summary page marquee - smaller version */
.summary-marquee {
    margin: 0;
    padding: 0.5rem 0;
    width: 100%;
    min-width: 0;
}

.summary-marquee .client-logo {
    height: 35px;
}

/* RIGHT COLUMN */
.snapshot-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

/* CTA Box */
.snapshot-cta-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(245, 197, 66, 0.1) 0%, rgba(42, 139, 255, 0.1) 100%);
    border: 1px solid rgba(245, 197, 66, 0.2);
    border-radius: 16px;
    text-align: center;
}

.snapshot-cta-box h2 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.5rem;
}

.snapshot-cta-box p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1rem;
}

.btn-gold {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, var(--gold), #ffb800);
    color: var(--deep-navy);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 197, 66, 0.3);
}

.btn-ghost-sm {
    display: block;
    margin: 0.75rem auto 0;
    padding: 0.4rem 1rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-ghost-sm:hover {
    color: #fff;
}

/* Speaking */
.snapshot-speaking {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.speak-stats {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 0.5rem;
}

.speak-stats span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.speak-stats strong {
    color: var(--gold);
}

.speak-venues {
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Footer */
.snapshot-footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0.4rem 1rem;
    background: rgba(3, 10, 20, 0.8);
}

.snapshot-footer-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.5);
}

.snapshot-footer-inner a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.snapshot-footer-inner a:hover {
    color: #fff;
}

.snapshot-footer-separator {
    opacity: 0.4;
}

.snapshot-footer p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    margin: 0;
}

/* Snapshot Responsive */
@media (max-width: 1100px) {
    .snapshot-page {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
        height: auto;
        min-height: calc(100vh - 70px);
        padding-bottom: 2rem;
    }
    
    .snapshot-left {
        grid-column: 1;
    }
    
    .snapshot-center {
        grid-column: 2;
    }
    
    .snapshot-right {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: space-between;
    }
    
    .snapshot-cta-box {
        flex: 1;
    }
    
    .snapshot-speaking {
        flex: 1;
    }
}

@media (max-width: 768px) {
    .snapshot-page {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 70px 1rem 3rem;
    }
    
    .snapshot-left,
    .snapshot-center,
    .snapshot-right {
        grid-column: 1;
    }
    
    .snapshot-right {
        flex-direction: column;
    }
    
    .snapshot-stats {
        gap: 1.5rem;
    }
    
    .snap-stat-num {
        font-size: 1.5rem;
    }
    
    .snapshot-cases {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .snapshot-process {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .snapshot-clients {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Keep old summary styles for backwards compat - NOT USED */
.summary-page { display: none; }

/* Compact Summary Responsive - KEEP OLD STYLES FOR BACKWARDS COMPAT */
@media (max-width: 1100px) {
    .recap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .summary-page.compact {
        padding: 70px 1rem 1rem;
        overflow-y: auto;
    }
    
    .summary-compact-hero {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .compact-hero-left {
        flex-direction: column;
    }
    
    .recap-grid {
        grid-template-columns: 1fr;
    }
    
    .summary-bottom-row {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .summary-actions {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@keyframes ringRotate {
    from { background-position: 0% 50%; }
    to { background-position: 200% 50%; }
}

.hero-photo-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--deep-navy);
}

.hero-name {
    font-family: 'Sora', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: linear-gradient(135deg, #fff 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 0.5rem;
}

.hero-role {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 1.25rem;
}

.hero-credentials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.credential {
    padding: 0.4rem 0.9rem;
    background: rgba(245, 197, 66, 0.1);
    border: 1px solid rgba(245, 197, 66, 0.25);
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: var(--gold);
}

.hero-mission {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 2rem;
    line-height: 1.5;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-gold {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.9rem 2rem;
    background: linear-gradient(135deg, var(--gold), #ffb800);
    color: var(--deep-navy);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 25px rgba(245, 197, 66, 0.3);
}

.btn-primary-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(245, 197, 66, 0.4);
}

.btn-primary-gold.large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: transparent;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(42, 139, 255, 0.05);
    border: 1px solid rgba(42, 139, 255, 0.15);
    border-radius: 20px;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

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

.stat-num {
    display: block;
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--blue);
    line-height: 1.1;
}

.stat-txt {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   NAVIGATION HUB - Card Grid
   ============================================ */
.nav-hub {
    margin-bottom: 3rem;
}

.hub-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    text-align: center;
    margin: 0 0 2rem;
}

.hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
}

.hub-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    overflow: hidden;
}

.hub-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hub-card:hover {
    background: rgba(42, 139, 255, 0.08);
    border-color: rgba(42, 139, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hub-card:hover::before {
    opacity: 1;
}

.hub-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.hub-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.5rem;
}

.hub-card p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    flex: 1;
}

.hub-arrow {
    position: absolute;
    bottom: 1.5rem;
    right: 1.5rem;
    font-size: 1.5rem;
    color: var(--blue);
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.hub-card:hover .hub-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   COMPANIES BANNER
   ============================================ */
.companies-banner {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    margin-bottom: 3rem;
}

.banner-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 1.5rem;
}

.banner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.banner-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.banner-company:hover {
    transform: translateY(-3px);
}

.banner-company img {
    height: 50px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.banner-company:hover img {
    opacity: 1;
}

.banner-company span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.banner-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(42, 139, 255, 0.1), rgba(245, 197, 66, 0.05));
    border: 1px solid rgba(42, 139, 255, 0.2);
    border-radius: 30px;
    margin-bottom: 3rem;
}

.final-cta h2 {
    font-family: 'Sora', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    font-weight: 600;
    color: #fff;
    margin: 0 0 0.75rem;
}

.final-cta p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SUMMARY FOOTER - Full Footer
   ============================================ */
.summary-footer-full {
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 3rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
}

.footer-logo .gold {
    color: var(--gold);
}

.footer-brand p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0.75rem 0 0;
    line-height: 1.5;
}

.footer-links-grid {
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 1rem;
}

.footer-col a {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    padding: 0.3rem 0;
    transition: color 0.2s ease;
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin: 0;
}

.footer-badges {
    color: rgba(255, 255, 255, 0.3) !important;
}

.restart-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.25rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.restart-btn:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   SUMMARY PAGE RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .summary-nav-links {
        display: none; /* Hide nav on smaller screens, could add hamburger */
    }
    
    .hub-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    }
    
    .footer-links-grid {
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .summary-page {
        padding: 80px 1rem 0;
    }
    
    .summary-hero-card {
        padding: 2rem 1.5rem;
        border-radius: 20px;
    }
    
    .stats-strip {
        gap: 1.5rem;
        padding: 1.25rem 1rem;
    }
    
    .hub-grid {
        grid-template-columns: 1fr;
    }
    
    .hub-card {
        padding: 1.5rem;
    }
    
    .final-cta {
        padding: 2rem 1.5rem;
    }
    
    .footer-top {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-links-grid {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-logos {
        flex-direction: column;
        gap: 2rem;
    }
    
    .banner-divider {
        width: 60px;
        height: 1px;
    }
}
    
    .summary-photo {
        width: 120px;
        height: 120px;
    }
    
    .summary-badges {
        gap: 0.5rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .company-logo-card {
        padding: 1.5rem 2rem;
        min-width: 200px;
    }
    
    .company-logo-card img {
        height: 45px;
    }
    
    .summary-stats-bar {
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        flex: 1 0 40%;
    }
    
    .cta-btn-hero,
    .cta-btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .summary-cta-row {
        width: 100%;
        max-width: 320px;
    }
}

/* Skip Tour Button - Always visible during 3D tour */
#skip-tour-btn,
.skip-tour-btn {
    position: fixed !important;
    bottom: 6rem !important;
    right: 2rem !important;
    z-index: 99999 !important;
    padding: 0.75rem 1.5rem !important;
    background: rgba(6, 20, 42, 0.95) !important;
    border: 2px solid var(--gold) !important;
    border-radius: 50px !important;
    color: var(--gold) !important;
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    -webkit-backdrop-filter: blur(10px) !important;
    backdrop-filter: blur(10px) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: center !important;
    gap: 0.5rem !important;
    pointer-events: auto !important;
}

.skip-tour-btn:hover {
    background: var(--gold);
    color: var(--deep-navy);
    box-shadow: 0 8px 30px rgba(245, 197, 66, 0.4);
    transform: translateY(-2px);
}

/* ============================================
   PANEL 2: PERSONAL TOUCH / BEYOND RESUME
   ============================================ */

.beyond-resume {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.beyond-label {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.personal-facts {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Polaroid Slideshow - replaces portrait image */
.polaroid-frame {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    overflow: visible;
}

.polaroid-photos {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.polaroid-photo {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.polaroid-photo.active {
    opacity: 1;
    transform: scale(1);
}

.polaroid-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    background: rgba(6, 20, 42, 0.8);
    border: 1px solid rgba(245, 197, 66, 0.5);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s ease, background 0.3s ease, transform 0.3s ease;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.polaroid-nav:hover {
    opacity: 1;
    background: rgba(6, 20, 42, 0.95);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.polaroid-prev {
    left: -15px;
}

.polaroid-next {
    right: -15px;
}

.polaroid-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 20;
}

.polaroid-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.polaroid-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.polaroid-dot.active {
    background: var(--gold);
    transform: scale(1.3);
}

.personal-fact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
}

.personal-fact svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    fill: var(--gold);
    opacity: 0.8;
}

/* ============================================
   PANEL 6: CASE STUDY HOVER CARDS
   ============================================ */

.case-studies-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
    gap: 1rem;
    margin: 1.5rem 0;
    max-width: 100%;
}

.case-study-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-study-card:hover {
    transform: scale(1.05);
    border-color: var(--gold);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 30px rgba(245, 197, 66, 0.2);
    z-index: 10;
}

.case-card-preview {
    padding: 1.25rem;
    transition: opacity 0.3s;
}

.case-study-card:hover .case-card-preview {
    opacity: 0;
    position: absolute;
}

.case-industry {
    display: inline-block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    background: rgba(245, 197, 66, 0.15);
    padding: 0.35rem 0.75rem;
    border-radius: 20px;
    margin-bottom: 0.75rem;
}

.case-headline {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.4rem;
}

.case-hover-hint {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.case-card-expanded {
    position: absolute;
    inset: 0;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(6, 20, 42, 0.98), rgba(11, 24, 41, 0.98));
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow-y: auto;
}

.case-study-card:hover .case-card-expanded {
    opacity: 1;
    transform: translateY(0);
}

.case-card-expanded .case-industry {
    margin-bottom: 0.5rem;
}

.case-title {
    font-family: 'Sora', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.case-summary {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.case-challenge,
.case-solution {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.case-challenge strong,
.case-solution strong {
    color: var(--gold);
}

.case-results {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.case-stat {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gold);
    background: rgba(245, 197, 66, 0.1);
    padding: 0.35rem 0.6rem;
    border-radius: 4px;
}

.case-studies-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(245, 197, 66, 0.4);
    border-radius: 50px;
    transition: all 0.3s;
    margin-bottom: 2rem;
}

.case-studies-link:hover {
    background: rgba(245, 197, 66, 0.1);
    border-color: var(--gold);
}

/* ============================================
   PANEL 8: INTERACTIVE GLOBE WITH VIDEO HOTSPOTS
   ============================================ */

.stage-intro {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    margin-bottom: 0.75rem;
}

/* ============================================
   WORLD MAP WITH REAL MAP IMAGE
   ============================================ */

.world-map-container {
    width: 100%;
    max-width: 750px;
    margin: 1rem auto;
    padding: 0 1rem;
}

.world-map {
    position: relative;
    width: 100%;
    aspect-ratio: 2 / 1;
    border-radius: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, 
        rgba(8, 25, 50, 0.95) 0%,
        rgba(5, 15, 35, 0.98) 100%);
    box-shadow: 
        0 0 60px rgba(50, 100, 200, 0.15),
        0 20px 60px rgba(0, 0, 0, 0.4),
        inset 0 0 100px rgba(50, 100, 200, 0.05);
    border: 1px solid rgba(100, 150, 255, 0.1);
}

.map-background {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-image {
    width: 95%;
    height: auto;
    max-height: 90%;
    object-fit: contain;
    opacity: 0.85;
    filter: brightness(1.3) saturate(0.6) hue-rotate(-5deg);
    transition: filter 0.3s ease;
}

.map-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, 
        transparent 30%,
        rgba(5, 15, 35, 0.4) 70%,
        rgba(5, 15, 35, 0.8) 100%);
    pointer-events: none;
}

.map-connections {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

/* Map stats bar */
.map-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 0.75rem;
    padding: 0.5rem 0;
}

.map-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.map-stat .stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 20px rgba(245, 197, 66, 0.4);
}

.map-stat .stat-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Map location pins */
.map-pin {
    position: absolute;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 20;
    padding: 0;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: z-index 0s;
}

.map-pin:hover {
    z-index: 30;
}

.map-pin:focus {
    outline: none;
}

.pin-dot {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--gold) 0%, #ffb800 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: var(--deep-navy);
    font-weight: bold;
    box-shadow: 
        0 0 12px var(--gold),
        0 0 25px rgba(245, 197, 66, 0.4),
        0 3px 10px rgba(0, 0, 0, 0.3);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    z-index: 2;
}

.pin-pulse {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: pinPulse 2.5s ease-out infinite;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

@keyframes pinPulse {
    0% {
        width: 32px;
        height: 32px;
        opacity: 0.6;
    }
    100% {
        width: 70px;
        height: 70px;
        margin-top: -19px;
        opacity: 0;
    }
}

/* Stagger the pulse animations for each pin */
.map-pin:nth-child(2) .pin-pulse { animation-delay: 0.4s; }
.map-pin:nth-child(3) .pin-pulse { animation-delay: 0.8s; }
.map-pin:nth-child(4) .pin-pulse { animation-delay: 1.2s; }
.map-pin:nth-child(5) .pin-pulse { animation-delay: 1.6s; }
.map-pin:nth-child(6) .pin-pulse { animation-delay: 2.0s; }

.pin-label {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    background: rgba(10, 20, 40, 0.95);
    padding: 5px 10px;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(-8px) scale(0.9);
    transition: all 0.25s ease;
    margin-top: 4px;
    border: 1px solid rgba(245, 197, 66, 0.3);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    pointer-events: none;
}

.map-pin:hover .pin-dot {
    transform: scale(1.25);
    box-shadow: 
        0 0 20px var(--gold),
        0 0 40px rgba(245, 197, 66, 0.5),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

.map-pin:hover .pin-label {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.map-pin:hover .pin-pulse {
    animation-duration: 1.2s;
}

/* Responsive pin sizes */
@media (max-width: 768px) {
    .world-map-container {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    .world-map {
        aspect-ratio: 16 / 10;
        min-height: 220px;
    }
    
    .map-image {
        width: 100%;
        max-height: 100%;
    }
    
    /* Mobile-specific pin positioning - override inline styles */
    /* USA pins */
    .map-pin[data-title*="Cosmos"] {
        left: 20% !important;
        top: 35% !important;
    }
    
    .map-pin[data-title*="TechEd"] {
        left: 24% !important;
        top: 28% !important;
    }
    
    /* Europe - Build Stuff */
    .map-pin[data-title*="Europe"] {
        left: 50% !important;
        top: 22% !important;
    }
    
    /* Romania - Codecamp Iasi */
    .map-pin[data-title*="Romania"] {
        left: 54% !important;
        top: 28% !important;
    }
    
    .pin-dot {
        width: 28px;
        height: 28px;
        font-size: 9px;
    }
    
    .pin-pulse {
        width: 28px;
        height: 28px;
    }
    
    @keyframes pinPulse {
        0% {
            width: 28px;
            height: 28px;
            opacity: 0.6;
        }
        100% {
            width: 55px;
            height: 55px;
            opacity: 0;
        }
    }
    
    .pin-label {
        font-size: 0.6rem;
        padding: 3px 8px;
        /* Always show labels on mobile since no hover */
        opacity: 1 !important;
        transform: translateY(0) scale(1) !important;
    }
    
    .map-stats {
        gap: 1.5rem;
    }
    
    .map-stat .stat-number {
        font-size: 1.2rem;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .world-map {
        aspect-ratio: 4 / 3;
        min-height: 200px;
    }
    
    /* Tighter positioning for smaller screens */
    .map-pin[data-title*="Cosmos"] {
        left: 11% !important;
        top: 25% !important;    
    }
    
    .map-pin[data-title*="TechEd"] {
        left: 19% !important;
        top: 4% !important;
    }
    
    .map-pin[data-title*="Europe"] {
        left: 38% !important;
        top: -24% !important;
    }
    
    .map-pin[data-title*="Romania"] {
        left: 47% !important;
        top: -42% !important;
    }
    
    .pin-dot {
        width: 24px;
        height: 24px;
        font-size: 8px;
    }
    
    .pin-label {
        font-size: 0.55rem;
        padding: 2px 6px;
    }
    
    .map-stats {
        gap: 1rem;
        flex-wrap: wrap;
    }
    
    .map-stat .stat-number {
        font-size: 1.1rem;
    }
    
    .map-stat .stat-label {
        font-size: 0.65rem;
    }
}

/* Book speaking CTA */
.book-speaking-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--deep-navy);
    background: linear-gradient(135deg, var(--gold) 0%, #ffb800 100%);
    text-decoration: none;
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 0.5rem;
    box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
    position: relative;
    z-index: 10;
}

.book-speaking-cta:hover {
    background: linear-gradient(135deg, #ffb800 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 197, 66, 0.4);
}

/* ============================================
   VIDEO MODAL OVERLAY
   ============================================ */

.video-modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.video-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
}

.video-modal-dialog {
    position: relative;
    width: 90%;
    max-width: 1000px;
    background: var(--dark-navy);
    border-radius: 16px;
    overflow: hidden;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-overlay.active .video-modal-dialog {
    transform: scale(1) translateY(0);
}

.video-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.video-modal-title {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #fff;
    margin: 0;
}

.video-modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    color: #fff;
}

.video-modal-close:hover {
    background: var(--gold);
    color: var(--deep-navy);
    transform: rotate(90deg);
}

.video-modal-body {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
}

.video-modal-body iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* ============================================
   LEGACY STYLES (keeping for backward compat)
   ============================================ */

/* Video Modal - old version */
.video-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.video-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 1;
    transform: scale(0.9);
    transition: transform 0.3s;
}

.video-modal.active .video-modal-content {
    transform: scale(1);
}

.video-modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.video-modal-close svg {
    width: 24px;
    height: 24px;
    fill: #fff;
}

.video-modal-close:hover {
    background: var(--gold);
}

.video-modal-close:hover svg {
    fill: var(--deep-navy);
}

.video-modal-iframe-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 16px;
    overflow: hidden;
    background: #000;
}

.video-modal-iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Responsive */
@media (max-width: 1024px) {
    .case-studies-row {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .case-study-card {
        max-width: 100%;
    }
    
    .interactive-globe-container {
        flex-direction: column;
    }
    
    .interactive-globe {
        width: 220px;
        height: 220px;
    }
    
    .video-preview-panel {
        width: 100%;
        max-width: 320px;
    }
}

@media (max-width: 768px) {
    .beyond-resume {
        margin-top: 1.5rem;
        padding-top: 1rem;
    }
    
    .personal-fact {
        font-size: 0.85rem;
    }
    
    .interactive-globe {
        width: 180px;
        height: 180px;
    }
    
    .hotspot-label {
        font-size: 0.6rem;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .summary-two-col {
        flex-direction: column-reverse;
        text-align: center;
        gap: 2rem;
        padding: 0 1.5rem;
    }
    
    .summary-left {
        align-items: center;
    }
    
    .summary-left .summary-stats {
        justify-content: center;
    }
    
    .company-cards {
        max-width: 400px;
    }
    
    .summary-photo {
        width: 150px;
        height: 150px;
    }
    
    .summary-name {
        font-size: 1.75rem;
    }
}

@media (max-width: 768px) {
    .summary-page {
        padding: 0 1rem;
    }
    
    .summary-two-col {
        gap: 1.5rem;
    }
    
    .summary-stats {
        gap: 1.5rem;
        flex-wrap: wrap;
    }
    
    .summary-cta-row {
        flex-direction: column;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-btn-static {
        justify-content: center;
    }
    
    .summary-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .company-card {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .companies-logos {
        gap: 1.5rem;
    }
    
    .company-logo-tour {
        height: 32px;
    }
    
    .glance-text {
        font-size: 0.9rem;
    }
    
    .summary-photo {
        width: 120px;
        height: 120px;
    }
    
    .award-badge {
        padding: 0.5rem 0.75rem;
    }
    
    .award-badge span {
        font-size: 0.8rem;
    }
}

/* ============================================
   POINTER EVENTS FIX - MAKE ALL INTERACTIVE ELEMENTS CLICKABLE
   This ensures all links, buttons, and interactive elements
   work properly within the 3D CSS transform context
   ============================================ */

/* All anchor links in the corridor must be explicitly clickable */
.universe a,
.universe button,
.panel-inner a,
.panel-inner button {
    pointer-events: auto !important;
    cursor: pointer !important;
    position: relative;
    z-index: 100;
}

/* Specific interactive elements that need clicks */
.gateway-cta,
.products-cta,
.case-studies-link,
.book-speaking-cta,
.cta-btn,
.cta-btn--primary,
.cta-btn--secondary,
.watch-video-btn,
.video-hotspot,
.video-dot,
.keynote-dot,
.map-pin,
.case-study-card,
.venture-logo-card a,
.expertise-card a {
    pointer-events: auto !important;
    cursor: pointer !important;
}

/* Ensure the video modal is always on top and clickable */
.video-modal,
.video-modal-overlay {
    pointer-events: auto !important;
}

.video-modal-backdrop {
    pointer-events: auto !important;
}

.video-modal-close {
    pointer-events: auto !important;
    cursor: pointer !important;
}
/* ================================================================
   MOBILE RESPONSIVE EXPERIENCE
   On mobile/touch devices: Standard page layout with smooth
   scroll-triggered reveal animations
   ================================================================ */

/* Scroll Reveal Animation Classes */
.reveal-hidden {
    opacity: 0;
    transform: translateY(30px);
}

.reveal-visible {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
    transition-delay: var(--reveal-delay, 0s);
}

/* Staggered reveal for grid items */
.reveal-visible:nth-child(1) { --reveal-delay: 0s; }
.reveal-visible:nth-child(2) { --reveal-delay: 0.1s; }
.reveal-visible:nth-child(3) { --reveal-delay: 0.2s; }
.reveal-visible:nth-child(4) { --reveal-delay: 0.3s; }
.reveal-visible:nth-child(5) { --reveal-delay: 0.4s; }
.reveal-visible:nth-child(6) { --reveal-delay: 0.5s; }

/* Slide from left variant */
.reveal-hidden.reveal-from-left {
    transform: translateX(-30px);
}

/* Slide from right variant */
.reveal-hidden.reveal-from-right {
    transform: translateX(30px);
}

/* Scale up variant */
.reveal-hidden.reveal-scale {
    transform: scale(0.9);
}

/* Mobile: Convert 3D corridor to standard page layout */
/* Use 768px to match JS breakpoint (window.innerWidth < 768) */
@media (max-width: 768px) {
    /* CRITICAL: Reset the scroll spacer - this drives the 3D scroll */
    .scroll-spacer {
        height: auto !important;
        min-height: 0 !important;
        overflow: visible !important;
        display: block !important;
        pointer-events: auto !important; /* Allow touch scrolling on mobile */
    }
    
    /* CRITICAL: The universe container must flow naturally */
    .universe {
        position: relative !important;
        height: auto !important;
        min-height: 0 !important;
        perspective: none !important;
        overflow: visible !important;
        background: var(--deep-navy) !important;
    }
    
    /* CRITICAL: The camera becomes a simple stacking container */
    .camera {
        position: relative !important;
        transform: none !important;
        transform-style: flat !important;
        height: auto !important;
        display: flex !important;
        flex-direction: column !important;
    }
    
    /* Hide all the 3D corridor elements */
    .corridor-floor,
    .corridor-ceiling,
    .corridor-wall-left,
    .corridor-wall-right,
    .floor-light-strip,
    .wall-light-left,
    .wall-light-right,
    .ceiling-lights,
    .particles-container,
    .progress-dots,
    .depth-indicator,
    .scroll-hint {
        display: none !important;
    }
    
    /* CRITICAL: Panels become regular stacking sections */
    /* Override ALL GSAP inline styles with !important */
    .content-panel {
        position: relative !important;
        transform: none !important;
        translate: none !important;
        rotate: none !important;
        scale: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        filter: none !important;
        -webkit-filter: none !important;
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
        padding: 2.5rem 1.25rem !important;
        pointer-events: auto !important;
        display: flex !important;
        justify-content: center !important;
        align-items: flex-start !important;
        left: auto !important;
        top: auto !important;
        backface-visibility: visible !important;
        -webkit-backface-visibility: visible !important;
        transform-style: flat !important;
        -webkit-transform-style: flat !important;
    }
    
    /* Also reset panel-inner in case GSAP targets it */
    .content-panel .panel-inner {
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        filter: none !important;
        -webkit-filter: none !important;
    }
    
    /* Override all the 3D Z-transforms */
    .panel-gateway,
    .panel-portrait,
    .panel-companies,
    .panel-products,
    .panel-expertise,
    .panel-impact,
    .panel-method,
    .panel-stage,
    .panel-connection {
        transform: none !important;
    }
    
    .content-panel .panel-inner {
        position: relative !important;
        transform: none !important;
        width: 100% !important;
        max-width: 100%;
        pointer-events: auto !important;
        padding: 0;
        opacity: 1 !important;
    }
    
    /* Reveal animations for child elements only - not panel-inner itself */
    .reveal-hidden {
        opacity: 0;
        transform: translateY(20px);
    }
    
    .reveal-visible {
        opacity: 1;
        transform: translateY(0);
    }
    
    /* Add subtle dividers between sections */
    .content-panel:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 80px;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--gold), transparent);
    }
    
    /* --- PANEL 1: Gateway / Hero --- */
    #panel-1 {
        min-height: 100svh;
        padding-top: 6rem;
        padding-bottom: 3rem;
        background: linear-gradient(180deg, var(--deep-navy) 0%, rgba(11, 24, 41, 0.95) 100%);
        align-items: center !important;
        justify-content: center !important;
    }
    
    #panel-1 .panel-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .gateway-title {
        font-size: 1.75rem !important;
        line-height: 1.2;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .gateway-subtitle {
        font-size: 1rem;
        text-align: center;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .gateway-cta {
        margin: 1.5rem auto 0;
    }
    
    /* --- PANEL 2: Portrait / Bio --- */
    #panel-2 {
        background: rgba(11, 24, 41, 0.98);
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
    .portrait-container {
        flex-direction: column !important;
        text-align: center;
        gap: 1.5rem;
    }
    
    .portrait-image {
        width: 160px !important;
        height: 160px !important;
        margin: 0 auto;
    }
    
    .portrait-text {
        text-align: center;
    }
    
    .portrait-text h2 {
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    
    .portrait-text p {
        font-size: 0.9rem;
        line-height: 1.6;
    }
    
    .credential-badges {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .credential-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.6rem;
    }
    
    .beyond-resume {
        margin-top: 1.5rem;
    }
    
    .personal-facts {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .personal-fact {
        font-size: 0.85rem;
        justify-content: center;
    }
    
    /* --- PANEL 3: Companies --- */
    #panel-3 {
        background: rgba(6, 20, 42, 0.98);
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .companies-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .companies-intro {
        font-size: 0.9rem;
        text-align: center;
    }
    
    .venture-logos {
        flex-direction: column;
        gap: 1rem;
    }
    
    .venture-logo-card {
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }
    
    .venture-logo-card img {
        height: 45px;
    }
    
    /* --- PANEL 4: Products --- */
    #panel-4 {
        background: rgba(11, 24, 41, 0.98);
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .products-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .product-showcase {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem;
        gap: 1rem;
    }
    
    .product-logo {
        max-width: 180px;
        margin: 0 auto;
    }
    
    .product-tags {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .products-cta {
        margin: 1rem auto 0;
    }
    
    /* --- PANEL 5: Expertise --- */
    #panel-5 {
        background: rgba(6, 20, 42, 0.98);
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .expertise-header .section-title {
        font-size: 1.3rem;
        margin-bottom: 0.75rem;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem;
    }
    
    .expertise-card {
        padding: 1.5rem;
    }
    
    .expertise-card h3 {
        font-size: 1.1rem;
    }
    
    .expertise-card p {
        font-size: 0.9rem;
    }
    
    /* --- PANEL 6: Impact / Case Studies --- */
    #panel-6 {
        background: rgba(11, 24, 41, 0.98);
    }
    
    .impact-header .section-title {
        font-size: 1.5rem;
    }
    
    .stats-row {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .stat-item {
        text-align: center;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    /* Case study cards - show expanded by default on mobile */
    .case-studies-row {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .case-study-card {
        max-width: 100%;
    }
    
    .case-card-preview {
        display: none;
    }
    
    .case-card-expanded {
        opacity: 1 !important;
        position: relative !important;
        padding: 1.5rem;
    }
    
    .case-hover-hint {
        display: none;
    }
    
    .case-results {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .clients-marquee {
        margin-top: 2rem;
        max-height: 200px;
        overflow-y: auto;
        padding-right: 0.5rem;
    }
    
    .marquee-track {
        animation: none !important;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .client-logo {
        height: 45px;
        background: white;
        border-radius: 6px;
    }
    
    /* --- PANEL 7: Method / Process --- */
    #panel-7 {
        background: rgba(6, 20, 42, 0.98);
    }
    
    .method-header .section-title {
        font-size: 1.5rem;
    }
    
    .phases-container {
        flex-direction: column !important;
        gap: 1.5rem;
    }
    
    .phases-line {
        display: none !important;
    }
    
    .phase-item {
        width: 100% !important;
        text-align: center;
        padding: 1rem;
        background: rgba(42, 139, 255, 0.05);
        border-radius: 12px;
        border: 1px solid rgba(42, 139, 255, 0.1);
    }
    
    .phase-number {
        margin: 0 auto 0.5rem;
    }
    
    .urgency-cta {
        margin-top: 2rem;
        font-size: 0.9rem;
    }
    
    /* --- PANEL 8: Speaking / World Map --- */
    #panel-8 {
        background: rgba(11, 24, 41, 0.98);
    }
    
    .stage-header .section-title {
        font-size: 1.5rem;
    }
    
    .stage-intro {
        font-size: 0.95rem;
        text-align: center;
    }
    
    .world-map-container {
        margin: 1.5rem 0;
    }
    
    .world-map {
        min-height: 200px;
    }
    
    .map-pin {
        transform: scale(0.8);
    }
    
    .pin-label {
        font-size: 0.6rem;
    }
    
    .map-stats {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .map-stat {
        min-width: 80px;
    }
    
    .venues-row {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .venue-tag {
        font-size: 0.75rem;
        padding: 0.4rem 0.75rem;
    }
    
    .book-speaking-cta {
        margin: 1.5rem auto 0;
    }
    
    /* --- PANEL 9: Connection / CTA --- */
    #panel-9 {
        background: linear-gradient(180deg, rgba(6, 20, 42, 0.98) 0%, var(--deep-navy) 100%);
        padding-bottom: 2rem;
    }
    
    .connection-title {
        font-size: 1.75rem;
    }
    
    .connection-subtitle {
        font-size: 1rem;
        text-align: center;
    }
    
    .connection-glow {
        opacity: 0.2;
    }
    
    .scroll-continue-hint {
        display: none;
    }
    
    /* Mobile CTA section in Panel 9 */
    .mobile-cta-section {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        margin-top: 2rem;
        width: 100%;
    }
    
    .mobile-cta-section .cta-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
        text-align: center;
    }
    
    .mobile-cta-section .cta-btn--primary {
        background: linear-gradient(135deg, var(--gold) 0%, #e0b33d 100%);
        color: var(--deep-navy);
        font-weight: 600;
        padding: 1rem 1.5rem;
        border-radius: 50px;
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(245, 197, 66, 0.3);
    }
    
    .mobile-cta-section .cta-btn--secondary {
        background: transparent;
        color: #fff;
        border: 1px solid rgba(255, 255, 255, 0.3);
        padding: 0.875rem 1.5rem;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
    }
    
    .mobile-quick-links {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .mobile-quick-links a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        padding: 0.5rem 1rem;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.05);
        transition: all 0.2s ease;
    }
    
    .mobile-quick-links a:hover,
    .mobile-quick-links a:active {
        background: rgba(255, 255, 255, 0.1);
        color: #fff;
    }
    
    /* Summary becomes a normal section at the end on mobile */
    .tour-summary {
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        height: auto !important;
        min-height: 0 !important;
        width: 100% !important;
        overflow: visible !important;
        z-index: auto !important;
    }

    .summary-nav {
        position: sticky !important;
        top: 0 !important;
    }

    .snapshot-page {
        height: auto !important;
        overflow: visible !important;
    }

    .snapshot-footer {
        position: static !important;
    }

    /* Don't lock scroll on mobile if summary is toggled */
    body.tour-summary-active {
        overflow: auto !important;
    }
    
    /* Skip Tour button - hidden on mobile (normal scroll flow) */
    #skip-tour-btn,
    .skip-tour-btn {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }
    
    /* Body background for mobile */
    body:has(.scroll-spacer) {
        background: var(--deep-navy);
    }
    
    /* Ensure camera container allows content to flow on mobile */
    .camera * {
        transform-style: flat !important;
    }
}

/* Touch devices (tablets in portrait, etc.) - Same treatment */
@media (hover: none) and (pointer: coarse) and (max-width: 1024px) {
    /* Case study cards expanded by default */
    .case-card-preview {
        display: none;
    }
    
    .case-card-expanded {
        opacity: 1 !important;
        position: relative !important;
    }
    
    .case-hover-hint {
        display: none;
    }
}

/* ================================================================
   TABLET OPTIMIZATIONS (768px - 1024px)
   Reduced 3D effects but still immersive
   ================================================================ */

@media (min-width: 768px) and (max-width: 1024px) {
    :root {
        --corridor-depth: 10000px;
    }
    
    .universe {
        perspective: 1400px;
    }
    
    /* Reduce particles for performance */
    .particle-3d:nth-child(n+60) {
        display: none;
    }
    
    /* Larger skip tour button for touch */
    .skip-tour-btn {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
        bottom: 6rem;
        right: 2rem;
    }
    
    /* Larger tap targets */
    .gateway-cta,
    .products-cta,
    .case-studies-link,
    .book-speaking-cta,
    .cta-btn {
        min-height: 48px;
        padding: 1rem 1.5rem;
    }
    
    .map-pin {
        min-width: 44px;
        min-height: 44px;
    }
    
    /* Progress dots larger for touch */
    .progress-dot {
        width: 14px;
        height: 14px;
    }
}

/* ================================================================
   ULTRA-WIDE MONITOR CONSTRAINTS (>1920px)
   Keep content readable, maintain visual balance
   ================================================================ */

@media (min-width: 1921px) {
    .content-panel .panel-inner {
        max-width: 1400px;
    }
    
    /* Larger typography for big screens */
    .gateway-title {
        font-size: clamp(3rem, 4vw, 4.5rem);
    }
    
    .section-title {
        font-size: clamp(2rem, 3vw, 3rem);
    }
    
    /* More spacious panels */
    .content-panel {
        padding: 4rem 2rem;
    }
    
    .expertise-grid {
        gap: 2rem;
    }
    
    .case-studies-row {
        gap: 2rem;
    }
}

/* Extreme ultra-wide (4K+) */
@media (min-width: 2560px) {
    .content-panel .panel-inner {
        max-width: 1600px;
    }
    
    .gateway-title {
        font-size: 4.5rem;
    }
    
    .portrait-image {
        width: 320px;
        height: 320px;
    }
}

/* ================================================================
   MOBILE STYLING (at end to override everything)
   Simple, clean, readable mobile layout
   ================================================================ */
@media (max-width: 768px) {
    /* Body styling */
    body {
        background: var(--deep-navy) !important;
    }
    
    /* Typography */
    .gateway-title {
        font-size: 1.5rem !important;
        line-height: 1.3 !important;
        color: #fff !important;
        margin-bottom: 1rem !important;
    }
    
    .gateway-title .highlight {
        background: linear-gradient(135deg, var(--gold) 0%, #FF9F43 100%) !important;
        -webkit-background-clip: text !important;
        -webkit-text-fill-color: transparent !important;
        background-clip: text !important;
    }
    
    .gateway-subtitle {
        font-size: 1rem !important;
        color: rgba(255,255,255,0.8) !important;
        line-height: 1.5 !important;
        margin-bottom: 1.5rem !important;
    }
    
    .gateway-cta {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 0.875rem 1.5rem !important;
        background: var(--gold) !important;
        color: var(--deep-navy) !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }
    
    .section-label {
        font-size: 0.75rem !important;
        color: var(--gold) !important;
        letter-spacing: 0.15em !important;
        text-transform: uppercase !important;
        margin-bottom: 0.5rem !important;
        display: block !important;
    }
    
    .section-title {
        font-size: 1.25rem !important;
        color: #fff !important;
        margin-bottom: 1rem !important;
    }
    
    /* Portrait section */
    .portrait-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .portrait-image {
        width: 120px !important;
        height: 120px !important;
        border-radius: 50% !important;
        overflow: hidden !important;
        position: relative !important;
    }
    
    .polaroid-frame {
        width: 100% !important;
        height: 100% !important;
        border-radius: 50% !important;
        overflow: hidden !important;
    }
    
    .polaroid-photo {
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    .portrait-text h2 {
        font-size: 1.25rem !important;
        color: #fff !important;
        margin-bottom: 0.5rem !important;
    }
    
    .portrait-text p {
        font-size: 0.9rem !important;
        color: rgba(255,255,255,0.75) !important;
        line-height: 1.5 !important;
    }
    
    .credential-badges {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .credential-badge {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.25rem !important;
        font-size: 0.7rem !important;
        padding: 0.35rem 0.6rem !important;
        background: rgba(245,197,66,0.1) !important;
        border: 1px solid rgba(245,197,66,0.3) !important;
        border-radius: 20px !important;
        color: var(--gold) !important;
    }
    
    .credential-badge svg {
        width: 12px !important;
        height: 12px !important;
        fill: var(--gold) !important;
    }
    
    /* Companies section */
    .venture-logos {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
    }
    
    .venture-logo-card {
        background: rgba(11, 24, 41, 0.8) !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(42, 139, 255, 0.2) !important;
    }
    
    .venture-logo-card img {
        height: 40px !important;
        width: auto !important;
    }
    
    /* Products section */
    .product-showcase {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        background: rgba(11, 24, 41, 0.8) !important;
        padding: 1.5rem !important;
        border-radius: 16px !important;
        border: 1px solid rgba(42, 139, 255, 0.2) !important;
    }
    
    .product-logo {
        width: 80px !important;
        height: 80px !important;
        margin: 0 auto !important;
    }
    
    .product-name {
        font-size: 1.1rem !important;
        color: #fff !important;
    }
    
    .product-tagline {
        font-size: 0.85rem !important;
        color: var(--gold) !important;
    }
    
    .product-description {
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.7) !important;
    }
    
    .product-tags {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
    }
    
    .product-tag {
        font-size: 0.7rem !important;
        padding: 0.25rem 0.5rem !important;
        background: rgba(42, 139, 255, 0.1) !important;
        border-radius: 4px !important;
        color: rgba(255,255,255,0.7) !important;
    }
    
    /* Expertise grid */
    .expertise-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .expertise-card {
        background: rgba(11, 24, 41, 0.8) !important;
        padding: 1.25rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(42, 139, 255, 0.2) !important;
        text-align: left !important;
    }
    
    .expertise-icon {
        width: 40px !important;
        height: 40px !important;
        margin-bottom: 0.75rem !important;
    }
    
    .expertise-icon svg {
        width: 24px !important;
        height: 24px !important;
        fill: var(--gold) !important;
    }
    
    .expertise-card h3 {
        font-size: 1rem !important;
        color: #fff !important;
        margin-bottom: 0.5rem !important;
    }
    
    .expertise-card p {
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.7) !important;
        line-height: 1.4 !important;
    }
    
    /* Stats */
    .stats-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
        margin: 1.5rem 0 !important;
    }
    
    .stat-item {
        text-align: center !important;
    }
    
    .stat-number {
        font-size: 2rem !important;
        font-weight: 700 !important;
        color: var(--gold) !important;
    }
    
    .stat-label {
        font-size: 0.8rem !important;
        color: rgba(255,255,255,0.6) !important;
    }
    
    /* Case studies */
    .case-studies-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .case-study-card {
        background: rgba(11, 24, 41, 0.8) !important;
        padding: 1.25rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(42, 139, 255, 0.2) !important;
    }
    
    .case-card-preview {
        display: none !important;
    }
    
    .case-card-expanded {
        display: block !important;
        opacity: 1 !important;
        position: relative !important;
    }
    
    .case-industry {
        font-size: 0.7rem !important;
        color: var(--gold) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
    }
    
    .case-title {
        font-size: 1rem !important;
        color: #fff !important;
        margin: 0.5rem 0 !important;
    }
    
    .case-challenge,
    .case-solution {
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.7) !important;
        margin: 0.5rem 0 !important;
    }
    
    .case-results {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 0.75rem !important;
    }
    
    .case-stat {
        font-size: 0.75rem !important;
        padding: 0.25rem 0.5rem !important;
        background: rgba(245,197,66,0.1) !important;
        border-radius: 4px !important;
        color: var(--gold) !important;
    }
    
    /* CTA buttons */
    .products-cta,
    .case-studies-link,
    .book-speaking-cta {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
        padding: 0.75rem 1.25rem !important;
        background: rgba(245,197,66,0.1) !important;
        border: 1px solid rgba(245,197,66,0.3) !important;
        border-radius: 30px !important;
        color: var(--gold) !important;
        text-decoration: none !important;
        font-size: 0.9rem !important;
    }
    
    /* Method/Process section */
    .phases-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 1rem !important;
    }
    
    .phases-line {
        display: none !important;
    }
    
    .phase-item {
        background: rgba(42, 139, 255, 0.05) !important;
        padding: 1rem !important;
        border-radius: 12px !important;
        border: 1px solid rgba(42, 139, 255, 0.1) !important;
    }
    
    .phase-number {
        font-size: 1.25rem !important;
        font-weight: 700 !important;
        color: var(--gold) !important;
        margin-bottom: 0.5rem !important;
    }
    
    .phase-title {
        font-size: 1rem !important;
        color: #fff !important;
        margin-bottom: 0.25rem !important;
    }
    
    .phase-desc {
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.7) !important;
    }
    
    /* World map */
    .world-map-container {
        margin: 1rem 0 !important;
    }
    
    .world-map {
        position: relative !important;
        min-height: 200px !important;
    }
    
    .map-pin {
        transform: scale(0.7) !important;
    }
    
    .map-stats {
        display: flex !important;
        justify-content: center !important;
        gap: 1.5rem !important;
        margin-top: 1rem !important;
    }
    
    /* Clients marquee */
    .clients-marquee {
        margin-top: 1.5rem !important;
        max-height: 220px !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
        padding-right: 0.5rem !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .marquee-track {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 1rem !important;
        animation: none !important;
    }
    
    .client-logo {
        height: 40px !important;
        background: white !important;
        border-radius: 6px !important;
    }
    
    /* Connection/CTA panel */
    .connection-title {
        font-size: 1.5rem !important;
        color: #fff !important;
    }
    
    .connection-subtitle {
        font-size: 0.95rem !important;
        color: rgba(255,255,255,0.7) !important;
        margin: 1rem 0 !important;
    }
    
    .connection-glow {
        display: none !important;
    }
    
    .scroll-continue-hint {
        display: none !important;
    }
    
    /* Mobile CTA section */
    .mobile-cta-section {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 1rem !important;
        margin-top: 1.5rem !important;
    }
    
    .cta-btn--primary {
        display: inline-flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 1rem 1.5rem !important;
        background: var(--gold) !important;
        color: var(--deep-navy) !important;
        border-radius: 50px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
    }
    
    .cta-btn--secondary {
        padding: 0.75rem 1.25rem !important;
        background: transparent !important;
        border: 1px solid rgba(255,255,255,0.3) !important;
        border-radius: 50px !important;
        color: #fff !important;
        text-decoration: none !important;
    }
    
    .mobile-quick-links {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .mobile-quick-links a {
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.6) !important;
        text-decoration: none !important;
        padding: 0.5rem !important;
    }
    
    /* Beyond resume section */
    .beyond-resume {
        margin-top: 1rem !important;
        padding-top: 1rem !important;
        border-top: 1px solid rgba(255,255,255,0.1) !important;
    }
    
    .beyond-label {
        font-size: 0.7rem !important;
        color: var(--gold) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.1em !important;
    }
    
    .personal-facts {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.5rem !important;
        margin-top: 0.75rem !important;
    }
    
    .personal-fact {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        font-size: 0.85rem !important;
        color: rgba(255,255,255,0.7) !important;
    }
    
    .personal-fact svg {
        width: 16px !important;
        height: 16px !important;
        fill: var(--gold) !important;
    }
    
    /* Urgency CTA */
    .urgency-cta {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 1.5rem !important;
        padding: 0.75rem 1rem !important;
        background: rgba(245,197,66,0.1) !important;
        border-radius: 30px !important;
        color: var(--gold) !important;
        font-size: 0.85rem !important;
    }
    
    .urgency-cta .pulse {
        width: 8px !important;
        height: 8px !important;
        background: var(--gold) !important;
        border-radius: 50% !important;
        animation: pulse 2s infinite !important;
    }
    
    /* Venue tags */
    .venues-row {
        display: flex !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 0.5rem !important;
        margin-top: 1rem !important;
    }
    
    .venue-tag {
        font-size: 0.75rem !important;
        padding: 0.35rem 0.75rem !important;
        background: rgba(42, 139, 255, 0.1) !important;
        border-radius: 20px !important;
        color: rgba(255,255,255,0.7) !important;
    }
    
    /* Hide polaroid nav buttons and dots on mobile */
    .polaroid-nav,
    .polaroid-dots,
    .portrait-glow,
    .portrait-ring {
        display: none !important;
    }
    
    /* Ensure text is readable */
    * {
        -webkit-text-size-adjust: 100% !important;
    }
}
