/* Founder Section */
.founder-grid {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    max-width: 72rem;
    margin: 0 auto;
}

.founder-image {
    text-align: center;
    margin-bottom: 2rem;
}

.founder-image img {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
    display: block;
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

@media (min-width: 1024px) {
    .founder-image {
        margin-bottom: 0;
    }
}

.founder-credentials {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.credential-card {
    background: var(--card);
    padding: 1.5rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--secondary);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    gap: 1rem;
    transition: box-shadow 0.3s;
}

.credential-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.credential-card svg {
    flex-shrink: 0;
    color: var(--secondary);
    margin-top: 0.25rem;
}

.credential-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.credential-card p {
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Team Section */
.team-section {
    margin-top: 4rem;
    padding-bottom: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 72rem;
    margin: 2rem auto 0;
}

.team-card {
    text-align: center;
    padding: 1.5rem;
    background: var(--card);
    border-radius: var(--radius);
    border: 2px solid var(--border);
    transition: all 0.3s;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transform: translateY(-4px);
}

.team-image {
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--primary-light);
    transition: all 0.3s;
}

.team-card:hover .team-image {
    border-color: var(--primary);
    transform: scale(1.05);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-name {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--foreground);
}

.team-role {
    margin: 0;
    color: var(--primary);
    font-weight: 500;
}

/* Partners Static (≤ 3 logos) */
.partners-static {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 2rem 0;
    width: 100%;
}

.partners-static-item {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Social Proof / Logo Carousel Section */
.logo-carousel {
    overflow: hidden;
    position: relative;
    padding: 2rem 0;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.logo-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

.logo-track:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-item:hover {
    opacity: 1;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

