/* ═══════════════════════════════════════
   FOR INVESTORS PAGE STYLES
   ═══════════════════════════════════════ */

/* Hero Dark */
.hero-dark {
    position: relative;
    background: linear-gradient(135deg, #0a0505 0%, #1a0a0a 50%, #2d1515 100%);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px 120px;
    overflow: hidden;
}

.hero-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='200' height='100' viewBox='0 0 200 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 80 L20 70 L40 75 L60 50 L80 55 L100 30 L120 40 L140 20 L160 35 L180 15 L200 25' stroke='%23c41e3a' stroke-width='2' fill='none' opacity='0.3'/%3E%3Cpath d='M0 85 L20 75 L40 80 L60 55 L80 60 L100 35 L120 45 L140 25 L160 40 L180 20 L200 30' stroke='%23c41e3a' stroke-width='1' fill='none' opacity='0.2'/%3E%3C/svg%3E");
    background-size: cover;
    opacity: 0.6;
}

.hero-dark-content {
    position: relative;
    z-index: 2;
}

.hero-dark-title {
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Stats bar */
.stats-bar {
    position: relative;
    z-index: 3;
    margin-top: -60px;
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 20px;
}

.stats-bar-inner {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    background: rgba(0,0,0,0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    overflow: hidden;
    max-width: 900px;
    width: 100%;
}

.stat-bar-item {
    padding: 30px 40px;
    text-align: center;
    color: #fff;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.stat-bar-item:last-child {
    border-right: none;
}

.stat-bar-value {
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    margin-bottom: 8px;
}

.stat-bar-value span {
    font-style: italic;
}

.stat-bar-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    line-height: 1.4;
}

/* Co-author section */
.coauthor-section {
    padding: 60px 0 40px;
    background: #f5f5f5;
}

.section-header {
    margin-bottom: 30px;
}

.section-title {
    font-size: 28px;
    font-weight: 900;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 1px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 14px;
    color: #888;
}

.coauthor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.coauthor-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.coauthor-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.coauthor-card .subtitle {
    font-size: 14px;
    color: #555;
    font-weight: 600;
    margin-bottom: 8px;
}

.coauthor-card .limit {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

.coauthor-card .limit .highlight {
    color: #c41e3a;
    font-weight: 500;
}

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

.coauthor-card ul li {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    padding-left: 12px;
    position: relative;
}

.coauthor-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #888;
}

.coauthor-card .docs-title {
    font-size: 14px;
    font-weight: 700;
    color: #333;
    margin: 15px 0 8px;
}

.coauthor-card .link {
    color: #c41e3a;
    text-decoration: none;
    font-size: 13px;
}

.coauthor-card .link:hover {
    text-decoration: underline;
}

/* Investor Path */
.investor-path {
    padding: 40px 0 40px;
    background: #f5f5f5;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-item {
    background: #fff;
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.step-number {
    background: #c41e3a;
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
}

.step-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
}

.step-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CTA */
.cta-section {
    padding: 20px 0 60px;
    text-align: right;
    background: #f5f5f5;
}

.btn-large {
    padding: 14px 32px;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 1024px) {
    .coauthor-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-dark-title {
        font-size: 32px;
    }
    .stats-bar-inner {
        grid-template-columns: 1fr;
    }
    .stat-bar-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    .stat-bar-item:last-child {
        border-bottom: none;
    }
    .coauthor-grid {
        grid-template-columns: 1fr;
    }
    .cta-section {
        text-align: center;
    }
}