.team-profile-section {
    padding: 18px 0 110px;
    margin-top: 50px;
    /* background:
        radial-gradient(circle at top left, rgba(39, 202, 201, 0.12), transparent 26%),
        linear-gradient(180deg, #fbfcff 0%, #ffffff 24%, #ffffff 100%); */
}

.team-profile-section .container {
    max-width: 1280px;
}

.team-profile-shell {
    padding: clamp(28px, 4vw, 54px);
    border: 1px solid rgba(16, 37, 77, 0.08);
    border-radius: 34px;
    background: #ffffff;
    box-shadow: 0 24px 70px rgba(13, 35, 74, 0.08);
}

.team-profile-hero {
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.2fr);
    gap: clamp(24px, 3vw, 42px);
    align-items: center;
}

.team-profile-visual {
    position: relative;
    display: flex;
    justify-content: center;
    padding: 18px 0 6px;
}

.team-profile-portrait {
    position: relative;
    width: min(100%, 440px);
}

.team-profile-portrait::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 36px;
    width: clamp(220px, 74%, 330px);
    aspect-ratio: 1 / 1;
    transform: translateX(-50%);
    border-radius: 50%;
    background: #ffae32;
    z-index: 0;
}

.team-profile-portrait::after {
    content: "";
    position: absolute;
    left: 8%;
    top: 12%;
    width: 82%;
    height: 82%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.56), transparent 72%);
    z-index: 0;
}

.team-profile-portrait img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 28px 40px rgba(16, 37, 77, 0.12));
}

.team-profile-content {
    max-width: 100%;
    padding-left: clamp(8px, 2vw, 22px);
}

.team-profile-kicker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #27cac9;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.team-profile-kicker::before {
    content: "";
    width: 38px;
    height: 2px;
    background: #27cac9;
}

.team-profile-name {
    margin: 0 0 8px;
    color: black;
    font-size: 40px;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
}

.team-profile-role {
    margin: 0 0 24px;
    color: black;
    font-size: 24px;
    font-weight: 500;
}

.team-profile-summary {
    margin: 0;
    color: black;
    font-size: 18px;
    line-height: 1.95;
}

.team-profile-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 34px;
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(16, 37, 77, 0.1);
}

.team-profile-meta-item {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 6px;
    color: #4f5f79;
    font-size: 1rem;
}

.team-profile-meta-item span {
    color: #2d74ff;
    font-weight: 700;
}

.team-profile-meta-item strong,
.team-profile-meta-item a {
    color: #15224d;
    font-weight: 600;
    text-decoration: none;
}

.team-profile-socials {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
    margin-top: 30px;
}

.team-profile-social-label {
    color: #2d74ff;
    font-size: 1rem;
    font-weight: 700;
}

.team-profile-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.team-profile-social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(16, 37, 77, 0.12);
    border-radius: 50%;
    background: #ffffff;
    color: #15224d;
    text-decoration: none;
    transition: all 0.25s ease;
}

.team-profile-social-links a:hover {
    border-color: #27cac9;
    background: #27cac9;
    color: #ffffff;
    transform: translateY(-2px);
}

.team-profile-skills {
    margin-top: clamp(40px, 5vw, 76px);
    padding-top: clamp(28px, 4vw, 40px);
    border-top: 1px solid rgba(16, 37, 77, 0.1);
}

.team-profile-skills-copy h3 {
    max-width: 620px;
    margin: 0;
    color: #15224d;
    font-size: clamp(1.7rem, 3vw, 2.6rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.04em;
}

.team-profile-skills-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.team-profile-skill-card {
    padding: 24px;
    border: 1px solid rgba(16, 37, 77, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
}

.team-profile-skill-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 16px;
}

.team-profile-skill-head span {
    color: #15224d;
    font-size: 1rem;
    font-weight: 700;
}

.team-profile-skill-head strong {
    color: #27cac9;
    font-size: 1rem;
    font-weight: 800;
}

.team-profile-skill-bar {
    height: 12px;
    border-radius: 999px;
    background: rgba(39, 202, 201, 0.12);
    overflow: hidden;
}

.team-profile-skill-bar span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(90deg, #27cac9 0%, #2d74ff 100%);
}

@media (max-width: 1199.98px) {
    .team-profile-hero {
        grid-template-columns: minmax(240px, 0.9fr) minmax(280px, 1.1fr);
    }
}

@media (max-width: 991.98px) {
    .team-profile-section {
        padding: 16px 0 90px;
    }

    .team-profile-shell {
        border-radius: 28px;
    }

    .team-profile-hero {
        grid-template-columns: 1fr;
    }

    .team-profile-content {
        max-width: 100%;
        padding-left: 0;
    }
}

@media (max-width: 767.98px) {
    .team-profile-section {
        padding-bottom: 72px;
    }

    .team-profile-shell {
        padding: 22px 18px 28px;
        border-radius: 24px;
    }

    .team-profile-portrait {
        width: min(100%, 340px);
    }

    .team-profile-summary {
        font-size: 1rem;
        line-height: 1.8;
    }

    .team-profile-meta {
        gap: 14px 20px;
    }

    .team-profile-skills-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575.98px) {
    .team-profile-section .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    .team-profile-meta,
    .team-profile-socials {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-profile-social-links {
        gap: 10px;
    }

    .team-profile-social-links a {
        width: 44px;
        height: 44px;
    }

    .team-profile-skill-card {
        padding: 20px 18px;
    }
}
