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

/* ===== UNIFIED HERO SYSTEM - NO WAVES ===== */

.homepage-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--color-primary-800), var(--color-primary-900));
    color: white;
    overflow: hidden;
    padding: 80px 0 60px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.5) 100%);
    z-index: 1;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(15, 37, 64, 0.3) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(15, 37, 64, 0.1) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 850px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

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

.hero-eyebrow span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--weight-extrabold);
    line-height: var(--leading-tight);
    letter-spacing: -0.025em;
    font-family: var(--font-display);
    margin-bottom: var(--space-4);
    color: white;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.title-line:nth-child(1) { animation-delay: 0.1s; }
.title-line:nth-child(2) { animation-delay: 0.3s; }

.text-highlight {
    color: var(--color-secondary-400);
}

.hero-subtitle {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    line-height: var(--leading-relaxed);
    max-width: 650px;
    margin: 0 auto var(--space-6);
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}

.hero-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    min-width: 200px;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* No wave styles - completely removed */

/* Responsive */
@media (max-width: 820px) {
    .homepage-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
}

@media (max-width: 480px) {
    .homepage-hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

/* ===== OVERVIEW STATS (Moved from Hero) ===== */

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: var(--space-8) auto 0;
    padding: var(--space-6);
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
}

.overview-stat-item {
    text-align: center;
}

.overview-stat-item .stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--color-secondary-600);
    line-height: 1.2;
}

.overview-stat-item .stat-label {
    display: block;
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    font-size: var(--text-sm);
}

.overview-stat-item .stat-desc {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

@media (max-width: 820px) {
    .overview-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .overview-stats-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== 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-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-audience {
    display: flex;
    flex-direction: column;
    gap: var(--space-4);
}

.audience-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;
}

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

.audience-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;
}

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

.audience-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);
}

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

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

.pillar-card:nth-child(3),
.pillar-card:nth-child(4) {
    grid-column: span 1;
}

.pillar-icon {
    font-size: 2rem;
    color: var(--color-secondary-600);
    margin-bottom: var(--space-3);
}

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

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

/* ===== PROBLEM SECTION ===== */

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

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

.problem-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;
}

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

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

.problem-card h3 {
    color: var(--color-text-primary);
    font-size: var(--text-xl);
    font-weight: var(--weight-semibold);
    margin-bottom: var(--space-3);
}

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

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

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

.opportunity-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-12);
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.opportunity-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);
}

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

.opportunity-features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3);
    margin-top: var(--space-4);
}

.opportunity-features span {
    display: inline-flex;
    align-items: center;
    gap: var(--space-1);
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.opportunity-features span i {
    color: var(--color-success);
}

/* Stats Card */
.stats-card {
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.stats-header {
    padding: var(--space-4) var(--space-6);
    background: var(--color-primary-50);
    border-bottom: 1px solid var(--color-border-light);
}

.stats-header h4 {
    color: var(--color-primary-700);
    font-size: var(--text-base);
    font-weight: var(--weight-semibold);
    margin: 0;
}

.stats-body {
    padding: var(--space-6);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.stat-item {
    text-align: center;
    padding: var(--space-3);
    background: white;
    border-radius: var(--border-radius-md);
    border: 1px solid var(--color-border-light);
}

.stat-item .stat-number {
    display: block;
    font-size: var(--text-2xl);
    font-weight: var(--weight-bold);
    color: var(--color-secondary-600);
    line-height: 1.2;
}

.stat-item .stat-label {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

/* ===== 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: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 1100px;
    margin: 0 auto;
}

.founder-card {
    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;
    text-align: center;
}

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

.founder-avatar {
    font-size: 4rem;
    color: var(--color-secondary-400);
    margin-bottom: var(--space-3);
}

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

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

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

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

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

.founder-contact .contact-link i {
    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(3, 1fr);
    gap: var(--space-4);
    max-width: 1000px;
    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) {
    .homepage-hero {
        padding: 60px 0 40px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .overview-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .opportunity-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }
    
    .founders-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .overview-visual {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .homepage-hero {
        padding: 40px 0 30px;
    }
    
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-subtitle {
        font-size: var(--text-base);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
    
    .overview-visual {
        grid-template-columns: 1fr;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .stats-body {
        grid-template-columns: 1fr;
    }
}

/* ===== OVERVIEW STATS ===== */

.overview-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
    max-width: 900px;
    margin: var(--space-8) auto 0;
    padding: var(--space-6);
    background: var(--color-background-alt);
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--color-border-light);
}

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

.stat-item .stat-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--weight-extrabold);
    color: var(--color-secondary-600);
    line-height: 1.2;
}

.stat-item .stat-label {
    display: block;
    font-weight: var(--weight-semibold);
    color: var(--color-text-primary);
    font-size: var(--text-sm);
}

.stat-item .stat-desc {
    font-size: var(--text-xs);
    color: var(--color-text-tertiary);
}

@media (max-width: 820px) {
    .overview-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-4);
    }
}

@media (max-width: 480px) {
    .overview-stats-grid {
        grid-template-columns: 1fr;
    }
}