/* Investor Page Glass Morphism Styles */

/* Base styles */
body {
    background-color: #1a1a1a !important;
}

.investor-page {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0;
    min-height: 100vh;
}

/* Hero Section */
.investor-hero {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.15) 0%,
        rgba(30, 150, 252, 0.10) 50%,
        rgba(123, 68, 193, 0.15) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        0 2px 16px 0 rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hero-headline {
    font-size: 3.5rem;
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    font-weight: 700;
}

.hero-subtext {
    font-size: 1.5rem;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.6;
}

.hero-subtext strong {
    color: #9AD5CA;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    overflow: visible;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    position: relative;
}

.stat-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: block;
    background: rgba(123, 68, 193, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(154, 213, 202, 0.5);
    border-radius: 50%;
    padding: 8px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.stat-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(123, 68, 193, 0.25),
        0 4px 20px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(123, 68, 193, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(235, 235, 235, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Scroll CTA */
.scroll-cta {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #7B44C1;
    color: #EBEBEB;
    text-decoration: none;
    border-radius: 0.5rem;
    border: 1px solid #EBEBEB;
    transition: all 0.3s ease;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.scroll-cta:hover {
    background: linear-gradient(to bottom, #1792F7 5%, #6A3DB3 100%);
    transform: scale(1.05);
    box-shadow: 0px 3px 15px 7px rgba(30, 150, 252, 0.2);
}

.arrow-down {
    display: inline-block;
    margin-left: 0.5rem;
    animation: bounce 2s infinite;
}

/* Insight Section */
.investor-insight {
    background: linear-gradient(135deg,
        rgba(50, 48, 49, 0.35) 0%,
        rgba(30, 30, 30, 0.25) 50%,
        rgba(45, 45, 45, 0.35) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.15),
        0 2px 16px 0 rgba(0, 0, 0, 0.2);
}

.investor-insight h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* New visual elements for reduced text density */
.key-insight {
    text-align: center;
    margin: 2rem 0;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.key-insight h3 {
    color: #9AD5CA;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.key-insight p {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.25rem;
    font-weight: 600;
}

.solution-preview {
    margin: 2rem 0;
}

.solution-preview h4 {
    color: rgba(235, 235, 235, 0.9);
    text-align: center;
    margin-bottom: 1.5rem;
}

.game-advantages {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.advantage {
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.3), rgba(123, 68, 193, 0.3));
    padding: 1rem 2rem;
    border-radius: 25px;
    color: #9AD5CA;
    font-weight: 600;
    border: 1px solid rgba(154, 213, 202, 0.5);
    backdrop-filter: blur(10px);
}

.pattern-points {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.pattern-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    min-width: 200px;
}

.pattern-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pattern-icon-svg {
    width: 48px;
    height: 48px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
}

.pattern-item span:last-child {
    color: rgba(235, 235, 235, 0.9);
    font-weight: 600;
}

.business-summary {
    text-align: center;
    margin-bottom: 3rem;
}

.key-differentiator {
    margin-top: 1rem;
    padding: 1rem 2rem;
    background: rgba(154, 213, 202, 0.2);
    border-radius: 25px;
    display: inline-block;
    color: #9AD5CA;
    font-size: 1.125rem;
}

.network-summary {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
}

.network-summary strong {
    color: #9AD5CA;
}

/* Value Flow Visualization */
.network-intro {
    text-align: center;
    color: rgba(235, 235, 235, 0.8);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.value-flow-visualization {
    max-width: 900px;
    margin: 0 auto;
}

.flow-stage {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.stage-header {
    text-align: center;
    margin-bottom: 2rem;
}

.stage-header h4 {
    color: #9AD5CA;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.stage-subtitle {
    color: rgba(235, 235, 235, 0.7);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consumer-visual, .producer-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.consumer-group, .producer-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.flow-icon {
    width: 80px;
    height: 80px;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
    margin-bottom: 1rem;
}

.consumer-stats, .producer-stats {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.stat-label {
    color: rgba(235, 235, 235, 0.8);
    font-size: 1rem;
}

.arrow-right {
    font-size: 3rem;
    color: #9AD5CA;
    flex: 0;
}

.value-consumed, .value-produced {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 200px;
}

.value-label {
    color: rgba(235, 235, 235, 0.9);
    font-weight: 600;
    text-align: center;
    margin-top: 1rem;
}

.production-metrics {
    text-align: center;
    margin-top: 1rem;
}

.revenue-share {
    display: block;
    color: #9AD5CA;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.stage-transition {
    text-align: center;
    margin: 3rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(154, 213, 202, 0.15), rgba(123, 68, 193, 0.15));
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
}

.transition-arrow {
    font-size: 3rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.transition-trigger {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    line-height: 1.4;
}

.transition-trigger strong {
    color: #9AD5CA;
}

.network-loop {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: rgba(123, 68, 193, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 68, 193, 0.4);
}

.loop-arrow {
    font-size: 4rem;
    color: #9AD5CA;
    margin-bottom: 1rem;
}

.loop-explanation {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    line-height: 1.4;
}

.loop-explanation strong {
    color: #9AD5CA;
}

.network-metrics {
    display: flex;
    justify-content: space-around;
    gap: 2rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.metric-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    flex: 1;
    min-width: 200px;
}

.metric-stat {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    margin-bottom: 0.5rem;
}

.metric-desc {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .consumer-visual, .producer-visual {
        flex-direction: column;
        text-align: center;
    }
    
    .arrow-right {
        transform: rotate(90deg);
        margin: 1rem 0;
    }
    
    .network-metrics {
        flex-direction: column;
    }
}

.insight-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.insight-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.insight-card.highlight {
    background: rgba(154, 213, 202, 0.1);
    border-color: rgba(154, 213, 202, 0.3);
}

.insight-card h3 {
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.insight-card li {
    color: rgba(235, 235, 235, 0.8);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.insight-card li:last-child {
    border-bottom: none;
}

.insight-reveal {
    background: rgba(123, 68, 193, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 68, 193, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.reveal-text {
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.reveal-emphasis {
    font-size: 1.1rem;
    color: rgba(235, 235, 235, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.reveal-emphasis strong {
    color: #9AD5CA;
}

/* Market Validation Section */
.investor-market {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.15) 0%,
        rgba(30, 150, 252, 0.10) 50%,
        rgba(123, 68, 193, 0.15) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.market-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

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

.validation-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.validation-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(154, 213, 202, 0.25),
        0 4px 20px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(154, 213, 202, 0.3);
}

.validation-card h3 {
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.validation-metric {
    font-size: 2rem;
    font-weight: 700;
    color: #9AD5CA;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.validation-detail {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
    line-height: 1.4;
}

.market-insight {
    background: rgba(154, 213, 202, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(154, 213, 202, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.market-insight h3 {
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.market-insight p {
    font-size: 1.125rem;
    color: rgba(235, 235, 235, 0.9);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.market-insight strong {
    color: #9AD5CA;
}

/* Solution Section */
.investor-solution {
    background: linear-gradient(135deg,
        rgba(30, 150, 252, 0.15) 0%,
        rgba(123, 68, 193, 0.10) 50%,
        rgba(30, 150, 252, 0.15) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.solution-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.solution-intro {
    text-align: center;
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(123, 68, 193, 0.25),
        0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(123, 68, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(154, 213, 202, 0.3);
    border-radius: 50%;
    padding: 10px;
}

.feature-icon-svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon-svg {
    transform: scale(1.1);
}

.feature-card h3 {
    color: #EBEBEB;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.feature-card p {
    color: rgba(235, 235, 235, 0.8);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Platform Preview */
.platform-preview {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
}

.platform-preview h3 {
    color: #EBEBEB;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.demo-container {
    position: relative;
    display: inline-block;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

.demo-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
}

.demo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.demo-container:hover .demo-overlay {
    opacity: 1;
}

.demo-cta {
    padding: 1rem 2rem;
    background: #7B44C1;
    color: #EBEBEB;
    text-decoration: none;
    border-radius: 0.5rem;
    border: 1px solid #EBEBEB;
    font-weight: 700;
    transition: all 0.3s ease;
}

.demo-cta:hover {
    background: linear-gradient(to bottom, #1792F7 5%, #6A3DB3 100%);
    transform: scale(1.05);
}

/* Business Model Section - Enhanced */
.investor-business {
    background: linear-gradient(135deg,
        rgba(50, 48, 49, 0.35) 0%,
        rgba(30, 30, 30, 0.25) 50%,
        rgba(45, 45, 45, 0.35) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.business-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

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

.business-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
}

.business-card h3 {
    color: #EBEBEB;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Metrics Display */
.metrics {
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.metric {
    text-align: center;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.metric-label {
    display: block;
    font-size: 0.875rem;
    color: rgba(235, 235, 235, 0.7);
    margin-top: 0.25rem;
}

.metric.highlight .metric-value {
    color: #7B44C1;
    font-size: 2.5rem;
}

.business-intro {
    text-align: center;
    font-size: 1.125rem;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* Metrics Highlight */
.metrics-highlight {
    background: linear-gradient(135deg,
        rgba(154, 213, 202, 0.15) 0%,
        rgba(123, 68, 193, 0.10) 50%,
        rgba(154, 213, 202, 0.15) 100%
    );
    backdrop-filter: blur(15px);
    border: 1px solid rgba(154, 213, 202, 0.3);
    border-radius: 1.5rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.metric-showcase {
    display: flex;
    align-items: center;
    gap: 3rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metric-circle {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle,
        rgba(154, 213, 202, 0.3) 0%,
        rgba(123, 68, 193, 0.2) 100%
    );
    border: 3px solid rgba(154, 213, 202, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.metric-big {
    font-size: 3.5rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.metric-desc {
    font-size: 1rem;
    color: rgba(235, 235, 235, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.metric-detail {
    flex: 1;
    min-width: 300px;
}

.metric-detail p {
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

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

.metric-detail li {
    color: rgba(235, 235, 235, 0.8);
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.metric-detail li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #9AD5CA;
}

/* Revenue Model */
.revenue-model {
    margin-bottom: 3rem;
}

.revenue-model h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.revenue-stream {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.revenue-stream:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(123, 68, 193, 0.25),
        0 4px 20px 0 rgba(0, 0, 0, 0.3);
    border-color: rgba(123, 68, 193, 0.3);
}

.stream-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-svg {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
    transition: all 0.3s ease;
}

.revenue-stream:hover .icon-svg {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%) contrast(100%);
    transform: scale(1.1);
}

.revenue-stream h4 {
    color: #EBEBEB;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.stream-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9AD5CA;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.stream-detail {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
}

/* Network Effects Visualization */
.network-effects-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 3rem;
    margin-bottom: 3rem;
}

.network-effects-section h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.network-visual {
    position: relative;
    height: 400px;
    margin: 2rem 0;
}

.network-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: radial-gradient(circle,
        rgba(123, 68, 193, 0.4) 0%,
        rgba(123, 68, 193, 0.1) 100%
    );
    border: 2px solid rgba(123, 68, 193, 0.6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #EBEBEB;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.network-node {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(154, 213, 202, 0.5);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.network-node:hover {
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(154, 213, 202, 0.5);
}

.node-families {
    top: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-creators {
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
}

.node-content {
    bottom: 10%;
    left: 50%;
    transform: translateX(-50%);
}

.node-outcomes {
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
}

.node-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.node-label {
    font-size: 0.875rem;
    color: rgba(235, 235, 235, 0.8);
}

.network-explanation {
    text-align: center;
    color: rgba(235, 235, 235, 0.9);
    font-size: 1.125rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Growth Timeline */
.growth-section {
    margin-bottom: 3rem;
}

.growth-section h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.growth-timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 2rem 0;
    margin-bottom: 3rem;
}

.growth-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(to right,
        rgba(123, 68, 193, 0.3),
        rgba(154, 213, 202, 0.3)
    );
}

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

.timeline-marker {
    width: 20px;
    height: 20px;
    background: #7B44C1;
    border: 3px solid #9AD5CA;
    border-radius: 50%;
    margin: 0 auto 1rem;
    position: relative;
    z-index: 1;
}

.timeline-content h4 {
    color: #EBEBEB;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.timeline-revenue {
    font-size: 1.5rem;
    font-weight: 700;
    color: #9AD5CA;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.timeline-content p {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
}

/* Comparison Section */
.comparison-section {
    margin-bottom: 3rem;
}

.comparison-section h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

/* Moats Section */
.moats-section {
    background: rgba(123, 68, 193, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 68, 193, 0.3);
    border-radius: 1rem;
    padding: 3rem;
}

.moats-section h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

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

.moat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.75rem;
    padding: 1.5rem;
    transition: all 0.3s ease;
    text-align: center;
}

.moat-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    filter: brightness(0) saturate(100%) invert(89%) sepia(13%) saturate(1173%) hue-rotate(112deg) brightness(92%) contrast(92%);
    opacity: 0.8;
}

.moat-card:hover {
    transform: translateY(-3px);
    border-color: rgba(154, 213, 202, 0.3);
}

.moat-card h4 {
    color: #9AD5CA;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.moat-card p {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(154, 213, 202, 0.4);
    }
    70% {
        box-shadow: 0 0 0 20px rgba(154, 213, 202, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(154, 213, 202, 0);
    }
}

/* Flywheel - Remove old styles */
.flywheel {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.flywheel-step {
    background: rgba(123, 68, 193, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(123, 68, 193, 0.3);
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    color: rgba(235, 235, 235, 0.9);
    font-size: 0.875rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.flywheel-arrow {
    color: #9AD5CA;
    font-size: 1.5rem;
}

/* Revenue List */
.revenue-list {
    list-style: none;
    padding: 0;
}

.revenue-list li {
    color: rgba(235, 235, 235, 0.8);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.revenue-list li:last-child {
    border-bottom: none;
}

/* Growth Projection */
.growth-projection {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
}

.growth-projection h3 {
    color: #EBEBEB;
    text-align: center;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.projection-chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-around;
    height: 300px;
    padding: 0 1rem;
}

.year-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    background: linear-gradient(to top, rgba(123, 68, 193, 0.3), rgba(154, 213, 202, 0.3));
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem 0.5rem 0 0;
    padding: 1rem 0.5rem;
    min-width: 100px;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.year-marker.animate-in {
    opacity: 1;
    transform: translateY(0);
}

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

.year-marker span {
    display: block;
    text-align: center;
    margin: 0.25rem 0;
}

.year {
    color: rgba(235, 235, 235, 0.7);
    font-size: 0.875rem;
}

.revenue {
    color: #9AD5CA;
    font-weight: 700;
    font-size: 1.25rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.families {
    color: rgba(235, 235, 235, 0.6);
    font-size: 0.75rem;
}

/* Investment Opportunity Section */
.investor-opportunity {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.15) 0%,
        rgba(30, 150, 252, 0.10) 50%,
        rgba(123, 68, 193, 0.15) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.opportunity-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

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

.opportunity-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
}

.opportunity-card.highlight {
    background: rgba(123, 68, 193, 0.15);
    border-color: rgba(123, 68, 193, 0.3);
}

.opportunity-card h3 {
    color: #EBEBEB;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.round-details p {
    margin: 0.5rem 0;
    color: rgba(235, 235, 235, 0.8);
}

.amount {
    font-size: 2rem;
    font-weight: 700;
    color: #9AD5CA;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.funds-list, .milestone-list {
    list-style: none;
    padding: 0;
}

.funds-list li, .milestone-list li {
    color: rgba(235, 235, 235, 0.8);
    padding: 0.5rem 0;
}

.milestone-list li {
    padding-left: 1.5rem;
}

/* Investor Quote */
.investor-quote {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-left: 4px solid #9AD5CA;
    padding: 2rem;
    margin-top: 2rem;
    border-radius: 0.5rem;
}

.investor-quote blockquote {
    font-size: 1.25rem;
    font-style: italic;
    color: rgba(235, 235, 235, 0.9);
    margin: 0 0 1rem 0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.investor-quote cite {
    color: rgba(235, 235, 235, 0.7);
    font-style: normal;
}

/* Team Section */
.investor-team {
    background: linear-gradient(135deg,
        rgba(50, 48, 49, 0.35) 0%,
        rgba(30, 30, 30, 0.25) 50%,
        rgba(45, 45, 45, 0.35) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.team-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.team-intro {
    text-align: center;
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 12px 40px 0 rgba(123, 68, 193, 0.25),
        0 4px 20px 0 rgba(0, 0, 0, 0.3);
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid rgba(154, 213, 202, 0.5);
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.3);
}

.team-member h3 {
    color: #EBEBEB;
    margin-bottom: 0.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.role {
    color: #9AD5CA;
    font-size: 0.875rem;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.bio {
    color: rgba(235, 235, 235, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
}

/* CTA Section */
.investor-cta {
    background: linear-gradient(135deg,
        rgba(123, 68, 193, 0.25) 0%,
        rgba(30, 150, 252, 0.20) 50%,
        rgba(123, 68, 193, 0.25) 100%
    );
    backdrop-filter: blur(20px) saturate(1.2);
    -webkit-backdrop-filter: blur(20px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.2),
        0 2px 16px 0 rgba(0, 0, 0, 0.3);
}

.cta-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(235, 235, 235, 0.9);
    margin-bottom: 3rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.cta-actions {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.primary-cta, .secondary-cta {
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 0.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-block;
}

.primary-cta {
    background: #7B44C1;
    color: #EBEBEB;
    border: 1px solid #EBEBEB;
}

.primary-cta:hover {
    background: linear-gradient(to bottom, #1792F7 5%, #6A3DB3 100%);
    transform: scale(1.05);
    box-shadow: 0px 3px 15px 7px rgba(30, 150, 252, 0.2);
}

.secondary-cta {
    background: transparent;
    color: #EBEBEB;
    border: 2px solid #9AD5CA;
}

.secondary-cta:hover {
    background: rgba(154, 213, 202, 0.1);
    transform: scale(1.05);
}

.contact-info {
    color: rgba(235, 235, 235, 0.8);
}

.email-link {
    color: #9AD5CA;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.email-link:hover {
    text-decoration: underline;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: linear-gradient(135deg,
        rgba(50, 48, 49, 0.95) 0%,
        rgba(30, 30, 30, 0.90) 50%,
        rgba(45, 45, 45, 0.95) 100%
    );
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 10% auto;
    padding: 3rem;
    width: 90%;
    max-width: 500px;
    border-radius: 1rem;
    position: relative;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.3);
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    position: absolute;
    top: 1rem;
    right: 1.5rem;
}

.close:hover,
.close:focus {
    color: #EBEBEB;
}

.modal-content h3 {
    color: #EBEBEB;
    margin-bottom: 1rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.modal-content p {
    color: rgba(235, 235, 235, 0.8);
    margin-bottom: 2rem;
}

.deck-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.deck-form input {
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    color: #EBEBEB;
    font-size: 1rem;
}

.deck-form input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.1);
    border-color: #9AD5CA;
    box-shadow: 0 0 0 3px rgba(154, 213, 202, 0.1);
}

.deck-form button {
    padding: 0.75rem 1.5rem;
    background: #7B44C1;
    color: #EBEBEB;
    border: 1px solid #EBEBEB;
    border-radius: 0.5rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.deck-form button:hover {
    background: linear-gradient(to bottom, #1792F7 5%, #6A3DB3 100%);
    transform: scale(1.05);
}

/* Data Visualization Section */
.investor-data-viz {
    background: linear-gradient(135deg,
        rgba(50, 48, 49, 0.35) 0%,
        rgba(30, 30, 30, 0.25) 50%,
        rgba(45, 45, 45, 0.35) 100%
    );
    backdrop-filter: blur(15px) saturate(1.2);
    -webkit-backdrop-filter: blur(15px) saturate(1.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin: 2rem;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.data-viz-content h2 {
    color: #EBEBEB;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
}

/* Chart Containers */
.chart-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

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

.chart-container {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    padding: 2rem;
    position: relative;
    min-height: 300px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.chart-container.chart-visible {
    opacity: 1;
    transform: translateY(0);
}

.chart-container.large-chart {
    min-height: 400px;
}

.market-growth-chart {
    margin-top: 3rem;
}

.chart-container canvas {
    max-height: 400px;
}

.insight-callout {
    background: rgba(123, 68, 193, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(123, 68, 193, 0.3);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
}

.insight-callout p {
    font-size: 1.125rem;
    color: rgba(235, 235, 235, 0.9);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    margin: 0;
}

/* Mobile Chart Adjustments */
@media (max-width: 768px) {
    .chart-grid,
    .comparison-charts {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .chart-container {
        min-height: 250px;
    }
    
    .chart-container canvas {
        max-height: 300px;
    }
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    /* Metric Highlight Mobile */
    .metric-showcase {
        flex-direction: column;
        gap: 2rem;
    }
    
    .metric-circle {
        width: 150px;
        height: 150px;
    }
    
    .metric-big {
        font-size: 2.5rem;
    }
    
    /* Revenue Streams Mobile */
    .revenue-breakdown {
        grid-template-columns: 1fr;
    }
    
    /* Network Visual Mobile */
    .network-visual {
        height: 500px;
    }
    
    .network-node {
        width: 90px;
        height: 90px;
    }
    
    .node-number {
        font-size: 1.25rem;
    }
    
    .node-label {
        font-size: 0.75rem;
    }
    
    .network-center {
        width: 120px;
        height: 120px;
        font-size: 0.875rem;
    }
    
    /* Timeline Mobile */
    .growth-timeline {
        flex-direction: column;
        gap: 2rem;
    }
    
    .growth-timeline::before {
        top: 0;
        left: 30px;
        right: auto;
        height: 100%;
        width: 2px;
    }
    
    .timeline-item {
        text-align: left;
        padding-left: 60px;
    }
    
    .timeline-marker {
        position: absolute;
        left: 20px;
        top: 0;
    }
    
    /* Moats Grid Mobile */
    .moats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .investor-page {
        margin: 0;
    }
    
    .investor-hero,
    .investor-insight,
    .investor-solution,
    .investor-business,
    .investor-opportunity,
    .investor-team,
    .investor-cta {
        margin: 1rem;
        padding: 2rem 1.5rem;
        backdrop-filter: blur(10px) saturate(1.1);
        -webkit-backdrop-filter: blur(10px) saturate(1.1);
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subtext {
        font-size: 1.125rem;
    }
    
    .insight-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats,
    .solution-features,
    .business-grid,
    .opportunity-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .projection-chart {
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .year-marker {
        min-width: 80px;
        font-size: 0.875rem;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .primary-cta, .secondary-cta {
        width: 100%;
        max-width: 300px;
    }
}

/* Fallback for browsers without backdrop-filter */
@supports not (backdrop-filter: blur(15px)) {
    .investor-hero {
        background: linear-gradient(135deg,
            rgba(123, 68, 193, 0.9) 0%,
            rgba(30, 150, 252, 0.85) 50%,
            rgba(123, 68, 193, 0.9) 100%
        );
    }
    
    .investor-insight,
    .investor-business,
    .investor-team {
        background: rgba(50, 48, 49, 0.95);
    }
    
    .investor-solution,
    .investor-opportunity {
        background: linear-gradient(135deg,
            rgba(30, 150, 252, 0.9) 0%,
            rgba(123, 68, 193, 0.85) 50%,
            rgba(30, 150, 252, 0.9) 100%
        );
    }
    
    .stat-card,
    .feature-card,
    .business-card,
    .opportunity-card,
    .team-member {
        background: rgba(50, 48, 49, 0.9);
    }
}