/* Modern Pitch Deck Styles - Responsive Scaling System */
:root {
    /* Colors */
    --primary: #73a9a0;
    --secondary: #fddd99;
    --accent: #f19a81;
    --dark: #000000;
    --dark-light: #0a0a0a;
    --gray: #1a1a1a;
    --gray-light: #2a2a2a;
    --text: #ffffff;
    --text-muted: #b8b8b8;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    --glow: 0 0 30px rgba(115, 169, 160, 0.3);
    
    /* Slide Scaling System - Base design at 1440x900 */
    --slide-base-width: 1440;
    --slide-base-height: 900;
    --slide-scale: 1;
    --slide-padding-x: 80px;
    --slide-padding-y: 60px;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    overflow-x: hidden;
    line-height: 1.6;
}

/* Progress Bar */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10000;
}

.progress-fill {
    height: 100%;
    background: var(--gradient);
    width: 0%;
    transition: width 0.3s ease;
}

/* Side Navigation */
.side-nav {
    position: fixed;
    left: clamp(15px, 2vw, 30px);
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vh, 20px);
    align-items: center;
}

.logo {
    width: clamp(36px, 5vw, 50px);
    height: clamp(36px, 5vw, 50px);
    background: var(--gradient);
    border-radius: clamp(8px, 1vh, 12px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    font-size: clamp(14px, 2vw, 18px);
    box-shadow: var(--glow);
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

.nav-items {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1.2vh, 12px);
}

.nav-dot {
    width: clamp(6px, 0.8vh, 8px);
    height: clamp(6px, 0.8vh, 8px);
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background: var(--primary);
    width: clamp(8px, 1.2vh, 12px);
    height: clamp(8px, 1.2vh, 12px);
    box-shadow: 0 0 15px rgba(115, 169, 160, 0.6);
}

.nav-dot:hover {
    background: var(--primary);
    transform: scale(1.3);
}

.icon-btn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    transition: all 0.3s ease;
}

.icon-btn:hover {
    background: var(--gray);
    border-color: var(--primary);
}

/* Main Presentation */
.presentation {
    width: 100%;
    height: 100vh;
    height: 100dvh; /* Dynamic viewport height for mobile */
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none;
}

.presentation::-webkit-scrollbar {
    display: none;
}

/* Slides - Perfect Fit System */
.slide {
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 100vh;
    min-height: 100dvh;
    max-height: 100vh;
    max-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    overflow: hidden;
}

.slide.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Scaler - Scales content to fit viewport */
.slide-content {
    --content-max-width: min(1400px, calc(100vw - var(--slide-padding-x) * 2));
    --content-max-height: calc(100vh - var(--slide-padding-y) * 2);
    --content-max-height: calc(100dvh - var(--slide-padding-y) * 2);
    
    width: 100%;
    max-width: var(--content-max-width);
    height: auto;
    max-height: var(--content-max-height);
    padding: var(--slide-padding-y) var(--slide-padding-x);
    position: relative;
    z-index: 10;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: visible;
    transform-origin: center center;
    /* Enable content scaling via JS */
    will-change: transform;
}

/* Content width constraints for readability on large screens */
.slide-title,
.hero-content,
.market-insight,
.team-strength,
.pipeline-summary,
.timeline-summary,
.investment-thesis,
.dataroom-contents {
    max-width: 100%;
}

/* Center grids on ultra-wide displays */
.problem-grid,
.features-showcase,
.products-showcase,
.team-showcase,
.approach-pipeline,
.competitive-advantages,
.thesis-grid {
    margin-left: auto;
    margin-right: auto;
}

/* Scaled Content Containers - Auto-fit to viewport */
.problem-grid,
.features-showcase,
.products-showcase,
.team-showcase,
.approach-pipeline,
.value-pipeline,
.metrics-breakdown,
.thesis-grid,
.competitive-matrix,
.timeline-horizontal,
.products-showcase-enhanced {
    flex-shrink: 1;
    min-height: 0;
}

/* Slide Content Scaling Classes - Applied via JS */
.slide-content.scale-content {
    transform: scale(var(--slide-scale, 1));
}

/* Ensure all major content areas can shrink */
.slide-content > * {
    flex-shrink: 1;
    min-height: 0;
}

/* Scale content for short viewports */
@media (max-height: 900px) {
    .problem-grid,
    .features-showcase {
        gap: 20px;
    }
    
    .problem-card,
    .feature-card,
    .product-card {
        padding: 25px 20px;
    }
    
    .problem-card h3,
    .feature-card h3 {
        font-size: max(16px, 2vh);
    }
    
    .impact-list li {
        padding: 5px 0;
        font-size: max(11px, 1.2vh);
    }
}

@media (max-height: 800px) {
    .slide {
        padding: 50px 80px;
    }
    
    .slide-title {
        font-size: 48px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 100px;
    }
    
    .hero-subtitle {
        font-size: 40px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        margin-top: 40px;
    }
    
    .problem-grid,
    .features-showcase {
        gap: 20px;
    }
    
    .problem-card,
    .feature-card {
        padding: 25px;
    }
    
    .problem-card h3,
    .feature-card h3 {
        font-size: 18px;
    }
    
    .approach-pipeline {
        gap: 20px;
    }
    
    .pipeline-step {
        padding: 25px 20px;
    }
}

@media (max-height: 700px) {
    .slide {
        padding: 40px 60px;
    }
    
    .slide-title {
        font-size: 42px;
        margin-bottom: 25px;
    }
    
    .section-label {
        margin-bottom: 15px;
    }
    
    .hero-title {
        font-size: 85px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        margin-top: 35px;
    }
    
    .stat-pill {
        padding: 14px 28px;
    }
    
    .stat-value {
        font-size: 26px;
    }
    
    .problem-grid,
    .features-showcase {
        gap: 18px;
    }
    
    .problem-card,
    .feature-card,
    .product-card {
        padding: 20px;
    }
    
    .card-icon,
    .feature-icon-large {
        font-size: 40px;
        margin-bottom: 15px;
    }
    
    .problem-card h3,
    .feature-card h3 {
        font-size: 16px;
        margin-bottom: 10px;
    }
    
    .problem-card p,
    .feature-card p {
        font-size: 13px;
    }
    
    .impact-list li,
    .feature-specs {
        font-size: 12px;
    }
    
    .approach-pipeline {
        gap: 15px;
    }
    
    .pipeline-step {
        padding: 20px 18px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
        margin-bottom: 15px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-subtitle {
        font-size: 12px;
        margin-bottom: 15px;
    }
    
    .step-details li {
        font-size: 12px;
        padding: 6px 0;
    }
    
    .timeline-year {
        padding: 20px;
    }
    
    .year-content h3 {
        font-size: 18px;
        margin-bottom: 15px;
    }
    
    .year-stats {
        margin-bottom: 15px;
    }
    
    .year-description {
        font-size: 13px;
    }
}

@media (max-height: 600px) {
    .slide {
        padding: 30px 50px;
        max-height: none;
    }
    
    .slide-title {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 70px;
    }
    
    .hero-subtitle {
        font-size: 32px;
        margin-bottom: 25px;
    }
    
    .hero-stats {
        margin-top: 30px;
        gap: 15px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }
    
    .problem-card {
        padding: 18px;
    }
    
    .card-number {
        font-size: 50px;
    }
    
    .problem-card h3 {
        font-size: 15px;
    }
    
    .impact-list {
        display: none;
    }
    
    .approach-pipeline {
        gap: 15px;
    }
    
    .pipeline-arrow {
        font-size: 32px;
    }
    
    .slide-number {
        font-size: 80px;
    }
}

.slide-number {
    position: absolute;
    bottom: clamp(20px, 4vh, 40px);
    right: clamp(30px, 5vw, 60px);
    font-size: clamp(60px, 12vh, 120px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Space Grotesk', sans-serif;
    z-index: 1;
    pointer-events: none;
}

/* Typography - Viewport Scaled */
.section-label {
    font-size: clamp(24px, 1.2vh, 12px);
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: clamp(10px, 2vh, 20px);
}

.slide-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(28px, 5vh, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: clamp(15px, 3vh, 40px);
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Slide */
.slide-hero {
    background: radial-gradient(circle at 20% 50%, rgba(115, 169, 160, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(241, 154, 129, 0.15) 0%, transparent 50%);
}

.slide-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: rgba(115, 169, 160, 0.2);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 600px;
    height: 600px;
    background: rgba(253, 221, 153, 0.15);
    bottom: -300px;
    right: -200px;
    animation-delay: -5s;
}

.orb-3 {
    width: 400px;
    height: 400px;
    background: rgba(241, 154, 129, 0.2);
    top: 50%;
    left: 50%;
    animation-delay: -10s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

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

.hero-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(40px, 5vw, 80px);
    margin-bottom: clamp(15px, 2.5vh, 30px);
}

.hero-product-image {
    flex-shrink: 0;
    width: clamp(220px, 18vw, 350px);
    height: clamp(220px, 18vw, 350px);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: productFloat 4s ease-in-out infinite;
    position: relative;
}

.hero-product-left {
    animation-delay: 0s;
}

.hero-product-right {
    animation-delay: -2s;
}

@keyframes productFloat {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.product-hero-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(115, 169, 160, 0.3));
    transition: all 0.3s ease;
}

.hero-product-image:hover .product-hero-img {
    transform: scale(1.05);
    filter: drop-shadow(0 30px 80px rgba(115, 169, 160, 0.5));
}

.label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.hero-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(48px, 10vh, 120px);
    font-weight: 700;
    line-height: 1;
    margin-bottom: clamp(15px, 2.5vh, 30px);
    flex-shrink: 0;
}

.hero-title .line {
    display: block;
}

.hero-subtitle {
    font-size: clamp(20px, 3.5vh, 36px);
    color: var(--text);
    margin-bottom: clamp(10px, 2vh, 20px);
    line-height: 1.4;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle br + text,
.hero-subtitle {
    background: linear-gradient(135deg, rgba(255,255,255,0.95) 0%, rgba(200,200,200,0.8) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.pitch-access {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 12px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(12px, 1.5vh, 18px) clamp(20px, 2.5vw, 35px);
    border-radius: 100px;
    margin-top: clamp(40px, 6vh, 80px);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.pitch-access:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
}

.pitch-access .access-icon {
    font-size: clamp(16px, 2vh, 22px);
}

.pitch-access .access-text {
    font-size: clamp(13px, 1.6vh, 16px);
    color: var(--text-muted);
}

.pitch-access .access-text a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.pitch-access .access-text a:hover {
    color: var(--accent);
}

.hero-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 40px;
    border-radius: 100px;
    display: flex;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.stat-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

/* Problem Slide - Viewport Scaled */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.5vh, 25px);
    margin-bottom: clamp(12px, 1.5vh, 25px);
    flex: 1;
    min-height: 0;
    max-height: 55vh;
}

.problem-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(15px, 2vh, 30px);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    display: flex;
    flex-direction: column;
}

.problem-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.problem-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(115, 169, 160, 0.15);
}

.card-number {
    position: absolute;
    top: clamp(10px, 1.2vh, 16px);
    right: clamp(10px, 1.2vh, 16px);
    font-size: clamp(50px, 7vh, 70px);
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Space Grotesk', sans-serif;
}

.card-icon {
    width: clamp(36px, 5vh, 52px);
    height: clamp(36px, 5vh, 52px);
    margin-bottom: clamp(10px, 1.2vh, 16px);
    color: var(--primary);
}

.card-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-size: clamp(14px, 1.8vh, 20px);
    margin-bottom: clamp(4px, 0.6vh, 8px);
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1.2;
}

.stat-highlight {
    font-size: clamp(20px, 2.5vh, 28px);
    font-weight: 700;
    color: var(--accent);
    margin: clamp(6px, 1vh, 12px) 0;
    font-family: 'Space Grotesk', sans-serif;
}

.problem-card p {
    color: var(--text-muted);
    margin-bottom: clamp(8px, 1vh, 15px);
    font-size: clamp(11px, 1.3vh, 14px);
    line-height: 1.4;
}

.impact-list {
    list-style: none;
    padding: 0;
    flex: 1;
    overflow: hidden;
    min-height: 0;
}

.impact-list li {
    padding: clamp(3px, 0.5vh, 6px) 0;
    padding-left: 16px;
    position: relative;
    color: var(--text-muted);
    font-size: clamp(10px, 1.1vh, 13px);
    line-height: 1.3;
}

.impact-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: clamp(9px, 1vh, 12px);
}

.market-insight {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(12px, 1.5vh, 25px);
    display: flex;
    gap: clamp(12px, 1.5vh, 18px);
    align-items: center;
    margin-top: auto;
}

.insight-icon {
    font-size: clamp(22px, 3vh, 32px);
    flex-shrink: 0;
}

.insight-content {
    flex: 1;
    color: var(--text-muted);
    font-size: clamp(11px, 1.3vh, 14px);
    line-height: 1.4;
}

.insight-content strong {
    color: var(--text);
}

/* Solution Slide */
.solution-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.platform-preview {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

.preview-header {
    background: var(--dark-light);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.url-bar {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.preview-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dashboard-element {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
}

.widget-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.widget-value {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.progress-ring {
    width: 100px;
    height: 100px;
    margin-top: 20px;
}

.speed-bars {
    display: flex;
    gap: 8px;
    align-items: flex-end;
    height: 80px;
    margin-top: 20px;
}

.bar {
    flex: 1;
    background: var(--primary);
    border-radius: 4px 4px 0 0;
    height: var(--height);
    animation: pulse 2s ease-in-out infinite;
    animation-delay: var(--delay);
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.feature-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.feature-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-content p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Market Slide */
.market-hero {
    text-align: center;
    margin-bottom: 60px;
}

.stat-value-large {
    font-size: 96px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.stat-label-large {
    font-size: 20px;
    color: var(--text-muted);
    margin: 20px 0;
}

.growth-badge {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.market-segments {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
}

.segment-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.segment-card:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.segment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.segment-header h4 {
    font-size: 18px;
    font-family: 'Space Grotesk', sans-serif;
}

.segment-value {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
}

.segment-bar {
    height: 8px;
    background: var(--primary);
    border-radius: 4px;
    width: var(--width);
    margin-bottom: 10px;
    position: relative;
    overflow: hidden;
}

.segment-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    to { left: 100%; }
}

.segment-card p {
    color: var(--text-muted);
    font-size: 14px;
}

.why-now-section h3 {
    font-size: 32px;
    margin-bottom: 30px;
    font-family: 'Space Grotesk', sans-serif;
}

.catalyst-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.catalyst-item {
    text-align: center;
    padding: 25px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.catalyst-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.catalyst-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.catalyst-item h5 {
    font-size: 16px;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.catalyst-item p {
    color: var(--text-muted);
    font-size: 13px;
}

/* Product Features */
.features-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
    opacity: 0;
    transform: scale(0.95);
}

.feature-card.animate {
    opacity: 1;
    transform: scale(1);
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(115, 169, 160, 0.3);
}

.feature-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    font-family: 'Space Grotesk', sans-serif;
}

.feature-icon-large {
    font-size: 48px;
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-family: 'Space Grotesk', sans-serif;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.6;
}

.feature-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.spec-badge {
    background: rgba(115, 169, 160, 0.2);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(115, 169, 160, 0.3);
}

/* Business Model / Pricing */
.pricing-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.pricing-tier {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-tier:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.2);
}

.pricing-tier.featured {
    background: linear-gradient(135deg, rgba(115, 169, 160, 0.1) 0%, rgba(253, 221, 153, 0.1) 100%);
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

.pricing-tier.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.tier-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.currency {
    font-size: 24px;
    font-weight: 600;
}

.amount {
    font-size: 56px;
    font-weight: 700;
}

.amount.custom {
    font-size: 40px;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
}

.tier-features {
    margin-bottom: 30px;
}

.tier-feature {
    padding: 12px 0;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tier-target {
    text-align: center;
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
}

.economics-section {
    background: var(--gray);
    border-radius: 20px;
    padding: 40px;
}

.economics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.econ-metric {
    text-align: center;
}

.metric-icon {
    font-size: 32px;
    margin-bottom: 10px;
}

.metric-value {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Traction Slide */
.traction-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.metric-showcase {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.metric-showcase.animate {
    opacity: 1;
    transform: translateY(0);
}

.metric-icon-large {
    font-size: 60px;
    margin-bottom: 20px;
}

.metric-number {
    font-size: 64px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
}

.metric-growth {
    display: inline-block;
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
    padding: 6px 15px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-top: 10px;
}

.timeline-container h3 {
    font-size: 32px;
    margin-bottom: 40px;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-left: 40px;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), rgba(99, 102, 241, 0.2));
}

.timeline-item {
    display: flex;
    gap: 30px;
    position: relative;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.timeline-item.animate {
    opacity: 1;
    transform: translateX(0);
}

.timeline-dot {
    position: absolute;
    left: -46px;
    top: 5px;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(115, 169, 160, 0.6);
}

.timeline-item.future .timeline-dot {
    background: rgba(255, 255, 255, 0.2);
    box-shadow: none;
}

.timeline-content {
    flex: 1;
}

.timeline-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.timeline-content h4 {
    font-size: 20px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 14px;
}

.customer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.logo-item {
    padding: 15px 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-muted);
    transition: all 0.3s ease;
}

.logo-item:hover {
    border-color: var(--primary);
    color: var(--text);
}

/* Competition Slide */
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 50px;
    border-radius: 16px;
    background: var(--gray);
    padding: 30px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table thead th {
    padding: 20px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th.highlight-col {
    background: rgba(115, 169, 160, 0.2);
    color: var(--primary);
    font-weight: 700;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table td {
    padding: 20px;
    color: var(--text-muted);
}

.comparison-table td.feature-name {
    font-weight: 600;
    color: var(--text);
}

.comparison-table td.highlight-col {
    background: rgba(115, 169, 160, 0.1);
    font-weight: 600;
    color: var(--text);
}

.comparison-table strong {
    color: var(--primary);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(10px, 1.2vh, 18px);
}

.advantage-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: clamp(10px, 1.2vh, 14px);
    padding: clamp(12px, 1.5vh, 22px);
    position: relative;
}

.advantage-number {
    position: absolute;
    top: clamp(10px, 1.2vh, 16px);
    right: clamp(10px, 1.2vh, 16px);
    width: clamp(28px, 3.5vh, 36px);
    height: clamp(28px, 3.5vh, 36px);
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: clamp(12px, 1.4vh, 16px);
}

.advantage-icon {
    font-size: clamp(22px, 3vh, 32px);
    margin-bottom: clamp(8px, 1vh, 12px);
}

.advantage-card h4 {
    font-size: clamp(12px, 1.4vh, 16px);
    margin-bottom: clamp(6px, 0.8vh, 10px);
    font-family: 'Space Grotesk', sans-serif;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: clamp(10px, 1.1vh, 13px);
    line-height: 1.4;
}

.competitive-advantages {
    margin-top: auto;
}

.competitive-advantages h3 {
    font-size: clamp(16px, 2vh, 22px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
    font-family: 'Space Grotesk', sans-serif;
}

/* Team Slide */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.team-member-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.member-avatar {
    margin-bottom: 20px;
}

.avatar-initials {
    width: 100px;
    height: 100px;
    background: var(--gradient);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.team-member-card h3 {
    font-size: 22px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.member-role {
    color: var(--primary);
    font-size: clamp(11px, 1.3vh, 14px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
    font-weight: 600;
}

.member-credentials {
    list-style: none;
    text-align: left;
    padding: 0;
}

.member-credentials li {
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 13px;
    padding-left: 20px;
    position: relative;
}

.member-credentials li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

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

.team-stat-item .stat-value {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.team-stat-item .stat-label {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 8px;
}

.advisors-section {
    background: var(--gray);
    border-radius: 16px;
    padding: 40px;
}

.advisors-section h4 {
    font-size: 24px;
    margin-bottom: 25px;
    font-family: 'Space Grotesk', sans-serif;
}

.advisor-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.advisor-item {
    padding: 15px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    font-size: 14px;
}

.advisor-item span {
    color: var(--text-muted);
}

/* Roadmap Slide */
.roadmap-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.roadmap-period {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
}

.roadmap-period.completed {
    border-color: rgba(34, 197, 94, 0.3);
}

.roadmap-period.current {
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(115, 169, 160, 0.2);
}

.period-header {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.period-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-family: 'Space Grotesk', sans-serif;
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.status-badge.completed {
    background: rgba(34, 197, 94, 0.2);
    color: #22c55e;
}

.status-badge.current {
    background: rgba(115, 169, 160, 0.2);
    color: var(--primary);
}

.status-badge.planned {
    background: rgba(253, 221, 153, 0.2);
    color: var(--secondary);
}

.status-badge.future {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
}

.roadmap-items {
    list-style: none;
    padding: 0;
}

.roadmap-items li {
    padding: 12px 0;
    padding-left: 25px;
    position: relative;
    color: var(--text-muted);
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.roadmap-items li:last-child {
    border-bottom: none;
}

.roadmap-items li:before {
    content: "○";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.roadmap-period.completed .roadmap-items li:before {
    content: "✓";
    color: #22c55e;
}

.vision-statement {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}

.vision-statement h3 {
    font-size: 28px;
    margin-bottom: 20px;
    font-family: 'Space Grotesk', sans-serif;
}

.vision-statement p {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* Financials Slide */
.financial-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.fin-highlight {
    text-align: center;
    padding: 30px;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
}

.fin-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.fin-value {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.financials-table {
    background: var(--gray);
    border-radius: 16px;
    padding: 30px;
    overflow-x: auto;
    margin-bottom: 50px;
}

.financials-table table {
    width: 100%;
    border-collapse: collapse;
}

.financials-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.financials-table td {
    padding: 15px;
    color: var(--text-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.financials-table tr.section-row td {
    background: rgba(255, 255, 255, 0.03);
    color: var(--text);
    font-weight: 600;
    padding-top: 20px;
}

.financials-table tr.highlight-row td {
    background: rgba(115, 169, 160, 0.1);
    color: var(--text);
    font-weight: 600;
}

.profitability-milestones {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.milestone-item {
    background: var(--gray);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 20px 30px;
    text-align: center;
}

.milestone-date {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 8px;
}

.milestone-text {
    font-size: 18px;
    font-weight: 600;
}

.milestone-arrow {
    font-size: 32px;
    color: var(--primary);
}

/* The Ask Slide - Viewport Scaled */
.ask-hero {
    text-align: center;
    margin-bottom: clamp(20px, 4vh, 60px);
}

.ask-amount {
    margin-bottom: clamp(15px, 3vh, 40px);
}

.ask-label {
    font-size: clamp(11px, 1.3vh, 14px);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: clamp(8px, 1.5vh, 15px);
}

.ask-value {
    font-size: clamp(64px, 10vh, 120px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
}

.ask-detail {
    font-size: 20px;
    color: var(--text-muted);
    margin-top: 15px;
}

.ask-terms {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

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

.term-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.term-value {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.use-of-funds {
    margin-bottom: clamp(15px, 2vh, 35px);
}

.use-of-funds h3 {
    font-size: clamp(16px, 2vh, 24px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
    font-family: 'Space Grotesk', sans-serif;
}

.funds-breakdown {
    display: flex;
    flex-direction: row;
    gap: clamp(10px, 1.2vh, 18px);
}

.fund-item {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(8px, 1vh, 12px);
    padding: clamp(12px, 1.5vh, 20px);
    flex: 1;
}

.fund-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(8px, 1vh, 12px);
}

.fund-name {
    font-weight: 600;
    font-size: clamp(12px, 1.4vh, 15px);
}

.fund-amount {
    color: var(--primary);
    font-weight: 600;
    font-size: clamp(11px, 1.3vh, 14px);
}

.fund-bar {
    height: clamp(6px, 0.8vh, 10px);
    background: var(--primary);
    border-radius: 4px;
    width: calc(var(--percentage) * 1%);
    margin-bottom: clamp(6px, 0.8vh, 10px);
    position: relative;
    overflow: hidden;
}

.fund-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

.fund-item p {
    color: var(--text-muted);
    font-size: clamp(11px, 1.2vh, 13px);
}

.investment-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.highlight-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

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

.highlight-icon {
    font-size: 32px;
    flex-shrink: 0;
}

.highlight-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-family: 'Space Grotesk', sans-serif;
}

.highlight-content p {
    color: var(--text-muted);
    font-size: 13px;
}

.exit-scenarios {
    background: var(--gray);
    border-radius: 16px;
    padding: 40px;
}

.exit-scenarios h4 {
    font-size: 24px;
    margin-bottom: 30px;
    text-align: center;
    font-family: 'Space Grotesk', sans-serif;
}

.scenarios {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.scenario-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

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

.scenario-card.highlight {
    background: rgba(115, 169, 160, 0.1);
    border: 2px solid var(--primary);
}

.scenario-type {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.scenario-value {
    font-size: 48px;
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.scenario-return {
    color: var(--primary);
    font-weight: 600;
}

/* Contact / Thank You Slide */
.slide-contact {
    background: radial-gradient(circle at 30% 50%, rgba(115, 169, 160, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(241, 154, 129, 0.15) 0%, transparent 50%);
}

.thank-you-title {
    font-size: clamp(48px, 8vh, 90px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: clamp(12px, 1.5vh, 22px);
    text-align: center;
}

.thank-you-subtitle {
    font-size: clamp(16px, 2vh, 24px);
    color: var(--text-muted);
    text-align: center;
    margin-bottom: clamp(15px, 2vh, 30px);
}

/* Why Vision Labs Section */
.why-visionlabs {
    display: flex;
    gap: clamp(12px, 1.5vh, 20px);
    margin-bottom: clamp(15px, 2vh, 30px);
}

.why-card {
    flex: 1;
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: clamp(10px, 1.2vh, 14px);
    padding: clamp(12px, 1.5vh, 20px);
    display: flex;
    gap: clamp(10px, 1.2vh, 14px);
    align-items: center;
}

.why-icon {
    font-size: clamp(24px, 3vh, 36px);
    flex-shrink: 0;
}

.why-content h4 {
    font-size: clamp(11px, 1.3vh, 15px);
    margin-bottom: clamp(3px, 0.4vh, 6px);
    font-family: 'Space Grotesk', sans-serif;
    color: var(--primary);
}

.why-content p {
    font-size: clamp(9px, 1vh, 12px);
    color: var(--text-muted);
    line-height: 1.3;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(115, 169, 160, 0.2);
}

.contact-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.contact-value {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary);
}

.contact-link {
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: clamp(6px, 0.8vh, 10px);
    border-radius: 6px;
    font-size: clamp(12px, 1.4vh, 16px);
}

.contact-link:hover {
    background: rgba(115, 169, 160, 0.1);
    transform: translateY(-2px);
}

.contact-value {
    font-size: clamp(14px, 1.6vh, 18px);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.social-link {
    width: 50px;
    height: 50px;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.social-link svg {
    width: 24px;
    height: 24px;
}

.appendix-note {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    opacity: 0.6;
}

/* Controls */
.controls {
    position: fixed;
    bottom: clamp(15px, 3vh, 40px);
    right: clamp(15px, 3vw, 40px);
    display: flex;
    gap: clamp(8px, 1.5vh, 15px);
    z-index: 1000;
}

.control-btn {
    width: clamp(38px, 5vh, 50px);
    height: clamp(38px, 5vh, 50px);
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    color: var(--text);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.control-btn svg {
    width: clamp(18px, 2.5vh, 24px);
    height: clamp(18px, 2.5vh, 24px);
}

/* Additional Styles for Real Content */

/* Opportunity Slide */
.opportunity-visual {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vh, 28px);
    margin-bottom: clamp(15px, 2vh, 30px);
    flex: 1;
    min-height: 0;
}

.opportunity-card.large {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(20px, 2.5vh, 35px);
    text-align: center;
}

.opportunity-card .card-icon {
    font-size: clamp(40px, 6vh, 60px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
    width: auto;
    height: auto;
}

.opportunity-card h3 {
    font-size: clamp(16px, 2vh, 22px);
    margin-bottom: clamp(6px, 0.8vh, 12px);
}

.opportunity-card p {
    font-size: clamp(12px, 1.3vh, 15px);
    color: var(--text-muted);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.5vh, 22px);
}

.stat-large {
    font-size: clamp(36px, 5vh, 52px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: clamp(5px, 0.6vh, 10px);
}

/* Opportunity Trends */
.opportunity-grid.four-cols {
    grid-template-columns: repeat(4, 1fr);
}

.opportunity-trends {
    display: flex;
    gap: clamp(12px, 1.5vh, 20px);
    margin-top: clamp(12px, 1.5vh, 20px);
}

.trend-card {
    flex: 1;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 14px);
    padding: clamp(12px, 1.5vh, 20px);
    display: flex;
    gap: clamp(10px, 1.2vh, 14px);
    align-items: flex-start;
}

.trend-icon {
    font-size: clamp(24px, 3vh, 32px);
    flex-shrink: 0;
}

.trend-content h4 {
    font-size: clamp(12px, 1.4vh, 16px);
    margin-bottom: clamp(4px, 0.5vh, 8px);
    font-family: 'Space Grotesk', sans-serif;
}

.trend-content p {
    font-size: clamp(10px, 1.1vh, 13px);
    color: var(--text-muted);
    line-height: 1.4;
}

.trend-content strong {
    color: var(--primary);
}

/* Approach Slide - Clean Modern Design */
.approach-visual {
    display: flex;
    align-items: stretch;
    gap: clamp(8px, 1vw, 20px);
    flex: 1;
    min-height: 0;
    max-height: 65vh;
}

.approach-card {
    flex: 1;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(12px, 1.5vh, 20px);
    padding: clamp(20px, 3vh, 35px) clamp(15px, 2vw, 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
}

.approach-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.approach-card:hover::before,
.approach-card.featured::before {
    opacity: 1;
}

.approach-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-card:hover {
    border-color: rgba(115, 169, 160, 0.3);
    transform: translateY(-5px);
}

.approach-card.featured {
    background: linear-gradient(135deg, rgba(115, 169, 160, 0.08) 0%, rgba(241, 154, 129, 0.05) 100%);
    border-color: rgba(115, 169, 160, 0.2);
}

.approach-icon-ring {
    width: clamp(60px, 10vh, 90px);
    height: clamp(60px, 10vh, 90px);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(115, 169, 160, 0.15) 0%, rgba(241, 154, 129, 0.1) 100%);
    border: 2px solid rgba(115, 169, 160, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: clamp(15px, 2.5vh, 25px);
    flex-shrink: 0;
}

.approach-icon {
    font-size: clamp(28px, 5vh, 42px);
}

.approach-title {
    font-size: clamp(18px, 2.5vh, 26px);
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 600;
    margin-bottom: clamp(5px, 0.8vh, 10px);
    color: var(--text);
}

.approach-method {
    font-size: clamp(11px, 1.4vh, 14px);
    color: var(--primary);
    font-weight: 600;
    margin-bottom: clamp(12px, 2vh, 20px);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.approach-desc {
    font-size: clamp(12px, 1.5vh, 15px);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: clamp(15px, 2.5vh, 25px);
    flex: 1;
}

.approach-tags {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(6px, 0.8vh, 10px);
    justify-content: center;
    margin-top: auto;
}

.approach-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(5px, 0.8vh, 8px) clamp(10px, 1.2vw, 14px);
    border-radius: 20px;
    font-size: clamp(10px, 1.2vh, 12px);
    color: var(--text-muted);
    font-weight: 500;
    white-space: nowrap;
}

.approach-tag.highlight {
    background: rgba(115, 169, 160, 0.15);
    border-color: rgba(115, 169, 160, 0.3);
    color: var(--primary);
}

.approach-connector {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: clamp(30px, 4vw, 50px);
}

.connector-line {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(115, 169, 160, 0.1), rgba(115, 169, 160, 0.4), rgba(115, 169, 160, 0.1));
}

.connector-arrow {
    font-size: clamp(24px, 3vh, 36px);
    color: var(--primary);
    font-weight: 300;
    line-height: 1;
    margin-top: -8px;
}

.approach-bottom {
    margin-top: clamp(15px, 2.5vh, 30px);
    padding-top: clamp(15px, 2vh, 25px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.approach-insight {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(8px, 1vw, 15px);
    flex-wrap: wrap;
    text-align: center;
}

.approach-insight .insight-label {
    font-size: clamp(12px, 1.4vh, 15px);
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.approach-insight .insight-text {
    font-size: clamp(13px, 1.5vh, 16px);
    color: var(--text-muted);
    line-height: 1.5;
}

/* Legacy support - can be removed after full migration */
.approach-pipeline {
    display: flex;
    gap: clamp(10px, 1.5vh, 25px);
    align-items: stretch;
    margin-bottom: clamp(10px, 1.5vh, 25px);
    flex: 1;
    min-height: 0;
    max-height: 60vh;
}

.pipeline-step {
    flex: 1;
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(15px, 2vh, 30px) clamp(12px, 1.5vh, 25px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-width: 0;
}

.pipeline-step.animate {
    opacity: 1;
    transform: translateY(0);
}

.pipeline-arrow {
    font-size: clamp(28px, 4vh, 42px);
    color: var(--primary);
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

/* Quadrant Matrix - 2x2 Competitive Landscape */
.quadrant-matrix {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: 1fr auto;
    gap: clamp(10px, 1.5vh, 20px);
    flex: 1;
    min-height: 0;
    max-height: 70vh;
    padding: clamp(10px, 1.5vh, 20px);
}

.axis-y {
    grid-row: 1;
    grid-column: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    padding-right: clamp(8px, 1vw, 15px);
}

.axis-x {
    grid-row: 2;
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: clamp(8px, 1vh, 15px);
    padding-right: clamp(20px, 3vw, 40px);
}

.axis-text {
    font-size: clamp(12px, 1.5vh, 16px);
    font-weight: 600;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Space Grotesk', sans-serif;
}

.matrix-grid {
    grid-row: 1;
    grid-column: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    position: relative;
    background: var(--gray);
    border-radius: clamp(12px, 1.5vh, 20px);
    overflow: hidden;
}

/* Axis Lines */
.axis-line-vertical {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(-50%);
    z-index: 1;
}

.axis-line-horizontal {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-50%);
    z-index: 1;
}

/* Quadrants */
.quadrant {
    padding: clamp(15px, 2.5vh, 35px);
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.quadrant-tl {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quadrant-tr {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.quadrant-bl {
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.quadrant-br {
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.highlight-quadrant {
    background: linear-gradient(135deg, rgba(115, 169, 160, 0.08) 0%, rgba(241, 154, 129, 0.05) 100%);
}

/* Quadrant Labels */
.quadrant-label {
    display: inline-block;
    padding: clamp(5px, 0.8vh, 10px) clamp(12px, 1.5vw, 20px);
    border-radius: 6px;
    font-size: clamp(11px, 1.4vh, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: clamp(15px, 2vh, 25px);
    width: fit-content;
    font-family: 'Space Grotesk', sans-serif;
}

.legacy-label {
    background: #f5d742;
    color: #1a1a2e;
}

.solvers-label {
    background: #7cd48a;
    color: #1a1a2e;
}

.oldschool-label {
    background: #f5d742;
    color: #1a1a2e;
}

.trend-label {
    background: #f5d742;
    color: #1a1a2e;
}

/* Quadrant Content */
.quadrant-content {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 2vh, 20px);
    flex: 1;
}

.competitor-entry {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 18px);
}

.competitor-logo {
    width: clamp(40px, 6vh, 60px);
    height: clamp(40px, 6vh, 60px);
    border-radius: clamp(10px, 1.2vh, 14px);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

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

.logo-placeholder {
    font-size: clamp(18px, 3vh, 28px);
}

.logo-placeholder.ps {
    font-size: clamp(14px, 2vh, 20px);
    font-weight: 700;
    color: #31a8ff;
    font-family: 'Space Grotesk', sans-serif;
}

.visionlabs-logo {
    background: #0a0f1a;
    border: 1px solid rgba(115, 169, 160, 0.3);
}

.competitor-info {
    display: flex;
    flex-direction: column;
    gap: clamp(2px, 0.3vh, 4px);
}

.competitor-info .company-name {
    font-size: clamp(14px, 1.8vh, 18px);
    font-weight: 600;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}

.competitor-info .app-name {
    font-size: clamp(11px, 1.3vh, 14px);
    color: var(--text-muted);
    font-weight: 400;
}

.competitor-entry .competitor-name {
    font-size: clamp(14px, 1.8vh, 18px);
    font-weight: 500;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}

.highlight-name {
    color: var(--primary) !important;
    font-weight: 700 !important;
}

.highlight-app {
    color: var(--primary) !important;
    font-weight: 500 !important;
}

.vision-labs-entry {
    padding: clamp(8px, 1vh, 12px);
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.2);
    border-radius: clamp(10px, 1.2vh, 14px);
    margin-top: auto;
}

/* Legacy styles for backwards compatibility */
.competitive-matrix {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(15px, 2vh, 35px);
    margin-bottom: clamp(12px, 1.5vh, 25px);
    position: relative;
    flex: 1;
    min-height: 0;
    max-height: 45vh;
    overflow: hidden;
}

.competitors-map {
    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: clamp(10px, 1.2vh, 18px);
}

.competitor-cluster {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(8px, 1vh, 12px);
    padding: clamp(10px, 1.2vh, 16px);
    display: flex;
    flex-direction: column;
    gap: clamp(5px, 0.6vh, 8px);
    overflow: hidden;
}

/* Traction Slide - Dashboard Layout */
.slide-traction {
    background: linear-gradient(135deg, #0a0f1a 0%, #0d1520 50%, #0a0f1a 100%);
}

.traction-layout {
    display: grid;
    grid-template-columns: minmax(200px, 280px) 1fr;
    gap: clamp(20px, 3vw, 40px);
    flex: 1;
    min-height: 0;
    max-height: 70vh;
}

/* Apps Column - Compact Cards */
.apps-column {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vh, 20px);
}

.app-mini-card {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vw, 16px);
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(12px, 1.5vh, 18px);
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.5s ease;
}

.app-mini-card.animate {
    opacity: 1;
    transform: translateX(0);
}

.app-mini-card:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.mini-app-icon {
    width: clamp(45px, 6vh, 60px);
    height: clamp(45px, 6vh, 60px);
    border-radius: clamp(10px, 1.2vh, 14px);
    object-fit: cover;
    flex-shrink: 0;
}

.mini-app-info {
    flex: 1;
    min-width: 0;
}

.mini-app-info h4 {
    font-size: clamp(14px, 1.8vh, 18px);
    font-weight: 600;
    font-family: 'Space Grotesk', sans-serif;
    margin: 0 0 2px 0;
    color: var(--text);
}

.mini-app-info span {
    font-size: clamp(10px, 1.2vh, 13px);
    color: var(--text-muted);
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.mini-app-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
    flex-shrink: 0;
}

.mini-app-rating .stars {
    font-size: clamp(8px, 1vh, 11px);
    color: var(--primary);
    letter-spacing: -1px;
}

.mini-app-rating .rating {
    font-size: clamp(14px, 1.8vh, 18px);
    font-weight: 700;
    color: var(--text);
    font-family: 'Space Grotesk', sans-serif;
}

.apps-summary {
    background: rgba(115, 169, 160, 0.08);
    border: 1px solid rgba(115, 169, 160, 0.15);
    border-radius: clamp(10px, 1.2vh, 14px);
    padding: clamp(12px, 1.5vh, 18px);
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 12px);
    margin-top: auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.summary-label {
    font-size: clamp(11px, 1.3vh, 14px);
    color: var(--text-muted);
}

.summary-value {
    font-size: clamp(12px, 1.4vh, 15px);
    font-weight: 600;
    color: var(--primary);
}

/* Metrics Dashboard */
.metrics-dashboard {
    display: flex;
    flex-direction: column;
    gap: clamp(15px, 2vh, 25px);
    min-height: 0;
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vw, 25px);
}

.metrics-row.secondary {
    grid-template-columns: repeat(3, 1fr);
}

.metric-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(15px, 2vh, 25px);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.metric-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.metric-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.metric-card.large {
    padding: clamp(20px, 2.5vh, 35px);
    align-items: flex-start;
    text-align: left;
}

.metric-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: clamp(10px, 1.5vh, 18px);
}

.metric-icon {
    font-size: clamp(20px, 2.5vh, 28px);
}

.metric-icon-small {
    font-size: clamp(24px, 3vh, 36px);
    margin-bottom: clamp(8px, 1vh, 12px);
}

.metric-trend {
    font-size: clamp(10px, 1.2vh, 13px);
    font-weight: 600;
    padding: clamp(3px, 0.4vh, 6px) clamp(8px, 1vh, 12px);
    border-radius: 20px;
}

.metric-trend.up {
    background: rgba(72, 187, 120, 0.15);
    color: #48bb78;
}

.metric-value {
    font-size: clamp(36px, 5vh, 56px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    line-height: 1;
    margin-bottom: clamp(5px, 0.8vh, 10px);
}

.metric-value-medium {
    font-size: clamp(24px, 3.5vh, 40px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: clamp(4px, 0.5vh, 8px);
}

.metric-label {
    font-size: clamp(11px, 1.3vh, 14px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.metric-bar {
    width: 100%;
    height: clamp(6px, 0.8vh, 10px);
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: clamp(12px, 1.5vh, 20px);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 1s ease;
}

.bar-fill.accent {
    background: linear-gradient(90deg, var(--accent), var(--primary));
}

/* MRR Trend Chart */
.trend-chart {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(15px, 2vh, 25px);
    flex: 1;
    min-height: clamp(120px, 18vh, 200px);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.trend-chart.animate {
    opacity: 1;
    transform: translateY(0);
}

.chart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: clamp(12px, 1.5vh, 20px);
}

.chart-title {
    font-size: clamp(13px, 1.6vh, 17px);
    font-weight: 600;
    color: var(--text);
}

.chart-period {
    font-size: clamp(10px, 1.2vh, 13px);
    color: var(--text-muted);
}

.chart-visual {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.chart-bars {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: clamp(8px, 1vw, 15px);
    flex: 1;
    padding-bottom: clamp(8px, 1vh, 12px);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, rgba(115, 169, 160, 0.4) 0%, rgba(115, 169, 160, 0.15) 100%);
    border-radius: clamp(4px, 0.5vh, 8px) clamp(4px, 0.5vh, 8px) 0 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: clamp(4px, 0.5vh, 8px);
    min-height: 20px;
    transition: all 0.3s ease;
}

.chart-bar span {
    font-size: clamp(8px, 1vh, 11px);
    color: var(--text-muted);
    font-weight: 500;
}

.chart-bar:hover {
    background: linear-gradient(180deg, rgba(115, 169, 160, 0.6) 0%, rgba(115, 169, 160, 0.25) 100%);
}

.chart-bar.highlight {
    background: var(--gradient);
}

.chart-bar.highlight span {
    color: white;
    font-weight: 700;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: clamp(6px, 0.8vh, 10px);
}

.chart-labels span {
    flex: 1;
    text-align: center;
    font-size: clamp(9px, 1.1vh, 12px);
    color: var(--text-muted);
}

/* Legacy support */
.apps-showcase {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vh, 40px);
    flex: 1;
    min-height: 0;
}

.app-showcase-card {
    display: flex;
    gap: clamp(20px, 3vw, 50px);
    align-items: center;
    background: rgba(15, 20, 30, 0.6);
    border-radius: clamp(16px, 2vh, 24px);
    padding: clamp(15px, 2vh, 25px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.app-showcase-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.traction-totals {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(20px, 3vw, 40px);
    padding: clamp(15px, 2vh, 25px);
    background: rgba(115, 169, 160, 0.08);
    border: 1px solid rgba(115, 169, 160, 0.2);
    border-radius: clamp(12px, 1.5vh, 20px);
    margin-top: auto;
}

.total-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(4px, 0.5vh, 8px);
}

.total-value {
    font-size: clamp(20px, 2.8vh, 32px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.total-label {
    font-size: clamp(10px, 1.2vh, 13px);
    color: var(--text-muted);
}

.total-divider {
    width: 1px;
    height: clamp(35px, 5vh, 55px);
    background: rgba(115, 169, 160, 0.3);
}

/* Products Showcase - Enhanced with Images (Legacy) */
.products-showcase-enhanced {
    display: flex;
    flex-direction: row;
    gap: clamp(20px, 2vw, 40px);
    margin-bottom: clamp(15px, 2vh, 30px);
    flex: 1;
    min-height: 0;
    max-height: 55vh;
}

.product-card-enhanced {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 20px);
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    overflow: hidden;
    flex: 1;
    min-width: 0;
    min-height: 0;
}

.product-card-enhanced.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card-enhanced.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 10px 30px rgba(115, 169, 160, 0.2);
}

.product-card-enhanced:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(115, 169, 160, 0.3);
}

.product-visual {
    position: relative;
    flex-shrink: 0;
    width: 100%;
    height: clamp(120px, 18vh, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.product-app-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card-enhanced:hover .product-app-image {
    transform: scale(1.05);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gradient);
    color: white;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
    box-shadow: 0 5px 20px rgba(115, 169, 160, 0.4);
}

.product-details {
    flex: 1;
    padding: clamp(12px, 1.5vh, 20px);
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.8vh, 12px);
    min-height: 0;
    overflow: hidden;
}

.product-details h3 {
    font-size: clamp(18px, 2.5vh, 26px);
    margin: 0;
    font-family: 'Space Grotesk', sans-serif;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.product-details .product-tagline {
    color: var(--text-muted);
    margin: 0;
    font-size: clamp(11px, 1.3vh, 14px);
    font-weight: 500;
}

.product-description {
    color: var(--text-muted);
    font-size: clamp(10px, 1.2vh, 13px);
    line-height: 1.4;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
}

.feature-item {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.2);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: clamp(9px, 1vh, 11px);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-stats-row {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-top: auto;
}

.stat-badge {
    background: rgba(253, 221, 153, 0.15);
    border: 1px solid rgba(253, 221, 153, 0.3);
    color: var(--secondary);
    padding: 4px 10px;
    border-radius: 4px;
    font-size: clamp(9px, 1vh, 11px);
    font-weight: 600;
}

/* Responsive for Enhanced Products & Other Layouts */
@media (max-width: 1200px) {
    .products-showcase-enhanced {
        flex-direction: column;
        max-height: 60vh;
    }
    
    .product-card-enhanced {
        flex-direction: row;
    }
    
    .product-visual {
        width: clamp(150px, 20vw, 200px);
        height: clamp(150px, 20vw, 200px);
    }
    
    .team-showcase {
        grid-template-columns: 1fr;
        max-height: 55vh;
    }
    
    .team-member-large {
        flex-direction: row;
        gap: 20px;
    }
    
    .thesis-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .key-metrics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .approach-visual {
        flex-direction: column;
        max-height: none;
        gap: clamp(15px, 2vh, 25px);
    }
    
    .approach-card {
        padding: clamp(20px, 3vh, 30px);
    }
    
    .approach-connector {
        width: 100%;
        height: 30px;
        flex-direction: row;
    }
    
    .connector-line {
        width: 2px;
        height: 100%;
        background: linear-gradient(180deg, rgba(115, 169, 160, 0.1), rgba(115, 169, 160, 0.4), rgba(115, 169, 160, 0.1));
    }
    
    .connector-arrow {
        transform: rotate(90deg);
        margin-top: 0;
        margin-left: -12px;
    }
    
    .approach-pipeline {
        flex-direction: column;
        max-height: none;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
        align-self: center;
    }
    
    .value-pipeline {
        flex-direction: column;
        max-height: none;
    }
    
    .timeline-horizontal {
        flex-direction: column;
        max-height: none;
    }
    
    .timeline-year {
        min-width: 100%;
        max-width: 100%;
    }
    
    /* Timeline Track responsive */
    .timeline-track {
        padding: clamp(15px, 2vh, 25px) 0;
    }
    
    .track-items {
        flex-wrap: wrap;
        gap: clamp(20px, 3vh, 30px);
    }
    
    .track-item {
        flex: 0 0 calc(33.333% - 15px);
    }
    
    .track-line {
        display: none;
    }
    
    .item-dot {
        display: none;
    }
    
    .item-top {
        margin-bottom: clamp(10px, 1.5vh, 15px);
    }
    
    .item-bottom {
        margin-top: clamp(10px, 1.5vh, 15px);
        max-width: none;
        background: var(--gray);
        padding: clamp(12px, 1.5vh, 18px);
        border-radius: clamp(8px, 1vh, 12px);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .track-item.current .item-bottom {
        border-color: var(--primary);
    }
    
    .track-item.future .item-bottom {
        border-style: dashed;
    }
    
    .metrics-breakdown {
        grid-template-columns: 1fr;
    }
    
    .funds-breakdown {
        flex-direction: column;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        max-height: none;
    }
    
    .opportunity-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-grid.four-cols {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .opportunity-trends {
        flex-direction: column;
    }
    
    .why-visionlabs {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .products-showcase-enhanced {
        max-height: none;
    }
    
    .product-card-enhanced {
        flex-direction: column;
    }
    
    .product-visual {
        width: 100%;
        height: clamp(120px, 20vh, 180px);
    }
    
    /* Quadrant Matrix responsive */
    .quadrant-matrix {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr auto;
        max-height: none;
    }
    
    .axis-y {
        grid-row: 1;
        grid-column: 1;
        writing-mode: horizontal-tb;
        transform: none;
        padding-right: 0;
        padding-bottom: clamp(8px, 1vh, 12px);
        justify-content: flex-start;
    }
    
    .matrix-grid {
        grid-row: 2;
        grid-column: 1;
    }
    
    .axis-x {
        grid-row: 3;
        grid-column: 1;
        justify-content: flex-end;
    }
    
    .quadrant {
        padding: clamp(12px, 2vh, 20px);
    }
    
    .quadrant-label {
        font-size: clamp(10px, 1.3vh, 13px);
        padding: clamp(4px, 0.6vh, 8px) clamp(10px, 1.2vw, 16px);
        margin-bottom: clamp(10px, 1.5vh, 18px);
    }
    
    .competitor-logo {
        width: clamp(35px, 5vh, 50px);
        height: clamp(35px, 5vh, 50px);
    }
    
    .competitor-entry .competitor-name {
        font-size: clamp(12px, 1.5vh, 15px);
    }
    
    .quadrant-content {
        gap: clamp(8px, 1.5vh, 15px);
    }
    
    /* Traction slide responsive */
    .traction-layout {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-height: none;
    }
    
    .apps-column {
        flex-direction: row;
        flex-wrap: wrap;
        gap: clamp(10px, 1.5vh, 15px);
    }
    
    .app-mini-card {
        flex: 1;
        min-width: clamp(200px, 40vw, 280px);
    }
    
    .apps-summary {
        width: 100%;
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-around;
    }
    
    .metrics-row {
        grid-template-columns: 1fr 1fr;
    }
    
    .metrics-row.secondary {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .metric-value {
        font-size: clamp(28px, 4vh, 42px);
    }
    
    .trend-chart {
        min-height: clamp(100px, 15vh, 150px);
    }
    
    .app-showcase-card {
        flex-direction: column;
        text-align: center;
    }
    
    .traction-totals {
        flex-wrap: wrap;
        gap: clamp(15px, 2vh, 25px);
    }
    
    .total-divider {
        display: none;
    }
    
    .team-showcase {
        max-height: none;
    }
    
    .team-member-large {
        flex-direction: column;
        text-align: center;
    }
    
    .member-photo {
        margin: 0 auto;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: clamp(15px, 2vh, 25px);
    }
    
    .founder-header {
        flex-direction: column;
        text-align: center;
    }
    
    .founder-photo {
        margin: 0 auto;
    }
    
    .detail-section {
        flex-direction: column;
        gap: clamp(4px, 0.5vh, 8px);
    }
    
    .detail-label {
        min-width: auto;
    }
    
    .team-summary {
        flex-direction: column;
        gap: clamp(8px, 1vh, 15px);
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
    }
    
    .dataroom-access {
        grid-template-columns: 1fr;
    }
    
    .contents-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .competitors-map {
        grid-template-columns: 1fr;
    }
    
    .opportunity-grid.four-cols {
        grid-template-columns: 1fr;
    }
    
    .why-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .contents-grid {
        grid-template-columns: 1fr;
    }
    
    .key-metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .phase-metrics {
        grid-template-columns: 1fr;
    }
    
    /* Quadrant Matrix - Very Small Screens */
    .quadrant-matrix {
        padding: clamp(5px, 1vh, 10px);
    }
    
    .matrix-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, auto);
    }
    
    .axis-line-vertical,
    .axis-line-horizontal {
        display: none;
    }
    
    .quadrant {
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: clamp(8px, 1vh, 12px);
        margin-bottom: clamp(8px, 1vh, 12px);
    }
    
    .quadrant-tl { order: 1; }
    .quadrant-tr { order: 2; }
    .quadrant-bl { order: 3; }
    .quadrant-br { order: 4; }
    
    .axis-text {
        font-size: clamp(10px, 1.2vh, 13px);
    }
    
    .competitor-entry {
        gap: clamp(8px, 1vw, 12px);
    }
    
    .competitor-logo {
        width: clamp(30px, 4vh, 40px);
        height: clamp(30px, 4vh, 40px);
    }
    
    .logo-placeholder {
        font-size: clamp(14px, 2vh, 20px);
    }
    
    .vision-labs-entry {
        padding: clamp(6px, 0.8vh, 10px);
    }
    
    /* Traction Dashboard - Very Small Screens */
    .traction-layout {
        gap: clamp(15px, 2vh, 25px);
    }
    
    .apps-column {
        flex-direction: column;
    }
    
    .app-mini-card {
        min-width: 100%;
    }
    
    .apps-summary {
        flex-direction: column;
        gap: clamp(6px, 0.8vh, 10px);
    }
    
    .metrics-row,
    .metrics-row.secondary {
        grid-template-columns: 1fr;
    }
    
    .metric-card.large {
        padding: clamp(15px, 2vh, 20px);
    }
    
    .metric-value {
        font-size: clamp(24px, 3.5vh, 36px);
    }
    
    .metric-value-medium {
        font-size: clamp(20px, 2.8vh, 28px);
    }
    
    .chart-bars {
        gap: clamp(4px, 0.5vw, 8px);
    }
    
    .chart-bar span {
        font-size: clamp(7px, 0.9vh, 10px);
    }
}

.product-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 20px);
    padding: clamp(20px, 3vh, 40px);
    position: relative;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.product-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.product-card.featured {
    border: 2px solid var(--primary);
    box-shadow: 0 20px 60px rgba(115, 169, 160, 0.3);
}

.product-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--gradient);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
}

.product-icon {
    font-size: 64px;
    margin-bottom: 20px;
}

.product-card h3 {
    font-size: 32px;
    margin-bottom: 8px;
    font-family: 'Space Grotesk', sans-serif;
}

.product-tagline {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.product-metrics {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.8vh, 12px);
}

.metric-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(6px, 0.8vh, 12px);
}

.metric {
    text-align: center;
    padding: clamp(8px, 1vh, 15px);
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
}

.metric .metric-value {
    font-size: clamp(18px, 2.5vh, 28px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    margin-bottom: 2px;
}

.metric .metric-label {
    font-size: clamp(8px, 0.9vh, 11px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-achievement {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    font-size: 14px;
    color: var(--primary);
}

.portfolio-summary {
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 50px);
    flex-wrap: wrap;
    padding: clamp(12px, 1.5vh, 20px) 0;
    background: rgba(255, 255, 255, 0.02);
    border-radius: clamp(8px, 1vh, 12px);
    margin-top: auto;
}

.summary-stat {
    display: flex;
    gap: clamp(10px, 1.2vh, 16px);
    align-items: center;
}

.summary-stat .stat-icon {
    font-size: clamp(28px, 4vh, 42px);
}

.summary-stat .stat-content .stat-value {
    font-size: clamp(22px, 3vh, 34px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    display: block;
}

.summary-stat .stat-content .stat-label {
    font-size: clamp(10px, 1.1vh, 13px);
    color: var(--text-muted);
}

/* Team Slide - Clean Professional Layout */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(20px, 3vw, 40px);
    margin-bottom: clamp(15px, 2vh, 30px);
    flex: 1;
    min-height: 0;
}

.founder-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: clamp(14px, 1.8vh, 24px);
    padding: clamp(18px, 2.5vh, 32px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.founder-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.founder-card:hover {
    border-color: rgba(115, 169, 160, 0.3);
    box-shadow: 0 10px 40px rgba(115, 169, 160, 0.1);
}

.founder-header {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vh, 24px);
    margin-bottom: clamp(16px, 2vh, 28px);
    padding-bottom: clamp(14px, 1.8vh, 24px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.founder-photo {
    width: clamp(70px, 10vh, 110px);
    height: clamp(70px, 10vh, 110px);
    border-radius: clamp(12px, 1.5vh, 18px);
    overflow: hidden;
    flex-shrink: 0;
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    position: relative;
}

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

.photo-placeholder {
    width: 100%;
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    background: var(--gradient);
    font-size: clamp(24px, 3.5vh, 40px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: white;
}

.founder-photo img[src=""],
.founder-photo img:not([src]) {
    display: none;
}

.founder-photo img:not([src]) + .photo-placeholder,
.founder-photo img[src=""] + .photo-placeholder {
    display: flex;
}

.founder-intro {
    flex: 1;
    min-width: 0;
}

.founder-intro h3 {
    font-size: clamp(16px, 2.2vh, 24px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    margin-bottom: clamp(4px, 0.5vh, 8px);
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founder-title {
    font-size: clamp(11px, 1.3vh, 15px);
    color: var(--text-muted);
    font-weight: 500;
}

.founder-details {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vh, 20px);
}

.detail-section {
    display: flex;
    gap: clamp(10px, 1.2vh, 16px);
    align-items: flex-start;
}

.detail-label {
    font-size: clamp(10px, 1.2vh, 13px);
    color: var(--primary);
    font-weight: 600;
    min-width: clamp(80px, 10vw, 110px);
    flex-shrink: 0;
}

.detail-content {
    flex: 1;
}

.detail-content p {
    font-size: clamp(10px, 1.2vh, 13px);
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: clamp(2px, 0.3vh, 4px);
}

.detail-content p.highlight {
    color: var(--text);
}

.detail-content strong {
    color: var(--primary);
    font-weight: 600;
}

.universities {
    display: flex;
    flex-wrap: wrap;
    gap: clamp(4px, 0.5vh, 8px);
    margin-bottom: clamp(4px, 0.5vh, 8px);
}

.uni-tag {
    background: rgba(115, 169, 160, 0.15);
    border: 1px solid rgba(115, 169, 160, 0.25);
    color: var(--primary);
    padding: clamp(3px, 0.4vh, 6px) clamp(8px, 1vh, 12px);
    border-radius: clamp(4px, 0.5vh, 6px);
    font-size: clamp(9px, 1vh, 11px);
    font-weight: 500;
}

.uni-tag.metu {
    background: rgba(200, 50, 50, 0.15);
    border-color: rgba(200, 50, 50, 0.25);
    color: #e57373;
}

.detail-content .field {
    font-size: clamp(9px, 1.1vh, 12px);
    color: var(--text-muted);
    font-style: italic;
}

.flags-row {
    display: flex;
    gap: clamp(6px, 0.8vh, 10px);
}

.flags-row span {
    font-size: clamp(16px, 2.2vh, 24px);
    line-height: 1;
}

.team-summary {
    display: flex;
    gap: clamp(15px, 2vw, 30px);
    justify-content: center;
    padding: clamp(12px, 1.5vh, 20px);
    background: rgba(115, 169, 160, 0.08);
    border: 1px solid rgba(115, 169, 160, 0.2);
    border-radius: clamp(10px, 1.2vh, 16px);
    margin-top: auto;
}

.summary-item {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1vh, 12px);
}

.summary-icon {
    font-size: clamp(18px, 2.5vh, 28px);
}

.summary-text {
    font-size: clamp(10px, 1.2vh, 14px);
    color: var(--text-muted);
}

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

/* Team Showcase - Legacy Viewport Scaled */
.team-showcase {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vh, 30px);
    margin-bottom: clamp(10px, 1.5vh, 25px);
    flex: 1;
    min-height: 0;
    max-height: 58vh;
}

.team-member-large {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(15px, 2vh, 25px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
    display: flex;
    flex-direction: row;
    gap: clamp(15px, 2vh, 25px);
    overflow: hidden;
    align-items: flex-start;
}

.team-member-large.animate {
    opacity: 1;
    transform: translateY(0);
}

.member-photo {
    flex-shrink: 0;
}

.photo-circle {
    width: clamp(60px, 8vh, 90px);
    height: clamp(60px, 8vh, 90px);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 3vh, 32px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-bg {
    background: var(--gradient);
}

.member-info {
    flex: 1;
    min-width: 0;
}

.member-info h3 {
    font-size: clamp(15px, 2vh, 22px);
    margin-bottom: clamp(3px, 0.5vh, 6px);
    font-family: 'Space Grotesk', sans-serif;
}

.member-role {
    font-size: clamp(10px, 1.2vh, 13px) !important;
}

.credentials-section {
    margin: clamp(8px, 1vh, 15px) 0;
}

.credentials-section h4 {
    font-size: clamp(9px, 1.1vh, 12px);
    color: var(--primary);
    margin-bottom: clamp(3px, 0.5vh, 6px);
}

.credentials-section p {
    color: var(--text-muted);
    font-size: clamp(10px, 1.1vh, 12px);
    line-height: 1.3;
}

.credential-list {
    list-style: none;
    padding: 0;
    overflow: hidden;
}

.credential-list li {
    padding: clamp(2px, 0.4vh, 5px) 0;
    padding-left: 14px;
    position: relative;
    color: var(--text-muted);
    font-size: clamp(9px, 1.1vh, 12px);
    line-height: 1.3;
}

.credential-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.team-strength {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(12px, 1.5vh, 25px);
    display: flex;
    gap: clamp(12px, 1.5vh, 20px);
    align-items: center;
    margin-top: auto;
}

.strength-icon {
    font-size: clamp(22px, 3vh, 32px);
    flex-shrink: 0;
}

.strength-content {
    flex: 1;
    color: var(--text-muted);
    font-size: clamp(11px, 1.3vh, 14px);
    line-height: 1.4;
}

/* Value Pipeline */
.value-pipeline {
    display: flex;
    flex-direction: row;
    gap: clamp(12px, 1.5vh, 22px);
    margin-bottom: clamp(15px, 2vh, 30px);
    flex: 1;
    min-height: 0;
    max-height: 55vh;
}

.pipeline-phase {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(15px, 2vh, 28px);
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.phase-header {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vh, 16px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
    padding-bottom: clamp(8px, 1vh, 14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phase-icon {
    font-size: clamp(28px, 4vh, 42px);
    flex-shrink: 0;
}

.phase-header h3 {
    font-size: clamp(14px, 1.7vh, 20px);
    font-family: 'Space Grotesk', sans-serif;
}

.phase-subtitle {
    color: var(--primary);
    font-size: clamp(10px, 1.1vh, 13px);
    font-weight: 600;
}

.phase-content {
    display: flex;
    flex-direction: column;
    gap: clamp(10px, 1.2vh, 18px);
    flex: 1;
    min-height: 0;
}

.test-list {
    display: flex;
    flex-direction: column;
    gap: clamp(6px, 0.8vh, 10px);
}

.test-item {
    background: rgba(255, 255, 255, 0.03);
    padding: clamp(6px, 0.8vh, 10px) clamp(10px, 1.2vh, 14px);
    border-radius: 6px;
    font-size: clamp(10px, 1.1vh, 13px);
    border-left: 2px solid var(--primary);
}

.phase-metrics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(6px, 0.8vh, 12px);
    margin-top: auto;
}

.phase-metric {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.2);
    border-radius: 6px;
    padding: clamp(8px, 1vh, 12px);
    text-align: center;
}

.phase-metric .metric-name {
    font-size: clamp(12px, 1.4vh, 16px);
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 2px;
}

.phase-metric .metric-desc {
    font-size: clamp(8px, 0.9vh, 10px);
    color: var(--text-muted);
    line-height: 1.2;
}

.pipeline-summary h3 {
    font-size: clamp(16px, 2vh, 24px);
    margin-bottom: clamp(12px, 1.5vh, 20px);
    font-family: 'Space Grotesk', sans-serif;
}

.key-metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1vh, 14px);
}

.key-metric {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(8px, 1vh, 14px);
    border-radius: 6px;
    font-size: clamp(10px, 1.1vh, 13px);
    text-align: center;
    transition: all 0.3s ease;
}

.key-metric:hover {
    background: rgba(115, 169, 160, 0.1);
    border-color: var(--primary);
}

/* LTV/CAC Showcase - Viewport Scaled */
.ltv-cac-showcase {
    text-align: center;
    margin-bottom: clamp(20px, 4vh, 60px);
    padding: clamp(30px, 5vh, 60px) clamp(20px, 3vh, 40px);
    background: var(--gray);
    border: 2px solid var(--primary);
    border-radius: clamp(12px, 1.5vh, 20px);
}

.ratio-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(15px, 2.5vh, 30px);
    margin-bottom: clamp(15px, 2.5vh, 30px);
    flex-wrap: wrap;
}

.ratio-formula {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.5vh, 15px);
}

.formula-part {
    font-size: clamp(28px, 4.5vh, 48px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text-muted);
}

.formula-divider {
    font-size: clamp(28px, 4.5vh, 48px);
    color: var(--text-muted);
}

.ratio-equals {
    font-size: clamp(28px, 4.5vh, 48px);
    color: var(--text-muted);
}

.ratio-value {
    font-size: clamp(56px, 9vh, 96px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
}

.ratio-explanation {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.metrics-breakdown {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(12px, 1.5vh, 22px);
    flex: 1;
    min-height: 0;
}

.breakdown-column h3 {
    font-size: clamp(14px, 1.7vh, 20px);
    margin-bottom: clamp(10px, 1.2vh, 16px);
    font-family: 'Space Grotesk', sans-serif;
}

.metric-cards {
    display: flex;
    flex-direction: column;
    gap: clamp(8px, 1vh, 12px);
}

.metric-detail-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(8px, 1vh, 12px);
    padding: clamp(10px, 1.2vh, 16px);
    display: flex;
    gap: clamp(10px, 1.2vh, 14px);
    align-items: flex-start;
    transition: all 0.3s ease;
}

.metric-detail-card:hover {
    border-color: var(--primary);
    transform: translateX(3px);
}

.metric-detail-card.highlighted {
    background: rgba(115, 169, 160, 0.1);
    border: 2px solid var(--primary);
}

.metric-icon-small {
    font-size: clamp(18px, 2.2vh, 24px);
    flex-shrink: 0;
}

.metric-detail-content h4 {
    font-size: clamp(11px, 1.3vh, 15px);
    margin-bottom: 3px;
    font-family: 'Space Grotesk', sans-serif;
}

.metric-detail-content p {
    font-size: clamp(9px, 1.1vh, 12px);
    color: var(--text-muted);
    line-height: 1.3;
}

/* Timeline Track - Modern Design */
.timeline-track {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    padding: clamp(20px, 3vh, 40px) 0;
}

.track-line {
    position: absolute;
    left: 0;
    right: 0;
    height: 3px;
    display: flex;
    z-index: 1;
    /* Position line at the center where dots are located */
    top: 50%;
    transform: translateY(-50%);
}

.line-past {
    flex: 3;
    background: #4a5568;
}

.line-future {
    flex: 2;
    background: repeating-linear-gradient(
        90deg,
        #4a5568 0px,
        #4a5568 10px,
        transparent 10px,
        transparent 20px
    );
}

.track-items {
    display: flex;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.track-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 clamp(8px, 1vw, 15px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.track-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.item-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: clamp(80px, 12vh, 120px);
    justify-content: flex-end;
    padding-bottom: clamp(10px, 1.5vh, 20px);
}

.item-year {
    font-size: clamp(14px, 1.8vh, 20px);
    color: var(--text-muted);
    font-weight: 400;
    margin-bottom: clamp(5px, 0.8vh, 10px);
}

.item-title {
    font-size: clamp(14px, 1.8vh, 22px);
    font-weight: 700;
    font-family: 'Space Grotesk', sans-serif;
    color: var(--text);
    line-height: 1.2;
}

.track-item.current .item-title {
    color: var(--primary);
}

.track-item.future .item-title {
    color: var(--text-muted);
}

.item-dot {
    width: clamp(18px, 2.5vh, 26px);
    height: clamp(18px, 2.5vh, 26px);
    background: #4a5568;
    border-radius: 50%;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
    margin: clamp(5px, 0.8vh, 10px) 0;
}

.item-dot.highlight {
    background: linear-gradient(135deg, #73a9a0 0%, #f19a81 100%);
    box-shadow: 0 0 25px rgba(115, 169, 160, 0.6);
    width: clamp(24px, 3.5vh, 36px);
    height: clamp(24px, 3.5vh, 36px);
}

.item-dot.dashed {
    background: var(--dark);
    border: 3px dashed #4a5568;
    width: clamp(22px, 3vh, 32px);
    height: clamp(22px, 3vh, 32px);
}

.item-bottom {
    height: clamp(80px, 12vh, 120px);
    padding-top: clamp(10px, 1.5vh, 20px);
    max-width: clamp(160px, 18vw, 260px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.item-bottom p {
    font-size: clamp(11px, 1.4vh, 15px);
    color: var(--text-muted);
    line-height: 1.5;
}

.item-bottom strong {
    color: var(--text);
    font-weight: 600;
}

.track-item.current .item-bottom strong {
    color: var(--primary);
}

/* Legacy support */
.timeline-horizontal {
    display: flex;
    gap: clamp(10px, 1.5vh, 20px);
    overflow-x: auto;
    padding: clamp(8px, 1vh, 15px) 0;
    margin-bottom: clamp(12px, 1.5vh, 25px);
    flex: 1;
    min-height: 0;
    max-height: 50vh;
}

.timeline-year {
    min-width: clamp(180px, 18vw, 240px);
    max-width: clamp(200px, 20vw, 280px);
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(12px, 1.5vh, 22px);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease;
}

.timeline-year.animate {
    opacity: 1;
    transform: translateY(0);
}

.timeline-summary {
    background: rgba(115, 169, 160, 0.1);
    border: 1px solid rgba(115, 169, 160, 0.3);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(12px, 1.5vh, 22px);
    display: flex;
    gap: clamp(12px, 1.5vh, 18px);
    align-items: center;
    margin-top: auto;
}

/* Investment Thesis */
.investment-thesis h3 {
    font-size: clamp(18px, 2.2vh, 28px);
    margin-bottom: clamp(12px, 1.5vh, 22px);
    font-family: 'Space Grotesk', sans-serif;
}

.thesis-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: clamp(10px, 1.2vh, 18px);
}

.thesis-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(10px, 1.2vh, 14px);
    padding: clamp(12px, 1.5vh, 22px);
    text-align: center;
    transition: all 0.3s ease;
}

.thesis-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(115, 169, 160, 0.15);
}

.thesis-icon {
    font-size: clamp(28px, 4vh, 42px);
    margin-bottom: clamp(8px, 1vh, 15px);
}

.thesis-card h4 {
    font-size: clamp(13px, 1.5vh, 18px);
    margin-bottom: clamp(6px, 0.8vh, 12px);
    font-family: 'Space Grotesk', sans-serif;
}

.thesis-card p {
    font-size: clamp(10px, 1.1vh, 13px);
    color: var(--text-muted);
    line-height: 1.4;
}

/* Dataroom Access */
.dataroom-access {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: clamp(15px, 2vh, 30px);
    margin-bottom: clamp(20px, 2.5vh, 40px);
}

.access-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(12px, 1.5vh, 18px);
    padding: clamp(18px, 2.5vh, 35px);
    text-align: center;
    transition: all 0.3s ease;
}

.access-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(115, 169, 160, 0.15);
}

.access-icon {
    font-size: clamp(36px, 5vh, 56px);
    margin-bottom: clamp(10px, 1.2vh, 18px);
}

.access-card h3 {
    font-size: clamp(16px, 2vh, 22px);
    margin-bottom: clamp(8px, 1vh, 14px);
    font-family: 'Space Grotesk', sans-serif;
}

.access-card p {
    font-size: clamp(11px, 1.2vh, 14px);
    color: var(--text-muted);
}

.qr-code-placeholder {
    display: flex;
    justify-content: center;
    margin: clamp(10px, 1.2vh, 18px) 0;
}

.qr-code-placeholder img {
    width: clamp(100px, 15vh, 180px) !important;
    height: clamp(100px, 15vh, 180px) !important;
    border-radius: clamp(8px, 1vh, 12px) !important;
}

.dataroom-contents {
    background: var(--gray);
    border-radius: clamp(10px, 1.2vh, 16px);
    padding: clamp(15px, 2vh, 30px);
    margin-bottom: clamp(15px, 2vh, 30px);
}

.dataroom-contents h3 {
    font-size: clamp(16px, 2vh, 24px);
    margin-bottom: clamp(12px, 1.5vh, 22px);
    font-family: 'Space Grotesk', sans-serif;
    text-align: center;
}

.contents-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: clamp(8px, 1vh, 14px);
}

.content-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: clamp(8px, 1vh, 14px) clamp(10px, 1.2vh, 18px);
    border-radius: 6px;
    font-size: clamp(10px, 1.1vh, 13px);
    transition: all 0.3s ease;
    text-align: center;
}

.content-item:hover {
    background: rgba(115, 169, 160, 0.1);
    border-color: var(--primary);
}

.contact-footer {
    text-align: center;
    padding: clamp(15px, 2vh, 30px) 0;
    margin-top: auto;
}

.contact-footer p {
    font-size: clamp(14px, 1.6vh, 18px);
    margin-bottom: clamp(5px, 0.6vh, 10px);
}

.footer-subtitle {
    color: var(--text-muted);
    font-size: clamp(12px, 1.4vh, 15px);
}

.fund-details {
    list-style: none;
    padding: 0;
    margin-top: clamp(6px, 0.8vh, 12px);
}

.fund-details li {
    padding: clamp(3px, 0.4vh, 6px) 0;
    padding-left: 16px;
    position: relative;
    color: var(--text-muted);
    font-size: clamp(10px, 1.1vh, 12px);
    line-height: 1.3;
}

.fund-details li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-size: clamp(9px, 1vh, 11px);
}

.fund-icon {
    font-size: clamp(14px, 1.6vh, 18px);
    margin-right: clamp(6px, 0.8vh, 10px);
}

/* Responsive Design - Comprehensive Breakpoints */

/* Ultra Wide & 4K Displays (2560px+) */
@media (min-width: 2560px) {
    .slide {
        padding: 120px 200px;
    }
    
    .slide-content {
        max-width: 2000px;
    }
    
    .slide-title {
        font-size: 72px;
    }
    
    .hero-title {
        font-size: 160px;
    }
    
    .hero-subtitle {
        font-size: 32px;
    }
    
    .stat-pill {
        padding: 30px 60px;
    }
    
    .stat-value {
        font-size: 48px;
    }
    
    .problem-grid,
    .features-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 60px;
    }
    
    .approach-pipeline {
        gap: 50px;
    }
    
    .slide-number {
        font-size: 180px;
        bottom: 60px;
        right: 100px;
    }
    
    .logo {
        width: 70px;
        height: 70px;
        font-size: 24px;
    }
    
    .control-btn {
        width: 70px;
        height: 70px;
    }
}

/* Large Desktop (1920px - 2559px) */
@media (min-width: 1920px) and (max-width: 2559px) {
    .slide {
        padding: 100px 150px;
    }
    
    .slide-content {
        max-width: 1800px;
    }
    
    .slide-title {
        font-size: 64px;
    }
    
    .hero-title {
        font-size: 140px;
    }
    
    .hero-subtitle {
        font-size: 28px;
    }
    
    .stat-pill {
        padding: 25px 50px;
    }
    
    .stat-value {
        font-size: 40px;
    }
    
    .problem-grid,
    .features-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px;
    }
    
    .slide-number {
        font-size: 150px;
        bottom: 50px;
        right: 80px;
    }
    
    .logo {
        width: 60px;
        height: 60px;
        font-size: 22px;
    }
}

/* Standard Desktop (1440px - 1919px) */
@media (min-width: 1440px) and (max-width: 1919px) {
    .slide {
        padding: 80px 120px;
    }
    
    .slide-content {
        max-width: 1600px;
    }
    
    .slide-title {
        font-size: 56px;
    }
    
    .hero-title {
        font-size: 120px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .features-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .team-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px;
    }
    
    .approach-pipeline {
        gap: 40px;
    }
    
    .timeline-horizontal {
        gap: 40px;
    }
}

/* Laptop Large (1366px - 1439px) */
@media (min-width: 1366px) and (max-width: 1439px) {
    .slide {
        padding: 70px 100px;
    }
    
    .slide-content {
        max-width: 1400px;
    }
    
    .slide-title {
        font-size: 52px;
    }
    
    .hero-title {
        font-size: 110px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
    
    .stat-pill {
        padding: 18px 35px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .problem-card {
        padding: 35px 25px;
    }
    
    .features-showcase {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .team-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .approach-pipeline {
        gap: 30px;
    }
    
    .pipeline-arrow {
        font-size: 36px;
    }
    
    .phase-content {
        gap: 25px;
    }
}

/* Laptop Medium (1280px - 1365px) */
@media (min-width: 1280px) and (max-width: 1365px) {
    .slide {
        padding: 60px 80px;
    }
    
    .slide-content {
        max-width: 1300px;
    }
    
    .slide-title {
        font-size: 48px;
        margin-bottom: 35px;
    }
    
    .hero-title {
        font-size: 100px;
    }
    
    .hero-subtitle {
        font-size: 20px;
        margin-bottom: 50px;
    }
    
    .hero-stats {
        gap: 25px;
    }
    
    .stat-pill {
        padding: 16px 32px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
    
    .problem-card {
        padding: 30px 20px;
    }
    
    .problem-card h3 {
        font-size: 20px;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px 25px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .product-card {
        padding: 35px 25px;
    }
    
    .team-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 35px;
    }
    
    .team-member-large {
        padding: 35px 25px;
    }
    
    .approach-pipeline {
        gap: 25px;
    }
    
    .pipeline-step {
        padding: 35px 25px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .timeline-horizontal {
        gap: 25px;
    }
    
    .timeline-year {
        min-width: 280px;
        padding: 25px;
    }
    
    .competitive-matrix {
        padding: 40px;
        min-height: 450px;
    }
    
    .competitors-map {
        height: 350px;
    }
    
    .ratio-value {
        font-size: 80px;
    }
    
    .formula-part {
        font-size: 40px;
    }
    
    .slide-number {
        font-size: 100px;
        bottom: 30px;
        right: 50px;
    }
}

/* Laptop Small & Tablets Landscape (1024px - 1279px) */
@media (min-width: 1024px) and (max-width: 1279px) {
    .slide {
        padding: 50px 60px;
    }
    
    .slide-content {
        max-width: 1200px;
    }
    
    .slide-title {
        font-size: 42px;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 80px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .stat-pill {
        padding: 14px 28px;
    }
    
    .stat-label {
        font-size: 11px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .problem-card {
        padding: 30px;
    }
    
    .problem-card h3 {
        font-size: 20px;
    }
    
    .card-icon {
        width: 50px;
        height: 50px;
    }
    
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .feature-card {
        padding: 30px;
    }
    
    .feature-card h3 {
        font-size: 20px;
    }
    
    .products-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .product-card {
        padding: 30px;
    }
    
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .team-member-large {
        padding: 35px;
    }
    
    .approach-pipeline {
        gap: 20px;
    }
    
    .pipeline-step {
        padding: 30px 25px;
    }
    
    .step-number {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
    
    .step-content h3 {
        font-size: 20px;
    }
    
    .step-details li {
        font-size: 13px;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .timeline-horizontal {
        gap: 20px;
    }
    
    .timeline-year {
        min-width: 260px;
        padding: 25px;
    }
    
    .year-content h3 {
        font-size: 20px;
    }
    
    .competitive-matrix {
        padding: 35px;
        min-height: 400px;
    }
    
    .competitors-map {
        height: 300px;
        gap: 15px;
    }
    
    .competitor-cluster {
        padding: 15px;
    }
    
    .competitor-item {
        padding: 10px 14px;
        font-size: 13px;
    }
    
    .ratio-value {
        font-size: 72px;
    }
    
    .formula-part,
    .formula-divider,
    .ratio-equals {
        font-size: 36px;
    }
    
    .ratio-explanation {
        font-size: 16px;
    }
    
    .metrics-breakdown {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .ltv-cac-showcase {
        padding: 50px 30px;
    }
    
    .ratio-display {
        gap: 20px;
        flex-wrap: wrap;
    }
    
    .ask-value {
        font-size: 80px;
    }
    
    .thesis-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .dataroom-access {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 600px;
        margin: 0 auto 60px auto;
    }
    
    .slide-number {
        font-size: 90px;
        bottom: 30px;
        right: 40px;
    }
    
    .side-nav {
        left: 20px;
    }
    
    .controls {
        bottom: 20px;
        right: 20px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

/* Tablets Portrait (768px - 1023px) */
@media (min-width: 768px) and (max-width: 1023px) {
    .slide {
        padding: 40px 40px;
    }
    
    .slide-content {
        max-width: 100%;
    }
    
    .slide-title {
        font-size: 36px;
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: 72px;
    }
    
    .hero-title-wrapper {
        gap: 30px;
    }
    
    .hero-product-image {
        width: 180px;
        height: 180px;
    }
    
    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .hero-stats {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .stat-pill {
        padding: 14px 26px;
        min-width: 200px;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .problem-card {
        padding: 35px;
    }
    
    .features-showcase {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .feature-card {
        padding: 35px;
    }
    
    .products-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .approach-pipeline {
        flex-direction: column;
        gap: 30px;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
        font-size: 36px;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
    }
    
    .timeline-horizontal {
        flex-direction: column;
        gap: 25px;
    }
    
    .timeline-year {
        min-width: 100%;
    }
    
    .competitive-matrix {
        padding: 30px;
        min-height: auto;
    }
    
    .competitors-map {
        grid-template-columns: 1fr;
        height: auto;
        gap: 15px;
    }
    
    .ratio-display {
        flex-direction: column;
        gap: 20px;
    }
    
    .ratio-value {
        font-size: 64px;
    }
    
    .formula-part,
    .formula-divider,
    .ratio-equals {
        font-size: 32px;
    }
    
    .metrics-breakdown {
        grid-template-columns: 1fr;
    }
    
    .ask-value {
        font-size: 72px;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-number {
        font-size: 80px;
        bottom: 20px;
        right: 30px;
    }
    
    .side-nav {
        left: 15px;
        transform: translateY(-50%) scale(0.9);
    }
    
    .logo {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .nav-dot {
        width: 7px;
        height: 7px;
    }
    
    .nav-dot.active {
        width: 10px;
        height: 10px;
    }
    
    .controls {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }
    
    .control-btn {
        width: 45px;
        height: 45px;
    }
}

/* Mobile Large (480px - 767px) */
@media (min-width: 480px) and (max-width: 767px) {
    .slide {
        padding: 30px 25px;
    }
    
    .slide-title {
        font-size: 28px;
        margin-bottom: 20px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-product-image {
        width: 150px;
        height: 150px;
    }
    
    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .stat-pill {
        padding: 12px 24px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .problem-grid,
    .features-showcase,
    .products-showcase,
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card,
    .feature-card,
    .product-card,
    .team-member-large {
        padding: 25px;
    }
    
    .card-number,
    .feature-number {
        font-size: 60px;
    }
    
    .approach-pipeline {
        flex-direction: column;
        gap: 25px;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
        font-size: 32px;
    }
    
    .pipeline-step {
        padding: 25px;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .phase-metrics {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .timeline-horizontal {
        flex-direction: column;
    }
    
    .timeline-year {
        min-width: 100%;
    }
    
    .year-stats {
        flex-direction: column;
        gap: 12px;
    }
    
    .competitive-matrix {
        padding: 20px;
    }
    
    .competitors-map {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .competitor-cluster {
        padding: 15px;
    }
    
    .ltv-cac-showcase {
        padding: 30px 20px;
    }
    
    .ratio-display {
        flex-direction: column;
        gap: 15px;
    }
    
    .ratio-value {
        font-size: 56px;
    }
    
    .formula-part,
    .formula-divider,
    .ratio-equals {
        font-size: 28px;
    }
    
    .ratio-explanation {
        font-size: 14px;
    }
    
    .metrics-breakdown {
        grid-template-columns: 1fr;
    }
    
    .ask-value {
        font-size: 64px;
    }
    
    .use-of-funds h3,
    .investment-thesis h3 {
        font-size: 24px;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
    }
    
    .thank-you-title {
        font-size: 64px;
    }
    
    .thank-you-subtitle {
        font-size: 20px;
    }
    
    .dataroom-access,
    .contents-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-number {
        font-size: 60px;
        bottom: 15px;
        right: 20px;
        opacity: 0.02;
    }
    
    .side-nav {
        display: none;
    }
    
    .controls {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .control-btn {
        width: 40px;
        height: 40px;
    }
    
    .control-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* Mobile Small (< 480px) */
@media (max-width: 479px) {
    .slide {
        padding: 25px 15px;
    }
    
    .section-label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .slide-title {
        font-size: 24px;
        margin-bottom: 20px;
        line-height: 1.3;
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-title-wrapper {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-product-image {
        width: 130px;
        height: 130px;
    }
    
    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 30px;
    }
    
    .label {
        font-size: 10px;
        letter-spacing: 2px;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-pill {
        padding: 10px 20px;
    }
    
    .stat-label {
        font-size: 10px;
    }
    
    .stat-value {
        font-size: 24px;
    }
    
    .problem-grid,
    .features-showcase,
    .products-showcase,
    .team-showcase {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .problem-card,
    .feature-card,
    .product-card,
    .team-member-large {
        padding: 20px;
    }
    
    .problem-card h3,
    .feature-card h3 {
        font-size: 18px;
    }
    
    .card-number,
    .feature-number {
        font-size: 50px;
    }
    
    .card-icon,
    .feature-icon-large {
        font-size: 40px;
    }
    
    .stat-highlight {
        font-size: 28px;
    }
    
    .approach-pipeline {
        flex-direction: column;
        gap: 20px;
    }
    
    .pipeline-arrow {
        transform: rotate(90deg);
        font-size: 28px;
    }
    
    .pipeline-step {
        padding: 20px;
    }
    
    .step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .step-content h3 {
        font-size: 18px;
    }
    
    .step-subtitle {
        font-size: 12px;
    }
    
    .step-details li {
        font-size: 12px;
    }
    
    .phase-content {
        grid-template-columns: 1fr;
    }
    
    .phase-metrics {
        grid-template-columns: 1fr;
    }
    
    .timeline-horizontal {
        flex-direction: column;
    }
    
    .timeline-year {
        min-width: 100%;
        padding: 20px;
    }
    
    .year-badge {
        font-size: 12px;
        padding: 6px 16px;
    }
    
    .year-content h3 {
        font-size: 20px;
    }
    
    .year-stats {
        flex-direction: column;
        gap: 10px;
    }
    
    .year-stat .stat-number {
        font-size: 20px;
    }
    
    .competitive-matrix {
        padding: 15px;
    }
    
    .competitors-map {
        grid-template-columns: 1fr;
        height: auto;
    }
    
    .competitor-cluster {
        padding: 12px;
    }
    
    .competitor-item {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .product-icon {
        font-size: 48px;
    }
    
    .product-card h3 {
        font-size: 24px;
    }
    
    .metric-row {
        grid-template-columns: 1fr;
    }
    
    .photo-circle {
        width: 100px;
        height: 100px;
        font-size: 32px;
    }
    
    .member-info h3 {
        font-size: 22px;
    }
    
    .credentials-section h4 {
        font-size: 12px;
    }
    
    .ltv-cac-showcase {
        padding: 25px 15px;
    }
    
    .ratio-display {
        flex-direction: column;
        gap: 10px;
    }
    
    .ratio-formula {
        flex-direction: column;
        gap: 10px;
    }
    
    .ratio-value {
        font-size: 48px;
    }
    
    .formula-part,
    .formula-divider,
    .ratio-equals {
        font-size: 24px;
    }
    
    .ratio-explanation {
        font-size: 13px;
    }
    
    .metrics-breakdown {
        grid-template-columns: 1fr;
    }
    
    .ask-value {
        font-size: 56px;
    }
    
    .ask-label,
    .term-label {
        font-size: 10px;
    }
    
    .term-value {
        font-size: 32px;
    }
    
    .use-of-funds h3,
    .investment-thesis h3 {
        font-size: 22px;
    }
    
    .fund-item {
        padding: 20px;
    }
    
    .fund-name {
        font-size: 14px;
    }
    
    .thesis-grid {
        grid-template-columns: 1fr;
    }
    
    .thesis-card {
        padding: 25px;
    }
    
    .thesis-icon {
        font-size: 40px;
    }
    
    .thesis-card h4 {
        font-size: 18px;
    }
    
    .thank-you-title {
        font-size: 56px;
    }
    
    .thank-you-subtitle {
        font-size: 18px;
        margin-bottom: 40px;
    }
    
    .dataroom-access {
        grid-template-columns: 1fr;
    }
    
    .access-card {
        padding: 30px 20px;
    }
    
    .access-icon {
        font-size: 48px;
    }
    
    .contents-grid {
        grid-template-columns: 1fr;
    }
    
    .slide-number {
        font-size: 50px;
        bottom: 10px;
        right: 15px;
        opacity: 0.02;
    }
    
    .side-nav {
        display: none;
    }
    
    .controls {
        bottom: 10px;
        right: 10px;
        gap: 8px;
    }
    
    .control-btn {
        width: 38px;
        height: 38px;
    }
    
    .control-btn svg {
        width: 18px;
        height: 18px;
    }
    
    .progress-bar {
        height: 2px;
    }
}

/* Print Styles */
@media print {
    .progress-bar,
    .side-nav,
    .controls,
    .slide-number {
        display: none !important;
    }
    
    .slide {
        page-break-after: always;
        min-height: 100vh;
        padding: 60px 40px;
    }
    
    .slide-content {
        max-width: 100%;
    }
}

/* ============================================
   LIVE IPHONE DEMO SLIDE
   ============================================ */

.live-demo-container {
    display: flex;
    gap: clamp(40px, 6vw, 80px);
    align-items: center;
    justify-content: center;
    height: 70vh;
    max-height: 800px;
}

.iphone-screen {
    position: relative;
    width: clamp(340px, 25vw, 390px);
    height: clamp(693px, 51vw, 844px);
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border-radius: clamp(45px, 4vw, 55px);
    padding: clamp(10px, 1vw, 12px);
    box-shadow: 
        0 30px 100px rgba(0, 0, 0, 0.7),
        0 10px 40px rgba(0, 217, 255, 0.1),
        inset 0 1px 2px rgba(255, 255, 255, 0.1);
    animation: phoneFloat 6s ease-in-out infinite;
}

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

.iphone-notch {
    position: absolute;
    top: clamp(15px, 2vh, 20px);
    left: 50%;
    transform: translateX(-50%);
    width: clamp(100px, 10vw, 120px);
    height: clamp(22px, 2.5vh, 25px);
    background: #000;
    border-radius: 0 0 20px 20px;
    z-index: 100;
}

#stream-canvas {
    width: 100%;
    height: 100%;
    border-radius: clamp(38px, 3.5vw, 45px);
    background: #000;
    object-fit: cover;
    position: relative;
}

.connection-status {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background: rgba(0, 0, 0, 0.85);
    padding: clamp(20px, 3vh, 30px) clamp(30px, 4vw, 50px);
    border-radius: clamp(12px, 1.5vh, 16px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: opacity 0.5s ease;
    z-index: 50;
}

.connection-status.hidden {
    opacity: 0;
    pointer-events: none;
}

.status-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(10px, 1.5vh, 15px);
}

.status-dot {
    display: inline-block;
    width: clamp(10px, 1.2vh, 12px);
    height: clamp(10px, 1.2vh, 12px);
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 20px var(--accent);
}

.status-dot.connected {
    background: #00ff88;
    box-shadow: 0 0 20px #00ff88;
    animation: none;
}

.status-text {
    font-size: clamp(13px, 1.5vh, 16px);
    color: #fff;
    font-weight: 500;
}

.demo-info {
    max-width: clamp(350px, 35vw, 450px);
    flex: 1;
}

.info-card {
    background: var(--gray);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: clamp(16px, 2vh, 24px);
    padding: clamp(30px, 4vh, 45px);
}

.info-card h3 {
    font-size: clamp(24px, 3vh, 32px);
    margin-bottom: clamp(12px, 1.5vh, 16px);
    font-family: 'Space Grotesk', sans-serif;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-card p {
    color: var(--text-muted);
    margin-bottom: clamp(20px, 3vh, 30px);
    line-height: 1.6;
    font-size: clamp(14px, 1.5vh, 16px);
}

.demo-features {
    display: flex;
    flex-direction: column;
    gap: clamp(12px, 1.5vh, 16px);
    margin-bottom: clamp(25px, 3vh, 35px);
    padding: clamp(20px, 2.5vh, 25px);
    background: rgba(115, 169, 160, 0.05);
    border-radius: clamp(10px, 1.2vh, 12px);
    border: 1px solid rgba(115, 169, 160, 0.1);
}

.demo-feature {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.2vh, 12px);
    color: var(--text);
}

.demo-feature svg {
    width: clamp(18px, 2vh, 20px);
    height: clamp(18px, 2vh, 20px);
    color: var(--primary);
    flex-shrink: 0;
}

.demo-feature span {
    font-size: clamp(13px, 1.4vh, 15px);
    font-weight: 500;
}

.connection-instructions {
    background: rgba(241, 154, 129, 0.05);
    border-radius: clamp(10px, 1.2vh, 12px);
    padding: clamp(18px, 2.5vh, 22px);
    border: 1px solid rgba(241, 154, 129, 0.2);
}

.instructions-title {
    font-size: clamp(13px, 1.4vh, 14px);
    font-weight: 600;
    color: var(--accent);
    margin-bottom: clamp(10px, 1.2vh, 12px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.connection-instructions ol {
    margin: 0;
    padding-left: clamp(18px, 2vh, 20px);
    color: var(--text-muted);
}

.connection-instructions li {
    margin-bottom: clamp(6px, 0.8vh, 8px);
    font-size: clamp(12px, 1.3vh, 14px);
    line-height: 1.5;
}

.connection-instructions li:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments for live demo */
@media (max-width: 1200px) {
    .live-demo-container {
        gap: 50px;
    }
    
    .iphone-screen {
        width: 340px;
        height: 693px;
    }
    
    .demo-info {
        max-width: 400px;
    }
}

@media (max-width: 968px) {
    .live-demo-container {
        flex-direction: column;
        gap: 40px;
        height: auto;
        padding: 40px 0;
    }
    
    .iphone-screen {
        width: 320px;
        height: 653px;
    }
    
    .demo-info {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .iphone-screen {
        width: 280px;
        height: 571px;
        border-radius: 40px;
        padding: 8px;
    }
    
    .iphone-notch {
        width: 90px;
        height: 20px;
        top: 12px;
    }
    
    #stream-canvas {
        border-radius: 32px;
    }
    
    .info-card {
        padding: 25px;
    }
}

/* Height-based adjustments */
@media (max-height: 800px) {
    .live-demo-container {
        height: 65vh;
    }
    
    .iphone-screen {
        width: 300px;
        height: 612px;
    }
    
    .connection-status {
        padding: 20px 30px;
    }
    
    .info-card {
        padding: 30px;
    }
}

@media (max-height: 700px) {
    .live-demo-container {
        height: 60vh;
    }
    
    .iphone-screen {
        width: 260px;
        height: 530px;
    }
    
    .demo-features {
        padding: 15px;
        gap: 10px;
    }
    
    .connection-instructions {
        padding: 15px;
    }
}
