/* PNEUOMA Pitch Deck Styles */

:root {
    --bg-primary: #0a0a0f;
    --bg-secondary: #12121a;
    --bg-card: #1a1a24;
    --accent-primary: #64ffda;
    --accent-secondary: #06b6d4;
    --accent-warm: #ff6b9d;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --gradient-accent: linear-gradient(135deg, #64ffda 0%, #06b6d4 100%);
}

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

html, body {
    width: 100%;
    height: 100%;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
}

/* Presentation Container */
.presentation {
    width: 100%;
    height: 100%;
    position: relative;
}

/* Individual Slides */
.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
    background: var(--bg-primary);
    overflow: hidden;
}

.slide.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.slide-content {
    max-width: 1200px;
    width: 90%;
    padding: 2rem;
}

/* Title Slide */
.title-slide {
    text-align: center;
}

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

.breath-rings {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100px;
    height: 100px;
}

.breath-rings span {
    position: absolute;
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
    animation: breathPulse 4s ease-in-out infinite;
}

.breath-rings span:nth-child(1) {
    width: 60px;
    height: 60px;
    animation-delay: 0s;
}

.breath-rings span:nth-child(2) {
    width: 80px;
    height: 80px;
    animation-delay: 0.3s;
}

.breath-rings span:nth-child(3) {
    width: 100px;
    height: 100px;
    animation-delay: 0.6s;
}

@keyframes breathPulse {
    0%, 100% { transform: scale(0.9); opacity: 0.3; }
    50% { transform: scale(1.1); opacity: 1; }
}

.title-slide h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    background: var(--gradient-accent);
    -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: 1.5rem;
}

.human-line {
    font-size: 1.25rem;
    color: var(--text-primary);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.slide-footer {
    display: flex;
    justify-content: center;
    gap: 3rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Slide Labels */
.slide-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--accent-primary);
    margin-bottom: 1rem;
}

/* Main Headlines */
.slide-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2rem;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

.stat-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.stat-desc {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

.insight {
    font-size: 1.25rem;
    color: var(--text-secondary);
    text-align: center;
    margin-top: 2rem;
}

.insight em {
    color: var(--accent-primary);
    font-style: normal;
    font-weight: 500;
}

/* Pillars */
.solution-intro {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
}

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

.pillar {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
}

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

.pillar h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Platform Grid */
.platform-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

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

.platform-count {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.platform-name {
    display: block;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0.5rem 0;
}

.platform-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Games Showcase */
.games-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.game-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
}

.game-visual {
    height: 120px;
}

.game-visual.aura {
    background: linear-gradient(135deg, #1a1a3e 0%, #2a1a4e 100%);
}

.game-visual.dragon {
    background: linear-gradient(180deg, #2d1b4e 0%, #6b4d8e 100%);
}

.game-visual.tidepool {
    background: linear-gradient(180deg, #0a4d6e 0%, #1a7da8 100%);
}

.game-visual.echo {
    background: linear-gradient(180deg, #1a3d2e 0%, #2d5a3e 100%);
}

.game-card h3 {
    padding: 1rem 1rem 0.25rem;
    font-size: 1.1rem;
}

.game-card p {
    padding: 0 1rem 1rem;
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 2rem 0;
}

.column h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--accent-primary);
}

.feature-list, .impact-list {
    list-style: none;
}

.feature-list li, .impact-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.1rem;
}

.metric {
    color: var(--accent-primary);
    font-weight: 600;
    margin-right: 0.5rem;
}

.cta-banner {
    background: var(--gradient-accent);
    color: var(--bg-primary);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-align: center;
    font-weight: 600;
    margin-top: 2rem;
}

/* Market Visual */
.market-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    margin: 3rem 0;
}

.market-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
}

.market-tam {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
}

.market-label {
    font-size: 0.9rem;
    font-weight: 500;
}

.market-segments {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.segment {
    display: flex;
    flex-direction: column;
}

.segment-value {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: var(--accent-primary);
}

.segment-name {
    color: var(--text-secondary);
}

.market-insight {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

/* Revenue Grid */
.revenue-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.revenue-card {
    background: var(--bg-card);
    padding: 2rem;
    border-radius: 16px;
}

.revenue-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--accent-primary);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.revenue-card ul {
    list-style: none;
}

.revenue-card li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.revenue-card li::before {
    content: "✓ ";
    color: var(--accent-primary);
}

/* Traction */
.traction-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

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

.traction-number {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.traction-label {
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item::after {
    content: '';
    position: absolute;
    top: 1.5rem;
    right: -2.5rem;
    width: 50px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.timeline-item:last-child::after {
    display: none;
}

.timeline-date {
    display: block;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.timeline-item.done .timeline-date {
    color: var(--text-muted);
}

.timeline-item.current .timeline-date {
    color: var(--accent-primary);
}

.timeline-item.future .timeline-date {
    color: var(--text-secondary);
}

.timeline-milestone {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Vision */
.center-content {
    text-align: center;
}

.vision-quote {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-primary);
    max-width: 900px;
    margin: 0 auto 2rem;
    font-style: italic;
}

.vision-statement {
    font-size: 1.5rem;
    color: var(--accent-primary);
}

/* Ask Cards */
.ask-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.ask-card {
    background: var(--bg-card);
    padding: 2.5rem;
    border-radius: 16px;
    text-align: center;
    transition: transform 0.3s ease;
}

.ask-card:hover {
    transform: translateY(-5px);
}

.ask-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ask-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.ask-action {
    color: var(--accent-primary);
    font-weight: 500;
}

/* Contact */
.contact-info {
    margin-top: 3rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.contact-info strong {
    color: var(--text-primary);
    font-size: 1.25rem;
}

/* Navigation */
.nav-controls {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: var(--bg-card);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    z-index: 100;
}

.nav-btn {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.2s ease;
}

.nav-btn:hover {
    color: var(--accent-primary);
}

.slide-counter {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

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

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

/* Responsive */
@media (max-width: 1024px) {
    .slide-content h2 {
        font-size: 2.5rem;
    }
    
    .stats-grid,
    .pillars,
    .platform-grid,
    .games-showcase,
    .revenue-grid,
    .traction-stats,
    .ask-options {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .market-visual {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .title-slide h1 {
        font-size: 3rem;
    }
    
    .slide-content h2 {
        font-size: 2rem;
    }
    
    .stats-grid,
    .pillars,
    .platform-grid,
    .games-showcase,
    .revenue-grid,
    .traction-stats,
    .ask-options {
        grid-template-columns: 1fr;
    }
    
    .timeline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .timeline-item::after {
        display: none;
    }
}

/* Print styles for PDF export */
@media print {
    .nav-controls,
    .progress-bar {
        display: none;
    }
    
    .slide {
        page-break-after: always;
        display: flex !important;
        opacity: 1 !important;
        position: relative;
        height: 100vh;
    }
}


