/* ════════════════════════════════════
   TEAM HERO
════════════════════════════════════ */

#team-hero {
    padding: 144px 24px 80px;
    background: #ffffff;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

@media (min-width: 1024px) {
    #team-hero {
        padding: 176px 24px 112px;
    }
}

.th-container {
    max-width: 1100px;
    margin: 0 auto;
}

.th-inner {
    max-width: 760px;
    margin: 0 auto;
}

.th-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #999999;
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.th-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    color: #333333;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
}

.th-text {
    font-size: clamp(16px, 2vw, 18px);
    color: #666666;
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════
   TEAM STATS
════════════════════════════════════ */

#team-stats {
    padding: 48px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
}

.ts-container {
    max-width: 980px;
    margin: 0 auto;
}

.ts-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

@media (max-width: 700px) {
    .ts-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

.ts-stat {
    text-align: center;
}

.ts-num {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin: 0 0 10px;
    letter-spacing: -0.04em;
    font-family: 'Inter', sans-serif;
}

.ts-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    margin: 0;
    font-family: 'Inter', sans-serif;
}



#team-founders {
    padding: 80px 24px;
    background: var(--color-bg-white);
    font-family: 'Inter', sans-serif;
}

@media (min-width: 1024px) {
    #team-founders {
        padding: 128px 24px;
    }
}

.tf-container {
    max-width: 980px;
    margin: 0 auto;
}

/* ── Header ── */
.tf-header {
    text-align: center;
    margin-bottom: 80px;
}

.tf-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.tf-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── List ── */
.tf-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

@media (min-width: 1024px) {
    .tf-list {
        gap: 112px;
    }
}

/* ── Member row ── */
.tf-member {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px 64px;
    align-items: start;
}

.tf-member--reverse .tf-photo {
    order: 2;
}

.tf-member--reverse .tf-body {
    order: 1;
    width: 590px;
}

@media (max-width: 768px) {

    .tf-member,
    .tf-member--reverse .tf-photo,
    .tf-member--reverse .tf-body {
        grid-template-columns: 1fr;
        order: unset;
    }

    .tf-member {
        display: flex;
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 430px) {
    .tf-container {
        width: 100%;
    }


    .tf-member,
    .tf-member--reverse .tf-photo,
    .tf-member--reverse .tf-body {
        grid-template-columns: 1fr;
        order: unset;
        width: 100%;
    }


    #team-hero {
        padding: 74px 24px 80px;
        background: #ffffff;
        font-family: 'Inter', sans-serif;
        text-align: center;
    }

}


/* ── Photo placeholder ── */
.tf-photo {
    width: 100%;
    aspect-ratio: 1;
    background: var(--color-border-divider);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 320px;
}

@media (max-width: 768px) {
    .tf-photo {
        max-width: 180px;
    }
}

.tf-initials {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--color-text-primary);
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.04em;
    border-radius: 10px;
}

.tf-initials img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}

/* ── Body ── */
.tf-role-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-white);
    background: #1A1A2E;
    border-radius: 999px;
    padding: 5px 14px;
    margin-bottom: 14px;
    font-family: 'Inter', sans-serif;
}

.tf-name {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 6px;
    font-family: 'Inter', sans-serif;
}

.tf-role {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-secondary);
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
}

.tf-bio {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── Credentials ── */
.tf-credentials {
    margin-top: 32px;
}

.tf-cred-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin: 0 0 12px;
    font-family: 'Inter', sans-serif;
}

.tf-cred-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tf-cred-list li {
    font-size: 14px;
    color: var(--color-text-primary);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
    font-family: 'Inter', sans-serif;
}

.tf-dash {
    color: var(--color-text-placeholder);
    flex-shrink: 0;
    margin-top: 1px;
}

/* ── Tags ── */
.tf-tags {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tf-tag {
    font-size: 12px;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border-light);
    border-radius: 999px;
    padding: 5px 14px;
    font-family: 'Inter', sans-serif;
}

#team-advisors {
    padding: 80px 24px;
    background: var(--color-bg-white);
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--color-border-light);
}

@media (min-width: 1024px) {
    #team-advisors {
        padding: 112px 24px;
    }
}

.ta-container {
    max-width: 980px;
    margin: 0 auto;
}

/* ── Header ── */
.ta-header {
    text-align: center;
    margin-bottom: 56px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.ta-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.ta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 16px;
    font-family: 'Inter', sans-serif;
}

.ta-subtitle {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ── Grid ── */
.ta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

@media (max-width: 780px) {
    .ta-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* ── Card ── */
.ta-card {
    background: var(--color-bg-white);
    border: 1px solid var(--color-border-light);
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.2s ease;
    font-family: 'Inter', sans-serif;
}

.ta-card:hover {
    border-color: var(--color-border-medium);
}

.ta-card-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.ta-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-primary-dark);
    color: var(--color-text-white);
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.03em;
}

.ta-name {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.3;
    margin: 0 0 3px;
    font-family: 'Inter', sans-serif;
}

.ta-org {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-primary-dark);
    margin: 0;
    font-family: 'Inter', sans-serif;
}

.ta-desc {
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}



/* ════════════════════════════════════
   WHY THIS TEAM
════════════════════════════════════ */

#team-why {
    padding: 80px 24px;
    background: var(--color-bg-white);
    font-family: 'Inter', sans-serif;
    border-top: 1px solid var(--color-border-light);
}

@media (min-width: 1024px) {
    #team-why {
        padding: 112px 24px;
    }
}

.tw-container {
    max-width: 1100px;
    margin: 0 auto;
}

.tw-inner {
    max-width: fit-content;
}

.tw-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-placeholder);
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.tw-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text-primary);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 40px;
    font-family: 'Inter', sans-serif;
}

/* ── Pillars ── */
.tw-pillars {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.tw-pillar {
    border-left: 2px solid var(--color-primary-dark);
    padding-left: 24px;
}

.tw-pillar-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-primary);
    margin: 0 0 10px;
    font-family: 'Inter', sans-serif;
}

.tw-pillar-text {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ════════════════════════════════════
   TEAM CTA
════════════════════════════════════ */

#team-cta {
    padding: 80px 24px;
    background: #1A1A2E;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

@media (min-width: 1024px) {
    #team-cta {
        padding: 112px 24px;
    }
}

.tc-container {
    max-width: 720px;
    margin: 0 auto;
}

.tc-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text-white);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin: 0 0 24px;
    font-family: 'Inter', sans-serif;
}

.tc-text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    max-width: 480px;
    margin: 0 auto 40px;
    font-family: 'Inter', sans-serif;
}

.tc-actions {
    display: flex;
    flex-direction: row;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.tc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 999px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: opacity 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
}

.tc-btn--primary {
    background: var(--color-primary-dark);
    color: var(--color-text-white);
    border: 2px solid var(--color-primary-dark);
}

.tc-btn--primary:hover {
    opacity: 0.88;
}

.tc-btn--outline {
    background: transparent;
    color: var(--color-text-white);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.tc-btn--outline:hover {
    border-color: rgba(255, 255, 255, 0.6);
}