/* page-source-css */

    @import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@500;600;700;800&display=swap");

    #ngw-home,
    #ngw-home * { box-sizing: border-box; }

    #ngw-home {
      --ngw-bg: #080712;
      --ngw-bg-2: #0f0b20;
      --ngw-card: rgba(255,255,255,.062);
      --ngw-line: rgba(255,255,255,.11);
      --ngw-text: #f7f5ff;
      --ngw-muted: #b9b4c9;
      --ngw-purple: #9d35ff;
      --ngw-purple-2: #6b20db;
      --ngw-cyan: #48d9ff;
      --ngw-pink: #ed64ff;
      --ngw-green: #75f2c1;
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0;
      overflow-x: clip;
      color: var(--ngw-text);
      background:
        radial-gradient(circle at 10% 3%, rgba(157,53,255,.17), transparent 27%),
        radial-gradient(circle at 90% 18%, rgba(72,217,255,.11), transparent 28%),
        radial-gradient(circle at 18% 66%, rgba(237,100,255,.07), transparent 26%),
        linear-gradient(180deg, #070610 0%, #0c0818 46%, #080712 100%);
      font-family: "DM Sans", Arial, sans-serif;
      line-height: 1.6;
      isolation: isolate;
      -webkit-text-size-adjust: 100%;
      text-size-adjust: 100%;
    }

    #ngw-home a { color: inherit; text-decoration: none; }
    #ngw-home button { font: inherit; }
    #ngw-home img { max-width: 100%; display: block; }
    #ngw-home svg { display: block; }
    #ngw-home main,
    #ngw-home section,
    #ngw-home footer { width: 100%; max-width: 100%; }

    #ngw-home .ngw-shell {
      width: min(1160px, calc(100% - 48px));
      margin-inline: auto;
      position: relative;
      z-index: 2;
    }

    #ngw-home [id^="ngw-"] { scroll-margin-top: 108px; }

    #ngw-home .ngw-grid-bg {
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: .16;
      background-image:
        linear-gradient(rgba(255,255,255,.038) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.038) 1px, transparent 1px);
      background-size: 62px 62px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
      -webkit-mask-image: linear-gradient(to bottom, rgba(0,0,0,.9), transparent 92%);
      pointer-events: none;
    }

    #ngw-home .ngw-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 8px 13px;
      border: 1px solid rgba(157,53,255,.36);
      border-radius: 999px;
      color: #e7ccff;
      background: rgba(157,53,255,.1);
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .13em;
      text-transform: uppercase;
    }

    #ngw-home .ngw-eyebrow::before {
      content: "";
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--ngw-cyan);
      box-shadow: 0 0 14px rgba(72,217,255,.8);
    }

    #ngw-home .ngw-gradient-text {
      color: transparent;
      background: linear-gradient(100deg, #fff 0%, #d8b7ff 34%, #82e9ff 72%, #fff 100%);
      background-size: 200% auto;
      background-clip: text;
      -webkit-background-clip: text;
      animation: ngw-shine 8s linear infinite;
    }

    @keyframes ngw-shine { to { background-position: 200% center; } }

    /* Exact home-page header system */
    #ngw-home .ngw-header-wrap {
      position: -webkit-sticky;
      position: sticky;
      top: 0;
      z-index: 99990;
      width: 100%;
      padding: 9px 0;
      isolation: isolate;
      transition: padding .25s ease;
    }

    #ngw-home .ngw-header-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: -1;
      background: linear-gradient(180deg, rgba(8,7,18,.82), rgba(8,7,18,.38));
      border-bottom: 1px solid rgba(255,255,255,.045);
      -webkit-backdrop-filter: blur(18px) saturate(145%);
      backdrop-filter: blur(18px) saturate(145%);
      opacity: .42;
      transition: opacity .25s ease, background .25s ease;
      pointer-events: none;
    }

    #ngw-home .ngw-header-wrap.ngw-scrolled { padding: 7px 0; }
    #ngw-home .ngw-header-wrap.ngw-scrolled::before {
      opacity: 1;
      background: rgba(8,7,18,.91);
      border-bottom-color: rgba(255,255,255,.09);
    }

    #ngw-home .ngw-nav {
      position: relative;
      width: 100%;
      min-width: 0;
      min-height: 58px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 7px 9px 7px 13px;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 17px;
      background: rgba(255,255,255,.045);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      box-shadow: 0 12px 35px rgba(0,0,0,.2);
    }

    #ngw-home .ngw-brand,
    #ngw-home .ngw-footer-logo {
      position: relative;
      display: inline-flex;
      align-items: center;
      flex-shrink: 0;
      width: 218px;
      min-height: 48px;
      padding: 0;
      border: 0;
      background: transparent;
      isolation: isolate;
    }

    #ngw-home .ngw-brand::before,
    #ngw-home .ngw-footer-logo::before {
      content: "";
      position: absolute;
      inset: -14px -18px;
      z-index: -1;
      border-radius: 999px;
      background: radial-gradient(circle, rgba(157,53,255,.2), rgba(72,217,255,.07) 42%, transparent 72%);
      opacity: .78;
      pointer-events: none;
    }

    #ngw-home .ngw-brand img,
    #ngw-home .ngw-footer-logo img {
      width: 100%;
      height: auto;
      max-height: 52px;
      object-fit: contain;
      filter: brightness(0) invert(1) contrast(1.38) drop-shadow(0 0 12px rgba(255,255,255,.19));
    }

    #ngw-home .ngw-nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: clamp(15px, 1.55vw, 24px);
      margin-left: auto;
    }

    #ngw-home .ngw-nav-links a {
      position: relative;
      color: #d4cfdf;
      font-size: 13px;
      font-weight: 700;
      white-space: nowrap;
      transition: color .2s ease;
    }

    #ngw-home .ngw-nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -7px;
      height: 2px;
      border-radius: 2px;
      background: linear-gradient(90deg, var(--ngw-purple), var(--ngw-cyan));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform .25s ease;
    }

    #ngw-home .ngw-nav-links a:hover,
    #ngw-home .ngw-nav-links a[aria-current="page"] { color: #fff; }
    #ngw-home .ngw-nav-links a:hover::after,
    #ngw-home .ngw-nav-links a[aria-current="page"]::after { transform: scaleX(1); }

    #ngw-home .ngw-btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 49px;
      padding: 0 20px;
      overflow: hidden;
      border: 1px solid transparent;
      border-radius: 14px;
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      text-align: center;
      transform: translateZ(0);
      transition: transform .3s cubic-bezier(.2,.7,.2,1), border-color .3s ease, box-shadow .3s ease, background-color .3s ease;
    }

    #ngw-home .ngw-btn-primary {
      border-color: rgba(255,255,255,.2);
      background: linear-gradient(115deg, #5a16c7 0%, #a33aff 22%, #ed64ff 43%, #48d9ff 68%, #6b20db 86%, #5a16c7 100%);
      background-size: 320% 320%;
      box-shadow: 0 14px 34px rgba(124,58,237,.32), inset 0 1px 0 rgba(255,255,255,.24);
      animation: ngw-primary-button-gradient 7s ease infinite;
    }

    #ngw-home .ngw-btn-secondary {
      border-color: rgba(255,255,255,.2);
      background: rgba(255,255,255,.075);
      -webkit-backdrop-filter: blur(16px) saturate(135%);
      backdrop-filter: blur(16px) saturate(135%);
      box-shadow: 0 12px 30px rgba(0,0,0,.18), inset 0 1px 0 rgba(255,255,255,.13);
    }

    #ngw-home .ngw-btn:hover { transform: translateY(-3px); }
    #ngw-home .ngw-btn-primary:hover {
      border-color: rgba(255,255,255,.42);
      box-shadow: 0 20px 44px rgba(124,58,237,.42), 0 0 24px rgba(72,217,255,.12), inset 0 1px 0 rgba(255,255,255,.3);
    }
    #ngw-home .ngw-btn-secondary:hover {
      border-color: rgba(255,255,255,.36);
      background: rgba(255,255,255,.115);
      box-shadow: 0 18px 38px rgba(0,0,0,.24), inset 0 1px 0 rgba(255,255,255,.18);
    }

    @keyframes ngw-primary-button-gradient {
      0%,100% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
    }

    #ngw-home .ngw-nav-cta { min-height: 43px; padding-inline: 18px; font-size: 13px; white-space: nowrap; }

    #ngw-home .ngw-menu-btn {
      display: none;
      width: 44px;
      height: 44px;
      align-items: center;
      justify-content: center;
      flex: 0 0 auto;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 12px;
      color: #fff;
      background: rgba(255,255,255,.06);
      cursor: pointer;
    }

    #ngw-home .ngw-scroll-progress {
      position: fixed;
      left: 0;
      top: 0;
      z-index: 100000;
      width: 100%;
      height: 3px;
      transform: scaleX(0);
      transform-origin: left;
      background: linear-gradient(90deg, var(--ngw-purple), var(--ngw-cyan), var(--ngw-pink));
      pointer-events: none;
    }

    /* Team hero */
    #ngw-home .ngw-team-hero {
      position: relative;
      min-height: 720px;
      display: flex;
      align-items: center;
      padding: 72px 0 92px;
      overflow: hidden;
      border-bottom: 1px solid rgba(255,255,255,.075);
    }

    #ngw-home .ngw-team-hero::before {
      content: "";
      position: absolute;
      width: 560px;
      height: 560px;
      right: -220px;
      top: 0;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(72,217,255,.14), rgba(157,53,255,.11) 46%, transparent 72%);
      pointer-events: none;
    }

    #ngw-home .ngw-team-hero-grid {
      display: grid;
      grid-template-columns: minmax(0, .93fr) minmax(500px, 1.07fr);
      gap: clamp(42px, 5vw, 76px);
      align-items: center;
    }

    #ngw-home .ngw-team-hero-copy { position: relative; z-index: 3; }

    #ngw-home .ngw-team-hero h1 {
      max-width: 700px;
      margin: 18px 0 18px;
      font-family: "Manrope", Arial, sans-serif;
      font-size: clamp(50px, 5vw, 72px);
      line-height: 1.04;
      letter-spacing: -.055em;
      font-weight: 800;
      text-wrap: balance;
    }

    #ngw-home .ngw-team-hero-copy > p {
      max-width: 650px;
      margin: 0;
      color: var(--ngw-muted);
      font-size: clamp(16px, 1.3vw, 18px);
      line-height: 1.72;
    }

    #ngw-home .ngw-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

    #ngw-home .ngw-hero-proof {
      display: flex;
      flex-wrap: wrap;
      gap: 11px;
      margin-top: 24px;
    }

    #ngw-home .ngw-hero-proof span {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 32px;
      padding: 0 11px;
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 999px;
      color: #d6d0df;
      background: rgba(255,255,255,.035);
      font-size: 11px;
      font-weight: 700;
    }

    #ngw-home .ngw-hero-proof i {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--ngw-green);
      box-shadow: 0 0 12px rgba(117,242,193,.72);
    }

    #ngw-home .ngw-team-visual { position: relative; min-height: 560px; display: grid; place-items: center; }

    #ngw-home .ngw-team-console {
      position: relative;
      width: min(610px, 100%);
      padding: 18px;
      border: 1px solid rgba(255,255,255,.14);
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.026));
      box-shadow: 0 34px 90px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.1);
      -webkit-backdrop-filter: blur(18px);
      backdrop-filter: blur(18px);
      transform: translateZ(0);
      animation: ngw-console-float 7s ease-in-out infinite;
    }

    @keyframes ngw-console-float {
      0%,100% { transform: translate3d(0,5px,0); }
      50% { transform: translate3d(0,-8px,0); }
    }

    #ngw-home .ngw-console-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      padding: 7px 7px 16px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }

    #ngw-home .ngw-console-brand { display: flex; align-items: center; gap: 10px; font-family: "Manrope"; font-size: 12px; font-weight: 800; }
    #ngw-home .ngw-console-mark { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: linear-gradient(145deg, #a83cff, #4f31cd 60%, #2acff1); }
    #ngw-home .ngw-console-live { display: inline-flex; align-items: center; gap: 7px; color: var(--ngw-green); font-size: 9px; font-weight: 850; letter-spacing: .09em; text-transform: uppercase; }
    #ngw-home .ngw-console-live::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: currentColor; box-shadow: 0 0 14px currentColor; animation: ngw-live-pulse 1.8s ease-in-out infinite; }
    @keyframes ngw-live-pulse { 50% { opacity: .38; transform: scale(.76); } }

    #ngw-home .ngw-console-metrics { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 14px; }
    #ngw-home .ngw-console-metric { padding: 13px; border: 1px solid rgba(255,255,255,.075); border-radius: 14px; background: rgba(255,255,255,.028); }
    #ngw-home .ngw-console-metric small { display: block; color: #90889f; font-size: 8px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
    #ngw-home .ngw-console-metric strong { display: block; margin-top: 5px; font-family: "Manrope"; font-size: 21px; line-height: 1; }

    #ngw-home .ngw-leader-stack { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 10px; }
    #ngw-home .ngw-leader-mini { position: relative; min-width: 0; overflow: hidden; border: 1px solid rgba(255,255,255,.09); border-radius: 17px; background: linear-gradient(155deg, rgba(157,53,255,.15), rgba(72,217,255,.045)); }
    #ngw-home .ngw-leader-mini-visual { position: relative; aspect-ratio: .86 / 1; overflow: hidden; background: radial-gradient(circle at 50% 25%, rgba(72,217,255,.19), transparent 42%), linear-gradient(180deg, rgba(157,53,255,.18), rgba(10,8,24,.25)); }
    #ngw-home .ngw-leader-mini img { width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 18px 20px rgba(0,0,0,.34)); transition: transform .35s ease; }
    #ngw-home .ngw-leader-mini:hover img { transform: scale(1.035); }
    #ngw-home .ngw-leader-mini-copy { padding: 10px 11px 12px; }
    #ngw-home .ngw-leader-mini-copy strong { display: block; font-family: "Manrope"; font-size: 11px; }
    #ngw-home .ngw-leader-mini-copy span { display: block; margin-top: 2px; color: #a9a2b7; font-size: 8px; }

    #ngw-home .ngw-console-flow {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 10px;
      position: relative;
      margin-top: 11px;
      padding: 13px;
      border: 1px solid rgba(255,255,255,.075);
      border-radius: 15px;
      background: rgba(255,255,255,.025);
    }
    #ngw-home .ngw-console-flow::before { content: ""; position: absolute; left: 12%; right: 12%; top: 28px; height: 2px; background: linear-gradient(90deg, var(--ngw-purple), var(--ngw-cyan), var(--ngw-green)); opacity: .62; }
    #ngw-home .ngw-flow-item { position: relative; z-index: 2; text-align: center; }
    #ngw-home .ngw-flow-item b { width: 32px; height: 32px; display: grid; place-items: center; margin: 0 auto 6px; border-radius: 10px; color: #fff; background: #15112f; box-shadow: 0 0 0 5px rgba(11,8,25,.92); font-size: 10px; }
    #ngw-home .ngw-flow-item span { color: #8f889d; font-size: 7px; font-weight: 700; }

    /* Proof strip */
    #ngw-home .ngw-team-stats-wrap { position: relative; z-index: 4; margin-top: -43px; }
    #ngw-home .ngw-team-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 23px;
      background: rgba(255,255,255,.052);
      -webkit-backdrop-filter: blur(16px);
      backdrop-filter: blur(16px);
      box-shadow: 0 28px 74px rgba(0,0,0,.32);
    }
    #ngw-home .ngw-team-stat { min-height: 126px; padding: 23px; position: relative; display: flex; flex-direction: column; justify-content: center; }
    #ngw-home .ngw-team-stat:not(:last-child)::after { content: ""; position: absolute; top: 24px; right: 0; bottom: 24px; width: 1px; background: rgba(255,255,255,.1); }
    #ngw-home .ngw-team-stat strong { font-family: "Manrope"; font-size: clamp(29px, 3vw, 43px); line-height: 1; letter-spacing: -.04em; }
    #ngw-home .ngw-team-stat strong span { color: var(--ngw-cyan); }
    #ngw-home .ngw-team-stat p { margin: 9px 0 0; color: var(--ngw-muted); font-size: 11px; font-weight: 600; }

    /* Team group sections */
    #ngw-home .ngw-team-group {
      position: relative;
      padding: clamp(82px, 7vw, 108px) 0;
      border-bottom: 1px solid rgba(255,255,255,.065);
    }
    #ngw-home .ngw-team-group:nth-of-type(even) { background: linear-gradient(180deg, rgba(255,255,255,.012), rgba(255,255,255,.025)); }

    #ngw-home .ngw-group-head {
      display: grid;
      grid-template-columns: 70px minmax(0, 780px);
      gap: 22px;
      align-items: start;
      margin-bottom: 40px;
    }
    #ngw-home .ngw-group-number {
      width: 62px;
      height: 62px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 18px;
      color: #dcb7ff;
      background: linear-gradient(145deg, rgba(157,53,255,.22), rgba(72,217,255,.08));
      font-family: "Manrope";
      font-size: 20px;
      font-weight: 800;
    }
    #ngw-home .ngw-group-head h2 { margin: 15px 0 10px; font-family: "Manrope"; font-size: clamp(34px, 4vw, 52px); line-height: 1.08; letter-spacing: -.045em; }
    #ngw-home .ngw-group-head p { max-width: 690px; margin: 0; color: var(--ngw-muted); font-size: 15px; line-height: 1.7; }

    #ngw-home .ngw-team-grid { display: grid; gap: 18px; align-items: stretch; }
    #ngw-home .ngw-team-grid--leaders { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    #ngw-home .ngw-team-grid--core { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    #ngw-home .ngw-team-grid--specialists { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }

    #ngw-home .ngw-member-card {
      position: relative;
      min-width: 0;
      height: 100%;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.105);
      border-radius: 21px;
      background: linear-gradient(155deg, rgba(255,255,255,.07), rgba(255,255,255,.025));
      box-shadow: 0 18px 46px rgba(0,0,0,.2);
      transform: translateZ(0);
      transition: transform .32s cubic-bezier(.2,.7,.2,1), border-color .32s ease, box-shadow .32s ease;
    }
    #ngw-home .ngw-member-card:hover { transform: translateY(-7px); border-color: color-mix(in srgb, var(--ngw-member-accent) 50%, white 8%); box-shadow: 0 28px 62px rgba(0,0,0,.3); }

    #ngw-home .ngw-member-photo {
      position: relative;
      width: 100%;
      aspect-ratio: .82 / 1;
      overflow: hidden;
      background:
        radial-gradient(circle at 50% 26%, color-mix(in srgb, var(--ngw-member-accent) 25%, transparent), transparent 43%),
        linear-gradient(180deg, rgba(255,255,255,.04), rgba(8,7,18,.18));
    }
    #ngw-home .ngw-member-card--leader .ngw-member-photo { aspect-ratio: .88 / 1; }
    #ngw-home .ngw-member-photo::after { content: ""; position: absolute; inset: auto 0 0; height: 38%; background: linear-gradient(180deg, transparent, rgba(8,7,18,.62)); pointer-events: none; }
    #ngw-home .ngw-member-aura { position: absolute; width: 150px; height: 150px; left: 50%; top: 19%; transform: translate(-50%,-50%); border-radius: 50%; background: var(--ngw-member-accent); opacity: .13; filter: blur(35px); pointer-events: none; }
    #ngw-home .ngw-member-photo img { position: relative; z-index: 1; width: 100%; height: 100%; object-fit: contain; object-position: center bottom; filter: drop-shadow(0 20px 22px rgba(0,0,0,.34)); transition: transform .38s ease, filter .38s ease; }
    #ngw-home .ngw-member-card:hover .ngw-member-photo img { transform: scale(1.035); filter: saturate(1.06) brightness(1.035) drop-shadow(0 24px 26px rgba(0,0,0,.38)); }
    #ngw-home .ngw-member-index { position: absolute; z-index: 3; top: 13px; left: 13px; min-width: 32px; height: 27px; display: grid; place-items: center; padding: 0 8px; border: 1px solid rgba(255,255,255,.14); border-radius: 999px; color: #d8d1e5; background: rgba(8,7,18,.46); font-size: 9px; font-weight: 800; }

    #ngw-home .ngw-member-copy { padding: 16px 16px 18px; }
    #ngw-home .ngw-member-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 10px; }
    #ngw-home .ngw-member-heading h3 { margin: 0; font-family: "Manrope"; font-size: 17px; line-height: 1.15; letter-spacing: -.025em; }
    #ngw-home .ngw-member-card--leader .ngw-member-heading h3 { font-size: 20px; }
    #ngw-home .ngw-member-heading p { margin: 5px 0 0; color: #c8c1d2; font-size: 11px; line-height: 1.4; font-weight: 700; }
    #ngw-home .ngw-member-dot { width: 8px; height: 8px; flex: 0 0 8px; margin-top: 4px; border-radius: 50%; background: var(--ngw-member-accent); box-shadow: 0 0 14px var(--ngw-member-accent); }
    #ngw-home .ngw-member-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 13px; }
    #ngw-home .ngw-member-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 8px; border: 1px solid rgba(255,255,255,.095); border-radius: 999px; color: #a9a2b7; background: rgba(255,255,255,.034); font-size: 8px; font-weight: 750; }
    #ngw-home .ngw-member-badge--cert { color: var(--ngw-green); border-color: rgba(117,242,193,.18); background: rgba(117,242,193,.055); }
    #ngw-home .ngw-member-magic { display: block; margin-top: 11px; color: color-mix(in srgb, var(--ngw-member-accent) 63%, #d9d1e7); font-size: 9px; line-height: 1.4; }

    /* CTA */
    #ngw-home .ngw-team-cta-section { position: relative; padding: 82px 0; }
    #ngw-home .ngw-team-cta {
      position: relative;
      overflow: hidden;
      padding: 68px 42px;
      border: 1px solid rgba(255,255,255,.15);
      border-radius: 30px;
      background:
        radial-gradient(circle at 14% 10%, rgba(72,217,255,.22), transparent 31%),
        radial-gradient(circle at 84% 72%, rgba(237,100,255,.22), transparent 34%),
        linear-gradient(135deg, rgba(104,29,196,.64), rgba(20,14,52,.92));
      box-shadow: 0 34px 90px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.18);
      text-align: center;
    }
    #ngw-home .ngw-team-cta::before { content: ""; position: absolute; inset: 0; opacity: .35; background-image: linear-gradient(rgba(255,255,255,.045) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.045) 1px, transparent 1px); background-size: 42px 42px; mask-image: radial-gradient(circle at center,#000,transparent 75%); pointer-events: none; }
    #ngw-home .ngw-team-cta > * { position: relative; z-index: 2; }
    #ngw-home .ngw-team-cta h2 { max-width: 820px; margin: 16px auto 15px; font-family: "Manrope"; font-size: clamp(35px, 5vw, 58px); line-height: 1.07; letter-spacing: -.05em; }
    #ngw-home .ngw-team-cta p { max-width: 680px; margin: 0 auto; color: #d7d0e4; font-size: 16px; }
    #ngw-home .ngw-team-cta .ngw-hero-actions { justify-content: center; }

    /* Exact home-page footer system */
    #ngw-home .ngw-footer { padding: 58px 0 34px; border-top: 1px solid rgba(255,255,255,.075); }
    #ngw-home .ngw-footer-grid { display: grid; grid-template-columns: 1.35fr .65fr .65fr .8fr; gap: 42px; }
    #ngw-home .ngw-footer-logo { width: 250px; }
    #ngw-home .ngw-footer-logo img { max-height: 66px; }
    #ngw-home .ngw-footer-about { max-width: 340px; margin: 19px 0 0; color: var(--ngw-muted); font-size: 14px; }
    #ngw-home .ngw-footer h4 { margin: 0 0 17px; font-family: "Manrope"; font-size: 14px; }
    #ngw-home .ngw-footer-links { display: grid; gap: 10px; }
    #ngw-home .ngw-footer-links a,
    #ngw-home .ngw-footer-links span { color: var(--ngw-muted); font-size: 13px; transition: color .2s ease, transform .2s ease; }
    #ngw-home .ngw-footer-links a:hover { color: #fff; transform: translateX(3px); }
    #ngw-home .ngw-footer-meta { display: flex; justify-content: space-between; gap: 20px; margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.09); color: #8d879d; font-size: 12px; }

    /* Reveal and rendering optimisation */
    #ngw-home .ngw-reveal { opacity: 0; transform: translate3d(0,24px,0); transition: opacity .68s cubic-bezier(.2,.65,.2,1), transform .68s cubic-bezier(.2,.65,.2,1); }
    #ngw-home .ngw-reveal.ngw-visible { opacity: 1; transform: translate3d(0,0,0); }
    #ngw-home .ngw-deferred { content-visibility: auto; contain-intrinsic-size: 900px; }
    #ngw-home .ngw-motion-paused *,
    #ngw-home.ngw-page-paused * { animation-play-state: paused !important; }

    @media (max-width: 1180px) {
      #ngw-home .ngw-shell { width: min(1040px, calc(100% - 40px)); }
      #ngw-home .ngw-header-wrap { padding: 8px 0; }
      #ngw-home .ngw-nav { min-height: 60px; padding: 7px 8px 7px 12px; border-radius: 16px; }
      #ngw-home .ngw-brand { width: 196px; min-height: 44px; }
      #ngw-home .ngw-brand img { max-height: 46px; }
      #ngw-home .ngw-menu-btn { display: inline-flex; }
      #ngw-home .ngw-nav-cta { display: none; }
      #ngw-home .ngw-nav-links {
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 50;
        display: grid;
        gap: 2px;
        max-height: calc(100svh - 98px);
        padding: 10px;
        overflow-y: auto;
        border: 1px solid rgba(255,255,255,.13);
        border-radius: 16px;
        background: rgba(10,8,23,.97);
        box-shadow: 0 25px 65px rgba(0,0,0,.46);
        -webkit-backdrop-filter: blur(22px) saturate(145%);
        backdrop-filter: blur(22px) saturate(145%);
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        pointer-events: none;
        transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
      }
      #ngw-home .ngw-nav-links.ngw-open { opacity: 1; visibility: visible; transform: none; pointer-events: auto; }
      #ngw-home .ngw-nav-links a { width: 100%; padding: 12px 13px; border-radius: 10px; font-size: 14px; }
      #ngw-home .ngw-nav-links a:hover { background: rgba(255,255,255,.065); }
      #ngw-home .ngw-nav-links a::after { display: none; }
      #ngw-home .ngw-team-hero-grid { grid-template-columns: minmax(0,1fr) 470px; gap: 30px; }
      #ngw-home .ngw-team-console { width: 470px; }
      #ngw-home .ngw-team-grid--specialists { grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
    }

    @media (max-width: 960px) {
      #ngw-home .ngw-shell { width: min(760px, calc(100% - 32px)); }
      #ngw-home .ngw-team-hero { min-height: auto; padding: 58px 0 88px; }
      #ngw-home .ngw-team-hero-grid { grid-template-columns: 1fr; gap: 48px; }
      #ngw-home .ngw-team-hero-copy { max-width: 760px; margin-inline: auto; text-align: center; }
      #ngw-home .ngw-team-hero h1,
      #ngw-home .ngw-team-hero-copy > p { margin-inline: auto; }
      #ngw-home .ngw-hero-actions,
      #ngw-home .ngw-hero-proof { justify-content: center; }
      #ngw-home .ngw-team-visual { min-height: 520px; }
      #ngw-home .ngw-team-console { width: min(620px, 94vw); }
      #ngw-home .ngw-team-stats { grid-template-columns: repeat(2, 1fr); }
      #ngw-home .ngw-team-stat:nth-child(2)::after { display: none; }
      #ngw-home .ngw-team-stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,.1); }
      #ngw-home .ngw-team-grid--leaders { grid-template-columns: repeat(3, minmax(0,1fr)); }
      #ngw-home .ngw-team-grid--core { grid-template-columns: repeat(2, minmax(0,1fr)); }
      #ngw-home .ngw-footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 38px 34px; }
      #ngw-home .ngw-footer-grid > div:first-child { grid-column: 1 / -1; }
    }

    @media (max-width: 700px) {
      #ngw-home .ngw-shell { width: calc(100% - 26px); }
      #ngw-home .ngw-team-hero { padding: 45px 0 70px; }
      #ngw-home .ngw-team-hero h1 { font-size: clamp(38px, 9.4vw, 51px); }
      #ngw-home .ngw-team-hero-copy > p { font-size: 15px; }
      #ngw-home .ngw-team-visual { min-height: 440px; }
      #ngw-home .ngw-team-console { width: 100%; padding: 12px; border-radius: 21px; animation: none; }
      #ngw-home .ngw-console-metrics { gap: 6px; }
      #ngw-home .ngw-console-metric { padding: 9px 7px; }
      #ngw-home .ngw-console-metric strong { font-size: 16px; }
      #ngw-home .ngw-leader-stack { gap: 6px; }
      #ngw-home .ngw-leader-mini { border-radius: 13px; }
      #ngw-home .ngw-leader-mini-copy { padding: 8px; }
      #ngw-home .ngw-leader-mini-copy strong { font-size: 9px; }
      #ngw-home .ngw-leader-mini-copy span { font-size: 7px; }
      #ngw-home .ngw-console-flow { gap: 6px; padding: 10px 6px; }
      #ngw-home .ngw-flow-item b { width: 28px; height: 28px; }
      #ngw-home .ngw-console-flow::before { top: 24px; }
      #ngw-home .ngw-team-group { padding: 62px 0; }
      #ngw-home .ngw-group-head { grid-template-columns: 48px 1fr; gap: 14px; margin-bottom: 30px; }
      #ngw-home .ngw-group-number { width: 46px; height: 46px; border-radius: 14px; font-size: 15px; }
      #ngw-home .ngw-group-head h2 { margin-top: 12px; font-size: clamp(30px, 8vw, 40px); }
      #ngw-home .ngw-group-head p { font-size: 14px; }
      #ngw-home .ngw-team-grid--leaders,
      #ngw-home .ngw-team-grid--core,
      #ngw-home .ngw-team-grid--specialists { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 12px; }
      #ngw-home .ngw-member-card { border-radius: 16px; }
      #ngw-home .ngw-member-photo,
      #ngw-home .ngw-member-card--leader .ngw-member-photo { aspect-ratio: .84 / 1; }
      #ngw-home .ngw-member-copy { padding: 12px 11px 14px; }
      #ngw-home .ngw-member-heading h3,
      #ngw-home .ngw-member-card--leader .ngw-member-heading h3 { font-size: 14px; }
      #ngw-home .ngw-member-heading p { font-size: 9px; }
      #ngw-home .ngw-member-badges { margin-top: 9px; gap: 4px; }
      #ngw-home .ngw-member-badge { min-height: 21px; padding-inline: 6px; font-size: 7px; }
      #ngw-home .ngw-member-magic { margin-top: 8px; font-size: 7.5px; }
      #ngw-home .ngw-team-cta-section { padding: 58px 0; }
      #ngw-home .ngw-team-cta { padding: 48px 20px; border-radius: 23px; }
      #ngw-home .ngw-team-cta p { font-size: 14.5px; }
      #ngw-home .ngw-footer-grid { grid-template-columns: 1fr; gap: 30px; }
      #ngw-home .ngw-footer-grid > div,
      #ngw-home .ngw-footer-grid > div:first-child { grid-column: 1; }
      #ngw-home .ngw-footer-meta { flex-direction: column; gap: 8px; }
      #ngw-home [id^="ngw-"] { scroll-margin-top: 86px; }
    }

    @media (max-width: 540px) {
      #ngw-home .ngw-header-wrap { padding: 6px 0; }
      #ngw-home .ngw-nav { min-height: 54px; padding: 6px 7px 6px 9px; border-radius: 14px; gap: 10px; }
      #ngw-home .ngw-brand { width: 165px; min-height: 40px; }
      #ngw-home .ngw-brand img { max-height: 40px; }
      #ngw-home .ngw-menu-btn { width: 42px; height: 42px; border-radius: 11px; }
      #ngw-home .ngw-nav-links { top: calc(100% + 8px); padding: 8px; border-radius: 14px; }
      #ngw-home .ngw-hero-actions { display: grid; grid-template-columns: 1fr; width: 100%; gap: 10px; }
      #ngw-home .ngw-btn { width: 100%; min-height: 48px; padding-inline: 15px; font-size: 13.5px; }
      #ngw-home .ngw-team-stats-wrap { margin-top: -24px; }
      #ngw-home .ngw-team-stat { min-height: 104px; padding: 15px 11px; }
      #ngw-home .ngw-team-stat strong { font-size: 29px; }
      #ngw-home .ngw-team-stat p { font-size: 9.5px; line-height: 1.42; }
      #ngw-home .ngw-footer-logo { width: min(220px, 76vw); }
    }

    @media (max-width: 390px) {
      #ngw-home .ngw-shell { width: calc(100% - 18px); }
      #ngw-home .ngw-brand { width: 145px; }
      #ngw-home .ngw-team-hero h1 { font-size: clamp(33px, 10vw, 40px); }
      #ngw-home .ngw-team-visual { min-height: 390px; }
      #ngw-home .ngw-console-live { display: none; }
      #ngw-home .ngw-member-magic { display: none; }
    }

    @media (max-width: 330px) {
      #ngw-home .ngw-team-grid--leaders,
      #ngw-home .ngw-team-grid--core,
      #ngw-home .ngw-team-grid--specialists { grid-template-columns: 1fr; max-width: 235px; margin-inline: auto; }
    }

    @media (max-width: 767px) {
      #ngw-home .ngw-header-wrap::before,
      #ngw-home .ngw-nav,
      #ngw-home .ngw-nav-links,
      #ngw-home .ngw-team-console,
      #ngw-home .ngw-team-stats,
      #ngw-home .ngw-btn-secondary { -webkit-backdrop-filter: none; backdrop-filter: none; }
      #ngw-home .ngw-member-aura { filter: blur(24px); }
    }

    @media (prefers-reduced-motion: reduce) {
      #ngw-home *, #ngw-home *::before, #ngw-home *::after { animation: none !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
      #ngw-home .ngw-reveal { opacity: 1; transform: none; }
    }

    @supports not (overflow: clip) { #ngw-home { overflow-x: hidden; } }


    /* FINAL TEAM DATA + FULL-WIDTH HERO UPDATE */
    #ngw-home .ngw-team-hero { min-height: 600px; padding: 88px 0 112px; }
    #ngw-home .ngw-team-hero::before { left: 50%; right: auto; transform: translateX(-50%); width: 760px; height: 520px; opacity: .75; }
    #ngw-home .ngw-team-hero-grid { display: block; }
    #ngw-home .ngw-team-hero-copy { width: min(900px, 100%); margin-inline: auto; text-align: center; }
    #ngw-home .ngw-team-hero h1 { max-width: 900px; margin-inline: auto; }
    #ngw-home .ngw-team-hero-copy > p { max-width: 780px; margin-inline: auto; }
    #ngw-home .ngw-hero-actions, #ngw-home .ngw-hero-proof { justify-content: center; }
    #ngw-home .ngw-team-grid--core,
    #ngw-home .ngw-team-grid--ghl,
    #ngw-home .ngw-team-grid--marketing { grid-template-columns: repeat(4, minmax(0, 1fr)); }
    #ngw-home .ngw-member-placeholder { position: relative; z-index: 1; width: 100%; height: 100%; display: grid; place-items: center; background: radial-gradient(circle at 50% 30%, color-mix(in srgb, var(--ngw-member-accent) 28%, transparent), transparent 44%); }
    #ngw-home .ngw-member-placeholder span { width: 112px; height: 112px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.2); border-radius: 50%; color: #fff; background: rgba(12,9,29,.68); font-family: "Manrope", Arial, sans-serif; font-size: 34px; font-weight: 800; box-shadow: 0 18px 42px rgba(0,0,0,.3), 0 0 35px color-mix(in srgb, var(--ngw-member-accent) 26%, transparent); }
    @media (max-width: 960px) {
      #ngw-home .ngw-team-hero { padding: 64px 0 92px; }
      #ngw-home .ngw-team-grid--core, #ngw-home .ngw-team-grid--ghl, #ngw-home .ngw-team-grid--marketing { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    }
    @media (max-width: 700px) {
      #ngw-home .ngw-team-hero { min-height: auto; padding: 52px 0 76px; }
      #ngw-home .ngw-team-hero h1 { font-size: clamp(38px, 9.4vw, 51px); }
    }
    @media (max-width: 330px) {
      #ngw-home .ngw-team-grid--core, #ngw-home .ngw-team-grid--ghl, #ngw-home .ngw-team-grid--marketing { grid-template-columns: 1fr; max-width: 235px; margin-inline: auto; }
    }

  
/* v1.6.6: preserve a deliberate readable gap between “A” and “Certified”. */
#ngw-home #ngw-team-title .ngw-team-title-opening {
  white-space: nowrap;
}
#ngw-home #ngw-team-title .ngw-team-title-a {
  display: inline-block;
  margin-right: .08em;
}
