/* Investor Presentation Deck Styles */

.investor-deck {
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', sans-serif;
    background: #1a1a1a;
    color: white;
    overflow: hidden;
}

.presentation-container {
    width: 100vw;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateX(100%);
    transition: all 0.5s ease-in-out;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.slide.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content {
    max-width: 1200px;
    padding: 40px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

.slide h1 {
    font-size: 3rem;
    margin-bottom: 30px;
    color: #ff6b35;
    font-weight: 700;
}

.slide h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.slide h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4a90e2;
    font-weight: 600;
}

.slide h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: white;
    font-weight: 500;
}

/* Title Slide */
.title-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.slide-logo {
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    animation: fadeIn 1s ease-in;
}

.subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-info {
    margin-top: 60px;
    font-size: 1.1rem;
    color: #aaa;
}

.contact-info p {
    margin: 5px 0;
}

/* Two Column Layout */
.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
    text-align: left;
}

.left-column, .right-column {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.two-column ul {
    list-style: none;
    padding: 0;
}

.two-column li {
    margin: 15px 0;
    padding-left: 25px;
    position: relative;
    line-height: 1.5;
}

.two-column li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.highlight-box {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.highlight-box h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.highlight-box p {
    color: white;
    font-size: 1.2rem;
    margin: 0;
}

/* Market Stats */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-card h3 {
    font-size: 2.5rem;
    color: #ff6b35;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    color: #ccc;
    margin: 0;
}

.market-segments {
    margin-top: 40px;
}

.segment-bars {
    max-width: 600px;
    margin: 20px auto;
}

.segment {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.segment .label {
    width: 150px;
    text-align: right;
    padding-right: 20px;
    font-weight: 500;
}

.segment .bar {
    height: 30px;
    background: linear-gradient(90deg, #ff6b35 0%, #4a90e2 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    padding: 0 15px;
    color: white;
    font-weight: bold;
    min-width: 50px;
}

/* Problem Items */
.problem-solution {
    max-width: 800px;
    margin: 0 auto;
}

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

.problem-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: all 0.3s ease;
}

.problem-item:hover {
    background: rgba(255, 107, 53, 0.2);
    transform: translateY(-5px);
}

.problem-item i {
    font-size: 2rem;
    color: #ff6b35;
    margin-bottom: 15px;
}

.problem-item h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.problem-item p {
    color: #ccc;
    line-height: 1.5;
    margin: 0;
}

/* Solution Grid */
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.solution-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.solution-item:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-5px);
}

.solution-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 20px;
}

.solution-item h3 {
    color: white;
    margin-bottom: 15px;
}

.solution-item p {
    color: #ccc;
    line-height: 1.5;
}

.competitive-advantage {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 40px;
}

.competitive-advantage h3 {
    color: white;
    margin-bottom: 20px;
}

.competitive-advantage ul {
    list-style: none;
    padding: 0;
}

.competitive-advantage li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.competitive-advantage li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #50c878;
}

/* Revenue Model */
.revenue-chart {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 30px 0;
}

.revenue-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

.revenue-item:hover {
    transform: translateY(-5px);
}

.revenue-item .percentage {
    font-size: 2rem;
    font-weight: bold;
    color: #ff6b35;
    margin-bottom: 10px;
}

.revenue-item .label {
    font-weight: 600;
    margin-bottom: 5px;
}

.revenue-item .description {
    font-size: 0.9rem;
    color: #ccc;
}

.partnership-tiers {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.tier {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    transition: transform 0.3s ease;
}

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

.tier h4 {
    color: #4a90e2;
    margin-bottom: 10px;
}

.tier p {
    color: #ccc;
    margin: 0;
    line-height: 1.4;
}

/* Financial Chart */
.year-projections {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.year {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    flex: 1;
    min-width: 180px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.year h3 {
    color: white;
    margin-bottom: 15px;
}

.year .revenue {
    color: #50c878;
    font-weight: bold;
    margin: 10px 0;
}

.year .profit {
    color: #ff6b35;
    font-weight: bold;
    margin: 10px 0;
}

.year .loss {
    color: #ff4444;
    font-weight: bold;
    margin: 10px 0;
}

.year .valuation {
    color: #4a90e2;
    font-weight: bold;
    margin: 10px 0;
}

.key-metrics {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 40px;
}

.metric {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
}

.metric h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.metric p {
    color: white;
    margin: 0;
}

/* Fund Allocation */
.allocation-chart {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.allocation-item {
    display: flex;
    align-items: center;
    padding: 20px;
    border-radius: 15px;
    color: white;
    transition: transform 0.3s ease;
}

.allocation-item:hover {
    transform: translateX(10px);
}

.allocation-item .percentage {
    font-size: 2rem;
    font-weight: bold;
    margin-right: 20px;
    min-width: 60px;
}

.allocation-item .category {
    font-weight: 600;
    margin-right: 20px;
    min-width: 200px;
}

.allocation-item .amount {
    font-weight: bold;
    margin-right: 20px;
    min-width: 120px;
}

.allocation-item .details {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.team-member {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    text-align: left;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.member-header h3 {
    color: white;
    margin-bottom: 5px;
}

.member-header .title {
    color: #ff6b35;
    font-weight: 600;
    margin-bottom: 15px;
}

.member-details p {
    color: #ccc;
    line-height: 1.5;
    margin: 8px 0;
}

/* Technology Platform */
.tech-stack {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.tech-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.tech-item:hover {
    background: rgba(74, 144, 226, 0.2);
    transform: translateY(-5px);
}

.tech-item i {
    font-size: 2.5rem;
    color: #4a90e2;
    margin-bottom: 15px;
}

.tech-item h4 {
    color: white;
    margin-bottom: 10px;
}

.tech-item p {
    color: #ccc;
    line-height: 1.4;
}

.tech-advantages {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    margin-top: 30px;
}

.tech-advantages h3 {
    color: white;
    margin-bottom: 20px;
}

.tech-advantages ul {
    list-style: none;
    padding: 0;
}

.tech-advantages li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.tech-advantages li::before {
    content: "⚡";
    position: absolute;
    left: 0;
    color: #ffa500;
}

/* Go-to-Market Phases */
.gtm-phases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.phase {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.phase h3 {
    color: #4a90e2;
    margin-bottom: 20px;
}

.phase ul {
    list-style: none;
    padding: 0;
}

.phase li {
    margin: 10px 0;
    padding-left: 25px;
    position: relative;
}

.phase li::before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ff6b35;
}

.marketing-channels {
    margin-top: 40px;
}

.channels {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;
}

.channel {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

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

.channel i {
    font-size: 2rem;
    color: #50c878;
    margin-bottom: 10px;
}

.channel p {
    color: white;
    margin: 0;
    font-weight: 500;
}

/* Risk Matrix */
.risk-matrix {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.risk-category {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.risk-category h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    text-align: center;
}

.risk-item {
    margin: 20px 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.risk-item h4 {
    color: white;
    margin-bottom: 10px;
}

.risk-item .mitigation {
    color: #50c878;
    font-style: italic;
    margin: 0;
}

/* Investment Highlight */
.investment-highlight {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.3);
}

.investment-highlight h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

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

.term {
    background: rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 15px;
    text-align: center;
}

.term h3 {
    color: white;
    margin-bottom: 10px;
}

.term p {
    color: white;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 0;
}

.funding-rounds {
    margin-top: 40px;
}

.round {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 15px;
    margin: 15px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.3s ease;
}

.round:hover {
    transform: translateX(10px);
}

.round h4 {
    color: #4a90e2;
    margin: 0;
}

.round p {
    color: #ccc;
    margin: 0;
}

/* Contact Section */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin: 40px 0;
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.contact-info h3 {
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    color: #ccc;
    margin: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: #ff6b35;
    width: 20px;
}

.next-steps {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
}

.next-steps h3 {
    color: white;
    margin-bottom: 20px;
}

.next-steps ol {
    color: #ccc;
    line-height: 1.8;
}

.next-steps li {
    margin: 10px 0;
}

.thank-you {
    text-align: center;
    margin-top: 40px;
}

.thank-you h2 {
    color: #ff6b35;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.thank-you p {
    color: #ccc;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-button {
    margin-top: 20px;
}

.cta-button a {
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s ease;
    display: inline-block;
}

.cta-button a:hover {
    transform: translateY(-3px);
}

/* Navigation */
.navigation {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(0, 0, 0, 0.8);
    padding: 15px 25px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.nav-btn {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff6b35;
    transform: scale(1.1);
}

.slide-indicator {
    color: white;
    font-weight: bold;
    font-size: 1.1rem;
}

.presentation-controls {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 1000;
}

.control-btn {
    background: rgba(0, 0, 0, 0.8);
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.control-btn:hover {
    background: #ff6b35;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .slide-content {
        padding: 20px;
    }
    
    .slide h1 {
        font-size: 2rem;
    }
    
    .slide h2 {
        font-size: 1.5rem;
    }
    
    .two-column {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .market-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .year-projections {
        flex-direction: column;
    }
    
    .investment-terms {
        grid-template-columns: 1fr;
    }
    
    .contact-section {
        grid-template-columns: 1fr;
    }
    
    .navigation {
        bottom: 20px;
        padding: 10px 15px;
    }
    
    .presentation-controls {
        top: 20px;
        right: 20px;
    }
}

@media (max-width: 480px) {
    .slide-content {
        padding: 15px;
    }
    
    .slide h1 {
        font-size: 1.5rem;
    }
    
    .market-stats {
        grid-template-columns: 1fr;
    }
    
    .solution-grid,
    .team-grid,
    .tech-stack {
        grid-template-columns: 1fr;
    }
    
    .channels {
        flex-direction: column;
    }
    
    .funding-rounds .round {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Fullscreen Mode */
.fullscreen .presentation-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}

.fullscreen .navigation {
    background: rgba(0, 0, 0, 0.9);
}

.fullscreen .presentation-controls {
    background: rgba(0, 0, 0, 0.9);
    padding: 5px;
    border-radius: 10px;
}

/* Print Styles */
@media print {
    .navigation,
    .presentation-controls {
        display: none;
    }
    
    .slide {
        position: relative;
        page-break-after: always;
        transform: none;
        opacity: 1;
    }
    
    .investor-deck {
        background: white;
        color: black;
    }
    
    .slide {
        background: white;
        color: black;
    }
}