:root {
    --primary-black: #0a0a0a;
    --secondary-gray: #6b7280;
    --light-gray: #f8fafc;
    --pure-white: #ffffff;
    --accent-blue: #3b82f6;
    --accent-indigo: #6366f1;
    --subtle-border: #e5e7eb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--pure-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
    padding: 140px 24px 100px;
    border-bottom: 1px solid var(--subtle-border);
}

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

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 56px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Section Styles */
.section {
    padding: 80px 0;
    border-bottom: 1px solid var(--subtle-border);
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--pure-white);
    border: 1px solid var(--subtle-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.team-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

.team-content {
    padding: 32px;
}

.team-name {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-role {
    font-size: 16px;
    font-weight: 500;
    color: var(--accent-blue);
    margin-bottom: 16px;
}

.team-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.team-social {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-primary);
    transition: all 0.2s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    color: var(--pure-white);
    transform: translateY(-2px);
}

.social-link svg {
    width: 20px;
    height: 20px;
}

/* Values Section */
.values-section {
    background: var(--light-gray);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
}

.value-card {
    background: var(--pure-white);
    border: 1px solid var(--subtle-border);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--accent-blue);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    color: var(--accent-blue);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-title {
    font-family: 'Poppins', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Join Section */
.join-section {
    background: linear-gradient(135deg, #3b82f6 0%, #6366f1 100%);
    color: var(--pure-white);
    border: none;
}

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

.join-title {
    font-family: 'Poppins', sans-serif;
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pure-white);
}

.join-description {
    font-size: 18px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
}

/* Button */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--pure-white);
    color: var(--accent-blue);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

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

    .section {
        padding: 60px 0;
    }

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

    .team-image {
        height: 300px;
    }

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

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-section {
        padding: 120px 16px 80px;
    }

    .section {
        padding: 40px 0;
    }

    .container {
        padding: 0 16px;
    }

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

    .team-content {
        padding: 24px;
    }

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