/* ============================================================
   HOME-2.CSS — Trust-Driven Ecosystem Homepage
   ──────────────────────────────────────────────
   Design Tokens (from custom-home.css):
     Primary  : #0c3a30     Accent   : #ffd2b1
     Dark     : #071f1a     Deep     : #e8a876
     Title    : #232323     Grey     : #6b7280
     Cream    : #faf6f2     Font     : Manrope
   ============================================================ */

/* ── REUSABLE SECTION PRIMITIVES ───────────────────────────── */
.h2-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.h2-section--dark {
    background: #0c3a30;
}
.h2-section--darker {
    background: #071f1a;
}
.h2-section--cream {
    background: #faf6f2;
}
.h2-section--white {
    background: #ffffff;
}

.h2-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: #0c3a30;
}
.h2-eyebrow::before {
    content: '';
    width: 28px;
    height: 2px;
    background: #d4936a;
    border-radius: 2px;
}
.h2-eyebrow--light {
    color: #ffd2b1;
}
.h2-eyebrow--light::before {
    background: #ffd2b1;
}

.h2-heading {
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 900;
    line-height: 1.12;
    letter-spacing: -2px;
    color: #0c3a30;
    margin-bottom: 24px;
}
.h2-heading--light {
    color: #ffffff;
}
.h2-heading em {
    font-style: italic;
    font-weight: 900;
    color: #ffd2b1;
}

.h2-desc {
    font-size: 16px;
    line-height: 1.85;
    color: #6b7280;
    font-weight: 400;
    max-width: 600px;
    margin-bottom: 40px;
}
.h2-desc--light {
    color: rgba(255,255,255,0.7);
}
.h2-desc--center {
    margin-left: auto;
    margin-right: auto;
}

.h2-section-header {
    text-align: center;
    margin-bottom: 64px;
}
.h2-section-header .h2-desc {
    margin-left: auto;
    margin-right: auto;
}

.h2-btn {
    padding: 16px 36px;
    background: #0c3a30;
    color: #ffffff;
    border: none;
    border-radius: 100px;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.h2-btn:hover {
    background: #19503e;
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(12,58,48,0.18);
    color: #ffffff;
}
.h2-btn--accent {
    background: #ffd2b1;
    color: #0c3a30;
}
.h2-btn--accent:hover {
    background: #e8a876;
    color: #0c3a30;
    box-shadow: 0 16px 40px rgba(255,210,177,0.25);
}
.h2-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.3);
    color: #ffffff;
}
.h2-btn--outline:hover {
    border-color: #ffd2b1;
    color: #ffd2b1;
}
.h2-btn--outline-dark {
    background: transparent;
    border: 1.5px solid rgba(12,58,48,0.2);
    color: #0c3a30;
}
.h2-btn--outline-dark:hover {
    border-color: #0c3a30;
    background: #0c3a30;
    color: #ffffff;
}

.h2-pill {
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.h2-pill--dark {
    background: rgba(12,58,48,0.06);
    color: #0c3a30;
    border: 1px solid rgba(12,58,48,0.08);
}
.h2-pill--light {
    background: rgba(255,210,177,0.1);
    border: 1px solid rgba(255,210,177,0.2);
    color: #ffd2b1;
}

/* ── 1. HERO ───────────────────────────────────────────────── */
.h2-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: #071f1a;
}
.h2-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 1;
}
.h2-hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.35);
}
.h2-hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(160deg,
        rgba(7,31,26,0.92) 0%,
        rgba(7,31,26,0.75) 40%,
        rgba(7,31,26,0.85) 100%);
}
.h2-hero__grain {
    position: absolute;
    inset: 0;
    z-index: 3;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}
.h2-hero__content {
    position: relative;
    z-index: 4;
    max-width: 780px;
    padding-top: 60px;
}
.h2-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    color: #ffd2b1;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.h2-hero__label::before {
    content: '';
    width: 32px;
    height: 2px;
    background: #ffd2b1;
    border-radius: 2px;
}
.h2-hero.go .h2-hero__label {
    opacity: 1;
    transform: translateY(0);
}

.h2-hero__title {
    font-size: clamp(42px, 5.5vw, 72px);
    font-weight: 900;
    line-height: 1.06;
    letter-spacing: -3px;
    color: #ffffff;
    margin-bottom: 28px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.h2-hero.go .h2-hero__title {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.15s;
}
.h2-hero__title em {
    font-style: normal;
    color: #ffd2b1;
}

.h2-hero__subtitle {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255,255,255,0.6);
    max-width: 560px;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.h2-hero.go .h2-hero__subtitle {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.h2-hero__actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.16,1,0.3,1);
}
.h2-hero.go .h2-hero__actions {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.45s;
}

.h2-hero__trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}
.h2-hero.go .h2-hero__trust {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}
.h2-hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}
.h2-hero__trust-item i {
    color: #ffd2b1;
    font-size: 14px;
}

.h2-hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}
.h2-hero__scroll-line {
    width: 1px;
    height: 48px;
    background: rgba(255,255,255,0.15);
    position: relative;
    overflow: hidden;
}
.h2-hero__scroll-line::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffd2b1;
    animation: h2ScrollPulse 2s infinite ease;
}
@keyframes h2ScrollPulse {
    0% { top: -100%; }
    100% { top: 100%; }
}
.h2-hero__scroll-text {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

/* ── 2. TRUST BAR ──────────────────────────────────────────── */
.h2-trustbar {
    padding: 36px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(12,58,48,0.05);
}
.h2-trustbar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 52px;
    flex-wrap: wrap;
}
.h2-trustbar__label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #6b7280;
    white-space: nowrap;
}
.h2-trustbar__logos {
    display: flex;
    align-items: center;
    gap: 44px;
    flex-wrap: wrap;
    justify-content: center;
}
.h2-trustbar__logo {
    height: 28px;
    opacity: 0.35;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}
.h2-trustbar__logo:hover {
    opacity: 0.8;
    filter: grayscale(0%);
}



/* ── 4. IMPACT METRICS ─────────────────────────────────────── */
.h2-metrics__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}
.h2-metric {
    text-align: center;
    padding: 48px 24px;
    position: relative;
}
.h2-metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(12,58,48,0.08);
}
.h2-metric__number {
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 900;
    color: #0c3a30;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 10px;
}
.h2-metric__number sup {
    font-size: 0.5em;
    font-weight: 700;
    color: #ffd2b1;
    position: relative;
    top: -0.3em;
}
.h2-metric__label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #6b7280;
}

/* ── 5. WHAT X STANDS FOR (PILLARS) ───────────────────────── */
.h2-pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h2-pillar {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 40px 32px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.h2-pillar:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,210,177,0.2);
    transform: translateY(-6px);
}
.h2-pillar__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(255,210,177,0.1);
    border: 1px solid rgba(255,210,177,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #ffd2b1;
    margin-bottom: 24px;
}
.h2-pillar__title {
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.h2-pillar__desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255,255,255,0.55);
    margin: 0;
}



/* ── 7. FEATURED LEADERS ───────────────────────────────────── */
.h2-leaders__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.h2-leader {
    background: #ffffff;
    border: 1px solid rgba(12,58,48,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.h2-leader:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12,58,48,0.08);
    border-color: rgba(255,210,177,0.3);
}
.h2-leader__photo {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffd2b1;
    margin: 0 auto 20px;
    display: block;
}
.h2-leader__name {
    font-size: 16px;
    font-weight: 800;
    color: #0c3a30;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.h2-leader__name i {
    color: #0c3a30;
    font-size: 14px;
}
.h2-leader__title {
    font-size: 13px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 16px;
    line-height: 1.4;
}
.h2-leader__domain {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(255,210,177,0.15);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #0c3a30;
    letter-spacing: 0.3px;
}





/* ── 10. PODCAST & KNOWLEDGE ───────────────────────────────── */
.h2-podcast__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
}
.h2-podcast__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.h2-podcast__visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 420px;
    border-radius: 20px;
    transition: transform 0.8s ease;
}
.h2-podcast__visual:hover img {
    transform: scale(1.03);
}
.h2-podcast__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(255,210,177,0.9);
    color: #0c3a30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}
.h2-podcast__play:hover {
    transform: translate(-50%,-50%) scale(1.1);
    background: #ffd2b1;
}
.h2-podcast__episodes {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}
.h2-podcast__ep {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.h2-podcast__ep:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,210,177,0.2);
}
.h2-podcast__ep-num {
    font-size: 11px;
    font-weight: 800;
    color: #ffd2b1;
    min-width: 36px;
}
.h2-podcast__ep-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    flex: 1;
}
.h2-podcast__ep-dur {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
}

/* ── 11. TALENT WING ───────────────────────────────────────── */
.h2-talent__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}
.h2-talent__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}
.h2-talent__feat {
    padding: 24px;
    background: #faf6f2;
    border-radius: 16px;
    transition: all 0.3s ease;
}
.h2-talent__feat:hover {
    background: #0c3a30;
}
.h2-talent__feat:hover .h2-talent__feat-title,
.h2-talent__feat:hover .h2-talent__feat-desc {
    color: #ffffff;
}
.h2-talent__feat:hover .h2-talent__feat-icon {
    background: #ffd2b1;
    color: #0c3a30;
}
.h2-talent__feat-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #0c3a30;
    color: #ffd2b1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-bottom: 14px;
    transition: all 0.3s ease;
}
.h2-talent__feat-title {
    font-size: 14px;
    font-weight: 800;
    color: #0c3a30;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}
.h2-talent__feat-desc {
    font-size: 12px;
    line-height: 1.6;
    color: #6b7280;
    margin: 0;
    transition: color 0.3s ease;
}
.h2-talent__visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}
.h2-talent__visual img {
    width: 100%;
    object-fit: cover;
    min-height: 480px;
    border-radius: 20px;
    transition: transform 0.8s ease;
}
.h2-talent__visual:hover img {
    transform: scale(1.03);
}

/* ── 12. AWARDS & RECOGNITION ──────────────────────────────── */
.h2-awards__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h2-award {
    background: #ffffff;
    border: 1px solid rgba(12,58,48,0.06);
    border-radius: 20px;
    padding: 44px 32px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.h2-award:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12,58,48,0.06);
    border-color: #ffd2b1;
}
.h2-award__icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #ffd2b1;
    color: #0c3a30;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin: 0 auto 24px;
}
.h2-award__title {
    font-size: 20px;
    font-weight: 800;
    color: #0c3a30;
    margin-bottom: 12px;
    letter-spacing: -0.3px;
}
.h2-award__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #6b7280;
    margin: 0;
}

/* ── 13. MENTORSHIP NETWORK ────────────────────────────────── */
.h2-mentors__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.h2-mentor {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.h2-mentor:hover {
    transform: translateY(-6px);
    background: rgba(255,255,255,0.07);
    border-color: rgba(255,210,177,0.25);
}
.h2-mentor__photo {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255,210,177,0.3);
    margin: 0 auto 18px;
    display: block;
}
.h2-mentor__name {
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
}
.h2-mentor__expertise {
    font-size: 12px;
    font-weight: 500;
    color: #ffd2b1;
    margin-bottom: 12px;
}
.h2-mentor__years {
    font-size: 11px;
    font-weight: 600;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.5px;
}



/* ── 15. MEMBERSHIP ────────────────────────────────────────── */
.h2-membership__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.h2-tier {
    background: #ffffff;
    border: 1px solid rgba(12,58,48,0.06);
    border-radius: 20px;
    padding: 44px 32px;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    display: flex;
    flex-direction: column;
}
.h2-tier--featured {
    border-color: #ffd2b1;
    box-shadow: 0 8px 30px rgba(255,210,177,0.1);
    position: relative;
}
.h2-tier--featured::before {
    content: 'MOST POPULAR';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffd2b1;
    color: #0c3a30;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 5px 16px;
    border-radius: 100px;
}
.h2-tier:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(12,58,48,0.08);
}
.h2-tier__badge {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #ffd2b1;
    margin-bottom: 12px;
}
.h2-tier__name {
    font-size: 24px;
    font-weight: 900;
    color: #0c3a30;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}
.h2-tier__audience {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 28px;
    line-height: 1.5;
}
.h2-tier__benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}
.h2-tier__benefit {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: #232323;
}
.h2-tier__benefit i {
    color: #0c3a30;
    font-size: 15px;
    flex-shrink: 0;
}




/* ── 4b. WHAT DOES "X" MEAN? — Constellation Layout ────── */
.h2-xmeaning {
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
    background: #ffffff;
}

/* Subtle dot-grid background texture */
.h2-xmeaning::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(12,58,48,0.04) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.h2-xmeaning .container {
    position: relative;
    z-index: 1;
}

/* ── Constellation Container ─────────────────────────── */
.h2-xm__constellation {
    position: relative;
    width: 100%;
    max-width: 1140px;
    height: 900px;
    margin: 0 auto 48px;
}

/* ── Central Hub ─────────────────────────────────────── */
.h2-xm__hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.h2-xm__hub-letter {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0c3a30 0%, #19503e 100%);
    color: #ffd2b1;
    font-size: 52px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: -2px;
    position: relative;
    z-index: 3;
    box-shadow:
        0 0 0 8px rgba(12,58,48,0.06),
        0 20px 60px rgba(12,58,48,0.12);
}

.h2-xm__hub-tagline {
    margin-top: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #0c3a30;
    opacity: 0.5;
    white-space: nowrap;
    position: relative;
    z-index: 3;
}

/* Animated pulsing rings */
.h2-xm__hub-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid rgba(12,58,48,0.06);
    transform: translate(-50%, calc(-50% - 18px));
    pointer-events: none;
    z-index: 1;
}
.h2-xm__hub-ring--1 {
    width: 180px;
    height: 180px;
    animation: h2XmPulse 4s ease-in-out infinite;
}
.h2-xm__hub-ring--2 {
    width: 260px;
    height: 260px;
    border-color: rgba(12,58,48,0.04);
    animation: h2XmPulse 4s 0.8s ease-in-out infinite;
}
.h2-xm__hub-ring--3 {
    width: 360px;
    height: 360px;
    border-color: rgba(12,58,48,0.02);
    animation: h2XmPulse 4s 1.6s ease-in-out infinite;
}

@keyframes h2XmPulse {
    0%, 100% { opacity: 1; transform: translate(-50%, calc(-50% - 18px)) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, calc(-50% - 18px)) scale(1.06); }
}

/* ── SVG Connection Lines ────────────────────────────── */
.h2-xm__lines {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}
.h2-xm__line {
    stroke: rgba(12,58,48,0.08);
    stroke-width: 1.5;
    transition: stroke 0.4s ease, stroke-width 0.4s ease;
}

/* ── Concept Nodes ───────────────────────────────────── */
.h2-xm__node {
    position: absolute;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 220px;
    cursor: default;
    transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.h2-xm__node:hover {
    transform: translateY(-8px) scale(1.02);
}

/* Node positions — hexagonal orbit around center */
.h2-xm__node--explore    { top: 40px;   left: 100px; }
.h2-xm__node--exchange   { top: 40px;   right: 100px; left: auto; }
.h2-xm__node--express    { top: 380px;  left: 20px; }
.h2-xm__node--experience { top: 380px;  right: 20px; left: auto; }
.h2-xm__node--expand     { bottom: 20px; left: 150px; top: auto; }
.h2-xm__node--excel      { bottom: 20px; right: 150px; left: auto; top: auto; }

/* Beacon glow behind icon */
.h2-xm__node-beacon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,210,177,0.15) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.h2-xm__node:hover .h2-xm__node-beacon {
    opacity: 1;
}

/* Icon circle */
.h2-xm__node-icon {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #faf6f2;
    border: 2px solid rgba(12,58,48,0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #0c3a30;
    margin-bottom: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.h2-xm__node:hover .h2-xm__node-icon {
    background: #0c3a30;
    border-color: #0c3a30;
    color: #ffd2b1;
    box-shadow: 0 8px 28px rgba(12,58,48,0.18);
    transform: scale(1.1);
}

/* Content block */
.h2-xm__node-content {
    position: relative;
    z-index: 2;
}

.h2-xm__node-prefix {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffd2b1;
    margin-bottom: 6px;
}

.h2-xm__node-title {
    font-size: 20px;
    font-weight: 900;
    color: #0c3a30;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    transition: color 0.3s ease;
}

.h2-xm__node-desc {
    font-size: 13px;
    line-height: 1.65;
    color: #6b7280;
    margin: 0;
    max-width: 200px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.h2-xm__node:hover .h2-xm__node-desc {
    opacity: 1;
}

/* Hover-activated line glow (via sibling effect on parent hover) */
.h2-xm__constellation:has(.h2-xm__node--explore:hover)    .h2-xm__line--explore,
.h2-xm__constellation:has(.h2-xm__node--exchange:hover)   .h2-xm__line--exchange,
.h2-xm__constellation:has(.h2-xm__node--express:hover)    .h2-xm__line--express,
.h2-xm__constellation:has(.h2-xm__node--experience:hover) .h2-xm__line--experience,
.h2-xm__constellation:has(.h2-xm__node--expand:hover)     .h2-xm__line--expand,
.h2-xm__constellation:has(.h2-xm__node--excel:hover)      .h2-xm__line--excel {
    stroke: rgba(255,210,177,0.85);
    stroke-width: 2.5;
    marker-end: url(#icon-dot-hover);
}

/* Staggered entrance animation */
.h2-xm__constellation.go .h2-xm__node { animation: h2XmNodeIn 0.8s cubic-bezier(0.16,1,0.3,1) both; }
.h2-xm__constellation.go .h2-xm__node--explore    { animation-delay: 0.1s; }
.h2-xm__constellation.go .h2-xm__node--exchange   { animation-delay: 0.2s; }
.h2-xm__constellation.go .h2-xm__node--express    { animation-delay: 0.3s; }
.h2-xm__constellation.go .h2-xm__node--experience { animation-delay: 0.4s; }
.h2-xm__constellation.go .h2-xm__node--expand     { animation-delay: 0.5s; }
.h2-xm__constellation.go .h2-xm__node--excel      { animation-delay: 0.6s; }

@keyframes h2XmNodeIn {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Hub entrance */
.h2-xm__constellation.go .h2-xm__hub {
    animation: h2XmHubIn 1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes h2XmHubIn {
    from { opacity: 0; transform: translate(-50%,-50%) scale(0.7); }
    to   { opacity: 1; transform: translate(-50%,-50%) scale(1); }
}

/* Lines fade in */
.h2-xm__constellation.go .h2-xm__lines {
    animation: h2XmLinesIn 1.2s 0.3s ease both;
}
@keyframes h2XmLinesIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Bottom Statement ────────────────────────────────── */
.h2-xm__bottom {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}
.h2-xm__statement {
    font-size: 16px;
    line-height: 1.85;
    color: #6b7280;
    margin: 0;
    padding: 32px 0 0;
    border-top: 1px solid rgba(12,58,48,0.06);
}
.h2-xm__statement strong {
    color: #0c3a30;
    font-weight: 700;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* ── Tablet (≤991px) ───────────────────────────────────────── */
@media (max-width: 991px) {
    .h2-section { padding: 80px 0; }

    .h2-hero__content { padding-top: 40px; max-width: 600px; }
    .h2-hero__title { font-size: clamp(36px, 5vw, 52px); letter-spacing: -2px; }


    .h2-metrics__grid { grid-template-columns: repeat(2, 1fr); }
    .h2-metric:nth-child(2)::after { display: none; }
    .h2-metric { padding: 36px 20px; }

    .h2-pillars__grid { grid-template-columns: repeat(2, 1fr); }
    .h2-leaders__grid { grid-template-columns: repeat(2, 1fr); }




    .h2-podcast__grid { grid-template-columns: 1fr; gap: 40px; }

    .h2-talent__grid { gap: 48px; }
    .h2-mentors__grid { grid-template-columns: repeat(2, 1fr); }


    /* X Meaning — Tablet: switch to 2-col grid */
    .h2-xmeaning { padding: 80px 0 60px; }
    .h2-xm__constellation {
        height: auto;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
    .h2-xm__hub {
        position: relative;
        top: auto; left: auto;
        transform: none;
        grid-column: 1 / -1;
        justify-self: center;
        margin-bottom: 16px;
    }
    .h2-xm__hub-ring { display: none; }
    .h2-xm__lines { display: none; }
    .h2-xm__node {
        position: relative;
        top: auto !important; left: auto !important;
        right: auto !important; bottom: auto !important;
        width: 100%;
        background: #faf6f2;
        border-radius: 20px;
        padding: 32px 24px;
        border: 1px solid rgba(12,58,48,0.05);
        transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
    }
    .h2-xm__node:hover {
        transform: translateY(-6px);
        box-shadow: 0 16px 40px rgba(12,58,48,0.06);
        border-color: rgba(255,210,177,0.3);
    }
    .h2-xm__node-beacon { display: none; }
    .h2-xm__node-desc { max-width: 100%; }
}

/* ── Mobile (≤767px) ───────────────────────────────────────── */
@media (max-width: 767px) {
    .h2-section { padding: 64px 0; }
    .h2-heading { font-size: clamp(26px, 7vw, 38px); letter-spacing: -1px; }
    .h2-section-header { margin-bottom: 44px; }

    .h2-hero { min-height: 90vh; }
    .h2-hero__content { padding-top: 20px; }
    .h2-hero__title { font-size: clamp(30px, 8vw, 44px); letter-spacing: -1.5px; }
    .h2-hero__subtitle { font-size: 15px; }
    .h2-hero__actions { flex-direction: column; }
    .h2-hero__actions .h2-btn { width: 100%; justify-content: center; }
    .h2-hero__trust { flex-direction: column; gap: 12px; }
    .h2-hero__scroll { display: none; }

    .h2-trustbar__inner { flex-direction: column; gap: 20px; }
    .h2-trustbar__logos { gap: 28px; }
    .h2-trustbar__logo { height: 22px; }



    .h2-metrics__grid { grid-template-columns: 1fr 1fr; }
    .h2-metric::after { display: none; }
    .h2-metric { padding: 28px 16px; }
    .h2-metric__number { font-size: clamp(28px, 8vw, 42px); }

    .h2-pillars__grid { grid-template-columns: 1fr; }
    .h2-pillar { padding: 28px 24px; }



    .h2-leaders__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .h2-leader { padding: 28px 20px; }
    .h2-leader__photo { width: 72px; height: 72px; }





    .h2-podcast__visual img { min-height: 280px; }

    .h2-talent__grid { grid-template-columns: 1fr; gap: 36px; }
    .h2-talent__visual { order: -1; }
    .h2-talent__visual img { min-height: 300px; }
    .h2-talent__features { grid-template-columns: 1fr; }

    .h2-awards__grid { grid-template-columns: 1fr; }
    .h2-award { padding: 32px 24px; }

    .h2-mentors__grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .h2-mentor { padding: 24px 16px; }



    .h2-membership__grid { grid-template-columns: 1fr; }
    .h2-tier { padding: 36px 24px; }



    /* X Meaning — Mobile: single column */
    .h2-xmeaning { padding: 64px 0 52px; }
    .h2-xm__constellation {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .h2-xm__hub-letter {
        width: 88px;
        height: 88px;
        font-size: 38px;
    }
    .h2-xm__hub-tagline { font-size: 9px; letter-spacing: 2px; }
    .h2-xm__node { padding: 28px 20px; }
    .h2-xm__node-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 14px;
    }
    .h2-xm__node-title { font-size: 18px; }
    .h2-xm__node-desc { font-size: 12px; }
    .h2-xm__statement { font-size: 14px; }
}

/* ── Small Mobile (≤480px) ─────────────────────────────────── */
@media (max-width: 480px) {
    .h2-section { padding: 52px 0; }
    .h2-heading { font-size: clamp(22px, 6vw, 30px); letter-spacing: -0.5px; }

    .h2-hero__title { font-size: clamp(26px, 7vw, 36px); letter-spacing: -1px; }
    .h2-hero__subtitle { font-size: 14px; }
    .h2-hero__label { font-size: 9px; letter-spacing: 2.5px; }

    .h2-trustbar__logo { height: 18px; }
    .h2-trustbar__logos { gap: 20px; }

    .h2-metrics__grid { grid-template-columns: 1fr; }

    .h2-leaders__grid { grid-template-columns: 1fr; }

    .h2-mentors__grid { grid-template-columns: 1fr; }


    /* X Meaning — Small mobile */
    .h2-xmeaning { padding: 52px 0 40px; }
    .h2-xm__hub-letter {
        width: 72px;
        height: 72px;
        font-size: 32px;
    }
    .h2-xm__node { padding: 24px 16px; }
    .h2-xm__node-icon {
        width: 48px;
        height: 48px;
        font-size: 18px;
        margin-bottom: 12px;
    }
    .h2-xm__node-title { font-size: 16px; }
}
