/* ── Team page hero ── */
.team-hero {
    background: var(--ink);
    padding: 140px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.team-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0, 212, 168, 0.1) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 100%, rgba(180, 79, 212, 0.06) 0%, transparent 55%);
}
.team-hero .hero-tag {
    position: relative;
}
.team-hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.02em;
    margin: 1rem 0;
    position: relative;
}
.team-hero h1 em {
    font-style: italic;
    color: var(--mint);
}
.team-hero p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 auto;
    position: relative;
}
