/* Base Styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --primary-color: #6E57E0;
    --secondary-color: #FF5757;
    --dark-color: #1A1A2E;
    --light-color: #F8F8FF;
    --accent-color: #4ECDC4;
    --text-color: #333;
    --background-color: #FFFFFF;
    --slide-padding: 60px;
    --transition-speed: 0.5s;
    --nav-height: 60px;
}

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

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

/* Navigation */
.deck-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.deck-nav.hidden {
    transform: translateY(-100%);
}

.deck-nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    gap: 1rem;
    padding: 0 1rem;
}

.deck-nav a {
    text-decoration: none;
    color: var(--dark-color);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.deck-nav a:hover {
    background-color: rgba(110, 87, 224, 0.1);
    color: var(--primary-color);
}

.deck-nav a.active {
    background-color: var(--primary-color);
    color: white;
}

.pitch-deck {
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    padding-top: var(--nav-height);
}

/* Slide Styles */
.slide {
    width: 100vw;
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    padding: var(--slide-padding);
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-bottom: 2rem;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 2rem 0;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-number {
    position: absolute;
    bottom: 30px;
    right: 30px;
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-color);
    opacity: 0.5;
}

h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
}

p {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

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

/* Cover Slide */
.cover-slide {
    background-color: var(--light-color);
    text-align: center;
}

.logo-container {
    margin-bottom: 2rem;
}

.company-name {
    font-size: 5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.tagline {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.founder-info {
    font-size: 1.2rem;
    opacity: 0.8;
}

.animated-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
}

.grid-line {
    position: absolute;
    background-color: var(--primary-color);
}

.grid-line.horizontal {
    width: 100%;
    height: 1px;
}

.grid-line.vertical {
    height: 100%;
    width: 1px;
}

.grid-line.horizontal:nth-child(1) { top: 33%; }
.grid-line.horizontal:nth-child(2) { top: 50%; }
.grid-line.horizontal:nth-child(3) { top: 67%; }
.grid-line.vertical:nth-child(4) { left: 33%; }
.grid-line.vertical:nth-child(5) { left: 50%; }
.grid-line.vertical:nth-child(6) { left: 67%; }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.floating-icon {
    position: absolute;
    opacity: 0.5;
}

/* Problem Slide */
.problem-slide {
    background-color: var(--background-color);
}

.problem-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.problem-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.problem-text {
    flex: 1;
}

.problem-list {
    list-style: none;
}

.problem-list li {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    position: relative;
    padding-left: 2rem;
}

.problem-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--primary-color);
}

.wasted-time-visual {
    position: relative;
}

.stat-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.big-stat {
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: block;
}

.stat-label {
    font-size: 1rem;
    max-width: 150px;
    display: block;
    margin: 0 auto;
}

/* Solution Slide */
.solution-slide {
    background-color: var(--light-color);
}

.solution-container {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.solution-text {
    flex: 1;
}

.solution-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.solution-headline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.key-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-icon {
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.feature-text p {
    font-size: 1rem;
    margin-bottom: 0;
}

/* Market Slide */
.market-slide {
    background-color: var(--background-color);
}

.market-container {
    display: flex;
    align-items: flex-start;
    gap: 4rem;
}

.market-visual {
    flex: 1;
}

.market-text {
    flex: 1;
}

.market-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.market-stat {
    flex: 1;
    min-width: 180px;
    text-align: center;
    padding: 1.5rem 0.5rem;
    border-radius: 10px;
    background-color: rgba(110, 87, 224, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: visible;
}

.stat-number {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    display: block;
    margin-bottom: 0.5rem;
    width: 100%;
    padding: 0;
    box-sizing: border-box;
    white-space: nowrap;
    overflow: visible;
    letter-spacing: -0.5px;
}

.stat-description {
    font-size: 1rem;
}

.market-conclusion {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.market-segments {
    margin-top: 2rem;
    background-color: rgba(110, 87, 224, 0.05);
    padding: 1.5rem;
    border-radius: 10px;
}

.market-segments h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #6E57E0;
}

.segment-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid rgba(110, 87, 224, 0.1);
}

.segment-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.segment-name {
    font-weight: 500;
    color: #333;
}

.segment-value {
    font-weight: 700;
    color: #6E57E0;
}

.graph-label {
    font-size: 12px;
}

/* Product Demo Slide */
.product-demo-slide {
    background-color: var(--light-color);
}

.product-demo-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.demo-headline {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.demo-features {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2rem;
}

.demo-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    flex: 1;
}

.demo-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.demo-video-container {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-bottom: 45%; /* Reduced height */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.demo-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.demo-screenshots {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.screenshot {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.screenshot img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

/* Technology Slide */
.technology-slide {
    background-color: var(--background-color);
}

.technology-container {
    display: grid;
    grid-template-columns: 55% 45%;
    grid-template-areas:
        "arch-diagram tech-details"
        "advanced-models tech-details";
    gap: 3rem;
    width: 100%;
}

@media (max-width: 992px) {
    .technology-container {
        grid-template-columns: 1fr;
        grid-template-areas:
            "arch-diagram"
            "tech-details"
            "advanced-models";
    }
}

.tech-visual {
    grid-area: arch-diagram;
}

.tech-details {
    grid-area: tech-details;
}

.advanced-models-container {
    grid-area: advanced-models;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(110, 87, 224, 0.1);
}

.tech-architecture {
    width: 100%;
    margin-bottom: 2rem;
}

.tech-architecture img {
    width: 100%;
    max-width: 100%;
    height: auto;
    box-shadow: 0 5px 15px rgba(110, 87, 224, 0.1);
    border-radius: 10px;
}

.tech-stack {
    margin-bottom: 3rem;
}

.tech-stack h3, .tech-metrics h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

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

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.tech-metrics {
    margin-top: 2rem;
}

.metric-bars {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.metric-bar {
    width: 100%;
}

.metric-label {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.metric-track {
    height: 12px;
    background-color: rgba(110, 87, 224, 0.1);
    border-radius: 6px;
    overflow: hidden;
}

.metric-fill {
    height: 100%;
    background-color: var(--primary-color);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smooth transition with easeOutQuad */
    will-change: width; /* Optimize for animation */
}

/* Competition Slide */
.competition-slide {
    background-color: var(--light-color);
}

.competition-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    width: 100%;
}

.competition-intro {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 2rem;
    text-align: center;
}

.comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.comparison-header {
    display: flex;
    flex-wrap: wrap;
    background-color: #f5f5ff;
    width: 100%;
    margin-top: 70px;
    margin-bottom: 20px;
    padding: 0 50px;
}

.comparison-row {
    display: flex;
    flex-wrap: wrap;
    border-bottom: 1px solid rgba(110, 87, 224, 0.1);
    width: 100%;
    padding: 0 50px;
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    flex: 1;
    min-width: 80px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.header-cell {
    font-weight: 600;
    background-color: #f5f5ff;
}

.feature-cell {
    justify-content: flex-start;
    font-weight: 500;
}

.value-cell {
    font-size: 1rem;
}

.competitor-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    position: relative;
}

.competitor-bubble {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(110, 87, 224, 0.3);
    border-radius: 20px;
    padding: 5px 10px;
    font-size: 0.7rem;
    color: #555;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.competitor-bubble:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    z-index: 20;
}

.competitor-bubble img {
    width: 16px;
    height: 16px;
    object-fit: contain;
}

/* Animation variations */
@keyframes float2 {
    0% {
        transform: translate(0, 0);
    }
    30% {
        transform: translate(-2px, -3px);
    }
    60% {
        transform: translate(1px, -4px);
    }
    100% {
        transform: translate(0, 0);
    }
}

@keyframes float3 {
    0% {
        transform: translate(0, 0);
    }
    40% {
        transform: translate(3px, -2px);
    }
    70% {
        transform: translate(1px, -3px);
    }
    100% {
        transform: translate(0, 0);
    }
}

/* RPA Bubbles */
.rpa-bubble-1 {
    top: -55px;
    left: -65px;
    animation: float 6s ease-in-out infinite;
}

.rpa-bubble-2 {
    top: -25px;
    right: -95px;
    animation: float2 7s ease-in-out infinite 1s;
}

.rpa-bubble-3 {
    bottom: -50px;
    left: -85px;
    animation: float3 5s ease-in-out infinite 0.5s;
}

.rpa-bubble-4 {
    bottom: -35px;
    right: -75px;
    animation: float 8s ease-in-out infinite 1.5s;
}

/* AI Agent Bubbles */
.ai-bubble-1 {
    top: -60px;
    left: -55px;
    animation: float2 7s ease-in-out infinite 0.7s;
}

.ai-bubble-2 {
    top: -30px;
    right: -85px;
    animation: float3 6s ease-in-out infinite 1.2s;
}

.ai-bubble-3 {
    bottom: -45px;
    left: -70px;
    animation: float 8s ease-in-out infinite 0.3s;
}

.ai-bubble-4 {
    bottom: -30px;
    right: -90px;
    animation: float2 5s ease-in-out infinite 1.8s;
}

@keyframes float {
    0% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(2px, -2px);
    }
    50% {
        transform: translate(0, -4px);
    }
    75% {
        transform: translate(-2px, -2px);
    }
    100% {
        transform: translate(0, 0);
    }
}

.competitor-logo.obsyr svg {
    stroke: var(--primary-color);
}

.competitor-logo.obsyr span {
    color: var(--primary-color);
    font-weight: 700;
}

.check-icon, .x-icon, .partial-icon {
    flex-shrink: 0;
}

/* Traction Slide */
.traction-slide {
    background-color: var(--background-color);
}

.traction-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.traction-metrics {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
}

.traction-metric {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(110, 87, 224, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.traction-metric:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 87, 224, 0.1);
}

.metric-icon {
    margin-bottom: 1rem;
}

.metric-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 1.1rem;
    color: var(--dark-color);
}

.usage-breakdown {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 1rem;
}

.usage-breakdown h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.usage-chart {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    width: 100%;
}

.pie-chart {
    flex-shrink: 0;
}

.chart-legend {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.roadmap {
    margin-top: 2rem;
}

.roadmap h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    text-align: center;
}

.timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-top: 8px; /* Half of the point height */
}

.timeline::before {
    content: '';
    position: absolute;
    top: 16px; /* Center of the points */
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    opacity: 0.3;
}

.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    flex: 1;
}

.timeline-point {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--primary-color);
    margin-bottom: 1rem;
    z-index: 1;
    position: relative;
    top: 0;
}

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

.timeline-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* Team Slide */
.team-slide {
    background-color: var(--light-color);
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
    width: 100%;
}

.founder-profile {
    flex: 1.2;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.founder-video-container {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.founder-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

.founder-info h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.founder-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.founder-background {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.background-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.background-icon {
    flex-shrink: 0;
}

.background-text p {
    margin: 0;
    font-size: 1rem;
}

.team-expansion {
    flex: 0.8;
    background-color: rgba(110, 87, 224, 0.05);
    padding: 2rem;
    border-radius: 10px;
}

.team-expansion h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.team-expansion > p {
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    margin-bottom: 1.5rem;
}

.linkedin-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #0077B5;
    color: white;
    padding: 0.6rem 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.linkedin-button:hover {
    background-color: #005e8c;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 119, 181, 0.2);
}

.open-positions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.position {
    padding: 1.5rem;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.position h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.position p {
    margin: 0;
    font-size: 1rem;
}

/* Vision Slide */
.vision-slide {
    background-color: var(--background-color);
}

.vision-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    width: 100%;
}

.vision-statement {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.vision-headline {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-bottom: 1.5rem;
    color: #6E57E0;
    font-weight: 600;
}

.vision-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #555;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.vision-illustration {
    display: flex;
    justify-content: center;
    margin: 2rem 0;
}

.future-roadmap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.future-milestone {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: rgba(110, 87, 224, 0.05);
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.future-milestone:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(110, 87, 224, 0.1);
}

.milestone-icon {
    flex-shrink: 0;
}

.milestone-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.milestone-text p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .slide {
        padding: 40px;
    }

    .company-name {
        font-size: 4rem;
    }

    .tagline {
        font-size: 1.5rem;
    }

    .tech-architecture svg,
    .vision-svg {
        width: 100%;
        height: auto;
    }
}

@media (max-width: 992px) {
    .problem-container,
    .solution-container,
    .market-container,
    .technology-container,
    .team-container {
        flex-direction: column;
        gap: 2rem;
    }

    .company-name {
        font-size: 3.5rem;
    }

    .tagline {
        font-size: 1.3rem;
    }

    .deck-nav a {
        font-size: 0.8rem;
        padding: 0.4rem 0.6rem;
    }

    .traction-metrics {
        flex-wrap: wrap;
    }

    .traction-metric {
        flex: 1 0 45%;
    }

    .future-milestone {
        flex: 1 0 100%;
    }
}

@media (max-width: 768px) {
    .slide {
        padding: 30px 20px;
    }

    h2 {
        font-size: 2.5rem;
    }

    .company-name {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .deck-nav {
        height: auto;
        padding: 10px 0;
    }

    .deck-nav ul {
        gap: 0.5rem;
    }

    .deck-nav a {
        font-size: 0.7rem;
        padding: 0.3rem 0.5rem;
    }

    .traction-metric {
        flex: 1 0 100%;
    }

    .metric-value {
        font-size: 2.5rem;
    }

    .comparison-table {
        font-size: 0.9rem;
    }

    .comparison-cell {
        padding: 0.8rem 0.5rem;
    }
}

@media (max-width: 576px) {
    .slide {
        padding: 20px 15px;
    }

    h2 {
        font-size: 2rem;
    }

    .company-name {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1rem;
    }

    .deck-nav a {
        font-size: 0.6rem;
        padding: 0.2rem 0.4rem;
    }

    .feature-cell {
        min-width: 100px;
    }

    .value-cell {
        font-size: 0.8rem;
    }

    .competitor-logo span {
        font-size: 0.8rem;
    }

    .competitor-logo svg {
        width: 30px;
        height: 30px;
    }

    .check-icon, .x-icon, .partial-icon {
        width: 18px;
        height: 18px;
    }
}
