/* Investors Page - Complete Override Styles */

/* Important overrides to ensure our styles take precedence */
.investors-page {
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.6 !important;
    color: #1d0c46 !important;
    background: #ffffff !important;
}

/* Override any conflicting container styles */
.investors-page .container {
    max-width: 1800px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
    width: 100% !important;
}

/* Override any conflicting main content styles */
.investors-page .main-content {
    margin: 0 !important;
    padding: 0 !important;
}

.investors-page * {
    box-sizing: border-box;
}

/* Mobile-first optimizations */
@media (max-width: 768px) {
    .investors-page {
        -webkit-text-size-adjust: 100%;
        -webkit-tap-highlight-color: transparent;
    }
    
    .question-card,
    .benefit-card {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
    }
    
    .cta-button {
        -webkit-tap-highlight-color: transparent;
        touch-action: manipulation;
        min-height: 44px; /* iOS recommended touch target size */
    }
}

/* Hero Section */
.investors-page .investors-hero {
    background: linear-gradient(135deg, #ffffff 0%, #DDE2EE 50%, #ffffff 100%) !important;
    padding: 120px 0 80px !important;
    position: relative !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
}

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

.investors-hero .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    gap: 60px;
    position: relative;
}

.investors-hero .hero-text {
    text-align: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.investors-hero .hero-text h1 {
    font-size: 3.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: #1d0c46;
    text-align: center;
}

.investors-hero .hero-text .hero-subheadline {
    font-size: 1.25rem;
    color: #6b5b7a;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}


/* Content Sections */
.investors-page .investor-blindspot,
.investors-page .cryptique-solution,
.investors-page .deeper-diligence {
    padding: 100px 0 !important;
    margin: 0 !important;
}

.investors-page .investor-blindspot {
    background: #ffffff !important;
}

.investors-page .deeper-diligence {
    background: #DDE2EE !important;
}

.investors-page .cryptique-solution {
    background: #ffffff !important;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    overflow: hidden;
}

.section-header h2 {
    font-size: 2.2rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1d0c46;
    line-height: 1.3;
    letter-spacing: -0.01em;
    word-wrap: break-word;
    hyphens: auto;
}

.section-header p {
    font-size: 1.25rem;
    color: #6b5b7a;
    line-height: 1.6;
    max-width: 1200px;
    margin: 0 auto;
}


/* Blindspot Questions */
.blindspot-questions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.question-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 12, 70, 0.15);
}

.question-icon {
    width: 60px;
    height: 60px;
    background: #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.question-icon i {
    font-size: 24px;
    color: white;
}

.question-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d0c46;
}

.question-card p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}

.blindspot-conclusion {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.blindspot-conclusion p {
    font-size: 1.25rem;
    color: #1d0c46;
    font-weight: 600;
    line-height: 1.6;
}

/* Solution Benefits */
.solution-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.benefit-card {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(29, 12, 70, 0.15);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.benefit-icon i {
    font-size: 24px;
    color: white;
}

.benefit-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: #1d0c46;
}

.benefit-card p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}


/* Diligence Tools */
.diligence-tools {
    display: flex;
    flex-direction: column;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.tool-feature {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.tool-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tool-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1d0c46;
}

.tool-content p {
    color: #6b5b7a;
    line-height: 1.6;
    font-size: 1rem;
}


/* Sybil Detection Demo */
.sybil-detection-demo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.network-graph {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.central-wallet {
    width: 40px;
    height: 40px;
    background: #1d0c46;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.central-wallet i {
    font-size: 16px;
    color: white;
}

.sybil-cluster {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
}

.sybil-wallet {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    border: 2px solid #dc2626;
    animation: pulse 2s infinite;
}

.sybil-wallet:nth-child(1) { top: 10%; left: 20%; animation-delay: 0s; }
.sybil-wallet:nth-child(2) { top: 20%; right: 10%; animation-delay: 0.2s; }
.sybil-wallet:nth-child(3) { bottom: 20%; left: 10%; animation-delay: 0.4s; }
.sybil-wallet:nth-child(4) { bottom: 10%; right: 20%; animation-delay: 0.6s; }
.sybil-wallet:nth-child(5) { top: 50%; left: 5%; animation-delay: 0.8s; }
.sybil-wallet:nth-child(6) { top: 50%; right: 5%; animation-delay: 1s; }
.sybil-wallet:nth-child(7) { top: 5%; left: 50%; animation-delay: 1.2s; }
.sybil-wallet:nth-child(8) { bottom: 5%; left: 50%; animation-delay: 1.4s; }

.cluster-label {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 12px;
    font-weight: 500;
    color: #ef4444;
    background: rgba(255, 255, 255, 0.9);
    padding: 4px 8px;
    border-radius: 8px;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

/* Marketing ROI Demo */
.marketing-roi-demo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.roi-dashboard {
    width: 100%;
    height: 100%;
}

.roi-header {
    margin-bottom: 20px;
}

.roi-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d0c46;
    text-align: center;
}

.roi-channels {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.channel {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    background: rgba(29, 12, 70, 0.05);
    border-radius: 8px;
    font-size: 12px;
}

.channel-name {
    font-weight: 500;
    color: #1d0c46;
}

.channel-spend,
.channel-conversions {
    color: #6b5b7a;
    text-align: center;
}

.channel-roi {
    text-align: center;
    font-weight: 600;
}

.channel-roi.positive {
    color: #10b981;
}

.channel-roi.negative {
    color: #ef4444;
}

/* Retention Analysis Demo */
.retention-analysis-demo {
    width: 100%;
    max-width: 400px;
    height: 300px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(29, 12, 70, 0.1);
    border-radius: 20px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(29, 12, 70, 0.1);
}

.cohort-chart {
    width: 100%;
    height: 100%;
}

.chart-header h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1d0c46;
    text-align: center;
    margin-bottom: 20px;
}

.cohort-comparison {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cohort {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cohort-label {
    font-size: 12px;
    font-weight: 500;
    color: #1d0c46;
}

.retention-bars {
    display: flex;
    align-items: end;
    gap: 4px;
    height: 40px;
}

.bar {
    flex: 1;
    background: #1d0c46;
    border-radius: 2px;
    animation: growUp 1s ease-out;
    min-height: 4px;
}

.airdrop-cohort .bar {
    background: #ef4444;
}

.content-cohort .bar {
    background: #10b981;
}

/* Final CTA */
.final-cta {
    padding: 100px 0;
    background: #DDE2EE;
    text-align: center;
}

.cta-content {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 24px;
    color: #1d0c46;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.125rem;
    color: #6b5b7a;
    line-height: 1.6;
    margin-bottom: 40px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: #1d0c46;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(29, 12, 70, 0.3);
}

.cta-button:hover {
    background: #2d1c56;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(29, 12, 70, 0.4);
}

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

@keyframes growUp {
    from { height: 0; }
    to { height: 100%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .investors-hero .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .investors-hero .hero-text h1 {
        font-size: 3rem;
    }
    
    .tool-feature {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .blindspot-questions,
    .solution-benefits {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .investors-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .investors-hero .hero-text h1 {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .investors-hero .hero-text .hero-subheadline {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .investor-blindspot,
    .deeper-diligence,
    .cryptique-solution {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .blindspot-questions,
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 0 16px;
    }
    
    .question-card,
    .benefit-card {
        padding: 24px 20px;
        margin: 0;
    }
    
    .question-card h3,
    .benefit-card h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
    }
    
    .question-card p,
    .benefit-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .diligence-tools {
        gap: 60px;
        padding: 0 16px;
    }
    
    .tool-feature {
        gap: 30px;
    }
    
    .tool-content h3 {
        font-size: 1.25rem;
        margin-bottom: 16px;
    }
    
    .tool-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    .sybil-detection-demo,
    .marketing-roi-demo,
    .retention-analysis-demo {
        max-width: 280px;
        height: 220px;
        padding: 20px;
    }
    
    .network-graph {
        width: 160px;
        height: 160px;
    }
    
    .central-wallet {
        width: 32px;
        height: 32px;
    }
    
    .central-wallet i {
        font-size: 14px;
    }
    
    .sybil-wallet {
        width: 16px;
        height: 16px;
    }
    
    .cluster-label {
        font-size: 10px;
        bottom: -25px;
    }
    
    .roi-header h4 {
        font-size: 14px;
    }
    
    .channel {
        padding: 6px 8px;
        font-size: 10px;
        gap: 4px;
    }
    
    .chart-header h4 {
        font-size: 14px;
    }
    
    .cohort-comparison {
        gap: 16px;
        flex-direction: column;
        align-items: center;
    }
    
    .cohort {
        width: 100%;
        max-width: 250px;
    }
    
    .cohort-label {
        font-size: 10px;
        text-align: center;
        margin-bottom: 8px;
    }
    
    .retention-bars {
        height: 30px;
        justify-content: center;
    }
    
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta-content p {
        font-size: 1rem;
        line-height: 1.5;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .investors-hero {
        padding: 40px 0 30px;
    }
    
    .investors-hero .container {
        padding: 0 16px;
    }
    
    .investors-hero .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.1;
        margin-bottom: 16px;
    }
    
    .investors-hero .hero-text .hero-subheadline {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1.5rem;
    }
    
    .investor-blindspot,
    .deeper-diligence,
    .cryptique-solution {
        padding: 40px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
        padding: 0 16px;
    }
    
    .section-header h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .section-header p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .blindspot-questions,
    .solution-benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 0 16px;
    }
    
    .question-card,
    .benefit-card {
        padding: 20px 16px;
        margin: 0;
    }
    
    .question-icon,
    .benefit-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }
    
    .question-icon i,
    .benefit-icon i {
        font-size: 20px;
    }
    
    .question-card h3,
    .benefit-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
        line-height: 1.3;
    }
    
    .question-card p,
    .benefit-card p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .diligence-tools {
        gap: 40px;
        padding: 0 16px;
    }
    
    .tool-feature {
        gap: 24px;
    }
    
    .tool-content h3 {
        font-size: 1.125rem;
        margin-bottom: 12px;
        line-height: 1.3;
    }
    
    .tool-content p {
        font-size: 0.875rem;
        line-height: 1.4;
    }
    
    .sybil-detection-demo,
    .marketing-roi-demo,
    .retention-analysis-demo {
        max-width: 100%;
        height: 180px;
        padding: 16px;
    }
    
    .network-graph {
        width: 140px;
        height: 140px;
    }
    
    .central-wallet {
        width: 28px;
        height: 28px;
    }
    
    .central-wallet i {
        font-size: 12px;
    }
    
    .sybil-wallet {
        width: 14px;
        height: 14px;
    }
    
    .cluster-label {
        font-size: 9px;
        bottom: -20px;
        padding: 2px 6px;
    }
    
    .roi-header h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .roi-channels {
        gap: 8px;
    }
    
    .channel {
        padding: 4px 6px;
        font-size: 9px;
        gap: 2px;
    }
    
    .chart-header h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    
    .cohort-comparison {
        gap: 12px;
        flex-direction: column;
        align-items: center;
    }
    
    .cohort {
        width: 100%;
        max-width: 200px;
    }
    
    .cohort-label {
        font-size: 9px;
        margin-bottom: 6px;
        text-align: center;
    }
    
    .retention-bars {
        height: 25px;
        gap: 2px;
        justify-content: center;
    }
    
    .bar {
        min-height: 2px;
    }
    
    .cta-content {
        padding: 0 16px;
    }
    
    .cta-content h2 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        line-height: 1.4;
        margin-bottom: 24px;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.9rem;
        width: 100%;
        max-width: 280px;
    }
    
    .blindspot-conclusion {
        padding: 0 16px;
    }
    
    .blindspot-conclusion p {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Extra small screens */
@media (max-width: 360px) {
    .investors-hero .hero-text h1 {
        font-size: 1.5rem;
    }
    
    .section-header h2 {
        font-size: 1.25rem;
    }
    
    .question-card,
    .benefit-card {
        padding: 16px 12px;
    }
    
    .question-card h3,
    .benefit-card h3 {
        font-size: 0.95rem;
    }
    
    .question-card p,
    .benefit-card p {
        font-size: 0.8rem;
    }
    
    .tool-content h3 {
        font-size: 1rem;
    }
    
    .tool-content p {
        font-size: 0.8rem;
    }
    
    .cta-content h2 {
        font-size: 1.25rem;
    }
    
    .cta-content p {
        font-size: 0.85rem;
    }
    
    .sybil-detection-demo,
    .marketing-roi-demo,
    .retention-analysis-demo {
        height: 160px;
        padding: 12px;
    }
    
    .cohort-comparison {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    
    .cohort {
        width: 100%;
        max-width: 160px;
    }
    
    .cohort-label {
        font-size: 8px;
        margin-bottom: 4px;
        text-align: center;
    }
    
    .retention-bars {
        height: 20px;
        gap: 1px;
        justify-content: center;
    }
    
    .network-graph {
        width: 120px;
        height: 120px;
    }
    
    .central-wallet {
        width: 24px;
        height: 24px;
    }
    
    .central-wallet i {
        font-size: 10px;
    }
    
    .sybil-wallet {
        width: 12px;
        height: 12px;
    }
}
