/* Homepage Specific Styles */

/* Hero Section */
.hero {
    padding: 13rem 0 8rem;
    background: linear-gradient(135deg, rgba(0, 82, 147, 0.05) 0%, var(--accent) 50%, var(--background) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 5rem;
    left: 5rem;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 82, 147, 0.05);
    border-radius: 50%;
    filter: blur(3rem);
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 8rem;
    right: 8rem;
    width: 16rem;
    height: 16rem;
    background: rgba(0, 82, 147, 0.03);
    border-radius: 50%;
    filter: blur(4rem);
    z-index: -1;
}

.hero-content {
    position: relative;
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 82, 147, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 2rem;
}

.trust-badge::before {
    content: '';
    width: 0.5rem;
    height: 0.5rem;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.hero h1 {
    font-size: clamp(2rem, 8vw, 4.5rem);
    font-weight: var(--font-weight-bold);
    line-height: 1.15;
    margin-bottom: 2rem;
}

.hero p {
    font-size: clamp(1.25rem, 3vw, 1.875rem);
    color: var(--muted-foreground);
    margin-bottom: 4rem;
    max-width: 64rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: var(--font-weight-light);
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 5rem;
    width: 100%;
}

/* Manifest Quote */
.manifest-quote blockquote {
    font-size: clamp(1.5rem, 3vw, 1.875rem);
    font-style: italic;
    color: var(--foreground);
    margin-bottom: 2rem;
    font-weight: var(--font-weight-light);
    line-height: 1.7;
}

.manifest-quote cite {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    font-weight: var(--font-weight-medium);
}

/* Platform Showcase */
.platform-showcase {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.platform-text {
    display: flex;
    flex-direction: column;
    gap: 0rem;
}

.platform-text h2 {
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: var(--font-weight-semibold);
    margin-bottom: 1rem;
}

.platform-text p {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    line-height: 1.7;
}

.platform-cta {
    padding-top: 1rem;
}

.platform-cta a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: var(--font-weight-semibold);
    font-size: 1.125rem;
    transition: color var(--transition-smooth);
}

.platform-cta a:hover {
    color: rgba(0, 82, 147, 0.8);
}

.platform-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-container {
    position: relative;
}

.image-container img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    transition: transform var(--transition-smooth), box-shadow var(--transition-smooth);
}

.image-container img:hover {
    transform: scale(1.02);
}

.image-label {
    position: absolute;
    bottom: -0.5rem;
    right: -0.5rem;
    background: var(--background);
    border: 1px solid var(--border);
    border-radius: 0.375rem;
    padding: 0.375rem 0.75rem;
    box-shadow: var(--shadow-sm);
    font-size: 0.875rem;
    font-weight: var(--font-weight-medium);
    color: var(--primary);
}

/* Three Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.pillar-card {
    text-align: center;
    padding: 2rem;
    background: var(--background);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transform: translateY(0);
    transition: all var(--transition-smooth);
}

.pillar-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 4rem;
    height: 4rem;
    background: rgba(0, 82, 147, 0.08);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary);
    border: 1px solid rgba(0, 82, 147, 0.1);
}

.pillar-card h3 {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 50%, var(--muted) 100%);
    border-top: 1px solid var(--border);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

/* Statistics (for potential future use) */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    text-align: center;
    padding: 1.5rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(0);
    transition: all var(--transition-smooth);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
    background: rgba(241, 245, 249, 0.3);
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: var(--font-weight-bold);
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.stat-label {
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    color: var(--foreground);
    margin-bottom: 0.5rem;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
        gap: 1.5rem;
    }
}

@media (min-width: 768px) {
    .platform-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
        align-items: center;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .pillars-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero {
        padding: 13rem 0 9rem;
    }
}

@media (min-width: 1024px) {
    .hero {
        padding: 14rem 0 10rem;
    }

    .hero-buttons {
        gap: 2.5rem;
    }

    .platform-showcase {
        gap: 6rem;
    }
}

@media (max-width: 1023px) {
    .hero {
        padding: 11rem 0 8rem;
    }
}

@media (max-width: 767px) {
    .hero-buttons {
        padding: 0 1rem;
    }

    .platform-images {
        margin-top: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: clamp(1.75rem, 6vw, 3rem);
    }

    .hero p {
        font-size: clamp(1rem, 4vw, 1.25rem);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
