/* ============================================================
   AI-Disruptors — Hybrid Navigation (navigation-hybrid.css)
   Drop-in: styles the .hy-header + panels + orbital + mobile menu.
   Self-contained — defines its own vars (matching the site theme) and
   scopes its resets to nav containers so it never touches page content.
   ============================================================ */
:root {
  --bg: #040507;
  --panel: rgba(255, 255, 255, 0.035);
  --panel-strong: #0b0d11;
  --line: rgba(255, 255, 255, 0.08);
  --line-soft: rgba(255, 255, 255, 0.05);
  --text: #f5f5f2;
  --muted: #b9b8b1;
  --gold: #d8b44a;
  --gold-2: #f1d777;
  --gold-glow: rgba(216, 180, 74, 0.28);
  --gold-soft: rgba(216, 180, 74, 0.10);
  --nav-ease: 220ms cubic-bezier(.2,.8,.2,1);
  --hdr-h: 76px;
}
/* resets scoped to nav containers only (never global) */
.hy-header *, .hybrid-panel *, .hy-mobile *, .hy-backdrop * { box-sizing: border-box; }
.hy-header button, .hybrid-panel button, .hy-mobile button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; margin: 0; padding: 0; }
.hy-header :focus-visible, .hybrid-panel :focus-visible, .hy-mobile :focus-visible { outline: 2px solid var(--gold-2); outline-offset: 2px; border-radius: 4px; }

/* ============================================================
       1. HEADER — simple, familiar, sticky, glass-on-scroll
       ============================================================ */
    .hy-header {
      position: sticky;
      top: 0;
      z-index: 900;
      height: var(--hdr-h);
      display: flex;
      align-items: center;
      background: rgba(4, 5, 7, 0.55);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--line-soft);
      transition: background var(--nav-ease), border-color var(--nav-ease), box-shadow var(--nav-ease);
    }
    .hy-header.scrolled {
      background: rgba(4, 5, 7, 0.88);
      border-bottom-color: var(--line);
      box-shadow: 0 12px 40px rgba(0,0,0,.45);
    }
    .hy-nav {
      width: min(calc(100% - 3rem), 1280px);
      margin: 0 auto;
      display: flex;
      align-items: center;
      gap: 26px;
    }
    .hy-brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--text);
      font-weight: 800;
      letter-spacing: .12em;
      font-size: 15px;
      flex-shrink: 0;
    }
    .hy-brand img { width: 30px; height: 30px; display: block; }

    .hy-links {
      display: flex;
      align-items: center;
      gap: 4px;
      flex: 1;
    }
    .hy-link, .hy-trigger {
      position: relative;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 9px 13px;
      color: var(--text);
      font-size: 14.5px;
      font-weight: 500;
      border-radius: 8px;
      transition: color 120ms ease, background 120ms ease;
      white-space: nowrap;
    }
    .hy-link::after, .hy-trigger::after {
      content: "";
      position: absolute;
      left: 13px; right: 13px; bottom: 5px;
      height: 1.5px;
      background: linear-gradient(90deg, var(--gold), var(--gold-2));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 160ms ease;
    }
    .hy-link:hover, .hy-trigger:hover,
    .hy-link:focus-visible, .hy-trigger:focus-visible { color: var(--gold-2); }
    .hy-link:hover::after, .hy-trigger:hover::after,
    .hy-trigger[aria-expanded="true"]::after { transform: scaleX(1); }
    .hy-trigger[aria-expanded="true"] { color: var(--gold-2); background: var(--gold-soft); }
    .hy-caret {
      width: 9px; height: 9px;
      border-right: 1.6px solid currentColor;
      border-bottom: 1.6px solid currentColor;
      transform: rotate(45deg) translateY(-2px);
      transition: transform 180ms ease;
      margin-left: 1px;
    }
    .hy-trigger[aria-expanded="true"] .hy-caret { transform: rotate(225deg) translateY(-1px); }

    /* "Explore AI Universe" — elevated pill: above plain links, below the solid Snapshot CTA */
    .hy-explore {
      border: 1px solid rgba(216,180,74,.5);
      border-radius: 999px;
      padding: 7px 14px;
      background: rgba(216,180,74,.06);
      color: var(--gold-2);
      transition: background 140ms ease, border-color 140ms ease, box-shadow 180ms ease;
    }
    .hy-explore::after { display: none; } /* the pill itself is the highlight — no underline */
    .hy-explore:hover, .hy-explore[aria-expanded="true"] {
      background: rgba(216,180,74,.16);
      border-color: var(--gold-2);
      box-shadow: 0 0 18px rgba(216,180,74,.25);
      color: var(--gold-2);
    }
    .hy-orbit-ico {
      position: relative;
      width: 14px; height: 14px;
      border: 1px solid rgba(216,180,74,.7);
      border-radius: 50%;
      display: inline-block;
      flex-shrink: 0;
    }
    .hy-orbit-ico::before {
      content: "";
      position: absolute;
      top: 50%; left: 50%;
      width: 4px; height: 4px;
      margin: -2px 0 0 -2px;
      border-radius: 50%;
      background: var(--gold-2);
      box-shadow: 0 0 5px var(--gold);
      transform: rotate(0deg) translateX(7px);
      animation: hyOrbit 3.2s linear infinite;
    }
    @keyframes hyOrbit { to { transform: rotate(360deg) translateX(7px); } }

    .hy-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; margin-left: auto; }
    .hy-cta {
      display: inline-flex;
      align-items: center;
      min-height: 42px;
      padding: 0 20px;
      border-radius: 999px;
      background: var(--gold, #d8b44a) linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      font-weight: 800;
      font-size: 14px;
      box-shadow: 0 0 0 0 var(--gold-glow);
      transition: transform 140ms ease, box-shadow 200ms ease;
    }
    .hy-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 24px var(--gold-glow); }
    .hy-menu-btn {
      display: none;
      width: 44px; height: 44px;
      align-items: center; justify-content: center;
      font-size: 22px;
      border-radius: 10px;
      border: 1px solid var(--line);
    }

    /* Small classic dropdown (Resources) */
    .hy-drop { position: relative; }
    .hy-dropdown {
      position: absolute;
      top: calc(100% + 10px);
      left: 0;
      min-width: 260px;
      background: var(--panel-strong);
      backdrop-filter: blur(14px);
      border: 1px solid var(--line);
      border-radius: 14px;
      padding: 8px;
      box-shadow: 0 22px 60px rgba(0,0,0,.55), 0 0 0 1px rgba(216,180,74,.06);
      opacity: 0;
      transform: translateY(-6px);
      pointer-events: none;
      transition: opacity 160ms ease, transform 200ms cubic-bezier(.2,.8,.2,1);
    }
    .hy-dropdown::before { /* hover bridge */
      content: ""; position: absolute; left: 0; right: 0; top: -12px; height: 12px;
    }
    .hy-drop.open .hy-dropdown { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .hy-dropdown a {
      display: block;
      padding: 9px 12px;
      border-radius: 9px;
      color: var(--text);
      font-size: 14px;
      transition: background 120ms ease, color 120ms ease;
    }
    .hy-dropdown a span { display: block; color: var(--muted); font-size: 12px; font-weight: 400; }
    .hy-dropdown a:hover, .hy-dropdown a:focus-visible { background: var(--gold-soft); color: var(--gold-2); }

    /* ============================================================
       SHARED PANEL SHELL (Command Center / Story Path / Orbital)
       ============================================================ */
    .hy-backdrop {
      position: fixed;
      inset: var(--hdr-h) 0 0 0;
      background: rgba(2, 3, 4, 0.55);
      backdrop-filter: blur(2px);
      opacity: 0;
      pointer-events: none;
      transition: opacity 200ms ease;
      z-index: 800;
    }
    .hy-backdrop.show { opacity: 1; pointer-events: auto; }

    .hybrid-panel {
      position: fixed;
      top: var(--hdr-h);
      left: 50%;
      width: min(calc(100% - 2.5rem), 1240px);
      max-height: calc(100vh - var(--hdr-h) - 28px);
      overflow-y: auto;
      scrollbar-gutter: stable; /* rotating chips can toggle the scrollbar — reserve the space so the layout never nudges */
      background: var(--panel-strong);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border: 1px solid var(--line);
      border-top-color: rgba(216,180,74,.22);
      border-radius: 0 0 22px 22px;
      box-shadow: 0 40px 110px rgba(0,0,0,.6), 0 0 60px rgba(216,180,74,.05);
      padding: 30px 34px 34px;
      z-index: 850;
      opacity: 0;
      transform: translateX(-50%) translateY(-10px) scale(.988);
      pointer-events: none;
      transition: opacity 190ms ease, transform 230ms cubic-bezier(.2,.8,.2,1);
    }
    .hybrid-panel.is-open {
      opacity: 1;
      transform: translateX(-50%) translateY(0) scale(1);
      pointer-events: auto;
    }
    .hy-panel-head {
      display: flex;
      align-items: baseline;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 22px;
    }
    .hy-panel-title {
      font-family: "Fraunces", Georgia, serif;
      font-weight: 400;
      font-size: 1.55rem;
      letter-spacing: -0.015em;
    }
    .hy-panel-title em { font-style: italic; color: var(--gold); }
    .hy-panel-sub { color: var(--muted); font-size: .92rem; }
    .hy-close {
      flex-shrink: 0;
      display: inline-flex; align-items: center; gap: 8px;
      height: 40px;
      padding: 0 16px 0 14px;
      border: 1px solid rgba(216,180,74,.5);
      border-radius: 999px;
      background: var(--gold-soft);
      color: var(--gold-2);
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: .01em;
      transition: background 130ms ease, border-color 130ms ease, transform 130ms ease;
    }
    .hy-close .x {
      display: inline-flex; align-items: center; justify-content: center;
      width: 20px; height: 20px;
      border-radius: 50%;
      background: rgba(216,180,74,.22);
      font-size: 13px;
      line-height: 1;
    }
    .hy-close:hover { background: rgba(216,180,74,.2); border-color: var(--gold-2); transform: translateY(-1px); }

    /* staggered item entrance */
    .hy-stag { opacity: 0; transform: translateY(7px); transition: opacity 240ms ease, transform 260ms cubic-bezier(.2,.8,.2,1); }
    .hybrid-panel.is-open .hy-stag { opacity: 1; transform: translateY(0); transition-delay: calc(var(--i, 0) * 42ms); }

    /* ============================================================
       2. COMMAND CENTER (Solutions / Industries)
       ============================================================ */
    .cc-grid {
      display: grid;
      grid-template-columns: 235px 1fr 330px;
      gap: 28px;
      align-items: start;
    }
    .cc-mode {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }
    .cc-mode-btn {
      text-align: left;
      padding: 14px 16px;
      border-radius: 14px;
      border: 1px solid transparent;
      transition: background 140ms ease, border-color 140ms ease;
    }
    .cc-mode-btn strong { display: block; font-size: 14.5px; font-weight: 700; }
    .cc-mode-btn span { display: block; color: var(--muted); font-size: 12px; margin-top: 2px; }
    .cc-mode-btn:hover { background: var(--panel); }
    .cc-mode-btn[aria-pressed="true"] {
      background: var(--gold-soft);
      border-color: rgba(216,180,74,.35);
    }
    .cc-mode-btn[aria-pressed="true"] strong { color: var(--gold-2); }
    .cc-mode-note {
      margin-top: 14px;
      padding: 13px 15px;
      border-left: 2px solid var(--gold);
      background: var(--panel);
      border-radius: 0 12px 12px 0;
      color: var(--muted);
      font-size: 12.5px;
      line-height: 1.55;
    }

    .cc-groups { min-width: 0; }
    .cc-group { display: none; }
    .cc-group.active { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 18px; align-content: start; }
    .cc-group-label {
      grid-column: 1 / -1;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .26em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 6px;
    }
    .cc-link {
      display: block;
      padding: 10px 13px;
      border-radius: 12px;
      color: var(--text);
      border: 1px solid transparent;
      transition: background 130ms ease, border-color 130ms ease, transform 130ms ease;
    }
    .cc-link strong { display: flex; align-items: center; gap: 7px; font-size: 14px; font-weight: 600; }
    .cc-link strong::after {
      content: "→";
      color: var(--gold);
      opacity: 0;
      transform: translateX(-4px);
      transition: opacity 130ms ease, transform 130ms ease;
      font-weight: 400;
    }
    .cc-link span { display: block; color: var(--muted); font-size: 12.2px; line-height: 1.45; margin-top: 1px; }
    .cc-link:hover, .cc-link:focus-visible, .cc-link.pv-active {
      background: linear-gradient(180deg, rgba(216,180,74,.10), rgba(216,180,74,.05));
      border-color: rgba(216,180,74,.28);
    }
    .cc-link:hover strong::after, .cc-link:focus-visible strong::after, .cc-link.pv-active strong::after { opacity: 1; transform: translateX(0); }

    /* Featured Products — elevated, income-producing emphasis */
    .cc-products {
      grid-column: 1 / -1;
      margin-top: 16px;
      padding: 16px 18px 18px;
      border-radius: 18px;
      background:
        radial-gradient(120% 120% at 0% 0%, rgba(216,180,74,.12), transparent 55%),
        linear-gradient(180deg, rgba(216,180,74,.07), rgba(216,180,74,.03));
      border: 1px solid rgba(216,180,74,.32);
      box-shadow: inset 0 1px 0 rgba(216,180,74,.12);
    }
    .cc-products-head { display: flex; align-items: center; flex-wrap: wrap; gap: 10px; margin-bottom: 14px; }
    .cc-products-badge {
      display: inline-flex; align-items: center; gap: 6px;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 5px 12px;
      border-radius: 999px;
    }
    .cc-products-badge .star { font-size: 12px; }
    .cc-products-tag { color: var(--gold-2); font-size: 12.5px; font-weight: 500; }
    .cc-products-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
    .cc-prod {
      background: rgba(10,12,16,.55);
      border: 1px solid rgba(216,180,74,.16);
    }
    .cc-prod:hover, .cc-prod:focus-visible, .cc-prod.pv-active {
      background: linear-gradient(180deg, rgba(216,180,74,.16), rgba(216,180,74,.07));
      border-color: rgba(216,180,74,.5);
      transform: translateY(-1px);
    }
    .cc-prod strong { color: var(--gold-2); }

    /* ============================================================
       2b. INDUSTRIES — its own distinct card panel
       ============================================================ */
    .ind-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .ind-card {
      display: flex;
      gap: 14px;
      padding: 16px;
      border-radius: 16px;
      background: var(--panel);
      border: 1px solid var(--line);
      transition: background 140ms ease, border-color 140ms ease, transform 140ms ease;
    }
    .ind-card:hover, .ind-card:focus-visible, .ind-card.pv-active {
      background: linear-gradient(180deg, rgba(216,180,74,.10), rgba(216,180,74,.04));
      border-color: rgba(216,180,74,.4);
      transform: translateY(-2px);
    }
    .ind-ico {
      flex-shrink: 0;
      width: 44px; height: 44px;
      border-radius: 12px;
      background: var(--gold-soft);
      border: 1px solid rgba(216,180,74,.3);
      display: flex; align-items: center; justify-content: center;
      color: var(--gold-2);
    }
    .ind-ico svg { width: 22px; height: 22px; }
    .ind-body { min-width: 0; }
    .ind-name { display: flex; align-items: center; gap: 7px; font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 3px; }
    .ind-name::after {
      content: "→"; color: var(--gold);
      opacity: 0; transform: translateX(-4px);
      transition: opacity 130ms ease, transform 130ms ease;
    }
    .ind-card:hover .ind-name::after, .ind-card:focus-visible .ind-name::after { opacity: 1; transform: translateX(0); }
    .ind-name strong { font-weight: 700; }
    .ind-leak { font-size: 12.5px; color: var(--muted); line-height: 1.5; }
    .ind-leak b { color: var(--gold-2); font-weight: 600; }
    .ind-build {
      display: block;
      margin-top: 8px;
      padding-top: 8px;
      border-top: 1px solid var(--line-soft);
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
    }
    .ind-build b { color: var(--text); font-weight: 600; }

    /* Preview panel (right) */
    .cc-preview {
      position: sticky;
      top: 0;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 22px 22px 20px;
      min-height: 320px;
      overflow: hidden;
    }
    .pv-inner { transition: opacity 150ms ease, transform 170ms ease; }
    .pv-inner.pv-out { opacity: 0; transform: translateY(6px); }
    .pv-icon {
      width: 46px; height: 46px;
      border-radius: 12px;
      background: var(--gold-soft);
      border: 1px solid rgba(216,180,74,.3);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 14px;
      color: var(--gold-2);
    }
    .pv-icon svg { width: 24px; height: 24px; }
    .pv-title { font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: 1.18rem; margin-bottom: 8px; }
    .pv-text { color: var(--muted); font-size: 13.5px; line-height: 1.6; margin-bottom: 14px; }
    .pv-tags-label { font-size: 10.5px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 7px; }
    .pv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
    .pv-tag {
      font-size: 11.5px;
      color: var(--muted);
      border: 1px solid var(--line);
      background: rgba(255,255,255,.03);
      padding: 3px 10px;
      border-radius: 999px;
    }
    .pv-ctas { display: flex; flex-direction: column; gap: 9px; }
    .pv-cta {
      display: flex; align-items: center; justify-content: center;
      min-height: 42px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      font-weight: 800;
      font-size: 13.5px;
      transition: transform 130ms ease, box-shadow 180ms ease;
    }
    .pv-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 22px var(--gold-glow); }
    .pv-cta2 {
      display: flex; align-items: center; justify-content: center;
      min-height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(216,180,74,.4);
      color: var(--gold-2);
      font-weight: 600;
      font-size: 13px;
      transition: background 130ms ease;
    }
    .pv-cta2:hover { background: var(--gold-soft); }

    .cc-footer {
      margin-top: 24px;
      padding-top: 18px;
      border-top: 1px solid var(--line-soft);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
    }
    .cc-footer p { color: var(--muted); font-size: 13px; }
    .cc-footer .pv-cta { padding: 0 22px; }

    /* ============================================================
       3. STORY PATH ("I want to…")
       ============================================================ */
    .sp-grid {
      display: grid;
      grid-template-columns: 285px 1fr 300px;
      gap: 28px;
      align-items: start;
    }
    .sp-goals { display: flex; flex-direction: column; gap: 7px; }
    .sp-goal {
      text-align: left;
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 14px;
      border-radius: 14px;
      border: 1px solid transparent;
      transition: background 140ms ease, border-color 140ms ease;
    }
    .sp-goal .pv-icon { width: 38px; height: 38px; margin: 0; flex-shrink: 0; border-radius: 10px; }
    .sp-goal .pv-icon svg { width: 20px; height: 20px; }
    .sp-goal strong { display: block; font-size: 14.5px; font-weight: 700; }
    .sp-goal span { display: block; color: var(--muted); font-size: 12px; }
    .sp-goal:hover { background: var(--panel); }
    /* chevron = "this selects a view" (distinct from the → link arrow) */
    .sp-goal::after {
      content: "›";
      margin-left: auto;
      align-self: center;
      color: var(--muted);
      font-size: 22px;
      line-height: 1;
      transition: color 150ms ease, transform 200ms cubic-bezier(.2,.8,.2,1);
    }
    .sp-goal:hover::after { color: var(--gold-2); transform: translateX(2px); }
    .sp-goal[aria-pressed="true"] {
      background: linear-gradient(180deg, rgba(216,180,74,.13), rgba(216,180,74,.06));
      border-color: rgba(216,180,74,.4);
      box-shadow: inset 3px 0 0 var(--gold);
    }
    .sp-goal[aria-pressed="true"] strong { color: var(--gold-2); }
    .sp-goal[aria-pressed="true"]::after { color: var(--gold-2); transform: rotate(90deg); }

    .sp-paths { min-width: 0; }
    .sp-path { display: none; }
    .sp-path.active { display: block; animation: spIn 240ms cubic-bezier(.2,.8,.2,1); }
    @keyframes spIn { from { opacity: 0; transform: translateX(10px); } to { opacity: 1; transform: translateX(0); } }
    .sp-path-title {
      font-family: "Fraunces", Georgia, serif;
      font-size: 1.15rem;
      font-weight: 500;
      color: var(--gold-2);
      margin-bottom: 12px;
    }
    .sp-path .cc-link { margin-bottom: 4px; }

    /* ============================================================
       4. ORBITAL — "Explore AI Universe"
       ============================================================ */
    .orb-wrap {
      display: grid;
      grid-template-columns: 1fr 300px;
      gap: 30px;
      align-items: center;
    }
    .orb-stage {
      position: relative;
      width: 100%;
      max-width: 560px;
      aspect-ratio: 1;
      margin: 0 auto;
    }
    .orb-ring-svg { position: absolute; inset: 0; width: 100%; height: 100%; }
    .orb-ring-svg circle { fill: none; stroke: rgba(216,180,74,.14); stroke-width: 1; }
    .orb-ring-svg .r2 { stroke: rgba(216,180,74,.08); stroke-dasharray: 3 6; }
    .orb-center {
      position: absolute;
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      width: 150px; height: 150px;
      border-radius: 50%;
      background: radial-gradient(circle at 35% 30%, rgba(216,180,74,.22), rgba(10,12,16,.95) 65%);
      border: 1px solid rgba(216,180,74,.45);
      box-shadow: 0 0 50px rgba(216,180,74,.18), inset 0 0 30px rgba(216,180,74,.07);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      gap: 3px;
      z-index: 2;
      transition: box-shadow 200ms ease, transform 200ms ease;
    }
    .orb-center:hover { box-shadow: 0 0 70px rgba(216,180,74,.3), inset 0 0 30px rgba(216,180,74,.1); transform: translate(-50%,-50%) scale(1.03); }
    .orb-center .oc-kicker { font-size: 9.5px; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
    .orb-center .oc-name { font-family: "Fraunces", Georgia, serif; font-size: 15px; color: var(--text); }
    .orb-center .oc-cta { font-size: 11.5px; font-weight: 800; color: #17120a; background: linear-gradient(180deg, var(--gold-2), var(--gold)); border-radius: 999px; padding: 4px 13px; margin-top: 5px; animation: ocPulse 2s ease-in-out infinite; }
    @keyframes ocPulse {
      0%   { transform: scale(1);    box-shadow: 0 0 0 0 rgba(216,180,74,.75); }
      50%  { transform: scale(1.09); box-shadow: 0 0 0 12px rgba(216,180,74,0); }
      100% { transform: scale(1);    box-shadow: 0 0 0 0 rgba(216,180,74,0); }
    }

    .orb-rotor {
      position: absolute;
      inset: 0;
      animation: orbSpin 52s linear infinite;
    }
    .orb-stage:hover .orb-rotor,
    .orb-stage:focus-within .orb-rotor { animation-play-state: paused; }
    @keyframes orbSpin { to { transform: rotate(360deg); } }
    .orb-node {
      position: absolute;
      top: 50%; left: 50%;
      width: 0; height: 0;
      transform: rotate(var(--a)) translateX(var(--r));
    }
    .orb-chip {
      position: absolute;
      top: 0; left: 0;
      transform: translate(-50%, -50%) rotate(calc(-1 * var(--a)));
      animation: orbSpinRev 52s linear infinite;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(10,12,16,.9);
      border: 1px solid rgba(216,180,74,.32);
      border-radius: 999px;
      padding: 7px 14px;
      font-size: 12.5px;
      font-weight: 600;
      color: var(--text);
      box-shadow: 0 4px 18px rgba(0,0,0,.4);
      transition: border-color 150ms ease, box-shadow 150ms ease, color 150ms ease;
    }
    .orb-chip::before {
      content: "";
      width: 6px; height: 6px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px var(--gold);
      animation: orbPulse 2.6s ease-in-out infinite;
    }
    @keyframes orbSpinRev { to { transform: translate(-50%, -50%) rotate(calc(-1 * var(--a) - 360deg)); } }
    @keyframes orbPulse { 0%,100% { opacity: .55; } 50% { opacity: 1; } }
    .orb-stage:hover .orb-chip { animation-play-state: paused; }
    /* → arrow: the pills are real links, so mark them like every other link */
    .orb-chip::after {
      content: "→";
      color: var(--gold);
      font-weight: 700;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateX(-4px);
      transition: max-width 160ms ease, opacity 160ms ease, transform 160ms ease, color 160ms ease;
    }
    .orb-chip:hover, .orb-chip:focus-visible {
      border-color: var(--gold-2);
      color: #17120a;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      box-shadow: 0 0 30px rgba(216,180,74,.5);
      scale: 1.1;
    }
    .orb-chip:hover::before, .orb-chip:focus-visible::before { background: #17120a; box-shadow: none; }
    .orb-chip:hover::after, .orb-chip:focus-visible::after { max-width: 20px; opacity: 1; transform: translateX(0); color: #17120a; }

    .orb-aside {
      background:
        radial-gradient(130% 120% at 100% 0%, rgba(216,180,74,.10), transparent 55%),
        var(--panel);
      border: 1px solid rgba(216,180,74,.28);
      border-radius: 18px;
      padding: 26px 24px;
      box-shadow: 0 14px 50px rgba(0,0,0,.35);
      transition: opacity 150ms ease;
    }
    .orb-aside.pv-out { opacity: 0; }
    .orb-aside h3 { font-family: "Fraunces", Georgia, serif; font-weight: 500; font-size: 1.3rem; margin-bottom: 10px; }
    .orb-aside p { color: var(--muted); font-size: 13.5px; margin-bottom: 18px; }

    /* Industries "planet with moons" — the pill bursts into 6 mini-pill links */
    .orb-moon-sys {
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 0;
      transform: translate(-50%, -50%) rotate(calc(-1 * var(--a)));
      animation: orbSpinRev 52s linear infinite;
      z-index: 4;
    }
    .orb-stage:hover .orb-moon-sys { animation-play-state: paused; }
    /* the hub chip rides inside the counter-rotating wrapper, so it must not double-rotate */
    .orb-moon-sys .orb-chip { animation: none; transform: translate(-50%, -50%); }
    .orb-moons { position: absolute; top: 0; left: 0; width: 0; height: 0; }
    .orb-moon {
      position: absolute; top: 0; left: 0;
      white-space: nowrap;
      display: inline-flex; align-items: center; gap: 5px;
      background: rgba(10,12,16,.96);
      border: 1px solid rgba(216,180,74,.5);
      border-radius: 999px;
      padding: 5px 11px;
      font-size: 11.5px;
      font-weight: 600;
      color: var(--gold-2);
      box-shadow: 0 4px 16px rgba(0,0,0,.55);
      opacity: 0;
      pointer-events: none;
      transform: translate(-50%, -50%) rotate(var(--ma)) translateX(0px) rotate(calc(-1 * var(--ma))) scale(.35);
      transition:
        transform 220ms cubic-bezier(.2,.8,.2,1),
        opacity 150ms ease,
        background 130ms ease, color 130ms ease, border-color 130ms ease, box-shadow 130ms ease;
      transition-delay: calc(var(--i) * 22ms);
      will-change: transform, opacity; /* pre-rasterize each moon when the panel opens — kills Safari's first-hover jank */
    }
    .orb-moon::before {
      content: "";
      width: 4px; height: 4px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 6px var(--gold);
    }
    .orb-moon-sys.open .orb-moon {
      opacity: 1;
      pointer-events: auto;
      transform: translate(-50%, -50%) rotate(var(--ma)) translateX(var(--mr)) rotate(calc(-1 * var(--ma))) scale(1);
    }
    .orb-moon:hover, .orb-moon:focus-visible {
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      border-color: var(--gold-2);
      box-shadow: 0 0 20px rgba(216,180,74,.5);
      transition-delay: 0ms;
    }
    .orb-moon:hover::before, .orb-moon:focus-visible::before { background: #17120a; box-shadow: none; }
    /* moons are links too — same → affordance as the pills, one rule everywhere */
    .orb-moon::after {
      content: "→";
      color: var(--gold);
      font-weight: 700;
      max-width: 0;
      opacity: 0;
      overflow: hidden;
      transform: translateX(-4px);
      transition: max-width 150ms ease, opacity 150ms ease, transform 150ms ease;
    }
    .orb-moon:hover::after, .orb-moon:focus-visible::after {
      max-width: 18px;
      opacity: 1;
      transform: translateX(0);
      color: #17120a;
    }
    /* while a hub's moons are out, the rest of the universe dims back */
    .orb-stage.moons-open .orb-node .orb-chip { opacity: .22; transition: opacity 220ms ease; }
    .orb-stage.moons-open .orb-moon-sys.open .orb-chip { opacity: 1; }
    .orb-stage.moons-open .orb-center { opacity: .55; transition: opacity 220ms ease; }

    /* HUB pills (Industries / Our Products) — "planets": badged, gold-tinted, visibly different */
    .orb-hub-pill {
      background: linear-gradient(180deg, rgba(216,180,74,.22), rgba(216,180,74,.10));
      border-color: rgba(216,180,74,.65);
      color: var(--gold-2);
      font-weight: 700;
      box-shadow: 0 4px 18px rgba(0,0,0,.4), 0 0 14px rgba(216,180,74,.15);
    }
    .orb-count {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 16px; height: 16px;
      border-radius: 50%;
      background: linear-gradient(180deg, var(--gold-2), var(--gold));
      color: #17120a;
      font-size: 10px;
      font-weight: 800;
      margin-left: 2px;
    }
    .orb-chip:hover .orb-count, .orb-chip:focus-visible .orb-count { background: #17120a; color: var(--gold-2); }

    /* invisible circular hover pad — bridges the gap between the pill and its moons so the
       burst doesn't collapse while the cursor travels to a moon */
    .orb-moon-sys::after {
      content: "";
      position: absolute;
      top: 0; left: 0;
      width: 0; height: 0;
      border-radius: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
      z-index: -1;
    }
    .orb-moon-sys.open::after {
      width: 300px; height: 300px;
      pointer-events: auto;
    }
    .orb-hub-cta {
      display: flex; align-items: center; justify-content: center;
      width: 100%;
      min-height: 40px;
      border-radius: 999px;
      border: 1px solid rgba(216,180,74,.4);
      background: var(--gold-soft);
      color: var(--gold-2);
      font-weight: 700;
      font-size: 12.5px;
      transition: background 130ms ease, transform 130ms ease;
    }
    .orb-hub-cta:hover { background: rgba(216,180,74,.22); transform: translateY(-1px); }

    /* ============================================================
       5. MOBILE NAV
       ============================================================ */
    .hy-mobile {
      position: fixed;
      inset: 0;
      z-index: 950;
      background: #030406;
      display: flex;
      flex-direction: column;
      opacity: 0;
      pointer-events: none;
      transition: opacity 200ms ease;
    }
    .hy-mobile.open { opacity: 1; pointer-events: auto; }
    .hy-mobile-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 16px 20px;
      border-bottom: 1px solid var(--line-soft);
      flex-shrink: 0;
    }
    .hy-mobile-body { flex: 1; overflow-y: auto; padding: 14px 20px 20px; }
    .hy-mobile-foot {
      flex-shrink: 0;
      padding: 14px 20px calc(16px + env(safe-area-inset-bottom, 0px));
      border-top: 1px solid var(--line-soft);
      display: flex;
      flex-direction: column;
      gap: 10px;
      background: #030406;
    }
    .hy-mobile-foot .pv-cta, .hy-mobile-foot .pv-cta2 { min-height: 48px; font-size: 15px; }
    .m-link {
      display: block;
      padding: 14px 4px;
      font-size: 16.5px;
      font-weight: 600;
      color: var(--text);
      border-bottom: 1px solid var(--line-soft);
    }
    .m-acc-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 4px;
      font-size: 16.5px;
      font-weight: 600;
      border-bottom: 1px solid var(--line-soft);
      min-height: 52px;
    }
    .m-acc-btn .hy-caret { width: 10px; height: 10px; }
    .m-acc-btn[aria-expanded="true"] { color: var(--gold-2); }
    .m-acc-body { display: none; padding: 4px 0 10px 12px; }
    .m-acc-btn[aria-expanded="true"] + .m-acc-body { display: block; }
    .m-acc-label { font-size: 11px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase; color: var(--gold); padding: 10px 4px 4px; }
    .m-sub-btn {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 4px;
      font-size: 15px;
      font-weight: 500;
      min-height: 48px;
      border-bottom: 1px solid var(--line-soft);
      color: var(--text);
    }
    .m-sub-btn[aria-expanded="true"] { color: var(--gold-2); }
    .m-sub-body { display: none; padding: 2px 0 8px 14px; }
    .m-sub-btn[aria-expanded="true"] + .m-sub-body { display: block; }
    .m-sub-link { display: block; padding: 10px 4px; font-size: 14.5px; color: var(--muted); min-height: 44px; display: flex; align-items: center; }
    .m-sub-link:hover { color: var(--gold-2); }
    body.nav-locked { overflow: hidden; }

    /* ============================================================
       RESPONSIVE
       ============================================================ */
    @media (max-width: 1040px) {
      .cc-grid { grid-template-columns: 210px 1fr; }
      .cc-preview { display: none; }
      .sp-grid { grid-template-columns: 250px 1fr; }
      .sp-preview { display: none; }
      .ind-cards { grid-template-columns: 1fr 1fr; }
      .orb-wrap { grid-template-columns: 1fr; }
    }
    @media (max-width: 720px) {
      .cc-products-grid { grid-template-columns: 1fr; }
      .ind-cards { grid-template-columns: 1fr; }
    }
    .cta-short { display: none; }
    @media (max-width: 1080px) {
      .hy-links { display: none; }
      .hy-menu-btn { display: inline-flex; }
      .hy-cta { min-height: 40px; padding: 0 15px; font-size: 13px; }
      .hy-nav { gap: 12px; }
      .cta-full { display: none; }
      .cta-short { display: inline; }
      .hybrid-panel { display: none; } /* desktop panels off — mobile menu handles nav */
    }
    /* Compact desktop nav for the mid band so the dense nav never overflows */
    @media (min-width: 1081px) and (max-width: 1300px) {
      .hy-nav { gap: 16px; }
      .hy-links { gap: 0; }
      .hy-links .hy-link, .hy-links .hy-trigger { padding: 8px 8px; font-size: 13.5px; }
      .hy-links .hy-explore { padding: 6px 11px; }
      .cta-full { display: none; }
      .cta-short { display: inline; }
    }
    @media (max-width: 430px) {
      .hy-brand span { display: none; } /* logo mark only on small phones */
    }

    /* ============================================================
       REDUCED MOTION
       ============================================================ */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.001ms !important;
        scroll-behavior: auto !important;
      }
      .orb-rotor, .orb-chip { animation: none !important; }
    }

/* ---------- Site search (integrated into the hybrid header) ---------- */
.hy-search-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--text);
  flex-shrink: 0;
  transition: color 120ms ease, border-color 120ms ease, background 120ms ease;
}
.hy-search-toggle:hover { color: var(--gold-2); border-color: rgba(216,180,74,.4); background: var(--gold-soft); }
.m-search-link {
  width: 100%; text-align: left;
  padding: 14px 4px;
  font-size: 16.5px; font-weight: 600;
  color: var(--gold-2);
  border-bottom: 1px solid var(--line-soft);
}
/* Search icon stays VISIBLE in the mobile header for discoverability (also still in the menu). Hidden only on the tightest phones to avoid crowding. */
@media (max-width: 360px) { .hy-search-toggle { display: none; } }
