/* CSS Variables - AI Startup Branding */
:root {
    /* Primary Brand Colors */
    --electric-pink: #FF3CAC;
    --purple-magenta: #784BA0;
    --violet-blue: #2B86C5;
    
    /* Brand Gradient */
    --brand-gradient: linear-gradient(90deg, #FF3CAC, #784BA0, #2B86C5);
    --hero-gradient: linear-gradient(135deg, #FF3CAC 0%, #784BA0 50%, #2B86C5 100%);
    
    /* Neutral & Background Colors */
    --soft-blush: #FFF5FA;
    --charcoal: #1A1B1F;
    --off-white: #FAFAFA;
    --text-light-mode: #2B2B2B;
    --text-dark-mode: #E0E0E0;
    
    /* Accent & Utility Colors */
    --success: #00E0B5;
    --warning: #FFD66B;
    --error: #FF5E5B;
    
    /* Legacy for compatibility */
    --primary: #FF3CAC;
    --primary-dark: #784BA0;
    --text: #2B2B2B;
    --text-light: #64748b;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--soft-blush);
    color: var(--text-light-mode);
    line-height: 1.6;
    min-height: 100vh;
}

/* Typography - Headings use Sora */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Simple Navigation */
.simple-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 60, 172, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.simple-nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Sora', sans-serif;
    font-size: 1.75rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Logo Image Styles */
.logo-link {
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.05);
}

.logo-image {
    height: 40px;
    width: auto;
    display: block;
    max-width: 200px;
    object-fit: contain;
    /* Optimize for large images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Responsive logo sizing */
@media (max-width: 768px) {
    .logo-image {
        height: 35px;
        max-width: 180px;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 30px;
        max-width: 150px;
    }
}

.tagline {
    background: var(--brand-gradient);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255, 60, 172, 0.3);
}

/* Hero Problem Section */
.hero-problem {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--soft-blush) 0%, rgba(255, 60, 172, 0.05) 50%, rgba(43, 134, 197, 0.05) 100%);
}

.hero-problem h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.problem-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

@media (max-width: 1200px) {
    .problem-stats {
        max-width: 1000px;
        gap: 1.2rem;
    }
}

@media (max-width: 1024px) {
    .problem-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 700px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-problem {
        padding: 6rem 0 3rem;
    }
    
    .hero-problem h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .stat {
        padding: 2rem 1.5rem;
        min-height: 160px;
    }
    
    .stat-number {
        font-size: 2.4rem;
        margin-bottom: 0.8rem;
    }
    
    .stat-text {
        font-size: 1rem;
    }
    
    .problem-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .feature-item {
        padding: 1.5rem;
    }
    
    .waitlist-section {
        padding: 3rem 0;
    }
    
    .waitlist-form {
        padding: 1.5rem;
    }
    
    .counter-section {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .counter-divider {
        display: none;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .modal-content {
        margin: 20% auto;
        padding: 1.5rem;
    }
    
    .success-actions {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .problem-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
}

.stat {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(255, 60, 172, 0.1);
    transition: all 0.3s ease;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 60, 172, 0.2);
}

.stat-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.stat-text {
    color: var(--text-light);
    font-weight: 500;
    font-size: 1.1rem;
    line-height: 1.4;
    margin: 0;
}

/* Problem Section */
.problem-section {
    padding: 4rem 0;
    background: white;
}

.problem-section h2 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.1);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 60, 172, 0.15);
}

.problem-card.mystery {
    border-color: rgba(255, 214, 107, 0.3);
    background: linear-gradient(135deg, rgba(255, 214, 107, 0.1), rgba(255, 255, 255, 0.9));
}

.problem-card.impact {
    border-color: rgba(255, 94, 91, 0.3);
    background: linear-gradient(135deg, rgba(255, 94, 91, 0.1), rgba(255, 255, 255, 0.9));
}

.problem-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.problem-card h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-light-mode);
}

.problem-card ul {
    list-style: none;
    padding: 0;
}

.problem-card ul li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.problem-card ul li::before {
    content: "•";
    color: var(--electric-pink);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.problem-question {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(43, 134, 197, 0.1));
    border-radius: 20px;
    margin-top: 2rem;
    border: 1px solid rgba(255, 60, 172, 0.2);
}

.problem-question h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Community Section */
.community-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-blush), rgba(255, 60, 172, 0.05));
}

.community-section h2 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.community-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.insight-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.insight-card:hover {
    transform: translateY(-5px);
}

.insight-stat {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.insight-text {
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.5;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background: white;
}

.solution-section h2 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.solution-subtitle-compact {
    text-align: center;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.3;
    margin-bottom: 0.5rem;
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    white-space: nowrap;
    overflow-wrap: normal;
}

.solution-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.feature-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-light-mode);
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.solution-cta {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(43, 134, 197, 0.1));
    border-radius: 20px;
    border: 1px solid rgba(255, 60, 172, 0.2);
}

.solution-cta p {
    font-size: 1.25rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
}

/* Waitlist Section */
.waitlist-section {
    padding: 4rem 0;
    background: var(--brand-gradient);
    color: white;
}

.waitlist-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.waitlist-text h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.waitlist-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.benefit-icon {
    font-size: 1.5rem;
}

.waitlist-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: white;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.6);
    background: rgba(255, 255, 255, 0.2);
}

.form-group select option {
    background: var(--primary);
    color: white;
}

.form-privacy {
    margin-bottom: 2rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-label a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: white;
}

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: white;
    color: var(--electric-pink);
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.form-note {
    margin-top: 1rem;
    text-align: center;
}

.form-note p {
    font-size: 0.9rem;
    opacity: 0.8;
    margin: 0;
}

/* Social Proof Section */
.social-proof {
    padding: 4rem 0;
    background: white;
    text-align: center;
}

.counter-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    align-items: center;
}

.counter-item {
    padding: 2rem;
}

.counter-number {
    font-family: 'Sora', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.counter-text {
    color: var(--text-light);
    font-weight: 500;
}

.counter-divider {
    width: 1px;
    height: 60px;
    background: rgba(99, 102, 241, 0.2);
    margin: 0 auto;
}

.final-cta h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--brand-gradient);
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 60, 172, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 60, 172, 0.4);
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: var(--electric-pink);
    text-decoration: none;
    border: 2px solid var(--electric-pink);
    border-radius: 10px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--electric-pink);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--charcoal);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-brand h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo {
    height: 35px;
    width: auto;
    margin-bottom: 0.5rem;
    display: block;
    max-width: 180px;
    object-fit: contain;
    /* Optimize for large images */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.footer-section h5 {
    font-weight: 600;
    margin-bottom: 1rem;
    color: white;
}

.footer-section a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-social a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    position: relative;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close {
    position: absolute;
    right: 1rem;
    top: 1rem;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
    color: var(--text-light);
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text);
}

.success-content {
    text-align: center;
    padding: 1rem;
}

.success-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.success-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
}

.success-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.success-actions button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .waitlist-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .solution-features {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-problem h1 {
        font-size: 2rem;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insight-stat {
        font-size: 2.5rem;
    }
    
    .tagline {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
}

/* Co-Design Cohort Section */
.cohort-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--soft-blush) 0%, rgba(255, 60, 172, 0.05) 50%, rgba(43, 134, 197, 0.05) 100%);
}

.cohort-section h2 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cohort-section h3 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 2rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cohort-intro {
    max-width: 1000px;
    margin: 0 auto 3rem;
    text-align: center;
}

.cohort-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.why-cohort {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 15px;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.why-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 60, 172, 0.15);
}

.why-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.why-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.why-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.cohort-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cohort-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.1);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.cohort-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 60, 172, 0.15);
}

.cohort-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--electric-pink);
    background: linear-gradient(135deg, var(--electric-pink), var(--violet-blue));
}

.cohort-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cohort-info h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.cohort-cta {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--electric-pink);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cohort-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--electric-pink);
    margin-bottom: 1rem;
}

.cohort-description {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
    margin: 0;
}

.cohort-impact {
    max-width: 800px;
    margin: 0 auto;
}

.impact-card {
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(43, 134, 197, 0.1));
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    backdrop-filter: blur(10px);
}

.impact-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.impact-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Responsive Design for Cohort Section */
@media (max-width: 768px) {
    .cohort-section h2 {
        font-size: 2rem;
    }
    
    .cohort-section h3 {
        font-size: 1.5rem;
    }
    
    .cohort-subtitle {
        font-size: 1.1rem;
    }
    
    .why-cohort {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cohort-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cohort-card {
        padding: 1.5rem;
    }
    
    .impact-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .impact-content h4 {
        font-size: 1.3rem;
    }
    
    .impact-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .cohort-section {
        padding: 3rem 0;
    }
    
    .cohort-section h2 {
        font-size: 1.8rem;
    }
    
    .cohort-section h3 {
        font-size: 1.3rem;
    }
    
    .cohort-image {
        width: 70px;
        height: 70px;
    }
    
    .cohort-info h4 {
        font-size: 1.2rem;
    }
    
    .cohort-description {
        font-size: 0.9rem;
    }
}

/* Meet the Founders Section */
.founders-section {
    padding: 4rem 0;
    background: white;
}

.founders-section h2 {
    font-family: 'Sora', sans-serif;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.founders-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.founder-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 60, 172, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 60, 172, 0.15);
}

.founder-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid transparent;
    background: var(--brand-gradient);
    padding: 2px;
    flex-shrink: 0;
}

.founder-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    background: white;
}

.founder-info h3 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text);
}

.founder-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--electric-pink);
    margin-bottom: 1rem;
}

.founder-description {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.founders-mission {
    max-width: 800px;
    margin: 0 auto;
}

.mission-card {
    background: linear-gradient(135deg, rgba(255, 60, 172, 0.1), rgba(43, 134, 197, 0.1));
    border: 1px solid rgba(255, 60, 172, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    display: flex;
    gap: 2rem;
    align-items: center;
    backdrop-filter: blur(10px);
}

.mission-icon {
    font-size: 3rem;
    flex-shrink: 0;
}

.mission-content h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1.1rem;
}

/* Create founders directory */
.founders-directory {
    margin-top: 2rem;
}

/* Responsive Design for Founders Section */
@media (max-width: 768px) {
    .founders-section h2 {
        font-size: 2rem;
    }
    
    .founders-subtitle {
        font-size: 1.1rem;
        padding: 0 1rem;
    }
    
    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .founder-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    
    .founder-image {
        width: 80px;
        height: 80px;
    }
    
    .mission-card {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .mission-content h4 {
        font-size: 1.3rem;
    }
    
    .mission-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .founders-section {
        padding: 3rem 0;
    }
    
    .founders-section h2 {
        font-size: 1.8rem;
    }
    
    .founder-card {
        padding: 1.5rem;
    }
    
    .founder-image {
        width: 70px;
        height: 70px;
    }
    
    .founder-info h3 {
        font-size: 1.3rem;
    }
    
    .mission-card {
        padding: 1.5rem;
    }
}
