/* ================================================================
   IGEOUZ MENTOR NETWORK — Atlas visual system
   Page-specific polish for networking.html
   ================================================================ */

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

.networking-section {
    --network-emerald: #10b981;
    --network-emerald-deep: #047857;
    --network-mint: #6ee7b7;
    --network-blue: #0ea5e9;
    --network-amber: #f59e0b;
    position: relative;
    isolation: isolate;
    min-height: 100vh;
    padding: 132px 0 110px;
    overflow: hidden;
}

.networking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -2;
    pointer-events: none;
    background:
        radial-gradient(circle at 7% 12%, rgba(16, 185, 129, 0.11), transparent 25rem),
        radial-gradient(circle at 96% 42%, rgba(14, 165, 233, 0.08), transparent 27rem),
        linear-gradient(rgba(16, 185, 129, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.025) 1px, transparent 1px);
    background-size: auto, auto, 72px 72px, 72px 72px;
    mask-image: linear-gradient(to bottom, #000 0%, #000 88%, transparent 100%);
}

.networking-section > .container {
    max-width: 1280px;
}

/* Hero */
.network-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 230px;
    align-items: center;
    gap: clamp(2rem, 5vw, 5rem);
    min-height: 430px;
    padding: clamp(2.4rem, 5vw, 4.8rem);
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 38px;
    background:
        linear-gradient(118deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 253, 250, 0.93) 52%, rgba(236, 254, 255, 0.86) 100%);
    box-shadow:
        0 30px 80px rgba(15, 23, 42, 0.09),
        inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.network-hero::before {
    content: '';
    position: absolute;
    inset: 0 0 0 35%;
    z-index: 0;
    pointer-events: none;
    opacity: 0.1;
    background: url('../images/world-map.svg') center / cover no-repeat;
    filter: saturate(0) sepia(1) hue-rotate(95deg) saturate(5);
    mask-image: linear-gradient(90deg, transparent, #000 28%, #000);
}

.network-hero::after {
    content: '';
    position: absolute;
    right: -105px;
    bottom: -190px;
    width: 510px;
    aspect-ratio: 1;
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 47% 53% 43% 57%;
    box-shadow:
        0 0 0 34px rgba(16, 185, 129, 0.035),
        0 0 0 74px rgba(16, 185, 129, 0.025),
        0 0 0 122px rgba(14, 165, 233, 0.018);
    transform: rotate(-14deg);
    pointer-events: none;
}

.network-hero__content,
.network-hero__emblem {
    position: relative;
    z-index: 2;
}

.network-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.35rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(5, 150, 105, 0.18);
    border-radius: 999px;
    background: rgba(16, 185, 129, 0.075);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    line-height: 1;
    text-transform: uppercase;
}

.network-kicker i {
    font-size: 1.05rem;
}

.network-hero h1 {
    max-width: 780px;
    margin: 0 0 1.2rem;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-size: clamp(2.55rem, 5.4vw, 5.25rem);
    font-weight: 800;
    letter-spacing: -0.055em;
    line-height: 0.99;
}

.network-hero h1 span {
    background: linear-gradient(125deg, #047857 3%, #10b981 48%, #0ea5e9 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}

.network-hero__lead {
    max-width: 650px;
    margin: 0 0 0.8rem;
    color: var(--text-primary);
    font-size: clamp(1rem, 1.6vw, 1.24rem);
    font-weight: 600;
    line-height: 1.55;
}

.network-hero__description {
    max-width: 660px;
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.96rem;
    line-height: 1.75;
}

.network-hero__emblem {
    justify-self: end;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.network-compass {
    position: relative;
    display: grid;
    place-items: center;
    width: 174px;
    aspect-ratio: 1;
    border: 1px solid rgba(5, 150, 105, 0.23);
    border-radius: 50%;
    background:
        radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 28%, transparent 29%),
        linear-gradient(45deg, transparent 49.5%, rgba(5, 150, 105, 0.12) 50%, transparent 50.5%),
        linear-gradient(-45deg, transparent 49.5%, rgba(5, 150, 105, 0.12) 50%, transparent 50.5%),
        rgba(255, 255, 255, 0.45);
    box-shadow:
        inset 0 0 0 12px rgba(16, 185, 129, 0.035),
        0 18px 45px rgba(5, 150, 105, 0.12);
}

.network-compass::before,
.network-compass::after {
    content: '';
    position: absolute;
    background: rgba(5, 150, 105, 0.22);
}

.network-compass::before {
    width: 1px;
    height: calc(100% + 18px);
}

.network-compass::after {
    width: calc(100% + 18px);
    height: 1px;
}

.network-compass i {
    color: #059669;
    font-size: 5.8rem;
    filter: drop-shadow(0 12px 18px rgba(5, 150, 105, 0.2));
    animation: networkCompassFloat 6s ease-in-out infinite;
}

.network-compass__north {
    position: absolute;
    top: -31px;
    color: #047857;
    font: 800 0.68rem/1 var(--font-heading);
    letter-spacing: 0.18em;
}

.network-hero__emblem-label {
    color: rgba(4, 120, 87, 0.72);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.64rem;
    font-weight: 700;
    letter-spacing: 0.2em;
}

.network-hero__decor {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}

.network-hero__route {
    position: absolute;
    width: 330px;
    height: 115px;
    border-top: 1px dashed rgba(5, 150, 105, 0.25);
    border-radius: 50%;
}

.network-hero__route::before,
.network-hero__route::after {
    content: '';
    position: absolute;
    top: 2px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 14px rgba(16, 185, 129, 0.8);
}

.network-hero__route::before { left: 8%; }
.network-hero__route::after { right: 8%; }
.network-hero__route--west { left: -135px; bottom: 21px; transform: rotate(12deg); }
.network-hero__route--east { right: -105px; top: 42px; transform: rotate(-14deg); }

.network-hero__coordinate {
    position: absolute;
    color: rgba(4, 120, 87, 0.48);
    font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.15em;
}

.network-hero__coordinate--one { left: 3rem; bottom: 1.55rem; }
.network-hero__coordinate--two { right: 1.4rem; top: 50%; writing-mode: vertical-rl; }

/* Statistics */
.network-stats {
    position: relative;
    z-index: 4;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0;
    width: min(920px, calc(100% - 4rem));
    margin: -45px auto 62px;
    padding: 0.8rem;
    overflow: hidden;
    border: 1px solid rgba(16, 185, 129, 0.14);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    box-shadow: 0 22px 50px rgba(15, 23, 42, 0.1);
}

.stat-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 98px;
    padding: 1rem 1.4rem;
    text-align: left;
}

.stat-item + .stat-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 22%;
    width: 1px;
    height: 56%;
    background: linear-gradient(transparent, rgba(15, 23, 42, 0.14), transparent);
}

.stat-item__icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    flex: 0 0 auto;
    border: 1px solid rgba(16, 185, 129, 0.16);
    border-radius: 15px;
    background: linear-gradient(145deg, rgba(16, 185, 129, 0.12), rgba(14, 165, 233, 0.065));
    color: #059669;
    font-size: 1.45rem;
}

.stat-item h2 {
    margin: 0 0 0.14rem;
    color: var(--text-primary);
    font-size: clamp(1.65rem, 3vw, 2.25rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
}

.stat-item p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

/* Search and filters */
.network-filters.glass-card {
    display: grid;
    grid-template-columns: minmax(270px, 0.82fr) minmax(0, 1.8fr);
    align-items: center;
    gap: 1rem;
    max-width: 1160px;
    margin: 0 auto 1.5rem;
    padding: 0.85rem;
    border-color: rgba(15, 23, 42, 0.08);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
}

.network-filters.glass-card:hover {
    transform: none;
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 48px rgba(15, 23, 42, 0.08);
}

.network-search {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 0.65rem;
    min-height: 48px;
    padding: 0 0.95rem;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 14px;
    background: rgba(248, 250, 252, 0.92);
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.network-search:focus-within {
    border-color: rgba(16, 185, 129, 0.55);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1);
}

.network-search > i {
    color: #059669;
    font-size: 1.2rem;
}

.network-filters .network-search input {
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--text-primary);
    font: 500 0.9rem/1.2 var(--font-body);
}

.network-filters .network-search input::placeholder {
    color: var(--text-muted);
}

.network-search__clear {
    display: grid;
    place-items: center;
    width: 30px;
    height: 30px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(15, 23, 42, 0.06);
    color: var(--text-secondary);
    cursor: pointer;
}

.network-search__clear[hidden] { display: none; }
.network-search__clear:hover { background: rgba(16, 185, 129, 0.12); color: #047857; }

.network-filter-chips {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.45rem;
    min-width: 0;
}

.network-filters .network-filter-chips .btn {
    width: auto;
    flex: 0 0 auto;
    min-height: 40px;
    padding: 0.58rem 0.78rem;
    border: 1px solid transparent;
    border-radius: 11px;
    white-space: nowrap;
    font-size: 0.75rem;
    font-weight: 700;
}

.network-filters .network-filter-chips .btn-ghost {
    background: transparent;
    color: var(--text-secondary);
}

.network-filters .network-filter-chips .btn-ghost:hover {
    border-color: rgba(16, 185, 129, 0.16);
    background: rgba(16, 185, 129, 0.07);
    color: #047857;
    transform: translateY(-1px);
}

.network-filters .network-filter-chips .btn-primary {
    border-color: rgba(5, 150, 105, 0.1);
    background: linear-gradient(135deg, #047857, #10b981);
    color: #fff;
    box-shadow: 0 8px 18px rgba(5, 150, 105, 0.2);
}

.network-results {
    display: flex;
    align-items: center;
    gap: 1rem;
    max-width: 1100px;
    margin: 0 auto 1.2rem;
    padding: 0 0.25rem;
}

.network-results p {
    margin: 0;
    color: var(--text-secondary);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.network-results p span:first-child { color: #059669; }
.network-results__line { height: 1px; flex: 1; background: linear-gradient(90deg, rgba(16, 185, 129, 0.22), transparent); }
.network-results__coordinate { color: var(--text-muted); font: 700 0.6rem/1 ui-monospace, monospace; letter-spacing: 0.12em; }

/* Mentor cards */
.mentors-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto 5rem;
}

.mentors-grid[hidden],
.mentor-card[hidden] {
    display: none !important;
}

.mentor-card.glass-card {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    width: 100%;
    min-height: 525px;
    padding: 1.8rem;
    overflow: visible;
    border: 1px solid rgba(15, 23, 42, 0.08);
    border-radius: 24px;
    background:
        radial-gradient(circle at 96% 4%, rgba(16, 185, 129, 0.1) 0 4.6rem, transparent 4.65rem),
        radial-gradient(circle at 96% 4%, transparent 0 6.5rem, rgba(16, 185, 129, 0.055) 6.55rem 6.65rem, transparent 6.7rem),
        linear-gradient(148deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.83));
    box-shadow:
        0 14px 35px rgba(15, 23, 42, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.mentor-card.glass-card::before {
    content: '';
    position: absolute;
    left: 1.8rem;
    right: 1.8rem;
    top: 0;
    height: 3px;
    border-radius: 0 0 999px 999px;
    background: linear-gradient(90deg, #047857, #34d399 65%, #0ea5e9);
    opacity: 0.8;
}

.mentor-card.glass-card::after {
    content: 'ATLAS / ' attr(data-card-index);
    position: absolute;
    top: 1.05rem;
    right: 1.2rem;
    color: rgba(4, 120, 87, 0.48);
    font: 700 0.55rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
    letter-spacing: 0.14em;
}

.mentor-card.glass-card:hover {
    transform: translateY(-7px);
    border-color: rgba(16, 185, 129, 0.25);
    background:
        radial-gradient(circle at 96% 4%, rgba(16, 185, 129, 0.13) 0 4.6rem, transparent 4.65rem),
        radial-gradient(circle at 96% 4%, transparent 0 6.5rem, rgba(16, 185, 129, 0.075) 6.55rem 6.65rem, transparent 6.7rem),
        linear-gradient(148deg, rgba(255, 255, 255, 1), rgba(248, 250, 252, 0.92));
    box-shadow:
        0 24px 55px rgba(15, 23, 42, 0.11),
        0 10px 25px rgba(16, 185, 129, 0.08);
}

.mentor-header {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 1.15rem;
    min-height: 102px;
    padding-top: 0.25rem;
}

.mentor-avatar {
    position: relative;
    display: grid;
    place-items: center;
    width: 78px;
    height: 78px;
    flex: 0 0 78px;
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 23px;
    background:
        linear-gradient(145deg, rgba(236, 253, 245, 0.98), rgba(207, 250, 254, 0.88));
    color: #047857;
    box-shadow:
        inset 0 0 0 5px rgba(255, 255, 255, 0.66),
        0 12px 25px rgba(5, 150, 105, 0.13);
    font-family: var(--font-heading);
    font-size: 1.45rem;
    font-weight: 800;
    letter-spacing: -0.04em;
}

.mentor-avatar::after {
    content: '\2713';
    position: absolute;
    right: -5px;
    bottom: -5px;
    display: grid;
    place-items: center;
    width: 23px;
    height: 23px;
    border: 3px solid #fff;
    border-radius: 50%;
    background: #10b981;
    color: #fff;
    font: 800 0.65rem/1 var(--font-body);
    box-shadow: 0 4px 10px rgba(5, 150, 105, 0.22);
}

.mentor-title {
    display: flex;
    flex: 1;
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
}

.mentor-title h3 {
    max-width: calc(100% - 70px);
    margin: 0 0 0.65rem;
    color: var(--text-primary);
    font-size: clamp(1.18rem, 2vw, 1.4rem);
    font-weight: 750;
    letter-spacing: -0.035em;
    line-height: 1.2;
}

.mentor-badges {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    gap: 0.42rem;
}

.mentor-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.34rem;
    padding: 0.34rem 0.62rem;
    border-radius: 999px;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.045em;
    line-height: 1;
    text-transform: uppercase;
}

.mentor-badge.blue {
    border: 1px solid rgba(14, 165, 233, 0.18);
    background: rgba(14, 165, 233, 0.08);
    color: #0369a1;
}

.mentor-badge.orange {
    border: 1px solid rgba(245, 158, 11, 0.2);
    background: rgba(245, 158, 11, 0.09);
    color: #b45309;
}

.mentor-bio {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 1rem;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 16px;
    background: rgba(248, 250, 252, 0.65);
    color: var(--text-secondary);
}

.mentor-section-label,
.mentor-expertise h4 {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    margin: 0 0 0.8rem;
    color: var(--text-secondary);
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    line-height: 1;
    text-transform: uppercase;
}

.mentor-section-label i {
    color: #059669;
    font-size: 0.9rem;
}

.mentor-highlights {
    display: grid;
    gap: 0.62rem;
}

.mentor-highlights li {
    display: grid;
    grid-template-columns: 25px minmax(0, 1fr);
    align-items: start;
    gap: 0.6rem;
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.45;
}

.mentor-highlights li i {
    display: grid;
    place-items: center;
    width: 25px;
    height: 25px;
    margin-top: -2px;
    border-radius: 8px;
    background: rgba(16, 185, 129, 0.09);
    color: #059669;
    font-size: 0.9rem;
}

.mentor-expertise {
    position: relative;
    z-index: 1;
}

.expertise-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.expertise-badge {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 0.38rem 0.7rem;
    border: 1px solid rgba(16, 185, 129, 0.18);
    border-radius: 9px;
    background: rgba(16, 185, 129, 0.065);
    color: #047857;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1.2;
}

.mentor-card[data-expertise~='physical'] .expertise-badge {
    border-color: rgba(14, 165, 233, 0.2);
    background: rgba(14, 165, 233, 0.07);
    color: #0369a1;
}

.mentor-card[data-expertise~='mmt'] .expertise-badge {
    border-color: rgba(139, 92, 246, 0.2);
    background: rgba(139, 92, 246, 0.07);
    color: #6d28d9;
}

.mentor-divider {
    width: 100%;
    height: 1px;
    margin: auto 0 0;
    border: 0;
    background: linear-gradient(90deg, rgba(15, 23, 42, 0.1), transparent);
}

.mentor-footer {
    position: relative;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

/* Reach Out popover */
.reach-out-wrap { position: relative; }

.reach-out-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-height: 42px;
    padding: 0.68rem 1rem;
    border-radius: 12px;
    background: linear-gradient(135deg, #047857, #10b981);
    box-shadow: 0 9px 20px rgba(5, 150, 105, 0.2);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.2s ease;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

.reach-out-btn > i:first-child { font-size: 1.05rem; }
.reach-out-btn:hover { transform: translateY(-2px); box-shadow: 0 13px 27px rgba(5, 150, 105, 0.25); }
.reach-out-btn:active { transform: scale(0.95); }

.reach-out-btn .caret-icon {
    font-size: 0.8rem;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reach-out-wrap.open .reach-out-btn .caret-icon { transform: rotate(180deg); }

.reach-out-popover {
    position: absolute;
    bottom: calc(100% + 10px);
    right: 0;
    min-width: 210px;
    padding: 6px;
    border: 1px solid rgba(15, 23, 42, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    z-index: 100;
    pointer-events: none;
    opacity: 0;
    transform: translateY(8px) scale(0.96);
    transform-origin: bottom right;
    transition: opacity 0.25s cubic-bezier(0.16, 1, 0.3, 1), transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.reach-out-wrap.open .reach-out-popover {
    pointer-events: auto;
    opacity: 1;
    transform: translateY(0) scale(1);
}

.reach-out-popover-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: var(--font-body);
    transition: background 0.18s ease, transform 0.18s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease;
    opacity: 0;
    transform: translateY(6px);
}

.reach-out-popover-item i {
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.18s ease;
}

.reach-out-popover-item:hover {
    background: rgba(16, 185, 129, 0.08);
    color: #047857;
    transform: translateY(-1px);
}

.reach-out-popover-item:hover i { opacity: 1; }
.reach-out-popover-item:active { transform: scale(0.97); }

.reach-out-wrap.open .reach-out-popover-item {
    opacity: 1;
    transform: translateY(0);
}

.reach-out-wrap.open .reach-out-popover-item:nth-child(1) {
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.04s,
                transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.04s,
                background 0.18s ease,
                color 0.18s ease;
}

.reach-out-wrap.open .reach-out-popover-item:nth-child(3) {
    transition: opacity 0.28s cubic-bezier(0.16, 1, 0.3, 1) 0.12s,
                transform 0.32s cubic-bezier(0.34, 1.56, 0.64, 1) 0.12s,
                background 0.18s ease,
                color 0.18s ease;
}

.reach-out-popover-divider {
    height: 1px;
    margin: 2px 0.5rem;
    background: var(--border-glass);
}

.reach-out-popover-item:focus-visible,
.network-search__clear:focus-visible,
.network-filter-chips .btn:focus-visible,
.reach-out-btn:focus-visible,
.network-empty .btn:focus-visible {
    outline: 3px solid rgba(14, 165, 233, 0.35);
    outline-offset: 3px;
}

/* Empty state */
.network-empty {
    max-width: 680px;
    margin: 2rem auto 5rem;
    padding: 3.2rem 2rem;
    border: 1px dashed rgba(16, 185, 129, 0.28);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.55);
    text-align: center;
}

.network-empty[hidden] { display: none; }
.network-empty__icon { display: grid; place-items: center; width: 70px; height: 70px; margin: 0 auto 1.2rem; border-radius: 22px; background: rgba(16, 185, 129, 0.1); color: #059669; font-size: 2.25rem; }
.network-empty h2 { margin-bottom: 0.55rem; font-size: 1.55rem; }
.network-empty p { max-width: 460px; margin: 0 auto 1.35rem; }

/* Dark theme */
[data-theme='dark'] .network-hero {
    border-color: rgba(52, 211, 153, 0.16);
    background: linear-gradient(118deg, rgba(6, 28, 26, 0.97), rgba(6, 36, 35, 0.93) 54%, rgba(7, 32, 48, 0.92));
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

[data-theme='dark'] .network-hero::before { opacity: 0.105; filter: saturate(0) invert(1) sepia(1) hue-rotate(95deg) saturate(4); }
[data-theme='dark'] .network-kicker { color: #6ee7b7; border-color: rgba(52, 211, 153, 0.2); background: rgba(16, 185, 129, 0.1); }
[data-theme='dark'] .network-compass { border-color: rgba(52, 211, 153, 0.24); background: radial-gradient(circle, rgba(15, 23, 42, 0.88) 0 28%, transparent 29%), linear-gradient(45deg, transparent 49.5%, rgba(52, 211, 153, 0.12) 50%, transparent 50.5%), linear-gradient(-45deg, transparent 49.5%, rgba(52, 211, 153, 0.12) 50%, transparent 50.5%), rgba(15, 23, 42, 0.38); }
[data-theme='dark'] .network-compass i,
[data-theme='dark'] .network-compass__north { color: #6ee7b7; }
[data-theme='dark'] .network-stats { border-color: rgba(52, 211, 153, 0.14); background: rgba(10, 23, 36, 0.9); box-shadow: 0 24px 56px rgba(0, 0, 0, 0.38); }
[data-theme='dark'] .stat-item + .stat-item::before { background: linear-gradient(transparent, rgba(255, 255, 255, 0.12), transparent); }
[data-theme='dark'] .network-filters.glass-card,
[data-theme='dark'] .network-filters.glass-card:hover { border-color: rgba(255, 255, 255, 0.07); background: rgba(15, 23, 42, 0.7); }
[data-theme='dark'] .network-search { border-color: rgba(255, 255, 255, 0.08); background: rgba(2, 6, 23, 0.55); }
[data-theme='dark'] .network-search:focus-within { border-color: rgba(52, 211, 153, 0.5); background: rgba(2, 6, 23, 0.78); }
[data-theme='dark'] .network-filters .network-filter-chips .btn-ghost:hover { color: #6ee7b7; }
[data-theme='dark'] .mentor-card.glass-card,
[data-theme='dark'] .mentor-card.glass-card:hover { border-color: rgba(255, 255, 255, 0.07); background: radial-gradient(circle at 96% 4%, rgba(16, 185, 129, 0.1) 0 4.6rem, transparent 4.65rem), radial-gradient(circle at 96% 4%, transparent 0 6.5rem, rgba(52, 211, 153, 0.045) 6.55rem 6.65rem, transparent 6.7rem), linear-gradient(148deg, rgba(15, 23, 42, 0.96), rgba(9, 22, 35, 0.9)); box-shadow: 0 18px 46px rgba(0, 0, 0, 0.3); }
[data-theme='dark'] .mentor-card.glass-card:hover { border-color: rgba(52, 211, 153, 0.2); box-shadow: 0 28px 62px rgba(0, 0, 0, 0.44), 0 10px 30px rgba(16, 185, 129, 0.08); }
[data-theme='dark'] .mentor-avatar { border-color: rgba(52, 211, 153, 0.23); background: linear-gradient(145deg, rgba(6, 78, 59, 0.72), rgba(8, 47, 73, 0.8)); color: #a7f3d0; box-shadow: inset 0 0 0 5px rgba(2, 6, 23, 0.25), 0 12px 25px rgba(0, 0, 0, 0.28); }
[data-theme='dark'] .mentor-avatar::after { border-color: #0f172a; }
[data-theme='dark'] .mentor-badge.blue { color: #7dd3fc; }
[data-theme='dark'] .mentor-badge.orange { color: #fcd34d; }
[data-theme='dark'] .mentor-bio { border-color: rgba(255, 255, 255, 0.055); background: rgba(2, 6, 23, 0.3); }
[data-theme='dark'] .expertise-badge { color: #6ee7b7; }
[data-theme='dark'] .mentor-card[data-expertise~='physical'] .expertise-badge { color: #7dd3fc; }
[data-theme='dark'] .mentor-card[data-expertise~='mmt'] .expertise-badge { color: #c4b5fd; }
[data-theme='dark'] .reach-out-popover { border-color: rgba(255, 255, 255, 0.1); background: rgba(15, 23, 42, 0.97); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), 0 4px 16px rgba(0, 0, 0, 0.25); }
[data-theme='dark'] .reach-out-popover-item:hover { background: rgba(16, 185, 129, 0.12); color: #6ee7b7; }
[data-theme='dark'] .network-empty { border-color: rgba(52, 211, 153, 0.23); background: rgba(15, 23, 42, 0.55); }

@keyframes networkCompassFloat {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    50% { transform: rotate(3deg) translateY(-5px); }
}

@media (max-width: 1080px) {
    .network-filters.glass-card { grid-template-columns: 1fr; }
    .network-filter-chips { justify-content: flex-start; overflow-x: auto; padding: 0.05rem 0 0.2rem; scrollbar-width: thin; }
}

@media (max-width: 820px) {
    .networking-section { padding-top: 102px; }
    .network-hero { grid-template-columns: 1fr; min-height: auto; padding-bottom: 6rem; }
    .network-hero__content { max-width: 680px; }
    .network-hero__emblem { position: absolute; right: 2rem; bottom: 1.5rem; flex-direction: row; }
    .network-compass { width: 74px; }
    .network-compass i { font-size: 2.65rem; }
    .network-compass__north { top: -18px; }
    .network-hero__coordinate--two { display: none; }
    .network-stats { width: calc(100% - 2rem); }
    .stat-item { gap: 0.7rem; padding-inline: 0.8rem; }
    .stat-item__icon { width: 40px; height: 40px; border-radius: 13px; font-size: 1.2rem; }
    .mentors-grid { grid-template-columns: 1fr; max-width: 620px; }
    .mentor-card.glass-card { min-height: 0; }
}

@media (max-width: 620px) {
    .networking-section > .container { padding-inline: 1rem; }
    .network-hero { padding: 2rem 1.35rem 5.5rem; border-radius: 27px; }
    .network-hero h1 { font-size: clamp(2.35rem, 12vw, 3.6rem); }
    .network-hero__lead { font-size: 0.98rem; }
    .network-hero__description { font-size: 0.86rem; }
    .network-kicker { font-size: 0.6rem; letter-spacing: 0.065em; }
    .network-hero__coordinate--one { left: 1.35rem; bottom: 1.25rem; }
    .network-hero__emblem { right: 1.25rem; bottom: 1.15rem; }
    .network-hero__emblem-label { display: none; }
    .network-stats { grid-template-columns: 1fr; width: calc(100% - 1.5rem); margin-top: -32px; padding: 0.45rem; }
    .stat-item { justify-content: flex-start; min-height: 72px; padding: 0.65rem 1rem; }
    .stat-item + .stat-item::before { top: 0; left: 10%; width: 80%; height: 1px; background: linear-gradient(90deg, transparent, rgba(15, 23, 42, 0.12), transparent); }
    .network-filters.glass-card { padding: 0.7rem; border-radius: 18px; }
    .network-filter-chips { margin-inline: -0.7rem; padding: 0.15rem 0.7rem 0.3rem; }
    .network-filter-chips::after { content: ''; flex: 0 0 0.25rem; }
    .network-results__coordinate { display: none; }
    .mentor-card.glass-card { gap: 1.15rem; padding: 1.35rem; border-radius: 21px; }
    .mentor-card.glass-card::before { left: 1.35rem; right: 1.35rem; }
    .mentor-card.glass-card::after { right: 0.9rem; }
    .mentor-header { gap: 0.9rem; min-height: 96px; }
    .mentor-avatar { width: 68px; height: 68px; flex-basis: 68px; border-radius: 20px; font-size: 1.25rem; }
    .mentor-title h3 { max-width: calc(100% - 35px); font-size: 1.15rem; }
    .mentor-badges { align-items: flex-start; }
    .mentor-badge { font-size: 0.56rem; }
    .mentor-footer { align-items: stretch; }
    .reach-out-wrap,
    .reach-out-btn { width: 100%; }
    .reach-out-btn { justify-content: center; }
    .reach-out-popover { left: 0; right: 0; min-width: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .networking-section *,
    .networking-section *::before,
    .networking-section *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
