/* Investor Page Styles */

/* Investor Hero Section */
.investor-hero {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.investor-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(99, 102, 241, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.hero-stat {
    text-align: center;
}

.hero-stat .stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

.hero-stat .stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
}

.investment-chart-preview {
    padding: 2rem;
    height: 300px;
}

.investment-chart-preview h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

/* Market Overview */
.market-overview {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.market-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.market-card {
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.market-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.market-card:hover::before {
    transform: scaleX(1);
}

.market-card:hover {
    transform: translateY(-10px);
}

.market-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.market-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.market-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.5;
}

.market-growth {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-block;
}

/* Investment Opportunity */
.investment-opportunity {
    padding: 6rem 0;
}

.opportunity-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.value-proposition,
.funding-details {
    padding: 2.5rem;
}

.value-proposition h3,
.funding-details h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
}

.proposition-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.proposition-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.proposition-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.proposition-text p {
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Funding Details */
.funding-round {
    margin-bottom: 2rem;
}

.round-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.round-label {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
}

.round-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.round-purpose h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.purpose-breakdown {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.purpose-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.purpose-item > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.purpose-label {
    font-weight: 500;
    color: var(--text-primary);
}

.purpose-percentage {
    font-weight: 600;
    color: var(--text-secondary);
}

.purpose-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.purpose-fill {
    height: 100%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 4px;
    transition: width 0.3s ease;
}

/* KPI Dashboard */
.kpi-dashboard {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.kpi-card {
    padding: 2rem;
    transition: all 0.3s ease;
}

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

.kpi-card.span-2 {
    grid-column: span 2;
}

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

.kpi-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
}

.kpi-period select,
.kpi-metric {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.85rem;
}

.kpi-metric {
    display: flex;
    flex-direction: column;
    text-align: right;
    padding: 0.5rem 0;
    background: none;
    border: none;
}

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

.metric-value {
    font-weight: 600;
    color: var(--text-primary);
}

.metric-value.negative {
    color: #ef4444;
}

.kpi-value {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1rem;
}

.value-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.value-change {
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
}

.value-change.positive {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.value-change.negative {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.chart-container {
    height: 200px;
    margin-top: 1rem;
}

/* Market Penetration Circle */
.penetration-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 200px;
}

.penetration-circle {
    position: relative;
    width: 150px;
    height: 150px;
}

.penetration-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

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

.penetration-percentage {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
}

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

/* Retention Bars */
.retention-bars {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.retention-bar {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.bar-label {
    width: 60px;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.bar-fill {
    flex: 1;
    height: 8px;
    background: linear-gradient(90deg, #10b981, #059669);
    border-radius: 4px;
    transition: width 0.3s ease;
}

.bar-value {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

/* Economics Summary */
.economics-summary {
    display: flex;
    gap: 2rem;
}

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

.economics-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: block;
}

.economics-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
}

/* Competitive Advantage */
.competitive-advantage {
    padding: 6rem 0;
}

.comparison-table {
    padding: 0;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    color: var(--text-primary);
}

.comparison-table th.highlight,
.comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.1);
    border-left: 3px solid #6366f1;
}

.comparison-table td {
    color: var(--text-secondary);
}

.check-icon {
    color: #10b981;
    margin-right: 0.5rem;
}

.minus-icon {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.x-icon {
    color: #ef4444;
    margin-right: 0.5rem;
}

/* Financial Projections */
.financial-projections {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(5, 150, 105, 0.05) 100%);
}

.projections-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.projections-chart {
    padding: 2rem;
}

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

.chart-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.scenario-toggle {
    display: flex;
    gap: 0.5rem;
}

.scenario-btn {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-secondary);
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.scenario-btn.active,
.scenario-btn:hover {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-color: transparent;
}

.projections-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metric-card {
    padding: 1.5rem;
}

.metric-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.metric-scenarios {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.scenario {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.scenario-value {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Team & Advisory */
.team-advisory {
    padding: 6rem 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.team-member {
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

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

.member-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
}

.photo-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.member-info h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.member-role {
    color: #6366f1;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.member-achievements {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.achievement {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Contact Investors */
.contact-investors {
    padding: 6rem 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.contact-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-primary);
}

.benefit-item i {
    color: #6366f1;
    font-size: 1.25rem;
}

.investor-contact-form {
    padding: 2.5rem;
}

.investor-contact-form h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 2rem;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-primary);
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6366f1;
    background: rgba(255, 255, 255, 0.15);
}

.checkbox-group {
    margin: 1.5rem 0;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-color: #6366f1;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .opportunity-content,
    .projections-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .kpi-card.span-2 {
        grid-column: span 1;
    }
    
    .economics-summary {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .market-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 0.5rem;
    }
}

/* Dark mode adjustments */
[data-theme="dark"] .market-card,
[data-theme="dark"] .kpi-card,
[data-theme="dark"] .value-proposition,
[data-theme="dark"] .funding-details,
[data-theme="dark"] .team-member,
[data-theme="dark"] .investor-contact-form,
[data-theme="dark"] .investment-chart-preview,
[data-theme="dark"] .comparison-table,
[data-theme="dark"] .projections-chart,
[data-theme="dark"] .metric-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .comparison-table th {
    background: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .comparison-table th.highlight,
[data-theme="dark"] .comparison-table td.highlight {
    background: rgba(99, 102, 241, 0.15);
}

