/* Language switcher styles are in assets/css/common.css */

    /* BP design tokens live in assets/css/common.css */

    /* ============================================================
       BP HERO
    ============================================================ */
    .bp-hero {
      position: relative;
      min-height: 100vh;
      background: var(--bp-ink);
      color: #fff;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      padding: 140px 56px 0;
      height: 100vh;
    }
    .bp-hero__silk { position: absolute; inset: 0; z-index: 0; pointer-events: none }
    .bp-hero__silk canvas { display: block; width: 100% !important; height: 100% !important }
    .bp-hero::after {
      content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      /* background:
        radial-gradient(80% 60% at 75% 30%, rgba(0,104,255,.16), transparent 70%),
        radial-gradient(60% 50% at 20% 10%, rgba(255,48,104,.10), transparent 70%),
        linear-gradient(180deg, rgba(6,8,24,.18) 0%, rgba(6,8,24,.55) 60%, rgba(6,8,24,.92) 100%); */
    }
    .bp-hero::before {
      content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
      background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 30%, transparent 80%);
      opacity: .55;
    }
    .bp-hero__inner {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 80px;
      /* align-items: end; */
      /* max-width: 1440px; */
      width: 100%;
      margin: 0 auto;
      padding-bottom: 80px;
      text-align: center;
      justify-content: center;
      height: inherit;
      align-content: center;
    }
    .bp-hero__eyebrow {
      display: inline-flex; align-items: center; gap: 14px;
      padding: 8px 14px; border: 1px solid rgba(0,104,255,.35);
      background: rgba(0,104,255,.08);
      border-radius: 999px; backdrop-filter: blur(8px);
      font-family: var(--bp-mono); font-size: 11px; letter-spacing: .14em;
      text-transform: uppercase; color: var(--bp-cyan);
      margin-bottom: 36px;
    }
    .bp-hero__eyebrow .dot {
      width: 7px; height: 7px; border-radius: 50%;
      background: var(--bp-cyan);
      box-shadow: 0 0 0 0 rgba(0,104,255,.7);
      animation: bpPulse 1.6s ease-out infinite;
    }
    @keyframes bpPulse {
      0% { box-shadow: 0 0 0 0 rgba(0,104,255,.7) }
      100% { box-shadow: 0 0 0 14px rgba(0,104,255,0) }
    }
    .bp-hero__title {
      font-family: var(--bp-display);
      font-weight: 500;
      font-size: clamp(52px, 7vw, 112px);
      line-height: .98;
      letter-spacing: -.035em;
      color: #fff;
      margin: 0 0 36px;
    }
    .bp-hero__title em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: rgba(255,255,255,.55); */
    }
    .bp-hero__title .cyan { color: var(--bp-cyan); font-style: normal; font-weight: 500 }
    .bp-hero__mask { display: inline-block; overflow: hidden }
    .bp-hero__mask > span { display: inline-block; transform: translateY(110%) }
    .bp-hero__sub {
      /* font-family: var(--fh) !important; */
      font-size: 15px;
      line-height: 1.6;
      color: rgb(255, 255, 255);
      max-width: 768px;
      /* letter-spacing: 0.1em; */
      margin-bottom: 36px !IMPORTANT;
      margin: auto;
    }
    .bp-hero__ctas {display: flex;gap: 14px;flex-wrap: wrap;justify-content: center;}
    .bp-cta-primary {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: var(--bp-cyan);
      color: #0a0c14;
      font-family: var(--bp-display);
      font-weight: 400;
      font-size: 14px;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 999px;
      text-decoration: none;
      border: none;
      transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
    }
    .bp-cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 14px 40px -10px rgba(0,104,255,.55);
      color: #0a0c14;
    }
    .bp-cta-ghost {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: transparent;
      color: #fff;
      font-family: var(--bp-display);
      font-weight: 400;
      font-size: 14px;
      letter-spacing: .04em;
      text-transform: uppercase;
      padding: 12px 24px;
      border-radius: 999px;
      text-decoration: none;
      border: 1px solid rgba(255,255,255,.22);
      transition: background .25s ease, border-color .25s ease;
    }
    .bp-cta-ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.4); color: #fff }

    /* ============================================================
       CAMERA GRID — surveillance scanner
    ============================================================ */
    .bp-hero__scanner {
      position: relative;
      width: 100%;
      max-width: 540px;
      margin: 0 0 0 auto;
      font-family: var(--bp-mono);
    }
    .bp-hero__scanner .label-top {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 10px; letter-spacing: .22em;
      color: rgba(255,255,255,.5); text-transform: uppercase;
      margin-bottom: 14px;
    }
    .bp-hero__scanner .label-top .live {
      display: inline-flex; align-items: center; gap: 8px;
      color: var(--bp-cyan);
    }
    .bp-hero__scanner .label-top .live::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--bp-cyan); box-shadow: 0 0 8px var(--bp-cyan);
      animation: bpPulse 1.6s ease-out infinite;
    }
    .bp-cam-grid {
      position: relative;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 10px;
      padding: 12px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 18px;
      overflow: hidden;
      backdrop-filter: blur(8px);
    }
    .bp-cam {
      position: relative;
      aspect-ratio: 16/10;
      border-radius: 10px;
      overflow: hidden;
      background: #0d1320;
      isolation: isolate;
    }
    .bp-cam::before {
      content: ""; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 14px 14px;
      opacity: .8;
    }
    .bp-cam::after {
      content: ""; position: absolute; inset: 0;
      background-image:
        repeating-linear-gradient(180deg, rgba(255,255,255,.04) 0px, rgba(255,255,255,.04) 1px, transparent 1px, transparent 3px);
      mix-blend-mode: overlay;
    }
    .bp-cam--1 { background: linear-gradient(160deg, #0a2436, #0d1a2b) }
    .bp-cam--2 { background: linear-gradient(160deg, #2a0d18, #181020) }
    .bp-cam--3 { background: linear-gradient(160deg, #0f2a1e, #0d1a18) }
    .bp-cam--4 { background: linear-gradient(160deg, #1f1a3a, #11132a) }

    .bp-cam__rec {
      position: absolute; top: 8px; right: 10px; z-index: 3;
      font-size: 8px; letter-spacing: .18em;
      color: var(--bp-alert);
      display: inline-flex; align-items: center; gap: 6px;
    }
    .bp-cam__rec::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--bp-alert);
      box-shadow: 0 0 6px var(--bp-alert);
      animation: bpBlink 1.2s ease-in-out infinite;
    }
    @keyframes bpBlink { 50% { opacity: .25 } }

    .bp-cam__id {
      position: absolute; bottom: 8px; left: 10px; z-index: 3;
      font-size: 8px; letter-spacing: .14em;
      color: rgba(255,255,255,.55); text-transform: uppercase;
    }

    .bp-cam__bbox {
      position: absolute; z-index: 2;
      border: 1.5px solid var(--bp-cyan);
      border-radius: 2px;
      box-shadow: 0 0 0 1px rgba(0,104,255,.18);
    }
    .bp-cam__bbox::before {
      content: ""; position: absolute; inset: -3px;
      border: 1px solid rgba(0,104,255,.4);
      border-radius: 4px;
      pointer-events: none;
    }
    .bp-cam__bbox span {
      position: absolute; top: -16px; left: -1px;
      background: var(--bp-cyan); color: #0a0c14;
      font-size: 8px; padding: 1px 6px; border-radius: 2px;
      font-weight: 600; letter-spacing: .06em;
      white-space: nowrap;
    }
    .bp-cam__bbox.alert { border-color: var(--bp-alert); box-shadow: 0 0 0 1px rgba(255,48,104,.2) }
    .bp-cam__bbox.alert::before { border-color: rgba(255,48,104,.45) }
    .bp-cam__bbox.alert span { background: var(--bp-alert); color: #fff }
    .bp-cam__bbox.safe { border-color: var(--bp-lime); box-shadow: 0 0 0 1px rgba(200,245,63,.2) }
    .bp-cam__bbox.safe::before { border-color: rgba(200,245,63,.5) }
    .bp-cam__bbox.safe span { background: var(--bp-lime); color: #0a0c14 }

    /* bbox positions per cam */
    .bp-cam--1 .bbox-1 { top: 22%; left: 18%; width: 26%; height: 50% }
    .bp-cam--1 .bbox-2 { top: 38%; left: 56%; width: 22%; height: 34% }
    .bp-cam--2 .bbox-3 { top: 18%; left: 28%; width: 38%; height: 62% }
    .bp-cam--3 .bbox-4 { top: 24%; left: 16%; width: 22%; height: 52% }
    .bp-cam--3 .bbox-5 { top: 26%; left: 52%; width: 22%; height: 50% }
    .bp-cam--4 .bbox-6 { top: 36%; left: 22%; width: 56%; height: 36% }

    /* scanning line across the whole grid */
    .bp-cam-grid__scan {
      position: absolute; left: 12px; right: 12px;
      top: 12px; height: 2px;
      background: linear-gradient(90deg, transparent, var(--bp-cyan) 50%, transparent);
      box-shadow: 0 0 16px var(--bp-cyan);
      animation: bpScan 4.2s cubic-bezier(.45,0,.55,1) infinite;
      z-index: 4;
      pointer-events: none;
    }
    @keyframes bpScan {
      0%   { top: 12px; opacity: 0 }
      8%   { opacity: 1 }
      50%  { top: calc(100% - 14px); opacity: 1 }
      55%  { opacity: 0 }
      100% { top: calc(100% - 14px); opacity: 0 }
    }

    .bp-hero__scanner .label-bot {
      display: flex; align-items: center; justify-content: space-between;
      font-size: 10px; letter-spacing: .22em;
      color: rgba(255,255,255,.45); text-transform: uppercase;
      margin-top: 14px;
    }
    .bp-hero__scanner .label-bot .v { color: var(--bp-lime) }

    /* hero footer telemetry strip */
    .bp-tel-strip {
      position: relative;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 10px;
      border-top: 1px solid rgba(255,255,255,.10);
      font-family: var(--bp-mono);
      font-size: 11px;
      color: rgba(255,255,255,.7);
      letter-spacing: .12em;
      text-transform: uppercase;
      background: rgba(8,10,18,.42);
      backdrop-filter: blur(10px);
    }
    .bp-tel-strip span { display: inline-flex; align-items: center; gap: 8px }
    .bp-tel-strip .pill {
      padding: 4px 9px; border: 1px solid rgba(255,255,255,.16);
      border-radius: 999px; font-size: 10px;
    }

    /* ============================================================
       SHARED — eyebrow + h2
    ============================================================ */
    .bp-eyebrow {
      font-family: var(--bp-mono);
      font-size: 12px;
      letter-spacing: .22em;
      text-transform: uppercase;
      /* color: var(--bp-fg-faint); */
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }
    /* .bp-eyebrow::before { content: ""; width: 32px; height: 1px; background: var(--bp-fg-faint) } */
    .bp-h2 {
      font-family: var(--bp-display);
      font-weight: 500;
      font-size: clamp(40px, 5.4vw, 76px);
      line-height: 1;
      letter-spacing: -.035em;
      color: #0a0c14;
      margin: 18px 0 0;
    }
    .bp-h2 em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: var(--bp-fg-soft); */
    }

    /* ============================================================
       SECTION 1 — SHIFT (passive → intelligent)
    ============================================================ */
    .bp-shift {
      padding: 140px 56px;
      background: var(--bp-paper);
      border-bottom: 1px solid var(--bp-line);
      position: relative;
    }
    .bp-shift__inner { max-width: 1280px; margin: 0 auto }
    .bp-shift__head {
      display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
      align-items: end; margin-bottom: 64px;
    }
    .bp-shift__head p {
      font-family: var(--bp-sans);
      font-size: 18px; line-height: 1.65; color: var(--bp-fg-soft);
      max-width: 480px; margin: 0;
    }
    .bp-shift__ledger {
      position: relative;
      /* background:
        radial-gradient(120% 60% at 0% 0%, rgba(255,48,104,.05), transparent 60%),
        radial-gradient(120% 60% at 100% 100%, rgba(0,104,255,.08), transparent 60%),
        var(--bp-paper-2); */
      border: 1px solid rgb(139 139 139 / 10%);
      border-radius: 28px;
      overflow: hidden;
    }
    .bp-shift__legend {
      display: grid;
      grid-template-columns: 60px 1fr 80px 1fr;
      gap: 24px;
      padding: 22px 36px;
      border-bottom: 1px solid rgb(137 137 137 / 10%);
      background: rgb(255 255 255 / 50%);
      font-family: var(--bp-mono);
      font-size: 10.5px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: rgb(0 0 0 / 42%);
      align-items: center;
    }
    .bp-shift__legend .from { color: var(--bp-alert-deep) }
    .bp-shift__legend .from::before {
      content: ""; display: inline-block; width: 8px; height: 8px;
      border-radius: 50%; background: var(--bp-alert);
      vertical-align: middle; margin-right: 10px;
    }
    .bp-shift__legend .arrow { text-align: center }
    .bp-shift__legend .to {/* color: var(--bp-cyan-deep); */}
    .bp-shift__legend .to::before {
      content: "";
      display: inline-block;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: #0d6efd;
      vertical-align: middle;
      margin-right: 10px;
      box-shadow: 0 0 8px #0d6efd;
    }
    .bp-shift__row {
      display: grid; grid-template-columns: 60px 1fr 80px 1fr;
      gap: 24px;
      padding: 28px 36px;
      align-items: center;
      border-bottom: 1px solid var(--bp-line);
      transition: background .35s ease;
    }
    .bp-shift__row:last-child { border-bottom: none }
    .bp-shift__row:hover { background: rgba(255,255,255,.7) }
    .bp-shift__row .ix {
      font-family: var(--bp-mono); font-size: 11px;
      letter-spacing: .14em; color: var(--bp-fg-faint);
    }
    .bp-shift__row .from {
      font-family: var(--bp-sans); font-size: 16.5px;
      line-height: 1.45; color: var(--bp-fg-soft);
      text-decoration: line-through;
      text-decoration-color: rgba(255,48,104,.4);
      text-decoration-thickness: 1.5px;
      text-underline-offset: 4px;
      transition: opacity .3s ease;
    }
    .bp-shift__row:hover .from { opacity: .55 }
    .bp-shift__row .arrow {
      position: relative;
      height: 1px;
      background: linear-gradient(90deg, #0d6efd00, var(--bp-line) 45%, #0d6efd69);
      align-self: center;
    }
    .bp-shift__row .arrow::after {
      content: "";
      position: absolute;
      right: -4px;
      top: 50%;
      width: 0;
      height: 0;
      border-style: solid;
      border-width: 5px 0 5px 7px;
      border-color: transparent transparent transparent #0d6efd;
      transform: translateY(-50%);
    }
    .bp-shift__row .to {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 19px; line-height: 1.35;
      letter-spacing: -.012em; color: #0a0c14;
      display: flex; align-items: center; gap: 14px;
    }
    .bp-shift__row .to em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: var(--bp-fg-soft); */
    }
    .bp-shift__row .ck {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: #0d6efd;
      color: #ffffff;
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 700;
      transition: box-shadow .35s ease;
    }
    .bp-shift__row:hover .ck {box-shadow: 0 0 0 6px rgb(0 111 255 / 18%);}

    .bp-shift__sign {
      margin-top: 56px;
      padding: 28px 36px;
      background: #0a0c14;
      color: #fff;
      border-radius: 20px;
      position: relative;
      overflow: hidden;
      text-align: center;
    }
    .bp-shift__sign p {
      position: relative; z-index: 2;
      font-family: var(--cv-display); font-weight: 400;
      font-size: 22px; line-height: 1.35; letter-spacing: -.012em;
      margin: 0; color: rgba(255,255,255,.92);
    }

    /* .bp-shift__sign p em {
      font-family: var(--bp-display); font-style: italic; font-weight: 300;
      color: var(--bp-cyan);
    } */

    .bp-shift__sign .meta {
      font-family: var(--bp-mono); font-size: 10px;
      letter-spacing: .22em; text-transform: uppercase;
      color: rgba(255,255,255,.45);
      display: inline-flex; align-items: center; gap: 12px;
      white-space: nowrap;
    }
    .bp-shift__sign .meta::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--bp-cyan); box-shadow: 0 0 8px var(--bp-cyan);
    }

    /* ============================================================
       SECTION 2 — INTELLIGENCE CATEGORIES (asymmetric grid)
    ============================================================ */
    .bp-cats {
      padding: 160px 56px;
      background: #0a0c14; color: #fff;
      position: relative; overflow: hidden;
    }
    .bp-cats::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(40% 30% at 0% 100%, rgb(0 128 255 / 14%), transparent 70%), radial-gradient(45% 32% at 100% 0%, rgb(48 140 255 / 10%), transparent 70%);
      pointer-events: none;
    }
    .bp-cats__inner { position: relative; max-width: 1400px; margin: 0 auto }
    .bp-cats__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 60px;
    }
    .bp-cats__head .bp-eyebrow { color: rgba(255,255,255,.55) }
    .bp-cats__head .bp-eyebrow::before { background: rgba(255,255,255,.35) }
    .bp-cats__head .bp-h2 { color: #fff }
    .bp-cats__head .bp-h2 em {/* color: rgba(255,255,255,.55); */}
    .bp-cats__head p {
      font-family: var(--bp-sans);
      font-size: 18px; line-height: 1.65;
      color: rgba(255,255,255,.7);
      max-width: 480px; margin: 0;
    }
    .bp-cats__grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 14px;
    }
    .bp-cat {
      position: relative;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 22px;
      padding: 34px 32px 30px;
      background: linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.01));
      backdrop-filter: blur(8px);
      transition: transform .45s cubic-bezier(.22,.61,.36,1), border-color .3s ease, background .3s ease;
      overflow: hidden;
    }
    .bp-cat:hover {
      transform: translateY(-4px);
      border-color: rgba(255,255,255,.25);
      background: linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.02));
    }
    .bp-cat.large { grid-column: span 3; min-height: 340px }
    .bp-cat.medium { grid-column: span 3; min-height: 280px }
    .bp-cat.small { grid-column: span 2; min-height: 260px }
    .bp-cat__num {
      font-family: var(--bp-mono);
      font-size: 11px; letter-spacing: .18em;
      color: rgba(255,255,255,.55);
      margin-bottom: 28px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .bp-cat__num .glyph {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: #2125298c;
      color: #ffffff;
      border: 1px solid #212529;
      display: grid;
      place-items: center;
    }
    .bp-cat.large .bp-cat__num .glyph {
      background: #0d6efd;
      color: #ffffff;
      border-color: #0d6efd;
    }
    .bp-cat__title {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 26px; letter-spacing: -.018em;
      color: #fff; margin: 0 0 14px; line-height: 1.15;
    }
    .bp-cat.large .bp-cat__title { font-size: 32px }
    .bp-cat__title em {
      font-family: var(--bp-display); font-style: italic; font-weight: 300;
      color: rgba(255,255,255,.55);
    }
    .bp-cat__desc {
      font-family: var(--bp-sans); font-size: 15px;
      line-height: 1.6; color: rgba(255,255,255,.7);
      margin: 0;
    }
    .bp-cat__tags {
      margin-top: 22px;
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .bp-cat__tags span {
      /* font-family: var(--bp-mono); */
      font-size: 12px;
      letter-spacing: .12em;
      padding: 4px 9px;
      border: 1px solid rgba(255,255,255,.18);
      border-radius: 999px;
      color: rgba(255,255,255,.78);
    }
    .bp-cat.large {
      background: linear-gradient(135deg, rgb(0 119 255 / 14%) 0%, rgb(0 94 255 / 4%) 100%);
      border-color: rgb(0 121 255 / 28%);
    }
    .bp-cat.large::after {
      content: "";
      position: absolute;
      right: -120px;
      bottom: -120px;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle at center, rgb(0 107 255 / 20%), transparent 70%);
      pointer-events: none;
    }

    /* ============================================================
       SECTION 3 — TECH STACK (vertical slabs)
    ============================================================ */
    .bp-tech {
      padding: 160px 56px;
      background: var(--bp-paper);
      border-bottom: 0px solid var(--bp-line);
    }
    .bp-tech__inner { max-width: 1280px; margin: 0 auto }
    .bp-tech__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 60px;
    }
    .bp-tech__head p {
      font-family: var(--bp-sans);
      font-size: 18px; line-height: 1.65;
      color: var(--bp-fg-soft); max-width: 480px; margin: 0;
    }
    .bp-tech__list { display: grid; gap: 12px }
    .bp-slab {
      display: grid; grid-template-columns: 1fr auto;
      gap: 28px; align-items: center;
      padding: 24px 32px;
      background: var(--bp-paper-2);
      border: 1px solid var(--bp-line);
      border-radius: 16px;
      transition: transform .4s cubic-bezier(.22,.61,.36,1), background .3s ease, border-color .3s ease;
    }
    .bp-slab:hover {
      transform: translateX(8px);
      background: #fff;
      border-color: rgba(10,12,20,.22);
    }
    .bp-slab .layer {
      font-family: var(--bp-mono); font-size: 11px; letter-spacing: .18em;
      color: var(--bp-fg-faint);
    }
    .bp-slab .title {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 22px; letter-spacing: -.012em; color: #0a0c14;
    }
    .bp-slab .title em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: var(--bp-fg-soft); */
    }
    .bp-slab .meta {
      /* font-family: var(--bp-mono); */
      font-size: 13px;
      color: var(--bp-fg-soft);
      letter-spacing: .08em;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .bp-slab .meta .dot {
      width: 6px; height: 6px; border-radius: 50%;
      background: var(--bp-cyan); box-shadow: 0 0 8px var(--bp-cyan);
    }
    .bp-slab:nth-child(2n) .meta .dot { background: var(--bp-violet); box-shadow: 0 0 8px var(--bp-violet) }
    .bp-slab:nth-child(3n) .meta .dot { background: var(--bp-lime); box-shadow: 0 0 8px var(--bp-lime) }
    .bp-slab:nth-child(5n) .meta .dot { background: var(--bp-amber); box-shadow: 0 0 8px var(--bp-amber) }

    /* ============================================================
       SECTION 4 — INTEGRATION HUB (orbit)
    ============================================================ */
    .bp-hub {
      padding: 160px 56px;
      background: var(--bp-paper-2);
      border-bottom: 1px solid var(--bp-line);
      position: relative;
    }
    .bp-hub__inner { max-width: 1400px; margin: 0 auto }
    .bp-hub__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 72px;
    }
    .bp-hub__head p {
      font-family: var(--bp-sans); font-size: 18px; line-height: 1.65;
      color: var(--bp-fg-soft); max-width: 500px; margin: 0;
    }
    .bp-hub__diagram {
      position: relative;
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .bp-hub__core-wrap {
      position: relative; width: 100%; aspect-ratio: 1; max-width: 460px;
      margin: 0 auto;
      display: grid; place-items: center;
    }
    .bp-hub__core-wrap::before, .bp-hub__core-wrap::after {
      content: ""; position: absolute; inset: 0;
      border-radius: 50%; border: 1px solid var(--bp-line);
    }
    .bp-hub__core-wrap::after {inset: 14%;border-color: rgba(10, 12, 20, .16);}
    .bp-hub__core {
      width: 60%;
      aspect-ratio: 1;
      background: radial-gradient(circle at 30% 25%, rgb(0 0 0 / 60%), transparent 55%), linear-gradient(135deg, #000000, #000000);
      color: #fff;
      border: 1px solid rgb(0 0 0 / 40%);
      border-radius: 50%;
      display: grid;
      place-items: center;
      text-align: center;
      padding: 40px;
      box-shadow: 0 30px 80px -20px rgb(0 137 255 / 40%), inset 0 0 0 1px rgba(255, 255, 255, .05);
      position: relative;
      z-index: 2;
    }
    .bp-hub__core .label {
      font-family: var(--bp-mono);
      font-size: 10px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: #ffffff;
      margin-bottom: 8px;
    }
    .bp-hub__core .name {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 26px; letter-spacing: -.018em; line-height: 1.15; color: #fff;
    }
    .bp-hub__core .name em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: var(--bp-cyan); */
    }
    .bp-hub__core-wrap .ring-dot {
      position: absolute; width: 10px; height: 10px;
      border-radius: 50%; background: var(--bp-cyan);
      box-shadow: 0 0 0 4px rgba(0,104,255,.18);
      z-index: 3;
    }
    .bp-hub__core-wrap .ring-dot.d1 { top: 50%; left: 0; transform: translate(-50%,-50%) }
    .bp-hub__core-wrap .ring-dot.d2 { top: 0; left: 50%; transform: translate(-50%,-50%); background: var(--bp-lime); box-shadow: 0 0 0 4px rgba(200,245,63,.2) }
    .bp-hub__core-wrap .ring-dot.d3 { top: 50%; right: 0; transform: translate(50%,-50%); background: var(--bp-violet); box-shadow: 0 0 0 4px rgba(123,92,255,.2) }
    .bp-hub__core-wrap .ring-dot.d4 { bottom: 0; left: 50%; transform: translate(-50%, 50%); background: var(--bp-amber); box-shadow: 0 0 0 4px rgba(255,181,71,.2) }
    .bp-hub__core-wrap .sweep {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      background: conic-gradient(from 0deg, transparent 0deg, rgb(0 95 255 / 18%) 60deg, transparent 130deg);
      mask: radial-gradient(circle at center, transparent 45%, #000 46%, #000 100%);
      -webkit-mask: radial-gradient(circle at center, transparent 45%, #000 46%, #000 100%);
      animation: bpOrbit 12s linear infinite;
      pointer-events: none;
    }
    @keyframes bpOrbit { to { transform: rotate(360deg) } }

    .bp-hub__nodes { display: grid; grid-template-columns: 1fr 1fr; gap: 14px }
    .bp-hub__node {
    padding: 24px 22px !important;
    border: 1px solid rgb(213 213 213 / 10%);
    border-radius: 10px !important;
    background: #f9f9f9;
    display: grid;
    grid-template-columns: 36px 1fr;
    gap: 16px;
    align-items: center;
    transition: transform .35s ease, border-color .3s ease, background .3s ease;
    box-shadow: 2px 5px 10px #00000014;
    }
    .bp-hub__node:hover {
      transform: translateY(-3px);
      border-color: rgba(0,0,0,.1);
    }
    .bp-hub__node .icon {
      width: 38px; height: 38px; border-radius: 10px;
      background: var(--bp-paper-2); border: 1px solid var(--bp-line);
      display: grid; place-items: center;
      color: #0a0c14;
    }
    .bp-hub__node .text .name {
      font-family: var(--bp-display);
      font-weight: 500;
      font-size: 14px;
      color: #0a0c14;
    }
    .bp-hub__node .text .meta {
      font-family: var(--bp-mono);
      font-size: 11px;
      letter-spacing: .14em;
      color: rgb(10 12 20 / 66%);
      text-transform: uppercase;
    }

    /* ============================================================
       SECTION 5 — COMMAND CENTER mock
    ============================================================ */
    .bp-console {
      padding: 160px 56px;
      background: #0a0c14; color: #fff;
      border-bottom: 1px solid rgba(255,255,255,.06);
      position: relative; overflow: hidden;
    }
    .bp-console::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(50% 40% at 100% 0%, rgb(0 93 255 / 18%), transparent 70%), radial-gradient(35% 30% at 0% 100%, rgb(48 144 255 / 12%), transparent 70%);
      pointer-events: none;
    }
    .bp-console__inner { position: relative; z-index: 2; max-width: 1400px; margin: 0 auto }
    .bp-console__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 60px;
    }
    .bp-console__head .bp-eyebrow { color: rgba(255,255,255,.55) }
    .bp-console__head .bp-eyebrow::before { background: rgba(255,255,255,.35) }
    .bp-console__head .bp-h2 { color: #fff }
    .bp-console__head .bp-h2 em {/* color: rgba(255,255,255,.55); */}
    .bp-console__head p {
      font-family: var(--bp-sans); font-size: 18px; line-height: 1.65;
      color: rgba(255,255,255,.7); max-width: 500px; margin: 0;
    }

    .bp-cc {
      position: relative;
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 22px;
      overflow: hidden;
      background: rgba(255,255,255,.02);
      backdrop-filter: blur(8px);
      box-shadow: 0 60px 120px -40px rgba(0,104,255,.15);
    }
    .bp-cc__chrome {
      display: flex; align-items: center; gap: 10px;
      padding: 14px 18px;
      border-bottom: 1px solid rgba(255,255,255,.08);
      background: rgba(255,255,255,.02);
    }
    .bp-cc__chrome .dot { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,.18) }
    .bp-cc__chrome .url {
      flex: 1; margin-left: 12px; padding: 6px 14px;
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 999px;
      font-family: var(--bp-mono); font-size: 11px;
      color: rgba(255,255,255,.7); letter-spacing: .04em;
    }
    .bp-cc__chrome .live {
      font-family: var(--bp-mono); font-size: 10px;
      letter-spacing: .18em; color: var(--bp-cyan);
      padding: 4px 10px; border-radius: 999px;
      background: rgba(0,104,255,.10);
      border: 1px solid rgba(0,104,255,.35);
      display: inline-flex; align-items: center; gap: 6px;
    }
    .bp-cc__chrome .live::before {
      content: ""; width: 6px; height: 6px; border-radius: 50%;
      background: var(--bp-cyan); box-shadow: 0 0 8px var(--bp-cyan);
      animation: bpPulse 1.6s ease-out infinite;
    }
    .bp-cc__body {
      display: grid; grid-template-columns: 1.4fr 1fr;
      min-height: 540px;
    }

    /* left — camera matrix */
    .bp-cc__matrix {
      padding: 22px;
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      grid-auto-rows: 100px;
      gap: 10px;
      border-right: 1px solid rgba(255,255,255,.08);
    }
    .bp-cc__cam {
      position: relative;
      border-radius: 10px;
      background: linear-gradient(160deg, #0a1f33, #0e1626);
      overflow: hidden;
      border: 1px solid rgba(255,255,255,.06);
    }
    .bp-cc__cam:nth-child(2) { background: linear-gradient(160deg, #1e0e1f, #0e1626) }
    .bp-cc__cam:nth-child(3) { background: linear-gradient(160deg, #102e22, #0e1626) }
    .bp-cc__cam:nth-child(4) { background: linear-gradient(160deg, #1c1b35, #0e1626) }
    .bp-cc__cam:nth-child(5) { background: linear-gradient(160deg, #2c1818, #0e1626) }
    .bp-cc__cam:nth-child(6) { background: linear-gradient(160deg, #0e2233, #0e1626) }
    .bp-cc__cam::before {
      content: ""; position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
      background-size: 10px 10px;
    }
    .bp-cc__cam .tag {
      position: absolute; bottom: 6px; left: 8px;
      font-family: var(--bp-mono); font-size: 8.5px;
      letter-spacing: .14em; color: rgba(255,255,255,.7);
      text-transform: uppercase; z-index: 2;
    }
    .bp-cc__cam .rec {
      position: absolute; top: 6px; right: 8px;
      font-family: var(--bp-mono); font-size: 8px;
      letter-spacing: .14em; color: var(--bp-alert);
      display: inline-flex; align-items: center; gap: 6px;
      z-index: 2;
    }
    .bp-cc__cam .rec::before {
      content: ""; width: 5px; height: 5px; border-radius: 50%;
      background: var(--bp-alert); box-shadow: 0 0 6px var(--bp-alert);
      animation: bpBlink 1.2s ease-in-out infinite;
    }
    .bp-cc__cam .det {
      position: absolute; z-index: 1;
      border: 1.2px solid var(--bp-cyan);
      box-shadow: 0 0 0 1px rgba(0,104,255,.18);
      border-radius: 2px;
    }
    .bp-cc__cam .det.alert { border-color: var(--bp-alert); box-shadow: 0 0 0 1px rgba(255,48,104,.18) }
    .bp-cc__cam .det.safe { border-color: var(--bp-lime); box-shadow: 0 0 0 1px rgba(200,245,63,.18) }
    .bp-cc__cam .det.d1 { top: 28%; left: 22%; width: 38%; height: 50% }
    .bp-cc__cam .det.d2 { top: 32%; left: 36%; width: 30%; height: 46% }
    .bp-cc__cam .det.d3 { top: 22%; left: 16%; width: 24%; height: 56% }
    .bp-cc__cam .det.d4 { top: 30%; left: 50%; width: 28%; height: 44% }
    .bp-cc__cam.span2 { grid-column: span 2 }
    .bp-cc__cam.span2 .det.d1 { top: 30%; left: 22%; width: 22%; height: 50% }
    .bp-cc__cam.span2 .det.d2 { top: 30%; left: 50%; width: 22%; height: 50% }
    .bp-cc__cam.row2 { grid-row: span 2 }

    /* right — alerts + stats */
    .bp-cc__side { padding: 22px; display: grid; gap: 18px; align-content: start }
    .bp-cc__stats {
      display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
    }
    .bp-cc__stat {
      padding: 14px 14px;
      background: rgba(255,255,255,.03);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 12px;
    }
    .bp-cc__stat .k {
      font-family: var(--bp-mono); font-size: 9.5px; letter-spacing: .18em;
      color: rgba(255,255,255,.5); text-transform: uppercase;
      margin-bottom: 6px;
    }
    .bp-cc__stat .v {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 28px; letter-spacing: -.02em; line-height: 1; color: #fff;
    }
    .bp-cc__stat .v small {
      font-family: var(--bp-mono); font-size: 10px;
      color: rgba(255,255,255,.55); margin-left: 4px;
    }
    .bp-cc__stat .v.good { color: var(--bp-cyan) }
    .bp-cc__stat .v.warn { color: var(--bp-alert) }
    .bp-cc__alerts {
      background: rgba(255,255,255,.02);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: 14px;
      padding: 16px 18px;
    }
    .bp-cc__alerts .hd {
      display: flex; align-items: center; justify-content: space-between;
      font-family: var(--bp-mono); font-size: 10px;
      letter-spacing: .18em; color: rgba(255,255,255,.55);
      text-transform: uppercase;
      padding-bottom: 12px; margin-bottom: 12px;
      border-bottom: 1px solid rgba(255,255,255,.06);
    }
    .bp-cc__alert {
      display: grid; grid-template-columns: 14px 1fr auto;
      gap: 12px; align-items: start;
      padding: 10px 0;
      border-bottom: 1px dashed rgba(255,255,255,.06);
      font-family: var(--bp-sans); font-size: 13px;
      color: rgba(255,255,255,.85); line-height: 1.45;
    }
    .bp-cc__alert:last-child { border-bottom: none }
    .bp-cc__alert .dot {
      width: 10px; height: 10px; border-radius: 50%;
      background: var(--bp-cyan); margin-top: 4px;
      box-shadow: 0 0 6px var(--bp-cyan);
    }
    .bp-cc__alert.warn .dot { background: var(--bp-alert); box-shadow: 0 0 6px var(--bp-alert) }
    .bp-cc__alert.safe .dot { background: var(--bp-lime); box-shadow: 0 0 6px var(--bp-lime) }
    .bp-cc__alert .ttl {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 13.5px; color: #fff; letter-spacing: -.005em;
    }
    .bp-cc__alert .ttl + .sys {
      font-family: var(--bp-mono); font-size: 9.5px;
      letter-spacing: .14em; text-transform: uppercase;
      color: rgba(255,255,255,.5); margin-top: 2px;
    }
    .bp-cc__alert .time {
      font-family: var(--bp-mono); font-size: 10px;
      color: rgba(255,255,255,.45); letter-spacing: .04em;
    }

    /* ============================================================
       SECTION 6 — INDUSTRIES (use cases mosaic)
    ============================================================ */
    .bp-ind {
      padding: 160px 56px;
      background: var(--bp-paper);
      border-bottom: 0px solid var(--bp-line);
    }
    .bp-ind__inner { max-width: 1400px; margin: 0 auto }
    .bp-ind__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 60px;
    }
    .bp-ind__head p {
      font-family: var(--bp-sans); font-size: 18px; line-height: 1.65;
      color: var(--bp-fg-soft); max-width: 480px; margin: 0;
    }
    .bp-ind__grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .bp-use {
      position: relative;
      padding: 30px 28px;
      border: 1px solid var(--bp-line);
      border-radius: 20px;
      background: var(--bp-paper-2);
      transition: transform .4s cubic-bezier(.22,.61,.36,1), border-color .3s, background .3s;
      overflow: hidden;
    }
    .bp-use:hover {
      transform: translateY(-5px);
      border-color: rgba(10,12,20,.22);
      background: #fff;
    }
    .bp-use::before {
      content: ""; position: absolute; top: 0; left: 0; right: 0;
      height: 3px; transform: scaleX(0); transform-origin: left;
      transition: transform .5s cubic-bezier(.16,1,.3,1);
    }
    .bp-use:nth-child(1)::before { background: var(--bp-cyan) }
    .bp-use:nth-child(2)::before { background: var(--bp-alert) }
    .bp-use:nth-child(3)::before { background: var(--bp-lime) }
    .bp-use:nth-child(4)::before { background: var(--bp-violet) }
    .bp-use:nth-child(5)::before { background: var(--bp-amber) }
    .bp-use:nth-child(6)::before { background: var(--bp-cyan) }
    .bp-use:hover::before { transform: scaleX(1) }
    .bp-use .ix {
      font-family: var(--bp-mono); font-size: 10.5px; letter-spacing: .22em;
      color: var(--bp-fg-faint); text-transform: uppercase;
      margin-bottom: 18px;
    }
    .bp-use .ttl {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 22px; letter-spacing: -.018em;
      color: #0a0c14; margin: 0 0 10px; line-height: 1.15;
    }
    .bp-use .desc {
      font-family: var(--bp-sans) !IMPORTANT;
      font-size: 16px;
      line-height: 1.55;
      color: var(--bp-fg-soft);
      margin: 0;
    }
    .bp-use .tags {
      margin-top: 16px;
      display: flex; flex-wrap: wrap; gap: 6px;
    }
    .bp-use .tags span {
      font-family: var(--bp-mono);
      font-size: 12px;
      letter-spacing: .12em;
      padding: 3px 8px;
      border: 1px solid rgb(10 12 20 / 19%);
      border-radius: 999px;
      color: rgb(10 12 20);
    }

    /* ============================================================
       SECTION 7 — WHY (8-card grid)
    ============================================================ */
    .bp-why {
      padding: 160px 56px;
      background: var(--bp-paper-2);
      border-bottom: 1px solid var(--bp-line);
    }
    .bp-why__inner { max-width: 1280px; margin: 0 auto }
    .bp-why__head {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: end; margin-bottom: 60px;
    }
    .bp-why__head p {
      font-family: var(--bp-sans); font-size: 18px; line-height: 1.65;
      color: var(--bp-fg-soft); max-width: 480px; margin: 0;
    }
    .bp-why__grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }
    .bp-why__card {
      position: relative;
      padding: 28px 26px;
      background: #fff;
      border: 1px solid var(--bp-line);
      border-radius: 18px;
      transition: transform .4s cubic-bezier(.22,.61,.36,1), border-color .3s, box-shadow .3s;
    }
    .bp-why__card:hover {
      transform: translateY(-4px);
      border-color: rgba(10,12,20,.22);
      box-shadow: 0 24px 60px -22px rgba(10,12,20,.18);
    }
    .bp-why__card .ck {
      width: 28px;
      height: 28px;
      border-radius: 50%;
      background: rgb(0 65 255 / 14%);
      border: 1px solid rgb(0 128 255 / 40%);
      color: #0d6efd;
      display: grid;
      place-items: center;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 18px;
    }
    .bp-why__card .ttl {
      font-family: var(--bp-display); font-weight: 500;
      font-size: 17px; letter-spacing: -.012em;
      color: #0a0c14; margin: 0; line-height: 1.3;
    }

    /* ============================================================
       FINAL CTA
    ============================================================ */
    .bp-final {
      position: relative; overflow: hidden;
      padding: 180px 40px;
      background: #0a0c14; color: #fff;
      text-align: center;
    }
    .bp-final .orbit {
      position: absolute; top: 50%; left: 50%;
      transform: translate(-50%,-50%);
      border-radius: 50%; pointer-events: none;
    }
    .bp-final .orbit::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      padding: 1px;
      background: linear-gradient(90deg, rgba(255, 255, 255, .02), rgb(255 255 255 / 70%), rgba(255, 255, 255, .02));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: .7;
    }
    .bp-final .orbit1 {
      width: clamp(220px, 28vw, 340px);
      height: clamp(220px, 28vw, 340px);
      animation: bpFinalOrbit 22s linear infinite;
    }
    .bp-final .orbit2 {
      width: clamp(320px, 42vw, 500px);
      height: clamp(320px, 42vw, 500px);
      animation: bpFinalOrbit 38s linear infinite reverse;
    }
    .bp-final .orbit3 {
      width: clamp(420px, 56vw, 660px);
      height: clamp(420px, 56vw, 660px);
      border: 1px dashed rgba(255,255,255,.08);
      animation: bpFinalOrbit 60s linear infinite;
    }
    @keyframes bpFinalOrbit { to { transform: translate(-50%,-50%) rotate(360deg) } }
    .bp-final__eyebrow {
      position: relative;
      font-family: var(--bp-mono);
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      /* color: var(--bp-cyan); */
      margin-bottom: 28px;
    }
    .bp-final__title {
      position: relative;
      font-family: var(--bp-display); font-weight: 500;
      font-size: clamp(48px, 8.5vw, 60px);
      line-height: 1.05; letter-spacing: -.02em;
      color: #fff; margin: 0 0 48px;
    }
    .bp-final__title em {
      /* font-family: var(--bp-display); */
      /* font-style: italic; */
      /* font-weight: 300; */
      /* color: rgba(255,255,255,.55); */
    }
    .bp-final__btns {
      position: relative;
      display: flex; gap: 14px; justify-content: center; flex-wrap: wrap;
    }


    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 1180px) {
      .bp-cats__grid { grid-template-columns: repeat(4, 1fr) }
      .bp-cat.large, .bp-cat.medium { grid-column: span 2 }
      .bp-cat.small { grid-column: span 2 }
      .bp-ind__grid { grid-template-columns: repeat(2, 1fr) }
      .bp-why__grid { grid-template-columns: repeat(3, 1fr) }
    }
    @media (max-width: 980px) {
      .bp-hero { padding: 120px 32px 0 }
      .bp-hero__inner { grid-template-columns: 1fr; gap: 50px; padding-bottom: 50px }
      .bp-hero__scanner { max-width: 100%; margin: 0 }
      .bp-shift, .bp-cats, .bp-tech, .bp-hub, .bp-console, .bp-ind, .bp-why {
        padding: 100px 32px;
      }
      .bp-shift__head, .bp-cats__head, .bp-tech__head, .bp-hub__head,
      .bp-console__head, .bp-ind__head, .bp-why__head {
        grid-template-columns: 1fr; gap: 24px; margin-bottom: 50px;
      }
      .bp-shift__legend { grid-template-columns: 40px 1fr; gap: 16px; padding: 16px 22px }
      .bp-shift__legend .arrow, .bp-shift__legend .to { display: none }
      .bp-shift__row {
        grid-template-columns: 40px 1fr;
        grid-template-rows: auto auto auto;
        gap: 6px 16px; padding: 22px 22px;
      }
      .bp-shift__row .ix { grid-row: 1 / 4 }
      .bp-shift__row .from { grid-column: 2 }
      .bp-shift__row .arrow {
        grid-column: 2; width: 24px; height: 14px;
        background: none; position: relative;
      }
      .bp-shift__row .arrow::before {
        content: "↓"; color: var(--bp-fg-faint); font-size: 14px;
      }
      .bp-shift__row .arrow::after { display: none }
      .bp-shift__row .to { grid-column: 2; font-size: 16.5px }
      .bp-shift__sign { grid-template-columns: 1fr; gap: 14px; padding: 22px }

      .bp-cats__grid { grid-template-columns: 1fr 1fr }
      .bp-cat.large, .bp-cat.medium, .bp-cat.small { grid-column: span 2 }

      .bp-hub__diagram { grid-template-columns: 1fr; gap: 50px }
      .bp-cc__body { grid-template-columns: 1fr }
      .bp-cc__matrix { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08) }

      .bp-ind__grid { grid-template-columns: 1fr 1fr }
      .bp-why__grid { grid-template-columns: 1fr 1fr }

      .bp-final { padding: 130px 28px }
      /* .bp-tel-strip { display: none } */
    }
    @media (max-width: 600px) {
      .bp-hero { padding: 110px 22px 0 }
      .bp-hero__title { font-size: clamp(40px, 11vw, 60px) }
      .bp-hero__sub { font-size: 14px }
      .bp-shift, .bp-cats, .bp-tech, .bp-hub, .bp-console, .bp-ind, .bp-why {
        padding: 80px 22px;
      }
      .bp-cats__grid, .bp-ind__grid, .bp-why__grid { grid-template-columns: 1fr }
      .bp-cat.large, .bp-cat.medium, .bp-cat.small { grid-column: span 1 }
      .bp-cat__title { font-size: 22px }
      .bp-cat.large .bp-cat__title { font-size: 26px }
      .bp-slab { grid-template-columns: 1fr; padding: 18px 18px; gap: 14px; transform: none !important; }
      .bp-slab .meta { grid-column: 1 / -1 }
      .bp-cc__matrix { grid-auto-rows: 80px; gap: 8px; padding: 14px }
      .bp-cc__cam .tag { font-size: 7.5px }
      .bp-cc__alerts { padding: 14px }
      .bp-cc__stats { grid-template-columns: 1fr }
      .bp-hub__nodes { grid-template-columns: 1fr }
      .bp-final { padding: 110px 22px }
      .bp-final__title { font-size: clamp(36px, 11vw, 56px) }
      .bp-cta-primary, .bp-cta-ghost {
        padding: 13px 22px; font-size: 11px;
      }
    }