:root {
      --ink: #e7ecef;
      --muted: #7f8d97;
      --dim: #46535d;
      --red: #d93a3a;
      --green: #48a28b;
      --shadow: 0 20px 60px rgba(0,0,0,.42);

      --mono:
        ui-monospace,
        SFMono-Regular,
        Menlo,
        Monaco,
        Consolas,
        "Liberation Mono",
        monospace;

      --sans:
        Inter,
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-height: 100vh;
      color: var(--ink);

      background:
        radial-gradient(
          circle at 72% 18%,
          rgba(34,56,71,.28),
          transparent 32%
        ),
        radial-gradient(
          circle at 16% 64%,
          rgba(95,18,24,.12),
          transparent 34%
        ),
        linear-gradient(
          180deg,
          #06090c 0%,
          #040608 100%
        );

      font-family: var(--sans);
      overflow-x: hidden;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: .10;

      background-image:
        url("night-hamster-interface.png");

      background-size: cover;
      background-position: center;

      filter:
        grayscale(.25)
        contrast(1.2);

      mix-blend-mode: screen;
      z-index: -3;
    }

    body::after {
      content: "";
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: 20;
      opacity: .12;

      background:
        repeating-linear-gradient(
          to bottom,
          rgba(255,255,255,.05) 0px,
          rgba(255,255,255,.05) 1px,
          transparent 1px,
          transparent 4px
        );
    }

    .noise {
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: .18;

      background-image:
        linear-gradient(
          rgba(255,255,255,.018) 1px,
          transparent 1px
        ),
        linear-gradient(
          90deg,
          rgba(255,255,255,.018) 1px,
          transparent 1px
        );

      background-size: 40px 40px;
    }

    .shell {
      width: min(1240px, calc(100% - 36px));
      margin: 0 auto;
    }

    header {
      height: 76px;
      display: flex;
      align-items: center;

      border-bottom:
        1px solid rgba(91,108,120,.18);

      position: relative;
      z-index: 10;
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;

      font-family: var(--mono);
      font-size: 12px;
      letter-spacing: .18em;
      text-transform: uppercase;

      color: #b9c4ca;
    }

    .brandmark {
      width: 29px;
      height: 29px;

      border: 1px solid #6d7780;

      transform: rotate(45deg);

      position: relative;

      display: grid;
      place-items: center;

      box-shadow:
        inset 0 0 0 4px rgba(0,0,0,.18);
    }

    .brandmark::before {
      content: "";

      width: 7px;
      height: 7px;

      background: var(--red);
      border-radius: 50%;

      box-shadow:
        0 0 14px rgba(217,58,58,.8);
    }

    .status {
      display: flex;
      align-items: center;
      gap: 10px;

      font: 11px/1 var(--mono);

      text-transform: uppercase;
      letter-spacing: .14em;

      color: var(--muted);
    }

    .pulse {
      width: 7px;
      height: 7px;

      border-radius: 50%;
      background: var(--green);

      box-shadow:
        0 0 16px rgba(72,162,139,.75);

      animation:
        pulse 2.2s ease-in-out infinite;
    }

    @keyframes pulse {
      0%,100% {
        opacity: .45;
        transform: scale(.9);
      }

      50% {
        opacity: 1;
        transform: scale(1.15);
      }
    }

    main {
      min-height: calc(100vh - 76px);

      display: flex;
      align-items: center;

      padding: 56px 0 44px;
    }

    .hero {
      width: 100%;

      display: grid;
      grid-template-columns: minmax(0,1fr);

      gap: 32px;

      position: relative;
    }

    .kicker {
      display: flex;
      align-items: center;

      gap: 14px;

      color: var(--red);

      text-transform: uppercase;

      font: 11px/1.2 var(--mono);
      letter-spacing: .24em;
    }

    .kicker::before {
      content: "";

      width: 36px;
      height: 1px;

      background: var(--red);
    }

    h1 {
      margin: 18px 0 0;

      max-width: 1080px;

      font-size:
        clamp(48px,8vw,118px);

      line-height: .88;

      letter-spacing: -.06em;

      text-transform: uppercase;

      font-weight: 800;
    }

    h1 span {
      display: block;

      color: transparent;

      -webkit-text-stroke:
        1px rgba(231,236,239,.72);

      text-shadow:
        0 0 28px rgba(255,255,255,.045);
    }

    .subrow {
      display: flex;
      justify-content: space-between;
      align-items: end;

      gap: 30px;

      margin-top: 18px;
      padding-top: 18px;

      border-top:
        1px solid rgba(117,132,142,.22);
    }

    .tagline {
      max-width: 590px;

      font: 14px/1.65 var(--mono);

      color: #909da5;
    }

    .tagline b {
      color: #cbd3d7;
      font-weight: 500;
    }

    .code {
      color: var(--dim);

      text-align: right;

      font: 11px/1.55 var(--mono);

      text-transform: uppercase;

      letter-spacing: .10em;

      white-space: nowrap;
    }

    .video-stage {
      position: relative;

      width: 100%;

      aspect-ratio: 16 / 9;

      min-height: 320px;

      border:
        1px solid rgba(92,108,119,.40);

      background:
        linear-gradient(
          180deg,
          rgba(13,18,23,.82),
          rgba(4,7,9,.95)
        );

      box-shadow: var(--shadow);

      overflow: hidden;

      isolation: isolate;
    }

    .video-stage::before {
      content: "";

      position: absolute;

      inset: 14px;

      border:
        1px solid rgba(86,102,112,.16);

      pointer-events: none;

      z-index: 6;
    }

    .hud {
      position: absolute;

      top: 22px;
      left: 24px;
      right: 24px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      gap: 20px;

      font: 10px/1 var(--mono);

      text-transform: uppercase;

      letter-spacing: .16em;

      color: #69767f;

      z-index: 7;

      pointer-events: none;
    }

    .hud .live {
      color: var(--green);
    }

    .hud .red {
      color: var(--red);
    }

    .video-embed {
      position: absolute;

      inset: 52px 18px 18px;

      z-index: 4;

      background: #000;

      overflow: hidden;
    }

    .video-embed video {
      width: 100%;
      height: 100%;

      display: block;

      object-fit: cover;

      background: #000;
    }

    .audio-toggle {
      position: absolute;

      left: 50%;
      bottom: 24px;

      transform: translateX(-50%);

      z-index: 10;

      border:
        1px solid rgba(231,236,239,.48);

      background:
        rgba(5,8,11,.82);

      color: #e7ecef;

      padding:
        12px 18px;

      font-family: var(--mono);

      font-size: 10px;

      letter-spacing: .18em;

      text-transform: uppercase;

      cursor: pointer;

      backdrop-filter: blur(8px);

      -webkit-backdrop-filter: blur(8px);

      transition:
        border-color .2s ease,
        color .2s ease,
        background .2s ease;
    }

    .audio-toggle:hover {
      border-color: var(--red);
      color: #fff;

      background:
        rgba(10,12,15,.92);
    }

    .corner {
      position: absolute;

      width: 18px;
      height: 18px;

      z-index: 8;

      pointer-events: none;
    }

    .c1 {
      left: 8px;
      top: 8px;

      border-left:
        1px solid var(--red);

      border-top:
        1px solid var(--red);
    }

    .c2 {
      right: 8px;
      top: 8px;

      border-right:
        1px solid var(--red);

      border-top:
        1px solid var(--red);
    }

    .c3 {
      left: 8px;
      bottom: 8px;

      border-left:
        1px solid var(--red);

      border-bottom:
        1px solid var(--red);
    }

    .c4 {
      right: 8px;
      bottom: 8px;

      border-right:
        1px solid var(--red);

      border-bottom:
        1px solid var(--red);
    }

    .bottom-strip {
      display: grid;

      grid-template-columns:
        1fr auto 1fr;

      gap: 22px;

      align-items: center;

      color: #58656e;

      font: 10px/1.5 var(--mono);

      text-transform: uppercase;

      letter-spacing: .12em;
    }

    .bottom-strip::before,
    .bottom-strip::after {
      content: "";

      height: 1px;

      background:
        linear-gradient(
          90deg,
          transparent,
          rgba(95,110,120,.33)
        );
    }

    .bottom-strip::after {
      background:
        linear-gradient(
          90deg,
          rgba(95,110,120,.33),
          transparent
        );
    }

    .rotator::after {
      content: "INDEXING";

      color: #76848d;

      animation:
        rotateWords 10s steps(1,end) infinite;
    }

    @keyframes rotateWords {
      0%,24% {
        content: "INDEXING";
      }

      25%,49% {
        content: "MAPPING";
      }

      50%,74% {
        content: "RECURSION DETECTED";
      }

      75%,100% {
        content: "THE WHEEL IS TURNING";
      }
    }

    footer {
      padding:
        0 0 28px;

      color: #3f4b53;

      font: 10px/1.5 var(--mono);

      text-transform: uppercase;

      letter-spacing: .12em;
    }

    .foot {
      display: flex;

      justify-content: space-between;

      gap: 20px;

      border-top:
        1px solid rgba(80,95,105,.14);

      padding-top: 18px;
    }

    @media (max-width: 760px) {

      body::before {
        background-position: center top;
        opacity: .08;
      }

      header {
        height: 62px;
      }

      .shell {
        width:
          min(100% - 28px,1240px);
      }

      .brand {
        font-size: 10px;
      }

      .brandmark {
        width: 24px;
        height: 24px;
      }

      .status span:last-child {
        display: none;
      }

      main {
        min-height: auto;

        padding:
          34px 0 30px;

        align-items: flex-start;
      }

      .hero {
        gap: 26px;
      }

      .kicker {
        justify-content: center;

        text-align: center;

        font-size: 9px;

        letter-spacing: .18em;
      }

      .kicker::before {
        width: 24px;
      }

      h1 {
        margin-top: 15px;

        font-size:
          clamp(45px,13vw,72px);

        line-height: .94;

        text-align: center;

        letter-spacing: -.055em;
      }

      h1 span {
        margin-top: 4px;
      }

      .subrow {
        display: block;

        margin-top: 22px;

        padding-top: 18px;

        text-align: center;
      }

      .tagline {
        margin: 0 auto;

        max-width: 340px;

        font-size: 12px;

        line-height: 1.7;
      }

      .code {
        display: none;
      }

      .video-stage {
        aspect-ratio: 16 / 10;

        min-height: 0;
      }

      .video-stage::before {
        inset: 10px;
      }

      .hud {
        top: 17px;
        left: 17px;
        right: 17px;

        font-size: 7px;

        letter-spacing: .11em;

        gap: 8px;
      }

      .hud > span:nth-child(2) {
        display: none;
      }

      .video-embed {
        inset:
          42px 10px 10px;
      }

      .audio-toggle {
        bottom: 16px;

        padding:
          10px 14px;

        font-size: 8px;

        letter-spacing: .14em;
      }

      .corner {
        width: 14px;
        height: 14px;
      }

      .bottom-strip {
        grid-template-columns: 1fr;

        gap: 7px;

        text-align: center;

        font-size: 8px;
      }

      .bottom-strip::before,
      .bottom-strip::after {
        display: none;
      }

      footer {
        padding-bottom: 20px;

        font-size: 8px;
      }

      .foot {
        display: block;

        text-align: center;
      }

      .foot span:last-child {
        display: block;

        margin-top: 7px;
      }
    }

    @media (max-width: 420px) {

      h1 {
        font-size:
          clamp(40px,13vw,58px);
      }

      .video-stage {
        aspect-ratio: 4 / 3;
      }

      .hud {
        font-size: 6.5px;
      }

      .tagline {
        font-size: 11px;
      }
    }

    @media (prefers-reduced-motion: reduce) {

      * {
        animation: none !important;
        scroll-behavior: auto !important;
      }
    }


/* =========================================================
   PROJECT NIGHT HAMSTER — MULTI-PAGE SITE SHELL
   ========================================================= */

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav a {
  color: #7f8d97;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  transition: color .2s ease;
}

.site-nav a:hover,
.site-nav a.active {
  color: #e7ecef;
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(120,135,145,.35);
  background: transparent;
  color: #e7ecef;
  padding: 9px 11px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .12em;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.mobile-menu a {
  color: #aeb8be;
  text-decoration: none;
}

.page-shell {
  width: min(1240px, calc(100% - 36px));
  margin: 0 auto;
  padding: 64px 0;
}

.page-kicker {
  color: var(--red);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.page-title {
  margin: 0;
  font-size: clamp(42px,7vw,92px);
  line-height: .95;
  letter-spacing: -.05em;
  text-transform: uppercase;
}

.page-intro {
  max-width: 760px;
  margin-top: 24px;
  color: #8d9aa3;
  font-family: var(--mono);
  font-size: 13px;
  line-height: 1.7;
}

.section-block {
  margin-top: 56px;
}

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(105,120,130,.24);
}

.section-heading h2 {
  margin: 0;
  color: #cbd3d7;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(250px,1fr));
  gap: 18px;
  margin-top: 22px;
}

.pnh-card {
  position: relative;
  min-height: 180px;
  padding: 22px;
  border: 1px solid rgba(92,108,119,.32);
  background: rgba(8,12,16,.72);
}

.pnh-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--red);
}

.pnh-card h3 {
  margin: 0 0 12px;
  color: #d9e0e4;
  font-size: 17px;
}

.pnh-card p {
  margin: 0;
  color: #77858e;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
}

.pnh-card a {
  display: inline-block;
  margin-top: 22px;
  color: #aeb9bf;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
}

.status-label {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 8px;
  border: 1px solid rgba(100,115,125,.35);
  color: #9ca8af;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.status-verified {
  border-color: rgba(72,162,139,.45);
  color: #5eb59e;
}

.status-public {
  border-color: rgba(90,135,155,.45);
  color: #75aabd;
}

.status-strong {
  border-color: rgba(190,145,60,.45);
  color: #c39d59;
}

.status-unresolved {
  border-color: rgba(217,58,58,.42);
  color: #cf6262;
}

.network-map {
  height: 560px;
  margin-top: 22px;
  border: 1px solid rgba(92,108,119,.35);
  background:
    radial-gradient(circle at center,rgba(37,61,74,.16),transparent 38%),
    rgba(5,8,11,.84);
  display: grid;
  place-items: center;
  color: #66747c;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.accordion {
  border-bottom: 1px solid rgba(92,108,119,.24);
}

.accordion button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: #d1dade;
  cursor: pointer;
  text-align: left;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.accordion-content {
  display: block;
  padding-bottom: 20px;
  color: #7c8992;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
}

.signal-feed {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding: 8px 0 18px;
  scroll-snap-type: x proximity;
}

.signal-card {
  flex: 0 0 330px;
  scroll-snap-align: start;
  padding: 18px;
  border: 1px solid rgba(92,108,119,.28);
  background: rgba(7,11,15,.78);
}

.signal-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #67747c;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.signal-card h3 {
  margin: 14px 0 10px;
  color: #d6dee2;
  font-size: 15px;
}

.signal-card p {
  margin: 0;
  color: #74828b;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.6;
}

.signal-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--red);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
}

.home-site-nav {
  border-bottom: 1px solid rgba(91,108,120,.16);
  background: rgba(4,7,9,.75);
}

.home-site-nav .shell {
  display: flex;
  justify-content: center;
}

.home-site-nav .site-nav {
  min-height: 42px;
}

@media (max-width: 820px) {

  .site-nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 14px;
    background: rgba(4,7,9,.98);
    border-bottom: 1px solid rgba(92,108,119,.30);
  }

  .mobile-menu.is-open {
    display: block;
  }

  .mobile-menu a {
    display: block;
    padding: 16px 12px;
    border-bottom: 1px solid rgba(80,95,105,.17);
    font-family: var(--mono);
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
  }

  body.menu-open {
    overflow: hidden;
  }

  .page-shell {
    width: min(100% - 28px,1240px);
    padding: 42px 0;
  }

  .page-title {
    font-size: clamp(38px,12vw,62px);
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .network-map {
    height: 68vh;
    min-height: 420px;
  }

  .signal-feed {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
  }

  .signal-card {
    width: 100%;
  }

  .accordion-content {
    display: none;
  }

  .accordion.is-open .accordion-content {
    display: block;
  }

  .home-site-nav {
    overflow-x: auto;
  }

  .home-site-nav .shell {
    justify-content: flex-start;
  }

  .home-site-nav .site-nav {
    display: flex;
    min-width: max-content;
    padding: 0 14px;
  }

}


/* =========================================================
   FEATURED INVESTIGATION / SIGNAL BREAK
   ========================================================= */

.signal-break {
  margin-top: 34px;
  padding: 22px 0;
  border-top: 1px solid rgba(90,105,115,.18);
  border-bottom: 1px solid rgba(90,105,115,.18);
  background:
    linear-gradient(
      90deg,
      rgba(217,58,58,.025),
      rgba(66,145,165,.035),
      rgba(143,71,200,.035)
    );
}

.signal-break-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 14px;
  color: #69767f;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.signal-break-meta span:nth-child(1) {
  color: var(--red);
}

.signal-break-meta span:nth-child(2) {
  color: var(--green);
}

.signal-break-meta span:nth-child(3) {
  color: #8a73c7;
}

.signal-wave {
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  overflow: hidden;
}

.signal-wave span {
  width: 2px;
  height: 8px;
  background:
    linear-gradient(
      180deg,
      var(--red),
      #62c6d7,
      #8d55d8
    );
  opacity: .75;
  animation:
    signalPulse 1.15s ease-in-out infinite;
}

.signal-wave span:nth-child(2n) {
  animation-delay: .12s;
}

.signal-wave span:nth-child(3n) {
  animation-delay: .24s;
}

.signal-wave span:nth-child(4n) {
  animation-delay: .36s;
}

.signal-wave span:nth-child(5n) {
  animation-delay: .48s;
}

@keyframes signalPulse {
  0%,100% {
    height: 8px;
    opacity: .35;
  }

  50% {
    height: 36px;
    opacity: .95;
  }
}


.featured-investigation {
  margin-top: 70px;
}

.featured-case-grid {
  display: grid;
  grid-template-columns:
    minmax(0,1.1fr)
    minmax(340px,.9fr);
  gap: 42px;
  align-items: center;
}

.featured-case-art {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(94,111,122,.28);
  background: #000;
  min-height: 320px;
  display: grid;
  place-items: center;
}

.featured-case-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 25% 50%,
      rgba(51,201,234,.10),
      transparent 35%
    ),
    radial-gradient(
      circle at 75% 50%,
      rgba(156,63,235,.11),
      transparent 35%
    );
  z-index: 1;
}

.featured-case-art img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 2;
}

.featured-title {
  margin: 12px 0 18px;
  color: #e7ecef;
  font-size: clamp(32px,4vw,58px);
  line-height: .98;
  letter-spacing: -.035em;
  text-transform: uppercase;
}

.featured-summary {
  margin: 0 0 14px;
  color: #89969f;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
}

.featured-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.featured-chips span {
  padding: 7px 9px;
  border: 1px solid rgba(106,121,131,.32);
  color: #98a5ad;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.featured-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.featured-actions a {
  padding: 11px 14px;
  border: 1px solid rgba(113,128,138,.38);
  background: rgba(7,10,13,.72);
  color: #d4dde1;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.featured-actions a:hover {
  border-color: var(--red);
  color: #fff;
}


.node-added-grid {
  display: grid;
  grid-template-columns:
    repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 22px;
}


.methodology-grid {
  grid-template-columns:
    repeat(3,minmax(0,1fr));
}


@media (max-width: 900px) {

  .signal-break-meta {
    flex-direction: column;
    gap: 7px;
  }

  .featured-case-grid {
    grid-template-columns: 1fr;
  }

  .featured-case-art {
    min-height: 240px;
  }

  .node-added-grid,
  .methodology-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 520px) {

  .signal-wave {
    gap: 3px;
  }

  .featured-investigation {
    margin-top: 48px;
  }

  .featured-title {
    font-size: clamp(30px,10vw,46px);
  }

}


/* =========================================================
   PNH // HOMEPAGE BRAND HERO V2
   ========================================================= */

.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;
}

.home-brand-main {
  min-height: auto;
}

.home-brand-hero {
  padding-top: 54px;
  padding-bottom: 42px;
}

.home-brand-kicker {
  margin-bottom: 18px;
  text-align: center;
  color: #75818a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.home-brand-stage {
  position: relative;
  min-height: 500px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 32% 50%,
      rgba(35,175,210,.10),
      transparent 34%
    ),
    radial-gradient(
      circle at 68% 50%,
      rgba(150,55,220,.11),
      transparent 34%
    ),
    #000;
}

.home-brand-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: .16;
  background:
    repeating-linear-gradient(
      0deg,
      transparent 0,
      transparent 3px,
      rgba(255,255,255,.04) 4px
    );
}

.home-brand-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 100px rgba(0,0,0,.95);
}

.home-brand-logo {
  position: relative;
  z-index: 2;
  display: block;
  width: min(92%, 980px);
  height: auto;
  object-fit: contain;
  filter:
    drop-shadow(0 0 20px rgba(34,195,225,.12))
    drop-shadow(0 0 28px rgba(145,58,220,.10));
  animation: pnhHeroResolve 1.1s ease-out both;
}

@keyframes pnhHeroResolve {
  from {
    opacity: 0;
    transform: scale(.975);
    filter:
      blur(5px)
      drop-shadow(0 0 30px rgba(34,195,225,.15));
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter:
      blur(0)
      drop-shadow(0 0 20px rgba(34,195,225,.12))
      drop-shadow(0 0 28px rgba(145,58,220,.10));
  }
}

.home-brand-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 14px;
  color: #65717a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.home-brand-footer span:first-child {
  color: #9ba6ac;
}


/* =========================================================
   CASE 01 // TOM
   ========================================================= */

.case-one-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(96,111,121,.25);
}

.case-one-header .featured-title {
  margin-bottom: 0;
}

.case-one-status {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.case-one-grid {
  display: grid;
  grid-template-columns:
    minmax(0,1.45fr)
    minmax(280px,.55fr);
  gap: 42px;
  padding-top: 32px;
}

.case-one-intro {
  color: #a4afb5;
  font-size: 13px;
  max-width: 760px;
}

.case-one-dossier {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(97,112,122,.30);
  background: rgba(5,8,11,.82);
}

.case-one-dossier::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 52px;
  height: 1px;
  background: var(--red);
}

.dossier-line {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(90,104,114,.16);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .10em;
  text-transform: uppercase;
}

.dossier-line span {
  color: #64717a;
}

.dossier-line strong {
  color: #bdc7cc;
  font-weight: 500;
}

.dossier-rule {
  height: 1px;
  margin: 20px 0;
  background:
    linear-gradient(
      90deg,
      var(--red),
      rgba(92,108,118,.2),
      transparent
    );
}

.case-one-dossier p {
  margin: 0;
  color: #717e86;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}


/* =========================================================
   INVESTIGATIONS // REEL
   ========================================================= */

.investigation-reel {
  margin-top: 50px;
}

.investigation-reel-intro {
  max-width: 720px;
  margin: 18px 0 22px;
  color: #77858e;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.7;
}

.investigation-video-stage {
  margin-top: 0;
}

.investigation-video-stage .video-embed {
  min-height: 0;
}

.investigation-video-stage video {
  width: 100%;
  height: auto;
  display: block;
}


/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 820px) {

  .home-brand-hero {
    padding-top: 30px;
  }

  .home-brand-stage {
    min-height: 320px;
  }

  .home-brand-logo {
    width: 96%;
  }

  .home-brand-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
  }

  .case-one-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .case-one-status {
    justify-content: flex-start;
  }

  .case-one-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

}

@media (max-width: 520px) {

  .home-brand-stage {
    min-height: 250px;
  }

}


/* =========================================================
   PNH // HERO CLEANUP — MATCH FRIEND VIDEO
   ========================================================= */

.home-brand-main {
  position: relative;
  z-index: 5;
  background: #000;
}

.home-brand-hero {
  position: relative;
  z-index: 5;
  background: #000;
}

.home-brand-stage {
  min-height: 520px;
  border: 1px solid rgba(110,125,135,.18);
  background:
    radial-gradient(
      ellipse at 50% 32%,
      rgba(190,205,210,.12) 0%,
      rgba(105,125,132,.045) 24%,
      rgba(0,0,0,0) 50%
    ),
    #000 !important;

  box-shadow:
    inset 0 0 120px rgba(0,0,0,.95),
    0 0 0 1px rgba(255,255,255,.015);
}

.home-brand-stage::before {
  opacity: .10;
}

.home-brand-stage::after {
  box-shadow:
    inset 0 0 140px rgba(0,0,0,.98);
}

.home-brand-logo {
  width: min(78%, 900px);

  filter:
    grayscale(1)
    saturate(.35)
    brightness(.72)
    contrast(1.12)
    drop-shadow(0 0 14px rgba(175,205,210,.12))
    !important;
}

.home-brand-kicker {
  color: #68777f;
}

.home-brand-footer {
  color: #536169;
}


/* suppress old decorative giant background copy behind new hero */

.home-brand-main,
.home-brand-main *,
.home-brand-hero,
.home-brand-stage {
  isolation: isolate;
}

.home-brand-main::before,
.home-brand-main::after,
.home-brand-hero::before,
.home-brand-hero::after {
  pointer-events: none;
}


/* =========================================================
   INVESTIGATIONS // FORCE VERTICAL FLOW
   ========================================================= */

main.page-shell {
  display: block !important;
}

.investigation-reel {
  width: 100%;
  max-width: none;
  margin-top: 54px;
}

.investigation-reel .section-heading {
  width: 100%;
}

.investigation-reel-intro {
  width: min(760px,100%);
}

.investigation-video-stage {
  width: 100%;
  max-width: none;
  margin-top: 24px;
}

.investigation-video-stage .video-embed {
  width: 100%;
}

.investigation-video-stage video {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}


/* keep investigations cards below reel */

.investigation-reel + .section-block {
  clear: both;
  width: 100%;
  margin-top: 56px;
}


@media (max-width: 820px) {

  .home-brand-stage {
    min-height: 340px;
  }

  .home-brand-logo {
    width: 90%;
  }

}


/* =========================================================
   CASE 01 // IDENTITY METADATA
   ========================================================= */

.case-alias {
  margin-top: 10px;
  color: #75828a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}


/* =========================================================
   PUBLISHED FINDINGS
   ========================================================= */

.published-findings-intro {
  max-width: 760px;
  margin: 20px 0 0;
  color: #7d8991;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.75;
}

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

.finding-card {
  position: relative;
  padding: 22px;
  border: 1px solid rgba(91,107,117,.30);
  background:
    linear-gradient(
      145deg,
      rgba(9,14,18,.92),
      rgba(5,8,11,.88)
    );
}

.finding-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 44px;
  height: 1px;
  background: var(--red);
}

.finding-meta {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #64727a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.finding-card h3 {
  margin: 22px 0 12px;
  color: #d9e0e4;
  font-size: 18px;
}

.finding-card p {
  margin: 0;
  color: #7d8991;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.7;
}

.finding-source {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(90,105,115,.18);
  color: #68757d;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
}

.finding-actions {
  margin-top: 18px;
}

.finding-actions a {
  display: inline-block;
  padding: 10px 13px;
  border: 1px solid rgba(110,126,136,.38);
  color: #cdd6da;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.finding-actions a:hover {
  border-color: var(--red);
  color: #fff;
}


/* =========================================================
   HERO // OSINT SIDE NETWORKS
   ========================================================= */

.home-brand-stage {
  overflow: hidden;
}

/*
   Faint network geometry in the side fields.
   Kept deliberately low-contrast so the logo remains dominant.
*/

.home-brand-hero::before,
.home-brand-hero::after {
  content: "";
  position: absolute;
  top: 120px;
  bottom: 90px;
  width: 18%;
  opacity: .20;
  pointer-events: none;
  z-index: 1;

  background-image:
    radial-gradient(
      circle at 18% 18%,
      rgba(180,195,202,.75) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 72% 34%,
      rgba(180,195,202,.60) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 38% 58%,
      rgba(180,195,202,.50) 0 1px,
      transparent 2px
    ),
    radial-gradient(
      circle at 76% 78%,
      rgba(180,195,202,.60) 0 1px,
      transparent 2px
    ),
    linear-gradient(
      35deg,
      transparent 0 40%,
      rgba(115,135,145,.25) 40.3% 40.7%,
      transparent 41% 100%
    ),
    linear-gradient(
      145deg,
      transparent 0 45%,
      rgba(115,135,145,.18) 45.3% 45.7%,
      transparent 46% 100%
    );
}

.home-brand-hero::before {
  left: 0;
}

.home-brand-hero::after {
  right: 0;
  transform: scaleX(-1);
}


/* =========================================================
   HERO // PERIODIC SIGNAL SWEEP
   ========================================================= */

.home-brand-stage .home-brand-logo {
  animation:
    pnhHeroResolve 1.1s ease-out both,
    pnhSignalPulse 10s ease-in-out 2s infinite;
}

@keyframes pnhSignalPulse {

  0%,
  72%,
  100% {
    filter:
      grayscale(1)
      saturate(.35)
      brightness(.72)
      contrast(1.12)
      drop-shadow(0 0 14px rgba(175,205,210,.12));
  }

  77% {
    filter:
      grayscale(1)
      saturate(.40)
      brightness(.82)
      contrast(1.16)
      drop-shadow(0 0 18px rgba(185,220,225,.22));
  }

  82% {
    filter:
      grayscale(1)
      saturate(.35)
      brightness(.74)
      contrast(1.12)
      drop-shadow(0 0 14px rgba(175,205,210,.12));
  }

}


/* moving scan beam */

.home-brand-stage {
  position: relative;
}

.home-brand-stage > img {
  position: relative;
}

.home-brand-stage::before {
  content: "";
  position: absolute;
  top: -25%;
  left: -35%;
  width: 18%;
  height: 150%;
  z-index: 3;
  pointer-events: none;

  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(190,220,225,.08),
      rgba(225,240,242,.14),
      rgba(190,220,225,.06),
      transparent
    );

  transform: skewX(-18deg);

  animation:
    pnhScanPass 11s ease-in-out 3s infinite;
}

@keyframes pnhScanPass {

  0%,
  65% {
    left: -35%;
    opacity: 0;
  }

  68% {
    opacity: .15;
  }

  79% {
    left: 118%;
    opacity: .65;
  }

  82%,
  100% {
    left: 118%;
    opacity: 0;
  }

}


/* =========================================================
   HERO // SMALL LIVE STATUS MOTION
   ========================================================= */

.home-brand-footer span:last-child::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 8px;
  border-radius: 50%;
  background: #658d80;
  vertical-align: 1px;
  box-shadow: 0 0 0 rgba(101,141,128,0);

  animation: nodeHeartbeat 3.5s ease-out infinite;
}

@keyframes nodeHeartbeat {

  0%,
  70%,
  100% {
    opacity: .55;
    box-shadow: 0 0 0 0 rgba(101,141,128,0);
  }

  78% {
    opacity: 1;
    box-shadow: 0 0 0 7px rgba(101,141,128,.08);
  }

}


/* accessibility */

@media (prefers-reduced-motion: reduce) {

  .home-brand-logo,
  .home-brand-stage::before,
  .home-brand-footer span:last-child::before {
    animation: none !important;
  }

}


@media (max-width: 820px) {

  .finding-grid {
    grid-template-columns: 1fr;
  }

  .home-brand-hero::before,
  .home-brand-hero::after {
    opacity: .10;
    width: 14%;
  }

}


/* =========================================================
   HOME // FEATURED TRANSMISSION
   ========================================================= */

.home-feature-video {
  margin-top: 42px;
}

.home-feature-video-stage {
  width: 100%;
  margin-top: 22px;
}

.home-feature-video-stage .video-embed {
  width: 100%;
  background: #000;
}

.home-feature-video-stage video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}



/* =========================================================
   HOME // FEATURED TRANSMISSION
   ========================================================= */

.home-feature-video {
  margin-top: 42px;
}

.home-feature-video-stage {
  width: 100%;
  margin-top: 22px;
}

.home-feature-video-stage .video-embed {
  width: 100%;
  background: #000;
}

.home-feature-video-stage video {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  background: #000;
}



/* =========================================================
   CASE 01 // SOURCE CHECK
   ========================================================= */

.source-check-intro,
.attribution-intro {
  max-width: 820px;
  margin: 20px 0 0;
  color: #7c8991;
  font-family: var(--mono);
  font-size: 11px;
  line-height: 1.8;
}

.source-check-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 18px;
  margin-top: 26px;
}

.source-check-card {
  position: relative;
  min-height: 220px;
  padding: 22px;
  border: 1px solid rgba(91,107,117,.28);
  background: rgba(5,9,12,.82);
}

.source-check-card::before {
  content: "";
  position: absolute;
  top: -1px;
  left: -1px;
  width: 42px;
  height: 1px;
  background: var(--red);
}

.source-check-meta {
  color: #63717a;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.source-check-card h3 {
  margin: 20px 0 12px;
  color: #d5dde1;
  font-size: 18px;
}

.source-check-card p {
  margin: 0;
  color: #78858d;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.75;
}

.source-check-status {
  display: inline-block;
  margin-top: 22px;
  padding: 6px 8px;
  border: 1px solid rgba(93,126,117,.35);
  color: #6fa895;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .12em;
}


/* =========================================================
   ATTRIBUTION PATH
   ========================================================= */

.attribution-path {
  margin-top: 32px;
}

.attribution-step {
  display: grid;
  grid-template-columns: 58px minmax(0,1fr);
  gap: 20px;
  align-items: start;
  position: relative;
  padding: 20px 22px;
  border: 1px solid rgba(91,107,117,.24);
  background: rgba(5,8,11,.74);
}

.attribution-step:hover {
  border-color: rgba(118,139,151,.42);
}

.attribution-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(109,127,138,.32);
  color: #9ba7ad;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .1em;
}

.attribution-step h3 {
  margin: 1px 0 8px;
  color: #d5dde1;
  font-size: 16px;
}

.attribution-step p {
  max-width: 900px;
  margin: 0;
  color: #77848c;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.75;
}

.attribution-link {
  width: 1px;
  height: 22px;
  margin-left: 42px;
  background:
    linear-gradient(
      180deg,
      rgba(113,130,140,.15),
      rgba(217,58,58,.45),
      rgba(113,130,140,.15)
    );
}

.attribution-final {
  border-color: rgba(91,133,120,.34);
}

.attribution-final .attribution-number {
  border-color: rgba(91,148,131,.42);
  color: #76ae9d;
}

.attribution-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  margin-top: 28px;
  padding: 26px;
  border: 1px solid rgba(102,122,132,.32);
  background:
    linear-gradient(
      90deg,
      rgba(9,14,18,.92),
      rgba(5,8,11,.88)
    );
}

.attribution-result > div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.attribution-result-label {
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
}

.attribution-result strong {
  color: #e0e6e9;
  font-size: 24px;
  font-weight: 600;
}

.attribution-result div > span:last-child {
  color: #75828a;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .13em;
}

.attribution-result a {
  padding: 11px 14px;
  border: 1px solid rgba(111,128,138,.36);
  color: #cdd6da;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .14em;
  white-space: nowrap;
}


/* =========================================================
   PRIVACY BOUNDARY
   ========================================================= */

.privacy-boundary {
  padding-top: 20px;
}

.privacy-boundary-grid {
  display: grid;
  grid-template-columns: minmax(280px,.7fr) minmax(0,1.3fr);
  gap: 46px;
  padding: 28px;
  border-top: 1px solid rgba(91,107,117,.24);
  border-bottom: 1px solid rgba(91,107,117,.24);
  background: rgba(5,8,11,.54);
}

.privacy-boundary h2 {
  margin: 0;
  color: #d7dfe3;
  font-size: clamp(25px,3vw,40px);
  text-transform: uppercase;
}

.privacy-boundary p {
  margin: 0;
  align-self: center;
  color: #77858d;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.8;
}


@media (max-width: 820px) {

  .source-check-grid {
    grid-template-columns: 1fr;
  }

  .attribution-result {
    flex-direction: column;
    align-items: flex-start;
  }

  .privacy-boundary-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

}



/* =========================================================
   NETWORK // OSINT GRAPH V1
   ========================================================= */

.network-page {
  display: block !important;
}

.graph-section {
  width: 100%;
}

.graph-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 18px;
}

.graph-filter {
  appearance: none;
  border: 1px solid rgba(95,110,120,.32);
  background: rgba(5,8,11,.88);
  color: #78858d;
  padding: 8px 12px;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  cursor: pointer;
}

.graph-filter.active,
.graph-filter:hover {
  color: #d6dee2;
  border-color: rgba(135,150,160,.55);
}

.graph-layout {
  display: grid;
  grid-template-columns: minmax(0,1fr) 300px;
  gap: 18px;
  width: 100%;
}

.osint-graph {
  position: relative;
  width: 100%;
  height: 700px;
  min-height: 700px;
  overflow: hidden;
  border: 1px solid rgba(92,108,119,.30);
  background:
    radial-gradient(
      circle at 50% 50%,
      rgba(58,78,88,.14),
      transparent 38%
    ),
    linear-gradient(
      rgba(255,255,255,.016) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.016) 1px,
      transparent 1px
    ),
    rgba(3,7,9,.90);
  background-size:
    auto,
    38px 38px,
    38px 38px,
    auto;
}

.graph-lines {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.graph-edge {
  fill: none;
  stroke-width: 1.2;
  opacity: .65;
}

.graph-edge.direct {
  stroke: rgba(91,190,164,.82);
}

.graph-edge.mention {
  stroke: rgba(192,147,70,.70);
}

.graph-edge.indirect {
  stroke: rgba(108,124,134,.52);
  stroke-dasharray: 6 8;
}

.graph-node {
  appearance: none;
  position: absolute;
  transform: translate(-50%,-50%);
  display: block;
  width: auto;
  min-width: 135px;
  max-width: 190px;
  margin: 0;
  padding: 12px 14px;
  border: 1px solid rgba(102,118,128,.35);
  border-radius: 0;
  background: rgba(4,9,12,.96);
  color: #cfd7db;
  text-align: left;
  font-family: var(--mono);
  cursor: pointer;
  z-index: 5;
}

.graph-node strong,
.graph-node span,
.graph-node small {
  display: block;
}

.graph-node strong {
  color: #d9e0e3;
  font-size: 9px;
  letter-spacing: .07em;
}

.graph-node span {
  margin-top: 5px;
  color: #6f7d85;
  font-size: 7px;
  letter-spacing: .12em;
}

.graph-node small {
  margin-top: 4px;
  color: #87949b;
  font-size: 7px;
}

.graph-node:hover,
.graph-node.is-selected {
  border-color: rgba(189,202,208,.65);
  box-shadow: 0 0 22px rgba(120,150,165,.08);
}

.center-node {
  min-width: 220px;
  padding: 19px;
  border-color: rgba(190,54,54,.62);
  background: rgba(7,9,11,.98);
  box-shadow:
    0 0 0 1px rgba(190,54,54,.05),
    0 0 35px rgba(190,54,54,.10);
}

.center-node strong {
  font-size: 11px;
}

.center-node::before {
  content: "";
  position: absolute;
  inset: -9px;
  border: 1px solid rgba(190,54,54,.14);
  pointer-events: none;
  animation: graphCenterPulse 4s ease-out infinite;
}

@keyframes graphCenterPulse {
  0%,100% {
    opacity: .18;
    transform: scale(.98);
  }

  50% {
    opacity: .55;
    transform: scale(1.035);
  }
}

.direct-node {
  border-color: rgba(91,190,164,.42);
}

.mention-node {
  border-color: rgba(192,147,70,.40);
}

.indirect-node {
  border-color: rgba(105,120,130,.30);
}

.graph-inspector {
  box-sizing: border-box;
  min-height: 700px;
  padding: 22px;
  border: 1px solid rgba(92,108,119,.30);
  background: rgba(4,8,11,.94);
}

.graph-inspector-kicker {
  color: var(--red);
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .16em;
}

.graph-inspector h2 {
  margin: 18px 0 8px;
  color: #dbe2e5;
  font-size: 23px;
}

.graph-inspector-meta {
  color: #708089;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
}

.graph-inspector p {
  margin: 22px 0;
  color: #7c8991;
  font-family: var(--mono);
  font-size: 10px;
  line-height: 1.75;
}

.graph-inspector-details {
  border-top: 1px solid rgba(90,105,115,.18);
}

.graph-inspector-details > div {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  padding: 11px 0;
  border-bottom: 1px solid rgba(90,105,115,.14);
  font-family: var(--mono);
  font-size: 8px;
}

.graph-inspector-details span {
  color: #63717a;
}

.graph-inspector-details strong {
  color: #b8c2c7;
  font-weight: 500;
}

.graph-inspector-link {
  display: inline-block;
  margin-top: 22px;
  color: #cbd5d9;
  font-family: var(--mono);
  font-size: 8px;
  letter-spacing: .13em;
  text-decoration: none;
}

.graph-node.is-hidden,
.graph-edge.is-hidden {
  opacity: .06 !important;
  pointer-events: none;
}

@media (max-width: 980px) {

  .graph-layout {
    grid-template-columns: 1fr;
  }

  .graph-inspector {
    min-height: auto;
  }

}

@media (prefers-reduced-motion: reduce) {

  .center-node::before {
    animation: none;
  }

}


/* =========================================================
   GRAPH INSPECTOR // VISUAL EVIDENCE
   ========================================================= */

.graph-inspector-visual {
  position: relative;
  margin: 18px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(90,108,118,.28);
  background: #030608;
}

.graph-inspector-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255,255,255,.02) 50%,
      transparent 100%
    );
  background-size: 100% 5px;
  opacity: .25;
}

.graph-inspector-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter:
    saturate(.85)
    contrast(1.06)
    brightness(.86);
}



/* =========================================================
   NETWORK GRAPH V2 // PEOPLE + EVIDENCE + SUBTLE MOTION
   ========================================================= */


/* Base slow drift */

.graph-node {
  animation:
    pnhNodeDrift var(--drift-duration, 15s)
    ease-in-out infinite alternate;
}

@keyframes pnhNodeDrift {

  0% {
    translate: 0 0;
  }

  45% {
    translate:
      calc(var(--drift-x, 2px) * .45)
      calc(var(--drift-y, -2px) * .45);
  }

  100% {
    translate:
      var(--drift-x, 2px)
      var(--drift-y, -2px);
  }

}


/* =========================================================
   PEOPLE / ACCOUNT NODES
   ========================================================= */

.person-node {
  width: 112px;
  min-width: 112px;
  height: 112px;
  max-width: 112px;

  padding: 0;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  border-radius: 50%;

  text-align: center;

  overflow: visible;
}

.person-node strong {
  font-size: 8px;
  line-height: 1.25;
}

.person-node > span:not(.node-portrait) {
  font-size: 6px;
}


/* =========================================================
   THOMAS CENTER NODE
   ========================================================= */

.center-node {
  width: 156px;
  min-width: 156px;
  max-width: 156px;
  height: 156px;

  padding: 0;

  border-radius: 50%;

  overflow: visible;

  background: #040709;
}

.center-node::before {
  inset: -11px;
  border-radius: 50%;
}


/* Portrait container */

.node-portrait-thomas {
  position: absolute;

  inset: 6px;

  overflow: hidden;

  border-radius: 50%;

  background: #020405;
}


/* Both identity images */

.node-portrait-thomas .identity-frame {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  border-radius: 50%;

  transition: opacity 1.2s ease;

  filter:
    saturate(.82)
    contrast(1.08)
    brightness(.88);
}


/* Public image */

.identity-public {
  opacity: 1;

  animation:
    pnhPublicIdentity
    10s
    ease-in-out
    infinite;
}


/* Persona image */

.identity-persona {
  opacity: 0;

  animation:
    pnhPersonaIdentity
    10s
    ease-in-out
    infinite;
}


@keyframes pnhPublicIdentity {

  0%,
  38% {
    opacity: 1;
  }

  50%,
  88% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }

}


@keyframes pnhPersonaIdentity {

  0%,
  38% {
    opacity: 0;
  }

  50%,
  88% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }

}


/* Label floating beneath portrait */

.person-node-label {
  position: absolute;

  left: 50%;
  top: calc(100% + 10px);

  transform: translateX(-50%);

  width: 200px;

  text-align: center;

  pointer-events: none;
}

.person-node-label strong,
.person-node-label span,
.person-node-label small {
  display: block;
}

.person-node-label strong {
  color: #d9e1e4;
  font-size: 9px;
}

.person-node-label span {
  margin-top: 4px;
  color: #8a969c;
  font-size: 7px;
}

.person-node-label small {
  margin-top: 3px;
  color: #66747b;
  font-size: 6px;
}


/* =========================================================
   EVIDENCE / INFORMATION NODES
   ========================================================= */

.evidence-node {

  width: 155px;
  min-width: 155px;
  max-width: 155px;

  min-height: 72px;

  border-radius: 0;

  padding: 13px 14px;

  background:
    linear-gradient(
      180deg,
      rgba(8,13,16,.97),
      rgba(4,8,10,.96)
    );

  border-color:
    rgba(92,159,153,.35);

  text-align: left;

  overflow: hidden;
}


.evidence-node::before {

  content: "";

  position: absolute;

  left: -1px;
  top: -1px;

  width: 38px;
  height: 1px;

  background:
    rgba(92,190,174,.75);

}


.evidence-node strong {

  font-size: 8px;

  color: #cbd5d9;

}


.evidence-node span {

  margin-top: 6px;

  color: #819097;

  font-size: 6px;

}


.evidence-node small {

  margin-top: 4px;

  color: #5f7078;

  font-size: 6px;

}


.verification-node {

  border-color:
    rgba(148,102,175,.42);

}


.verification-node::before {

  background:
    rgba(160,112,184,.70);

}


/* =========================================================
   EVIDENCE EDGES
   ========================================================= */

.graph-edge.evidence-edge {

  stroke:
    rgba(79,151,145,.48);

  stroke-width: 1;

}


.graph-edge.verification-edge {

  stroke:
    rgba(147,104,175,.52);

  stroke-width: 1;

  stroke-dasharray: 3 7;

}


/* =========================================================
   VERY SUBTLE WEB FLICKER
   ========================================================= */

.graph-edge {

  animation:
    pnhEdgeSignal
    14s
    ease-in-out
    infinite;

}


.graph-edge:nth-child(2n) {

  animation-delay: -3.7s;

}


.graph-edge:nth-child(3n) {

  animation-delay: -7.9s;

}


.graph-edge:nth-child(5n) {

  animation-delay: -10.6s;

}


@keyframes pnhEdgeSignal {

  0%,
  40%,
  44%,
  73%,
  100% {

    filter: none;

  }

  41% {

    filter:
      brightness(1.7);

  }

  42% {

    filter:
      brightness(.65);

  }

  43% {

    filter:
      brightness(1.35);

  }

}


/* =========================================================
   RANDOMISH NODE OFFSETS
   ========================================================= */

.person-node:nth-of-type(2) {
  --drift-x: 4px;
  --drift-y: -3px;
  --drift-duration: 17s;
}

.person-node:nth-of-type(3) {
  --drift-x: -3px;
  --drift-y: 4px;
  --drift-duration: 14s;
}

.person-node:nth-of-type(4) {
  --drift-x: 2px;
  --drift-y: 3px;
  --drift-duration: 19s;
}

.person-node:nth-of-type(5) {
  --drift-x: -4px;
  --drift-y: -2px;
  --drift-duration: 16s;
}

.person-node:nth-of-type(6) {
  --drift-x: 3px;
  --drift-y: 2px;
  --drift-duration: 21s;
}

.person-node:nth-of-type(7) {
  --drift-x: -2px;
  --drift-y: -4px;
  --drift-duration: 18s;
}


/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .graph-node,
  .graph-edge,
  .identity-public,
  .identity-persona {

    animation: none !important;

  }

  .identity-public {
    opacity: 1;
  }

  .identity-persona {
    opacity: 0;
  }

}



/* =========================================================
   GRAPH INSPECTOR // VISUAL EVIDENCE
   ========================================================= */

.graph-inspector-visual {
  position: relative;
  margin: 18px 0 20px;
  overflow: hidden;
  border: 1px solid rgba(90,108,118,.28);
  background: #030608;
}

.graph-inspector-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      transparent 0%,
      rgba(255,255,255,.02) 50%,
      transparent 100%
    );
  background-size: 100% 5px;
  opacity: .25;
}

.graph-inspector-visual img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  filter:
    saturate(.85)
    contrast(1.06)
    brightness(.86);
}



/* =========================================================
   CENTER TOM // FORCE BOTH IDENTITY IMAGES INTO CIRCLE
   ========================================================= */

.center-node .node-portrait-thomas {
  position: absolute;
  inset: 6px;
  overflow: hidden;
  border-radius: 50%;
  background: #030506;
}

.center-node .node-portrait-thomas .identity-frame {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  max-width: none;
  max-height: none;

  margin: 0;
  padding: 0;

  border-radius: 50%;

  object-fit: cover;

  transform: none;
}


/* Real/public Thomas photo */
.center-node .identity-public {
  object-position: 50% 50%;
}


/* X persona image */
.center-node .identity-persona {
  object-position: 50% 50%;
}


/* =========================================================
   CENTER TOM // FINAL IMAGE FIT
   ========================================================= */

.center-node .node-portrait-thomas {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 50%;
}

.center-node .node-portrait-thomas .identity-frame {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 100%;
  height: 100%;

  max-width: none;
  max-height: none;

  object-fit: cover;
  border-radius: 50%;

  transform-origin: center center;
}


/* Real/public photo — zoom tighter */
.center-node .identity-public {
  transform: translate(-50%, -50%) scale(1.34);
  object-position: 50% 48%;
}


/* X persona — slightly tighter and centered */
.center-node .identity-persona {
  transform: translate(-50%, -50%) scale(1.12);
  object-position: 50% 50%;
}


/* =========================================================
   CENTER TOM // CORRECT IMAGE FIT
   ========================================================= */

.center-node .node-portrait-thomas {
  position: absolute;
  inset: 6px;
  overflow: hidden;
  border-radius: 50%;
  background: #030506;
}

.center-node .node-portrait-thomas .identity-frame {
  position: absolute !important;

  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;

  width: 100% !important;
  height: 100% !important;

  max-width: none !important;
  max-height: none !important;

  margin: 0 !important;
  padding: 0 !important;

  object-fit: cover !important;
  object-position: center center !important;

  border-radius: 50% !important;

  transform: none !important;
  transform-origin: center center !important;
}

/* Both identity states use the exact same circular framing */
.center-node .identity-public,
.center-node .identity-persona {
  object-fit: cover !important;
  object-position: 50% 50% !important;
  transform: none !important;
}

/* =========================================================
   NETWORK // SAFE MICRO-MOTION
   CSS ONLY
   ========================================================= */

.person-node,
.evidence-node {
  animation: pnhMicroDrift 18s ease-in-out infinite alternate;
}

.person-node:nth-of-type(2n) {
  animation-duration: 21s;
  animation-delay: -4s;
}

.person-node:nth-of-type(3n) {
  animation-duration: 24s;
  animation-delay: -9s;
}

.evidence-node:nth-of-type(2n) {
  animation-duration: 26s;
  animation-delay: -6s;
}

.evidence-node:nth-of-type(3n) {
  animation-duration: 29s;
  animation-delay: -11s;
}

@keyframes pnhMicroDrift {
  0% {
    translate: -1px 0;
  }

  50% {
    translate: 1px -1px;
  }

  100% {
    translate: 2px 1px;
  }
}


/* Subtle connection shimmer */

.graph-edge {
  animation: pnhEdgeBreath 16s ease-in-out infinite;
}

.graph-edge:nth-child(2n) {
  animation-delay: -5s;
}

.graph-edge:nth-child(3n) {
  animation-delay: -9s;
}

@keyframes pnhEdgeBreath {
  0%, 40%, 44%, 100% {
    filter: none;
  }

  42% {
    filter: brightness(1.3);
  }
}


/* Preserve Thomas identity crossfade animations */

.center-node .identity-public,
.center-node .identity-persona {
  translate: none;
}


/* Accessibility */

@media (prefers-reduced-motion: reduce) {
  .person-node,
  .evidence-node,
  .graph-edge {
    animation: none !important;
  }
}


/* =========================================================
   CENTER TOM // PERSONA CROP NORMALIZATION
   ========================================================= */

.center-node .identity-persona {
  width: 100% !important;
  height: 100% !important;

  object-fit: cover !important;
  object-position: 50% 50% !important;

  transform: scale(.78) !important;
  transform-origin: center center !important;

  background: #030506;
}

.center-node .identity-public {
  object-fit: cover !important;
  object-position: 50% 50% !important;
}


/* =========================================================
   NETWORK ACCOUNT PFPs
   ========================================================= */

.person-node:not(.center-node) {
  position: absolute;
  overflow: visible;
}

.node-portrait-account {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: #020405;
  pointer-events: none;
  z-index: 1;
}

.node-portrait-account img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Keep account labels readable beneath the portrait */
.person-node:not(.center-node) > strong {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

.person-node:not(.center-node) > span:not(.node-portrait) {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

/* Preserve node interaction and ring */
.node-portrait-account::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgba(0,0,0,.28);
  pointer-events: none;
}

/* =========================================================
   NETWORK ACCOUNT PFPs
   ========================================================= */

.person-node:not(.center-node) {
  position: absolute;
  overflow: visible;
}

.node-portrait-account {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: #020405;
  pointer-events: none;
  z-index: 1;
}

.node-portrait-account img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Keep account labels readable beneath the portrait */
.person-node:not(.center-node) > strong {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

.person-node:not(.center-node) > span:not(.node-portrait) {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

/* Preserve node interaction and ring */
.node-portrait-account::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgba(0,0,0,.28);
  pointer-events: none;
}

/* =========================================================
   NETWORK ACCOUNT PFPs
   ========================================================= */

.person-node:not(.center-node) {
  position: absolute;
  overflow: visible;
}

.node-portrait-account {
  position: absolute;
  inset: 5px;
  overflow: hidden;
  border-radius: 50%;
  background: #020405;
  pointer-events: none;
  z-index: 1;
}

.node-portrait-account img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}

/* Keep account labels readable beneath the portrait */
.person-node:not(.center-node) > strong {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

.person-node:not(.center-node) > span:not(.node-portrait) {
  position: absolute;
  top: calc(100% + 21px);
  left: 50%;
  width: 150px;
  transform: translateX(-50%);
  text-align: center;
  z-index: 3;
  white-space: nowrap;
}

/* Preserve node interaction and ring */
.node-portrait-account::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 16px rgba(0,0,0,.28);
  pointer-events: none;
}

.home-brand-video-wrap{
  width:min(100%, 1100px);
  margin:28px auto 0;
}

.home-brand-video{
  display:block;
  width:100%;
  height:auto;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  box-shadow:0 20px 60px rgba(0,0,0,.35);
}

.cbic-feature{
  margin-top:56px;
  margin-bottom:48px;
  padding:28px;
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg,rgba(255,255,255,.015),transparent),
    #060708;
}

.cbic-feature-head{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
  font-family:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,monospace;
  font-size:9px;
  letter-spacing:.18em;
}

.cbic-feature-kicker{
  color:#d24b45;
}

.cbic-feature-status{
  color:#5cae98;
}

.cbic-feature-grid{
  display:grid;
  grid-template-columns:minmax(0,.9fr) minmax(360px,1.1fr);
  gap:34px;
  align-items:stretch;
}

.cbic-feature-copy h2{
  margin:0 0 12px;
  font-size:clamp(32px,4vw,56px);
  letter-spacing:.02em;
}

.cbic-feature-copy p{
  max-width:720px;
  color:#aaa;
  line-height:1.7;
}

.cbic-feature-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
  margin:24px 0;
}

.cbic-feature-metrics div{
  padding:14px;
  border:1px solid rgba(255,255,255,.08);
  background:#090a0b;
}

.cbic-feature-metrics strong{
  display:block;
  font-size:24px;
  color:#e5e5e5;
}

.cbic-feature-metrics span{
  display:block;
  margin-top:4px;
  font-size:9px;
  letter-spacing:.12em;
  color:#777;
}

.cbic-feature-notes{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}

.cbic-feature-notes div{
  display:grid;
  grid-template-columns:110px 1fr;
  gap:16px;
  font-size:11px;
}

.cbic-feature-notes b{
  color:#d0a56b;
  letter-spacing:.08em;
}

.cbic-feature-notes span{
  color:#8d8d8d;
}

.cbic-feature-link{
  display:inline-block;
  color:#ddd;
  text-decoration:none;
  font-size:11px;
  letter-spacing:.12em;
}

.cbic-feature-preview{
  position:relative;
  min-height:360px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#020202;
}

.cbic-feature-preview iframe{
  width:145%;
  height:145%;
  border:0;
  transform:scale(.69);
  transform-origin:top left;
  pointer-events:none;
  filter:saturate(.85) brightness(.85);
}

.cbic-feature-overlay{
  position:absolute;
  right:12px;
  bottom:12px;
  padding:8px 10px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.78);
  color:#aaa;
  font-size:9px;
  letter-spacing:.14em;
}

@media(max-width:900px){
  .cbic-feature-grid{
    grid-template-columns:1fr;
  }

  .cbic-feature-preview{
    min-height:300px;
  }
}

@media(max-width:600px){
  .cbic-feature{
    padding:18px;
  }

  .cbic-feature-head{
    flex-direction:column;
  }

  .cbic-feature-metrics{
    grid-template-columns:1fr;
  }

  .cbic-feature-notes div{
    grid-template-columns:1fr;
    gap:4px;
  }
}
