/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    font-size: 2rem;
    animation: pulse 2s infinite;
}

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #5a67d8;
    margin: 0;
}

.tagline {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
}

.header-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.date, .version {
    font-size: 0.85rem;
    color: #666;
    background: #f7fafc;
    padding: 4px 8px;
    border-radius: 4px;
}

/* Navigation Styles */
.navigation {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 80px;
    z-index: 99;
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto;
    white-space: nowrap;
}

.nav-list li a {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-list li a:hover {
    background: #5a67d8;
    color: white;
    transform: translateY(-2px);
}

/* Main Content Styles */
.main-content {
    background: white;
    margin: 2rem 0;
    border-radius: 16px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.section {
    padding: 3rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.section:last-child {
    border-bottom: none;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-weight: 400;
}

/* Executive Summary Styles */
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.summary-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #5a67d8;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.summary-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.summary-card.problem {
    border-left-color: #e53e3e;
}

.summary-card.solution {
    border-left-color: #38a169;
}

.summary-card.market {
    border-left-color: #3182ce;
}

.summary-card.funding {
    border-left-color: #805ad5;
}

.summary-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

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

.summary-card li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #4a5568;
}

.summary-card strong {
    color: #2d3748;
    font-weight: 600;
}

/* Market Stats Styles */
.market-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-card {
    background: linear-gradient(135deg, #5a67d8, #667eea);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-growth {
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

/* Market Insights Styles */
.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.insight-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.insight-card:hover {
    border-color: #5a67d8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.15);
}

.insight-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2d3748;
}

.insight-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Business Model Styles */
.business-model-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.model-phase {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #5a67d8;
    text-align: center;
}

.model-phase h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.model-phase p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.phase-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.phase-timeline {
    background: #5a67d8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.phase-revenue {
    background: #38a169;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Revenue Cards Styles */
.revenue-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.revenue-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.revenue-card.b2c {
    border-left: 4px solid #38a169;
}

.revenue-card.b2b {
    border-left: 4px solid #3182ce;
}

.revenue-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.revenue-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.revenue-card ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.revenue-card li {
    margin-bottom: 0.75rem;
    color: #4a5568;
    padding-left: 1rem;
    position: relative;
}

.revenue-card li::before {
    content: "•";
    color: #5a67d8;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.revenue-target {
    background: linear-gradient(135deg, #5a67d8, #667eea);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Revenue Streams Styles */
.revenue-streams-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.stream-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #5a67d8;
}

.stream-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.stream-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin: 1.5rem 0 1rem 0;
}

.stream-details ul {
    list-style: none;
    margin-bottom: 1rem;
}

.stream-details li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    padding-left: 1rem;
    position: relative;
}

.stream-details li::before {
    content: "→";
    color: #5a67d8;
    position: absolute;
    left: 0;
}

.conversion-rate {
    background: #e6fffa;
    color: #2c7a7b;
    padding: 0.75rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
    margin-top: 1rem;
}

/* Chart Container */
.chart-container {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 3rem;
    height: 400px;
}

.chart-container canvas {
    max-height: 300px !important;
}

.chart-container h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

/* Competition Styles */
.competition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.competitor-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.competitor-card:hover {
    border-color: #5a67d8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.15);
}

.competitor-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.competitor-details h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin: 1.5rem 0 1rem 0;
}

.competitor-details ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.competitor-details li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    padding-left: 1rem;
    position: relative;
}

.competitor-details li::before {
    content: "•";
    color: #cbd5e0;
    position: absolute;
    left: 0;
}

.advantages li::before {
    content: "✅";
    left: 0;
}

.advantages li {
    color: #38a169;
    font-weight: 500;
}

/* Competitive Positioning */
.competitive-positioning {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.competitive-positioning h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

.positioning-points {
    display: grid;
    gap: 1rem;
}

.position-point {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5a67d8;
}

.position-point strong {
    color: #5a67d8;
}

/* GTM Timeline Styles */
.gtm-timeline {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.timeline-phase {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: start;
}

.phase-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5a67d8, #667eea);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.phase-content {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #5a67d8;
}

.phase-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.phase-objectives, .phase-tactics {
    margin-bottom: 1.5rem;
}

.phase-objectives h4, .phase-tactics h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1rem;
}

.phase-objectives ul, .phase-tactics ul {
    list-style: none;
}

.phase-objectives li, .phase-tactics li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    padding-left: 1rem;
    position: relative;
}

.phase-objectives li::before, .phase-tactics li::before {
    content: "▶";
    color: #5a67d8;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

.phase-targets {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.target-item {
    background: #5a67d8;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Marketing Channels */
.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.channel-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.channel-card:hover {
    border-color: #5a67d8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.15);
}

.channel-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.channel-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Financial Projections */
.financial-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.year-projection {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-top: 4px solid #5a67d8;
}

.year-projection h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1.5rem;
    text-align: center;
}

.projection-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 1.5rem;
}

.revenue-breakdown-year h4, .user-metrics h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 1rem;
}

.revenue-breakdown-year ul, .user-metrics ul {
    list-style: none;
}

.revenue-breakdown-year li, .user-metrics li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.break-even, .profitability, .series-a {
    background: #38a169;
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Investment Breakdown */
.investment-breakdown {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 3rem;
}

.investment-breakdown h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

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

.breakdown-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.breakdown-item:hover {
    border-color: #5a67d8;
    transform: translateY(-3px);
}

.breakdown-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: #5a67d8;
    margin-bottom: 0.5rem;
}

.breakdown-category {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.breakdown-description {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Metrics Dashboard */
.metrics-dashboard {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
}

.metrics-dashboard h3 {
    text-align: center;
    margin-bottom: 2rem;
    color: #2d3748;
    font-weight: 600;
}

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

.metric-card {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Roadmap Styles */
.roadmap-timeline {
    display: grid;
    gap: 2rem;
    margin-bottom: 3rem;
}

.roadmap-item {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 2rem;
    align-items: start;
}

.roadmap-date {
    background: linear-gradient(135deg, #5a67d8, #667eea);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.roadmap-content {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid #5a67d8;
}

.roadmap-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.roadmap-content ul {
    list-style: none;
}

.roadmap-content li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    padding-left: 1rem;
    position: relative;
}

.roadmap-content li::before {
    content: "🎯";
    position: absolute;
    left: 0;
}

/* Future Innovations */
.innovations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.innovation-card {
    background: white;
    border: 2px solid #e2e8f0;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.innovation-card:hover {
    border-color: #5a67d8;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(90, 103, 216, 0.15);
}

.innovation-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 1rem;
}

.innovation-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Vision Statement */
.vision-statement {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.vision-statement h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.vision-statement blockquote {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    opacity: 0.95;
}

/* Footer Styles */
.footer {
    background: #2d3748;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-left .logo {
    margin-bottom: 1rem;
}

.footer-left .logo span {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-left p {
    color: #cbd5e0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #cbd5e0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
}

.footer-bottom p {
    color: #cbd5e0;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeInUp 0.6s ease-out;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-list li a {
        display: block;
        text-align: center;
    }
    
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .summary-grid,
    .market-stats,
    .insights-grid,
    .business-model-overview,
    .revenue-cards,
    .revenue-streams-grid,
    .competition-grid,
    .channels-grid,
    .financial-overview,
    .breakdown-grid,
    .metrics-grid,
    .innovations-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-phase,
    .roadmap-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-number,
    .roadmap-date {
        justify-self: center;
    }
    
    .projection-details {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phase-targets {
        justify-content: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .logo h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .summary-card,
    .stream-card,
    .roadmap-content,
    .phase-content {
        padding: 1.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .navigation,
    .footer {
        display: none;
    }
    
    .main-content {
        margin: 0;
        box-shadow: none;
    }
    
    .section {
        break-inside: avoid;
        page-break-inside: avoid;
    }
    
    * {
        -webkit-print-color-adjust: exact !important;
        color-adjust: exact !important;
        print-color-adjust: exact !important;
    }
}