:root {
    --primary: #7f46eb;
    --dark: #1a1a1a;
    --text: #333333;
    --text-muted: #5e697f;
    --bg-light: #f8f9fa;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

main {
    padding-top: 80px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Hero Section */
.hero {
    padding: 100px 20px 80px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(127, 70, 235, 0.08), transparent 60%);
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(127, 70, 235, 0.1);
    color: var(--primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s ease;
}

.hero h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 800;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #1a1a1a 0%, #7f46eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-description {
    font-size: 20px;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

/* Mission Section */
.mission {
    padding: 100px 20px;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission-content h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    margin-bottom: 24px;
    color: var(--dark);
}

.mission-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.mission-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.stat-card {
    background: linear-gradient(135deg, rgba(127, 70, 235, 0.05), rgba(127, 70, 235, 0.02));
    padding: 32px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(127, 70, 235, 0.1);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(127, 70, 235, 0.15);
}

.stat-number {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
}

/* Values Section */
.values {
    padding: 100px 20px;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Lexend', sans-serif;
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--dark);
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--text-muted);
    max-width: 600px;
    margin: -40px auto 60px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
}

/* Team Section */
.team {
    padding: 100px 20px;
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    border-color: var(--primary);
}

.team-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(127, 70, 235, 0.1), rgba(127, 70, 235, 0.05));
    font-size: 48px;
}

.team-card h3 {
    font-family: 'Lexend', sans-serif;
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--dark);
}

.team-role {
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
}

.team-bio {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-top: 16px;
}

.team-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.team-link:hover {
    transform: translateX(5px);
}

/* Join CTA Section */
.join-cta {
    padding: 100px 20px;
    background: linear-gradient(135deg, rgba(127, 70, 235, 0.05), rgba(127, 70, 235, 0.02));
}

.join-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.join-cta-content h2 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--dark);
}

.join-cta-content p {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.7;
}


.join-cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 100px;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(127, 70, 235, 0.2);
}

.join-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(127, 70, 235, 0.3);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        padding: 60px 20px 40px;
    }

    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .values-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 32px;
    }

    .mission-content h2 {
        font-size: 32px;
    }
}

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

    .stat-card {
        padding: 24px;
    }

    .value-card {
        padding: 32px 24px;
    }
}