/* css/pages/home.css - Homepage specific styles */

/* ===== SHARED HERO ===== */
/* Hero styles are centralized in css/main.css. */

/* ===== OVERVIEW SECTION ===== */

.overview-section {
    padding: var(--section-padding) 0;
    background: white;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: start;
}

.overview-content .eyebrow {
    display: inline-block;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-secondary-600);
    margin-bottom: var(--space-3);
}

.overview-text {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-6);
}

.overview-pillars {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.pillar-item {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--color-background-alt);
    border-radius: var(--border-radius-md);
    border-left: 4px solid var(--color-secondary-600);
    transition: all 0.3s ease;
}

.pillar-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.pillar-icon {
    width: 44px;
    height: 44px;
    background: var(--color-secondary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary-600);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pillar-item h4 {
    color: var(--color-text-primary);
    font-size: var(--text-sm);
    font-weight: var(--weight-semibold);
    margin-bottom: 0.25rem;
}

.pillar-item p {
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    margin: 0;
}

.overview-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.platform-card {
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.platform-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-secondary-300);
    box-shadow: var(--shadow-md);
}

.platform-card:nth-child(3) {
    grid-column: 1 / -1;
}

.platform-icon {
    width: 60px;
    height: 60px;
    background: var(--color-primary-50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
    font-size: 1.5rem;
    color: var(--color-primary-600);
}

.platform-card h4 {
    color: var(--color-text-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.platform-card p {
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===== OPPORTUNITY SECTION ===== */

.opportunity-section {
    padding: var(--section-padding) 0;
    background: var(--color-background-alt);
}

.opportunity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

.opportunity-card {
    background: white;
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    text-align: center;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.opportunity-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary-300);
}

.opportunity-card.highlight {
    border-color: var(--color-secondary-600);
    background: linear-gradient(135deg, white, var(--color-secondary-50));
    position: relative;
}

.opportunity-card.highlight::before {
    content: 'Featured';
    position: absolute;
    top: -10px;
    right: var(--space-4);
    padding: 0.2rem 0.8rem;
    background: var(--color-secondary-600);
    color: white;
    border-radius: 50px;
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
}

.opportunity-icon {
    font-size: 2.5rem;
    color: var(--color-secondary-600);
    margin-bottom: var(--space-4);
}

.opportunity-card h4 {
    color: var(--color-text-primary);
    font-size: var(--text-lg);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}

.opportunity-card p {
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===== FOUNDERS SECTION ===== */

.founders-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
    color: white;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-6);
    max-width: 900px;
    margin: 0 auto var(--space-6);
}

.founder-card {
    display: flex;
    gap: var(--space-6);
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.founder-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
    border-color: var(--color-secondary-400);
}

.founder-avatar {
    width: 112px;
    height: 112px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid rgba(212, 164, 55, 0.28);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
    background: linear-gradient(135deg, rgba(212, 164, 55, 0.14), rgba(42, 157, 143, 0.14));
}

.founder-avatar-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.founder-info h3 {
    color: white;
    margin-bottom: 0.25rem;
    font-size: var(--text-2xl);
}

.founder-role {
    color: var(--color-secondary-400);
    font-size: var(--text-sm);
    font-weight: var(--weight-medium);
    margin-bottom: var(--space-1);
}

.founder-department {
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    margin-bottom: var(--space-3);
}

.founder-bio {
    color: rgba(255, 255, 255, 0.8);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
}

.founder-contact {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
    text-decoration: none;
    transition: all 0.2s ease;
}

.contact-link:hover {
    color: white;
}

.contact-link i {
    color: var(--color-secondary-400);
}

.founders-note {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.founders-note p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.founders-note strong {
    color: var(--color-secondary-400);
}

/* ===== CTA SECTION ===== */

.cta-section {
    padding: var(--section-padding) 0;
    background: white;
    text-align: center;
}

.cta-title {
    font-size: var(--text-3xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.cta-subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-8);
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-4);
    max-width: 1100px;
    margin: 0 auto;
}

.cta-card {
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    padding: var(--space-6);
    text-decoration: none;
    color: inherit;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cta-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-secondary-300);
}

.cta-card-icon {
    font-size: 2.5rem;
    color: var(--color-secondary-600);
    margin-bottom: var(--space-4);
}

.cta-card h3 {
    color: var(--color-text-primary);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-2);
}

.cta-card p {
    color: var(--color-text-tertiary);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    flex: 1;
}

.cta-link {
    color: var(--color-secondary-600);
    font-weight: var(--weight-medium);
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all 0.3s ease;
}

.cta-card:hover .cta-link {
    gap: var(--space-3);
}

/* ===== RESPONSIVE ===== */

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

@media (max-width: 820px) {
    .cbc-hero {
        padding: 80px 0 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .overview-visual {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .cbc-hero {
        padding: 60px 0 40px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .overview-visual {
        grid-template-columns: 1fr;
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .founder-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .founder-contact {
        justify-content: center;
    }
}

