:root {
    --primary-color: #7F56D9;
    --primary-light: #F9F5FF;
    --gray-900: #101828;
    --gray-700: #344054;
    --gray-600: #475467;
    --gray-500: #667085;
    --gray-300: #D0D5DD;
    --gray-200: #EAECF0;
    --gray-50: #F9FAFB;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--gray-600);
    background-color: var(--white);
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 32px;
}

/* Header & Navigation */
.header-container {
    background-color: var(--white);
    border-bottom: 1px solid var(--gray-200);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 20px;
    color: var(--gray-900);
}

.logo img {
    border-radius: 6px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: var(--gray-500);
    font-weight: 500;
}

.nav-actions {
    display: flex;
    gap: 12px;
}

.btn {
    padding: 10px 18px;
    border-radius: 8px;
    border: 1px solid transparent;
    font-weight: 500;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--gray-700);
    border-color: var(--gray-300);
    box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
}

.mobile-menu-button {
    display: none;
}


/* General Section Styles */
.section-tag {
    color: var(--primary-color);
    font-weight: 600;
    text-align: center;
    margin-bottom: 12px;
}

.section-title {
    font-size: 48px;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-title-small {
    font-size: 36px;
    color: var(--gray-900);
    margin-bottom: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-500);
    text-align: center;
    max-width: 768px;
    margin: 0 auto;
}


/* About Section */
.about-section {
    padding-top: 96px;
    padding-bottom: 96px;
}

/* Journey Section */
.journey-section {
    display: flex;
    gap: 64px;
    align-items: center;
}

.journey-image {
    flex: 1;
}

.journey-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
}

.journey-content {
    flex: 1;
}

.journey-content .section-title-small {
    text-align: left;
}

.journey-content .section-tag {
    text-align: left;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.stat-item h3 {
    font-size: 60px;
    color: var(--primary-color);
    letter-spacing: -1.5px;
}

.stat-item p {
    font-weight: 500;
    color: var(--gray-900);
}

/* Logos Section */
.logos-section {
    background-color: var(--white);
    text-align: center;
}

.logos-section p {
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 32px;
}

.logos-grid {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 32px;
}
.logos-grid img {
    height: 32px;
}

/* Team Section */
.team-section {
    background-color: var(--white);
    text-align: center;
}

.team-section .section-subtitle {
    margin-bottom: 40px;
}

.team-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 64px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
    background-color: var(--gray-50);
    padding: 24px;
    border-radius: 16px;
}

.team-member img {
    width: 100%;
    max-width: 160px;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.team-member h4 {
    color: var(--gray-900);
    font-size: 18px;
    font-weight: 600;
}

.team-member .role {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.team-member .bio {
    font-size: 16px;
    color: var(--gray-500);
    margin-bottom: 16px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 16px;
}
.social-links a:hover svg path {
    fill: var(--primary-color);
}


/* Values Section */
.values-section {
    text-align: center;
}

.values-section .section-subtitle {
    margin-bottom: 64px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 64px 32px;
    text-align: center;
}

.value-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--primary-light);
    margin: 0 auto 20px;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 8px;
}

/* Open Positions Section */
.open-positions-section {
    text-align: center;
}
.open-positions-section .section-subtitle {
    margin-bottom: 64px;
}
.positions-image {
    margin-bottom: 64px;
}
.positions-image img {
    width: 100%;
    border-radius: 16px;
    object-fit: cover;
    max-height: 400px;
}
.department {
    text-align: left;
    margin-bottom: 48px;
}
.department h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 32px;
}
.job-listing {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    box-shadow: 0 4px 6px -2px rgba(16, 24, 40, 0.03), 0 12px 16px -4px rgba(16, 24, 40, 0.08);
    margin-bottom: 16px;
}

.job-info h4 {
    font-size: 18px;
    font-weight: 500;
    color: var(--gray-900);
    margin-bottom: 4px;
}
.job-details {
    display: flex;
    align-items: center;
    gap: 24px;
}
.job-details span {
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 8px;
}


/* CTA Section */
.cta-section {
    background-color: var(--gray-50);
    text-align: center;
}

.cta-section h2 {
    font-size: 36px;
    color: var(--gray-900);
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--gray-500);
    margin-bottom: 40px;
}

.cta-actions {
     display: flex;
    justify-content: center;
    gap: 12px;
}

/* Footer */
.footer-container {
    background-color: var(--white);
    border-top: 1px solid var(--gray-200);
    color: var(--gray-500);
    padding: 64px 32px 48px;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 64px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--gray-200);
}

.footer-brand {
    max-width: 320px;
}

.footer-brand .logo {
    color: var(--gray-900);
    margin-bottom: 32px;
}

.footer-links {
    display: flex;
    gap: 32px;
    flex-grow: 1;
    justify-content: space-between;
}

.link-column h5 {
    color: var(--gray-500);
    font-size: 14px;
    margin-bottom: 16px;
}

.link-column a {
    display: block;
    color: var(--gray-700);
    text-decoration: none;
    margin-bottom: 12px;
    font-weight: 500;
}
.link-column a:hover {
    color: var(--primary-color);
}

.footer-bottom {
    max-width: 1280px;
    margin: 48px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 24px;
}

.social-icons a:hover svg path {
    fill: var(--primary-color);
}


/* Responsive Styles */
@media (max-width: 992px) {
    .nav-links, .nav-actions {
        display: none;
    }
    .mobile-menu-button {
        display: block;
    }
    .team-grid {
        grid-template-columns: 1fr 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    .footer-content, .footer-links {
        flex-direction: column;
    }
    .footer-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 36px;
    }
    .section-subtitle {
        font-size: 18px;
    }
    .journey-section {
        flex-direction: column;
    }
    .stats-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .journey-content .section-title-small, .journey-content .section-tag {
        text-align: center;
    }
    .logos-grid img {
        width: 40%;
    }
    .team-grid {
        grid-template-columns: 1fr;
    }
    .values-grid {
        grid-template-columns: 1fr;
    }
    .job-listing {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 16px;
    }
}