/* Artemis AI Pitch Deck Styles */

:root {
    --primary-color: #00f5ff;
    --secondary-color: #ff0080;
    --accent-color: #00ff88;
    --warning-color: #ffaa00;
    --text-primary: #ffffff;
    --text-secondary: #b0b8c8;
    --text-light: #808080;
    --bg-primary: #0a0a0f;
    --bg-secondary: #1a1a2e;
    --bg-dark: #16213e;
    --bg-accent: #0f3460;
    --border-color: rgba(0, 245, 255, 0.3);
    --border-glow: rgba(0, 245, 255, 0.6);
    --shadow-sm: 0 1px 2px 0 rgba(0, 245, 255, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 245, 255, 0.2);
    --shadow-lg: 0 10px 15px -3px rgba(0, 245, 255, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 245, 255, 0.4);
    --shadow-glow: 0 0 30px rgba(0, 245, 255, 0.5);
    --gradient-primary: linear-gradient(135deg, #00f5ff 0%, #ff0080 50%, #00ff88 100%);
    --gradient-secondary: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    --gradient-dark: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #16213e 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--gradient-dark);
    color: var(--text-primary);
    overflow-x: hidden;
    height: 100vh;
}

/* Navigation */
.pitch-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 1rem 2rem;
}

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

.logo {
    font-size: 1.2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-counter {
    background: var(--bg-secondary);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    font-weight: 600;
}

/* Slides */
.slide {
    display: none;
    min-height: 100vh;
    padding: 6rem 2rem 2rem;
    align-items: center;
    justify-content: center;
}

.slide.active {
    display: flex;
}

.slide-content {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
}

.slide-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.slide-title {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-color);
    background: var(--bg-secondary);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
}

/* Problem Slide */
.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.stat-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.problem-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.problem-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.problem-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
}

.problem-list i {
    color: var(--secondary-color);
    font-size: 1.5rem;
}

/* Solution Slide */
.solution-content {
    text-align: center;
}

.solution-hero h2 {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
    line-height: 1.6;
}

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

.feature-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Demo Slide */
.demo-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.demo-features h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-text h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-secondary);
}

.demo-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.stat-highlight {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    min-width: 200px;
}

/* Market Slide */
.market-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.market-size h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

.market-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.market-stat {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.market-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.target-market h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.user-segments {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.segment {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.segment h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.segment p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.segment-size {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Business Model Slide */
.business-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.revenue-streams h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--text-primary);
}

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

.revenue-stream {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-stream:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.stream-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.revenue-stream h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.revenue-stream p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.pricing {
    font-weight: 600;
    color: var(--accent-color);
    font-size: 1.2rem;
}

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

.year-projections {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.year {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.year:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.year-label {
    font-size: 1.2rem;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.year-revenue {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Traction Slide */
.traction-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.traction-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.traction-stat {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.traction-stat:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

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

.milestone-timeline {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.milestone {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.milestone:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.milestone.completed {
    border-color: var(--accent-color);
}

.milestone.current {
    border-color: var(--secondary-color);
    animation: pulse 2s infinite;
}

.milestone.upcoming {
    border-color: var(--warning-color);
}

.milestone-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

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

.milestone-text p {
    color: var(--text-secondary);
}

/* Ask Slide */
.ask-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.funding-ask {
    text-align: center;
}

.funding-ask h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.funding-breakdown {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.funding-item {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.funding-item:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-glow);
}

.funding-amount {
    font-size: 2rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.funding-purpose {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.partnership-opportunities h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

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

.partnership {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.partnership:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.partnership h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.partnership p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    text-align: center;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--bg-secondary);
    padding: 1rem 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.contact-item i {
    color: var(--primary-color);
    font-size: 1.2rem;
    width: 20px;
}

/* Slide Controls */
.slide-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 2rem;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    padding: 1rem 2rem;
    border-radius: 50px;
    border: 1px solid var(--border-color);
    z-index: 1000;
}

.control-btn {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.control-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slide-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--primary-color);
    transform: scale(1.2);
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide {
        padding: 4rem 1rem 2rem;
    }
    
    .slide-title {
        font-size: 2rem;
    }
    
    .problem-content,
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-features,
    .streams-grid,
    .partnership-types,
    .funding-breakdown {
        grid-template-columns: 1fr;
    }
    
    .market-stats,
    .traction-stats,
    .year-projections {
        grid-template-columns: 1fr;
    }
    
    .user-segments {
        grid-template-columns: 1fr;
    }
}

@media print {
    .slide-controls,
    .pitch-nav {
        display: none;
    }
    
    .slide {
        display: block !important;
        page-break-after: always;
        min-height: auto;
        padding: 2rem;
    }
    
    .slide:last-child {
        page-break-after: avoid;
    }
}
