@font-face {
  font-family: "Outfit";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/fonts/outfit-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-400-latin.woff2") format("woff2");
}

@font-face {
  font-family: "IBM Plex Mono";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("/fonts/ibm-plex-mono-500-latin.woff2") format("woff2");
}
:root {
      --bg: #05060c;
      --bg-2: #0a0c16;
      --text: #f4f6fb;
      --muted: #8b93a7;
      --faint: #5c657a;
      --line: rgba(56, 189, 248, 0.12);
      --gold: #38bdf8; /* accent (legacy name) */
      --gold-bright: #7dd3fc;
      --gold-deep: #0284c7;
      --amber: #0ea5e9;
      --copper: #6366f1;
      --green: #34d399;
      --glass: rgba(18, 16, 12, 0.55);
      --glass-border: rgba(125, 211, 252, 0.14);
      --font: "Outfit", system-ui, -apple-system, "Segoe UI", sans-serif;
      --mono: "IBM Plex Mono", ui-monospace, Consolas, monospace;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: var(--font);
      background: var(--bg);
      color: var(--text);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }
    a { color: inherit; }
    img { display: block; max-width: 100%; }
    button { font-family: inherit; }
    .mono { font-family: var(--mono); font-size: 0.9em; }

    .icon-sprite {
      position: absolute;
      width: 0;
      height: 0;
      overflow: hidden;
    }
    .arrow-icon {
      display: inline-block;
      width: 1em;
      height: 1em;
      flex: 0 0 auto;
      vertical-align: -0.14em;
      fill: none;
      stroke: currentColor;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
    }
    .arrow-icon--up { transform: rotate(-90deg); }
    .arrow-icon--down { transform: rotate(90deg); }
    .arrow-icon--both { margin-inline: 0.12em; }
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* WhatsApp Business link */
    .wa {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      text-decoration: none;
      color: #6ee7b7;
    }
    .wa svg {
      width: 1.05em;
      height: 1.05em;
      flex-shrink: 0;
      fill: currentColor;
    }
    .wa:hover { color: #86efac; }
    .cta-meta .wa {
      color: #6ee7b7;
      border-bottom-color: rgba(52, 211, 153, 0.4);
    }
    .cta-meta .wa:hover { color: #a7f3d0; }
    .foot .wa { color: #6ee7b7; }
    .foot .wa:hover { color: #a7f3d0; }

    /* &mdash;&mdash;&mdash; Hero stage &mdash;&mdash;&mdash; */
    .stage {
      position: relative;
      min-height: 100vh;
      min-height: 100dvh;
      display: flex;
      flex-direction: column;
      isolation: isolate;
    }

    #fx {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      z-index: 0;
      pointer-events: none;
    }

    .vignette {
      position: absolute;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background:
        radial-gradient(ellipse 70% 55% at 50% 45%, transparent 0%, rgba(5, 6, 12, 0.15) 45%, rgba(5, 6, 12, 0.85) 100%),
        radial-gradient(ellipse 50% 40% at 50% 40%, rgba(56, 189, 248, 0.14), transparent 70%);
    }

    /* Top bar */
    .top {
      position: relative;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1rem;
      padding: 1.15rem clamp(1.15rem, 3vw, 2.1rem) 0.85rem;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
      transition: opacity 0.15s;
    }
    .brand:hover { opacity: 0.88; }
    .brand-mark {
      width: 38px;
      height: 38px;
      border-radius: 11px;
      flex-shrink: 0;
      overflow: hidden;
      border: 1px solid rgba(148, 163, 184, 0.18);
      box-shadow: 0 6px 18px rgba(0, 0, 0, 0.35);
      background: #000;
    }
    .brand-mark img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 0.18rem;
      min-width: 0;
      line-height: 1;
      padding-left: 0.75rem;
      border-left: 1px solid rgba(148, 163, 184, 0.2);
    }
    .brand-text strong {
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: -0.03em;
      color: #f1f5f9;
    }
    .brand-text span {
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.01em;
      color: #8b95a8;
    }
    .brand-text em {
      font-style: normal;
      color: #a8b0c0;
    }
    .brand-text b {
      font-weight: 500;
      color: var(--gold-bright);
    }
    .top-right {
      display: flex;
      align-items: center;
      gap: 0.65rem;
    }
    .status-pill {
      display: inline-flex;
      align-items: center;
      gap: 0.45rem;
      padding: 0.4rem 0.75rem;
      border-radius: 999px;
      background: rgba(52, 211, 153, 0.08);
      border: 1px solid rgba(52, 211, 153, 0.28);
      color: #6ee7b7;
      font-size: 0.78rem;
      font-weight: 500;
      font-family: var(--mono);
    }
    .status-pill i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 3px rgba(52, 211, 153, 0.2);
      animation: pulse 2.2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.45; }
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      padding: 0.55rem 1rem;
      border-radius: 999px;
      font-size: 0.88rem;
      font-weight: 600;
      text-decoration: none;
      border: 1px solid transparent;
      transition: transform 0.15s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn:hover { transform: translateY(-1px); }
    .btn-primary {
      background: linear-gradient(135deg, #7dd3fc, #38bdf8 45%, #0369a1);
      color: #04111f;
      box-shadow: 0 8px 28px rgba(56, 189, 248, 0.35);
    }
    .btn-primary:hover {
      box-shadow: 0 12px 36px rgba(125, 211, 252, 0.45);
    }
    .btn-ghost {
      background: rgba(255,255,255,0.04);
      border-color: var(--glass-border);
      color: var(--text);
      backdrop-filter: blur(12px);
    }
    .btn-ghost:hover {
      background: rgba(255,255,255,0.08);
      border-color: rgba(255,255,255,0.18);
    }
    .btn-lg {
      padding: 0.85rem 1.35rem;
      font-size: 0.95rem;
    }

    /* Center cluster */
    .core {
      position: relative;
      z-index: 5;
      flex: 1;
      display: grid;
      place-items: center;
      padding: 1rem 1rem 2rem;
      min-height: 0;
    }

    .core-inner {
      position: relative;
      width: min(100%, 980px);
      aspect-ratio: 1.2 / 1;
      max-height: min(74vh, 680px);
      display: grid;
      place-items: center;
      overflow: visible;
    }

    /* Inner cycle (core bridge) */
    .orbit {
      position: absolute;
      inset: 16%;
      border-radius: 50%;
      border: 1px solid rgba(56, 189, 248, 0.2);
      pointer-events: none;
      z-index: 1;
    }
    .orbit::before {
      content: "";
      position: absolute;
      inset: 16%;
      border-radius: 50%;
      border: 1px dashed rgba(125, 211, 252, 0.12);
    }
    .orbit-spin {
      position: absolute;
      inset: 16%;
      border-radius: 50%;
      animation: spin 120s linear infinite;
      pointer-events: none;
      z-index: 1;
    }
    .orbit-spin span {
      position: absolute;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--gold-bright);
      box-shadow: 0 0 12px rgba(125, 211, 252, 0.75);
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    /* Outer cycle &mdash; larger ring through the 4 station nodes */
    .orbit-outer {
      position: absolute;
      inset: 1.5%;
      border-radius: 50%;
      border: 1px solid rgba(56, 189, 248, 0.34);
      box-shadow:
        0 0 0 1px rgba(56, 189, 248, 0.06),
        0 0 48px rgba(56, 189, 248, 0.07);
      pointer-events: none;
      z-index: 2;
    }
    .orbit-outer-spin {
      position: absolute;
      inset: 1.5%;
      border-radius: 50%;
      animation: spin 180s linear infinite reverse;
      pointer-events: none;
      z-index: 2;
    }
    .orbit-outer-spin span {
      position: absolute;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 16px rgba(125, 211, 252, 0.7);
      top: 0;
      left: 50%;
      transform: translate(-50%, -50%);
    }
    @keyframes spin {
      to { transform: rotate(360deg); }
    }

    .node {
      position: absolute;
      z-index: 4;
      padding: 0.65rem 0.9rem;
      border-radius: 14px;
      background: var(--glass);
      border: 1px solid var(--glass-border);
      backdrop-filter: blur(16px) saturate(1.2);
      box-shadow: 0 16px 40px rgba(0,0,0,0.35);
      text-align: center;
      min-width: 7.5rem;
    }
    .node small {
      display: block;
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--faint);
      margin-bottom: 0.15rem;
    }
    .node b {
      font-size: 0.92rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .node.rp9 { top: 6%; left: 50%; transform: translateX(-50%); }
    .node.store { bottom: 6%; left: 50%; transform: translateX(-50%); }
    .node.cloud {
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 0;
      width: min(72%, 280px);
      padding: 1.6rem 1.25rem 1.4rem;
      background: rgba(16, 14, 10, 0.78);
      border-color: rgba(56, 189, 248, 0.4);
      box-shadow:
        0 0 0 1px rgba(125, 211, 252, 0.12),
        0 24px 80px rgba(56, 189, 248, 0.16),
        0 0 120px rgba(245, 158, 11, 0.1);
    }
    .node.cloud .metric-label {
      font-family: var(--mono);
      font-size: 0.7rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold-bright);
      margin-bottom: 0.25rem;
    }
    .node.cloud .metric {
      font-size: clamp(3.5rem, 12vw, 5.5rem);
      font-weight: 700;
      letter-spacing: -0.05em;
      line-height: 0.95;
      background: linear-gradient(180deg, #e0f2fe 15%, #7dd3fc 55%, #38bdf8 100%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin: 0.1rem 0 0.35rem;
    }
    .node.cloud .metric-sub {
      font-size: 0.88rem;
      color: var(--muted);
      margin: 0;
    }
    .node.cloud .metric-sub strong {
      color: var(--green);
      font-weight: 600;
    }

    /* Vertical path labels &mdash; centered on the cycle, not in station corners */
    .flow-tag {
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0.2rem;
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #94a3b8;
      pointer-events: none;
      max-width: 11rem;
      text-align: center;
      line-height: 1.25;
      background: none;
      border: 0;
      padding: 0;
      opacity: 1;
    }
    .flow-tag .dir {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 1.35rem;
      height: 1.35rem;
      border-radius: 50%;
      border: 1px solid rgba(56, 189, 248, 0.35);
      background: rgba(8, 9, 12, 0.85);
      color: var(--gold-bright);
      line-height: 1;
    }
    .flow-tag .dir .arrow-icon {
      width: 0.72rem;
      height: 0.72rem;
    }
    .flow-tag.up { top: 24%; }
    .flow-tag.down { bottom: 24%; }

    /*
      Orbital stations (not planets):
      gold node sits on the cycle &rarr; short stem &rarr; matte dark label plate.
      High contrast text, no shiny gold-on-gold.
    */
    /*
      Outer cycle stations &mdash; same inset as .orbit-outer.
      Node pinned on the ellipse: (cos theta &middot; 50% width, sin theta &middot; 50% height).
    */
    .station-mount {
      position: absolute;
      inset: 1.5%; /* match .orbit-outer exactly */
      z-index: 6;
      pointer-events: none;
    }
    .station-mount .station {
      position: absolute;
      display: flex;
      align-items: center;
      gap: 0;
      left: calc(50% + cos(var(--a)) * 50%);
      top: calc(50% + sin(var(--a)) * 50%);
      /* center the gold node (first/last flex item ~12px) on the ring */
      transform: translate(-6px, -50%);
    }
    .station-mount.m1 { --a: -40deg; } /* NE &middot; catalog */
    .station-mount.m2 { --a: 40deg; }  /* SE &middot; orders */
    .station-mount.m3 { --a: 140deg; } /* SW &middot; agent */
    .station-mount.m4 { --a: -140deg; }/* NW &middot; license */

    /* Right half: plate hangs outward (to the right of node) */
    .station-mount.m1 .station,
    .station-mount.m2 .station {
      flex-direction: row;
      transform: translate(-6px, -50%);
    }
    /* Left half: plate hangs outward (to the left of node) */
    .station-mount.m3 .station,
    .station-mount.m4 .station {
      flex-direction: row-reverse;
      transform: translate(calc(-100% + 6px), -50%);
    }

    /* Right cards need more horizontal room so copy stays horizontal */
    .station-mount.m1 .station-plate,
    .station-mount.m2 .station-plate {
      min-width: 200px;
      width: max-content;
      max-width: 240px;
    }
    .station-mount.m3 .station-plate,
    .station-mount.m4 .station-plate {
      min-width: 168px;
      max-width: 210px;
    }

    .station-node {
      flex-shrink: 0;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--gold-bright);
      box-shadow:
        0 0 0 3px rgba(5, 6, 12, 0.95),
        0 0 0 5px rgba(56, 189, 248, 0.5),
        0 0 16px rgba(125, 211, 252, 0.5);
      position: relative;
      z-index: 2;
    }
    .station-stem {
      width: 18px;
      height: 1px;
      background: linear-gradient(90deg, rgba(56, 189, 248, 0.55), rgba(56, 189, 248, 0.12));
      flex-shrink: 0;
    }
    .station-mount.m3 .station-stem,
    .station-mount.m4 .station-stem {
      background: linear-gradient(270deg, rgba(56, 189, 248, 0.55), rgba(56, 189, 248, 0.12));
    }

    .station-plate {
      background: rgba(8, 9, 12, 0.92);
      border: 1px solid rgba(125, 211, 252, 0.28);
      border-radius: 10px;
      padding: 0.6rem 0.85rem 0.65rem;
      box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45);
      flex: 0 0 auto;
      white-space: normal;
      writing-mode: horizontal-tb;
      text-orientation: mixed;
    }
    .station-plate .tag {
      display: block;
      font-family: var(--mono);
      font-size: 0.62rem;
      font-weight: 500;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.2rem;
      white-space: nowrap;
    }
    .station-plate strong {
      display: block;
      font-size: 0.95rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #f1f5f9;
      line-height: 1.25;
      white-space: nowrap;
    }
    .station-plate p {
      margin: 0.25rem 0 0;
      font-size: 0.78rem;
      line-height: 1.4;
      color: #a8a296;
      white-space: normal;
    }

    /* Hero copy under core on small / always as overlay bottom of stage */
    .hero-copy {
      position: relative;
      z-index: 8;
      text-align: center;
      padding: 0 1.25rem 2.5rem;
      max-width: 40rem;
      margin: 0 auto;
    }
    .hero-copy h1 {
      margin: 0 0 0.75rem;
      font-size: clamp(1.75rem, 4.5vw, 2.65rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      line-height: 1.12;
    }
    .hero-copy h1 span {
      background: linear-gradient(120deg, #e0f2fe, #7dd3fc 45%, #38bdf8);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero-copy > p {
      margin: 0 auto 1.35rem;
      color: var(--muted);
      font-size: clamp(0.98rem, 2vw, 1.1rem);
      max-width: 34rem;
    }
    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.65rem;
      justify-content: center;
    }

    /* &mdash;&mdash;&mdash; Below fold (command briefing) &mdash;&mdash;&mdash; */
    .below {
      position: relative;
      z-index: 2;
      background:
        radial-gradient(ellipse 80% 40% at 50% 0%, rgba(56, 189, 248, 0.06), transparent 55%),
        linear-gradient(180deg, #07080e 0%, var(--bg-2) 12%, var(--bg) 100%);
      border-top: 1px solid rgba(56, 189, 248, 0.12);
    }
    .wrap {
      width: min(100% - 2rem, 1040px);
      margin: 0 auto;
      padding: 4.5rem 0 3rem;
    }
    .block { margin-bottom: 4.25rem; }
    .block:last-child { margin-bottom: 0; }

    .section-label {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      color: var(--gold);
      margin: 0 0 0.7rem;
    }
    .below h2 {
      margin: 0 0 0.7rem;
      font-size: clamp(1.65rem, 3.4vw, 2.2rem);
      font-weight: 700;
      letter-spacing: -0.03em;
      line-height: 1.15;
    }
    .below .lead {
      margin: 0 0 1.75rem;
      color: var(--muted);
      max-width: 38rem;
      font-size: 1.05rem;
      line-height: 1.55;
    }

    /* Split: problem vs product */
    .split-brief {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 0;
      border: 1px solid rgba(56, 189, 248, 0.22);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(8, 9, 12, 0.65);
    }
    .split-brief > div {
      padding: 1.5rem 1.4rem 1.55rem;
    }
    .split-brief .was {
      border-right: 1px solid rgba(56, 189, 248, 0.16);
      background: rgba(0, 0, 0, 0.22);
    }
    .split-brief .now {
      background: linear-gradient(160deg, rgba(56, 189, 248, 0.08), transparent 60%);
    }
    .split-brief h3 {
      margin: 0 0 1rem;
      font-family: var(--mono);
      font-size: 0.72rem;
      font-weight: 500;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--faint);
    }
    .split-brief .now h3 { color: var(--gold); }
    .split-brief ul {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.7rem;
    }
    .split-brief li {
      display: grid;
      grid-template-columns: 1.1rem 1fr;
      gap: 0.55rem;
      font-size: 0.95rem;
      color: var(--muted);
      line-height: 1.45;
    }
    .split-brief li i {
      font-style: normal;
      font-family: var(--mono);
      font-size: 0.85rem;
      color: #64748b;
      margin-top: 0.1rem;
    }
    .split-brief .now li i { color: var(--gold); }

    /* Capability rails &mdash; dense, readable, not icon soup */
    .rails {
      border: 1px solid rgba(56, 189, 248, 0.18);
      border-radius: 16px;
      overflow: hidden;
      background: rgba(8, 9, 12, 0.55);
    }
    .rail {
      display: grid;
      grid-template-columns: 5.5rem 11rem 1fr;
      gap: 1rem;
      align-items: start;
      padding: 1.1rem 1.25rem;
      border-bottom: 1px solid rgba(56, 189, 248, 0.1);
    }
    .rail:last-child { border-bottom: 0; }
    .rail:hover { background: rgba(56, 189, 248, 0.04); }
    .rail .code {
      font-family: var(--mono);
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      color: var(--gold);
      padding-top: 0.2rem;
    }
    .rail h3 {
      margin: 0;
      font-size: 1rem;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: #f1f5f9;
    }
    .rail p {
      margin: 0;
      font-size: 0.94rem;
      color: var(--muted);
      line-height: 1.5;
    }

    /* Install timeline */
    .timeline {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      position: relative;
      margin-top: 0.5rem;
    }
    .timeline::before {
      content: "";
      position: absolute;
      top: 1.15rem;
      left: 12%;
      right: 12%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(56,189,248,0.45), transparent);
      z-index: 0;
    }
    .tl {
      position: relative;
      z-index: 1;
      padding: 0 0.75rem;
      text-align: center;
    }
    .tl .dot {
      width: 12px;
      height: 12px;
      margin: 0.7rem auto 1rem;
      border-radius: 50%;
      background: var(--gold-bright);
      box-shadow:
        0 0 0 4px rgba(5, 6, 12, 0.95),
        0 0 0 5px rgba(56, 189, 248, 0.45),
        0 0 18px rgba(125, 211, 252, 0.35);
    }
    .tl .n {
      font-family: var(--mono);
      font-size: 0.68rem;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.45rem;
    }
    .tl h3 {
      margin: 0 0 0.45rem;
      font-size: 1.05rem;
      font-weight: 600;
      letter-spacing: -0.02em;
    }
    .tl p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--muted);
      line-height: 1.5;
      max-width: 22ch;
      margin-inline: auto;
    }

    /* Trust board */
    .trust {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 1.25rem;
      align-items: stretch;
    }
    .trust-main {
      padding: 1.6rem 1.5rem;
      border-radius: 16px;
      border: 1px solid rgba(56, 189, 248, 0.26);
      background:
        radial-gradient(ellipse 70% 80% at 0% 0%, rgba(56,189,248,0.1), transparent 55%),
        rgba(8, 9, 12, 0.75);
    }
    .trust-main .lead { margin-bottom: 1.15rem; }
    .checks {
      margin: 0;
      padding: 0;
      list-style: none;
      display: grid;
      gap: 0.65rem;
    }
    .checks li {
      display: grid;
      grid-template-columns: 1.4rem 1fr;
      gap: 0.55rem;
      font-size: 0.95rem;
      color: #94a3b8;
      line-height: 1.45;
    }
    .checks li::before {
      content: "";
      width: 0.36rem;
      height: 0.36rem;
      margin-top: 0.48rem;
      border-radius: 50%;
      background: var(--gold);
      box-shadow: 0 0 8px rgba(125, 211, 252, 0.5);
    }
    .trust-side {
      display: grid;
      gap: 0.7rem;
    }
    .trust-side article {
      padding: 1rem 1.1rem;
      border-radius: 14px;
      border: 1px solid rgba(56, 189, 248, 0.16);
      background: rgba(8, 9, 12, 0.7);
    }
    .trust-side .k {
      font-family: var(--mono);
      font-size: 0.65rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 0.3rem;
    }
    .trust-side strong {
      display: block;
      font-size: 0.98rem;
      margin-bottom: 0.25rem;
      color: #f1f5f9;
    }
    .trust-side p {
      margin: 0;
      font-size: 0.86rem;
      color: var(--muted);
      line-height: 1.45;
    }

    /* Stack strip */
    .stack {
      display: flex;
      flex-wrap: wrap;
      gap: 0.55rem;
    }
    .stack span {
      font-family: var(--mono);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      color: #7dd3fc;
      padding: 0.45rem 0.75rem;
      border-radius: 999px;
      border: 1px solid rgba(56, 189, 248, 0.22);
      background: rgba(8, 9, 12, 0.6);
    }

    /* CTA */
    .cta-band {
      text-align: center;
      padding: 2.85rem 1.5rem;
      border-radius: 20px;
      border: 1px solid rgba(56, 189, 248, 0.34);
      background:
        radial-gradient(ellipse 70% 100% at 50% 100%, rgba(56,189,248,0.18), transparent 55%),
        rgba(8, 9, 12, 0.9);
    }
    .cta-band h2 {
      max-width: 18ch;
      margin-inline: auto;
      margin-bottom: 0.65rem;
    }
    .cta-band p {
      color: var(--muted);
      margin: 0 auto 1.4rem;
      max-width: 34rem;
      font-size: 1.02rem;
    }
    .cta-meta {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem 1.5rem;
      margin-top: 1.35rem;
      font-family: var(--mono);
      font-size: 0.75rem;
      letter-spacing: 0.06em;
      color: var(--faint);
    }
    .cta-meta a {
      color: var(--gold);
      text-decoration: none;
      border-bottom: 1px solid rgba(56, 189, 248, 0.35);
    }
    .cta-meta a:hover { color: var(--gold-bright); }

    footer {
      border-top: 1px solid rgba(56, 189, 248, 0.12);
      padding: 1.5rem 0 2rem;
    }
    .foot {
      width: min(100% - 2rem, 1040px);
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 1rem;
      font-size: 0.85rem;
      color: var(--faint);
    }
    .foot a {
      color: var(--muted);
      text-decoration: none;
    }
    .foot a:hover { color: var(--gold-bright); }
    .foot-links {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem 1.25rem;
    }

    @media (max-width: 900px) {
      .station-mount { display: none; }
      .orbit-outer, .orbit-outer-spin { inset: 4%; }
      .core-inner {
        aspect-ratio: auto;
        max-height: none;
        min-height: 340px;
        width: 100%;
      }
      .node.rp9 { top: 0; }
      .node.store { bottom: 0; }
      .flow-tag.up { top: 26%; }
      .flow-tag.down { bottom: 26%; }
      .split-brief,
      .timeline,
      .trust,
      .rail {
        grid-template-columns: 1fr;
      }
      .split-brief .was { border-right: 0; border-bottom: 1px solid rgba(56,189,248,0.16); }
      .timeline::before { display: none; }
      .tl { text-align: left; padding: 0 0 1.25rem 0; border-left: 1px solid rgba(56,189,248,0.25); padding-left: 1rem; margin-left: 0.35rem; }
      .tl .dot { margin: 0 0 0.75rem; }
      .tl p { margin-inline: 0; max-width: none; }
      .rail { gap: 0.35rem 0.75rem; }
      .rail .code { grid-column: 1; }
      .rail h3 { grid-column: 1; }
      .rail p { grid-column: 1; }
      .status-pill { display: none; }
    }

    @media (max-width: 520px) {
      .hero-actions .btn { width: 100%; }
      .node { min-width: 6.5rem; padding: 0.5rem 0.65rem; }
      .node.cloud { width: min(85%, 260px); padding: 1.25rem 1rem; }
    }

    @media (prefers-reduced-motion: reduce) {
      .orbit-spin, .orbit-outer-spin, .status-pill i { animation: none; }
      html { scroll-behavior: auto; }
    }
