.pni-map-section {
      --bg: #07111f;
      --bg-2: #0b1628;
      --panel: rgba(12, 21, 38, 0.78);
      --panel-2: rgba(255,255,255,0.04);
      --stroke: rgba(255,255,255,0.10);
      --stroke-strong: rgba(255,255,255,0.18);
      --text: #edf4ff;
      --muted: #9fb1ca;
      --yellow: #ffda35;
      --cyan: #3fe0d0;
      --red: #ff5f6d;
      --shadow: 0 18px 60px rgba(0, 0, 0, 0.38);
      position: relative;
      overflow: hidden;
      background:
        radial-gradient(circle at 12% 16%, rgba(255,216,77,.12), transparent 24%),
        radial-gradient(circle at 86% 18%, rgba(255,95,109,.14), transparent 26%),
        radial-gradient(circle at 50% 80%, rgba(63,224,208,.14), transparent 28%),
        linear-gradient(180deg, #07111f 0%, #091426 48%, #07101c 100%);
      color: var(--text);
      padding: clamp(70px, 8vw, 110px) 0;
      isolation: isolate;
    }

    .pni-map-section::before,
    .pni-map-section::after {
      content: "";
      position: absolute;
      border-radius: 999px;
      filter: blur(70px);
      opacity: .5;
      pointer-events: none;
      z-index: 0;
    }

    .pni-map-section::before {
      width: 240px;
      height: 240px;
      top: 40px;
      left: -80px;
      background: rgba(255,216,77,.16);
    }

    .pni-map-section::after {
      width: 280px;
      height: 280px;
      bottom: 20px;
      right: -100px;
      background: rgba(63,224,208,.12);
    }

    .pni-map-wrap {
      width: min(calc(100% - 40px), 1240px);
      margin: 0 auto;
      position: relative;
      z-index: 1;
    }

    .pni-map-header {
      display: grid;
      gap: 18px;
      max-width: 960px;
      margin-bottom: 30px;
    }

    .pni-map-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      width: fit-content;
      padding: 8px 14px;
      border-radius: 999px;
      border: 1px solid rgba(255,255,255,.12);
      background: rgba(255,255,255,.04);
      backdrop-filter: blur(12px);
      font-size: .78rem;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--yellow);
    }

    .pni-map-eyebrow::before {
      content: "";
      width: 9px;
      height: 9px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--yellow), var(--red));
      box-shadow: 0 0 0 5px rgba(255,216,77,.10);
    }

    .pni-map-title {
      margin: 0;
      font-size: clamp(2.4rem, 5vw, 5rem);
      line-height: .95;
      letter-spacing: -.045em;
      font-weight: 850;
    }

    .pni-map-title .accent {
      color: var(--yellow);
    }

    .pni-map-subtitle {
      margin: 0;
      max-width: 900px;
      font-size: clamp(1rem, 1.35vw, 1.15rem);
      line-height: 1.75;
      color: var(--muted);
    }

    .pni-top-stats {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-bottom: 26px;
    }

    .pni-top-stat {
      padding: 18px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
      backdrop-filter: blur(14px);
      box-shadow: var(--shadow);
    }

    .pni-top-stat b {
      display: block;
      color: var(--yellow);
      font-size: .78rem;
      margin-bottom: 8px;
      text-transform: uppercase;
      letter-spacing: .12em;
    }

    .pni-top-stat strong {
      display: block;
      font-size: 1.35rem;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 6px;
    }

    .pni-top-stat span {
      display: block;
      color: var(--muted);
      font-size: .92rem;
      line-height: 1.55;
    }

    .pni-map-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(320px, 430px);
      gap: 24px;
      align-items: start;
    }

    .pni-ecosystem {
      position: relative;
      min-height: 840px;
      border-radius: 34px;
      padding: 22px;
      background:
        radial-gradient(circle at 50% 50%, rgba(255,255,255,.04), transparent 55%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
      border: 1px solid rgba(255,255,255,.09);
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .pni-ecosystem::before {
      content: "";
      position: absolute;
      inset: 20px;
      border: 1px dashed rgba(255,255,255,.08);
      border-radius: 28px;
      pointer-events: none;
    }

    .pni-center {
      position: absolute;
      top: 50%;
      left: 50%;
      width: min(34vw, 330px);
      height: min(34vw, 330px);
      min-width: 250px;
      min-height: 250px;
      transform: translate(-50%, -50%);
      border-radius: 999px;
      background:
        radial-gradient(circle at 35% 30%, rgba(255,216,77,.26), transparent 35%),
        radial-gradient(circle at 70% 70%, rgba(63,224,208,.18), transparent 35%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.06));
      border: 1px solid rgba(255,255,255,.14);
      box-shadow:
        0 20px 80px rgba(0, 0, 0, 0.45),
        0 0 0 1px rgba(255,255,255,.05),
        0 0 70px rgba(63,224,208,.10);
      display: grid;
      place-items: center;
      text-align: center;
      padding: 26px;
      z-index: 2;
    }

    .pni-center::before,
    .pni-center::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: inherit;
      border: 1px solid rgba(255,255,255,.08);
      pointer-events: none;
    }

    .pni-center::after {
      inset: -14px;
      border: 1px dashed rgba(255,255,255,.09);
      opacity: .7;
    }

    .pni-center .eyebrow {
      display: inline-block;
      margin-bottom: 10px;
      font-size: .72rem;
      text-transform: uppercase;
      letter-spacing: .14em;
      font-weight: 800;
      color: var(--yellow);
    }

    .pni-center h3 {
      margin: 0 0 9px;
      font-size: clamp(1.1rem, 1.7vw, 1.5rem);
      line-height: 1.05;
      letter-spacing: -.035em;
      text-wrap: balance;
    }

    .pni-center p {
      margin: 0;
      font-size: .82rem;
      line-height: 1.45;
      color: #dce7fa;
    }

    .pni-node {
      --x: 0%;
      --y: 0%;
      position: absolute;
      left: var(--x);
      top: var(--y);
      transform: translate(-50%, -50%);
      width: clamp(180px, 24%, 240px);
      min-width: 0;
      padding: 16px 16px 15px;
      border-radius: 20px;
      border: 1px solid rgba(255,255,255,.10);
      background: linear-gradient(180deg, rgba(255,255,255,.065), rgba(255,255,255,.025));
      backdrop-filter: blur(16px);
      box-shadow: var(--shadow);
      color: var(--text);
      cursor: pointer;
      transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease, background .22s ease;
      z-index: 3;
      text-align: left;
    }

    .pni-node:hover,
    .pni-node:focus-visible,
    .pni-node.is-active {
      transform: translate(-50%, -50%) translateY(-4px);
      border-color: rgba(255,255,255,.22);
      background: linear-gradient(180deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
      outline: none;
      box-shadow: 0 24px 70px rgba(0,0,0,.40), 0 0 0 1px rgba(255,255,255,.05);
    }

    .pni-node::before {
      content: "";
      position: absolute;
      inset: 0 auto 0 0;
      width: 4px;
      border-radius: 20px 0 0 20px;
      background: linear-gradient(180deg, var(--yellow), var(--cyan), var(--red));
    }

    .pni-node-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 8px;
    }

    .pni-node-kicker {
      font-size: .72rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--cyan);
      font-weight: 800;
    }

    .pni-node-icon {
      width: 36px;
      height: 36px;
      border-radius: 12px;
      display: grid;
      place-items: center;
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.08);
      font-size: 1rem;
      flex-shrink: 0;
    }

    .pni-node h4 {
      margin: 0 0 8px;
      font-size: 1rem;
      line-height: 1.15;
      letter-spacing: -.02em;
      font-weight: 800;
    }

    .pni-node p {
      margin: 0;
      color: var(--muted);
      font-size: .9rem;
      line-height: 1.55;
    }

    .pni-svg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
    }

    .pni-svg line {
      stroke: rgba(255,255,255,.12);
      stroke-width: 1.4;
      stroke-dasharray: 8 8;
    }

    .pni-svg circle {
      fill: rgba(255,255,255,.14);
    }

    .pni-sidepanel {
      display: grid;
      gap: 16px;
      position: sticky;
      top: 100px;
    }

    .pni-panel {
      padding: 24px;
      border-radius: 26px;
      background: linear-gradient(180deg, rgba(255,255,255,.055), rgba(255,255,255,.03));
      border: 1px solid rgba(255,255,255,.10);
      box-shadow: var(--shadow);
      backdrop-filter: blur(14px);
    }

    .pni-panel-tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      margin-bottom: 10px;
      font-size: .75rem;
      font-weight: 800;
      letter-spacing: .12em;
      color: var(--yellow);
      text-transform: uppercase;
    }

    .pni-panel-tag::before {
      content: "";
      width: 8px;
      height: 8px;
      border-radius: 999px;
      background: var(--yellow);
      box-shadow: 0 0 0 5px rgba(255,216,77,.10);
    }

    .pni-panel h3 {
      margin: 0 0 10px;
      font-size: clamp(1.45rem, 2.1vw, 1.9rem);
      line-height: 1.02;
      letter-spacing: -.03em;
    }

    .pni-panel p {
      margin: 0;
      color: #dce7fa;
      line-height: 1.75;
      font-size: .98rem;
    }

    .pni-panel-stats {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
      margin-top: 18px;
    }

    .pni-stat-card {
      padding: 14px 14px 12px;
      border-radius: 18px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.08);
      min-height: 104px;
    }

    .pni-stat-card b {
      display: block;
      color: var(--cyan);
      font-size: .73rem;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 8px;
      font-weight: 800;
    }

    .pni-stat-card strong {
      display: block;
      font-size: 1.4rem;
      line-height: 1;
      letter-spacing: -.03em;
      margin-bottom: 8px;
    }

    .pni-stat-card span {
      display: block;
      color: var(--muted);
      font-size: .88rem;
      line-height: 1.45;
    }

    .pni-mini-notes {
      display: grid;
      gap: 10px;
    }

    .pni-mini-note {
      padding: 14px 14px 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,.045);
      border: 1px solid rgba(255,255,255,.08);
      color: #dce7fa;
      font-size: .92rem;
      line-height: 1.6;
    }

    .pni-mini-note b {
      color: var(--yellow);
    }

    @media (max-width: 1100px) {
      .pni-map-grid {
        grid-template-columns: 1fr;
      }

      .pni-sidepanel {
        position: relative;
        top: auto;
      }
    }

    @media (max-width: 900px) {
      .pni-top-stats {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .pni-ecosystem {
        min-height: auto;
        display: grid;
        gap: 16px;
        padding: 18px;
      }

      .pni-ecosystem::before,
      .pni-svg {
        display: none;
      }

      .pni-center,
      .pni-node {
        position: relative;
        left: auto;
        top: auto;
        transform: none !important;
        width: 100%;
        min-width: 0;
      }

      .pni-center {
        min-height: 240px;
        order: -1;
        border-radius: 26px;
        padding: 26px 22px;
      }

      .pni-center h3 { font-size: 1.45rem; }
      .pni-center p { font-size: .95rem; line-height: 1.6; }
    }

    @media (max-width: 640px) {
      .pni-top-stats,
      .pni-panel-stats {
        grid-template-columns: 1fr;
      }

      .pni-map-wrap {
        width: min(calc(100% - 28px), 1240px);
      }

      .pni-panel,
      .pni-top-stat {
        padding: 18px;
      }
    }
  
@media (prefers-reduced-motion: reduce) {
  .pni-node { transition: none !important; }
  .pni-node:hover, .pni-node:focus-visible, .pni-node.is-active { transform: translate(-50%, -50%) !important; }
}
