
    :root {
      --bbsc-bg: #fefdf8;
      --bbsc-bg-2: #fdf6ec;
      --bbsc-panel: rgba(255,255,255,.86);
      --bbsc-ink: #0f1b2d;
      --bbsc-muted: #5f7288;
      --bbsc-line: rgba(15, 23, 42, .09);
      --bbsc-blue: #2563eb;
      --bbsc-blue-2: #3b82f6;
      --bbsc-cyan: #0891b2;
      --bbsc-cyan-2: #06b6d4;
      --bbsc-teal: #0d9488;
      --bbsc-amber: #d97706;
      --bbsc-amber-2: #f59e0b;
      --bbsc-rose: #e11d48;
      --bbsc-green: #16a34a;
      --bbsc-green-2: #22c55e;
      --bbsc-purple: #7c3aed;
      --bbsc-indigo: #4f46e5;
      --bbsc-navy: #0f2a4c;
      --bbsc-shadow: 0 26px 70px rgba(30, 64, 124, .14);
      --bbsc-shadow-soft: 0 16px 40px rgba(37, 99, 235, .12);
      --bbsc-radius-lg: 30px;
      --bbsc-radius-md: 20px;
      --bbsc-sidebar: 286px;
      --bbsc-sidebar-collapsed: 78px;
      --bbsc-topbar: 74px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      min-height: 100vh;
      font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      color: var(--bbsc-ink);
      background:
        radial-gradient(circle at 12% 4%, rgba(37,99,235,.12), transparent 26%),
        radial-gradient(circle at 88% 8%, rgba(6,182,212,.12), transparent 26%),
        radial-gradient(circle at 70% 92%, rgba(245,158,11,.10), transparent 30%),
        var(--bbsc-bg);
      /* clip (not hidden) keeps horizontal overflow contained WITHOUT turning <body>
         into a scroll container, which would break position: sticky on the top bar. */
      overflow-x: clip;
    }

    a { color: inherit; }
    button, textarea, input { font: inherit; }

    /* === App frame === */
    .bbsc-app {
      min-height: 100vh;
      display: flex;
      width: 100%;
    }

    .bbsc-sidebar {
      width: var(--bbsc-sidebar);
      min-height: 100vh;
      position: sticky;
      top: 0;
      align-self: flex-start;
      z-index: 50;
      display: flex;
      flex-direction: column;
      background: rgba(255,255,255,.78);
      backdrop-filter: blur(22px);
      border-right: 1px solid var(--bbsc-line);
      box-shadow: 14px 0 38px rgba(30, 64, 124, .06);
      transition: width .24s ease, transform .24s ease;
    }
    .bbsc-sidebar.is-collapsed { width: var(--bbsc-sidebar-collapsed); }

    .bbsc-sidebar-head {
      min-height: var(--bbsc-topbar);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 16px;
      border-bottom: 1px solid var(--bbsc-line);
    }

    .bbsc-brand { display: flex; align-items: center; gap: 11px; min-width: 0; text-decoration: none; }

    .bbsc-mark {
      width: 40px; height: 40px; flex: 0 0 40px;
      border-radius: 13px;
      display: grid; place-items: center;
      color: #fff;
      font-family: "Space Grotesk", Inter, sans-serif;
      font-size: 1.15rem; font-weight: 800; letter-spacing: -.06em;
      background: linear-gradient(135deg, var(--bbsc-blue), var(--bbsc-cyan-2) 60%, var(--bbsc-teal));
      box-shadow: 0 12px 26px rgba(8, 145, 178, .30);
    }

    .bbsc-brand-copy { overflow: hidden; white-space: nowrap; }
    .bbsc-brand-copy strong { display: block; font-size: .98rem; letter-spacing: -.02em; }
    .bbsc-brand-copy span { display: block; font-size: .64rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: var(--bbsc-cyan); margin-top: 2px; }

    .bbsc-sidebar.is-collapsed .bbsc-brand-copy,
    .bbsc-sidebar.is-collapsed .bbsc-nav span,
    .bbsc-sidebar.is-collapsed .bbsc-sidebar-foot { display: none; }

    .bbsc-collapse {
      width: 36px; height: 36px;
      border: 1px solid rgba(37,99,235,.14);
      border-radius: 11px; cursor: pointer;
      background: rgba(255,255,255,.85);
      color: var(--bbsc-blue);
      transition: .18s ease;
    }
    .bbsc-collapse:hover { transform: translateY(-1px); box-shadow: var(--bbsc-shadow-soft); }

    .bbsc-nav { padding: 16px 12px; overflow-y: auto; }
    .bbsc-menu-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 6px; }
    .bbsc-menu-list li { margin: 0; padding: 0; }

    .bbsc-nav a {
      display: flex; align-items: center; gap: 12px;
      min-height: 46px; padding: 11px 13px;
      border-radius: 14px; text-decoration: none;
      color: #37506e; font-size: .92rem; font-weight: 700;
      border: 1px solid transparent;
      transition: background .18s ease, border-color .18s ease, transform .18s ease, color .18s ease;
      white-space: nowrap;
    }
    .bbsc-nav a:hover, .bbsc-nav a.is-active {
      background: linear-gradient(135deg, rgba(37,99,235,.10), rgba(6,182,212,.10));
      border-color: rgba(37,99,235,.14);
      color: var(--bbsc-navy);
      transform: translateX(2px);
    }
    .bbsc-nav i {
      width: 26px; height: 26px; flex: 0 0 26px;
      border-radius: 9px; display: grid; place-items: center;
      font-style: normal; font-size: .86rem;
      background: linear-gradient(135deg, #e8f1ff, #e0f7fb);
      color: var(--bbsc-blue);
    }
    .bbsc-sidebar.is-collapsed .bbsc-nav a { justify-content: center; padding-inline: 10px; }

    .bbsc-sidebar-foot {
      margin-top: auto; padding: 16px;
      border-top: 1px solid var(--bbsc-line);
      color: var(--bbsc-muted); font-size: .76rem; line-height: 1.45;
    }
    .bbsc-sidebar-foot strong { color: var(--bbsc-ink); display: block; margin-bottom: 3px; }

    .bbsc-main { flex: 1; min-width: 0; position: relative; }

    /* === Top bar === */
    .bbsc-top {
      height: var(--bbsc-topbar);
      position: sticky; top: 0; z-index: 40;
      display: flex; align-items: center; gap: 18px;
      padding: 12px clamp(18px, 4vw, 42px);
      background: rgba(254, 253, 248, .82);
      backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(37,99,235,.10);
    }
    .bbsc-top-logo { display: none; align-items: center; gap: 10px; font-weight: 800; }
    .bbsc-top-logo .bbsc-mark { width: 34px; height: 34px; border-radius: 11px; flex-basis: 34px; font-size: 1rem; }

    .bbsc-compact-chat {
      flex: 1; display: flex; align-items: center; justify-content: flex-end; gap: 10px;
      opacity: 0; transform: translateY(-8px); pointer-events: none;
      transition: opacity .24s ease, transform .24s ease;
    }
    .bbsc-compact-chat.is-visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .bbsc-compact-chat input {
      width: min(560px, 100%); min-width: 200px; height: 42px;
      border-radius: 999px; border: 1px solid rgba(37,99,235,.18);
      background: rgba(255,255,255,.85); padding: 0 16px; outline: none;
      box-shadow: 0 8px 24px rgba(37,99,235,.08); color: var(--bbsc-ink);
    }
    .bbsc-compact-chat input:focus { border-color: rgba(37,99,235,.45); box-shadow: 0 0 0 4px rgba(37,99,235,.10); }

    .bbsc-pill-btn, .bbsc-top-link, .bbsc-chat-send {
      height: 42px; display: inline-flex; align-items: center; justify-content: center; gap: 7px;
      padding: 0 18px; border-radius: 999px;
      border: 1px solid rgba(37,99,235,.14); background: rgba(255,255,255,.85);
      color: var(--bbsc-navy); text-decoration: none; font-weight: 800; font-size: .88rem;
      cursor: pointer; transition: .18s ease; white-space: nowrap;
    }
    .bbsc-chat-send, .bbsc-pill-btn.primary {
      color: #fff; border-color: transparent;
      background: linear-gradient(105deg, var(--bbsc-blue), var(--bbsc-cyan));
      box-shadow: 0 14px 30px rgba(8,145,178,.26);
    }
    .bbsc-pill-btn.ghost { background: rgba(255,255,255,.14); color: #fff; border-color: rgba(255,255,255,.34); }
    .bbsc-pill-btn:hover, .bbsc-top-link:hover, .bbsc-chat-send:hover { transform: translateY(-1px); filter: brightness(1.03); }
    .bbsc-top-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }

    .bbsc-content { padding: 0 clamp(18px, 4vw, 48px) 58px; }
    .bbsc-section { scroll-margin-top: 96px; }

    /* === Hero === */
    .bbsc-hero { position: relative; min-height: calc(100vh - var(--bbsc-topbar)); display: grid; align-items: center; padding: clamp(28px, 5vw, 64px) 0; overflow: hidden; }
    .bbsc-blob { position: absolute; width: 42vw; height: 42vw; border-radius: 62% 38% 72% 28% / 44% 56% 44% 56%; filter: blur(64px); z-index: 0; animation: bbsc-float 13s infinite ease-in-out; }
    .bbsc-blob-a { top: -6%; left: -8%; background: radial-gradient(circle, rgba(37,99,235,.20), rgba(6,182,212,.10) 70%); }
    .bbsc-blob-b { bottom: -10%; right: -6%; width: 48vw; height: 48vw; background: radial-gradient(circle, rgba(245,158,11,.16), rgba(225,29,72,.06) 70%); animation-delay: -5s; }
    @keyframes bbsc-float { 0%,100% { transform: translate(0,0) rotate(0deg); } 50% { transform: translate(3%, 4%) rotate(2deg); } }

    .bbsc-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(28px, 5vw, 60px); align-items: center; max-width: 1240px; margin: 0 auto; width: 100%; }

    .bbsc-kicker {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 7px 15px; border-radius: 999px;
      background: linear-gradient(105deg, rgba(37,99,235,.12), rgba(6,182,212,.14));
      color: var(--bbsc-blue); font-weight: 800; font-size: .82rem; letter-spacing: .01em;
      margin-bottom: 20px;
    }
    .bbsc-kicker i { font-style: normal; }
    .bbsc-kicker.amber { background: rgba(245,158,11,.16); color: #b45309; }
    .bbsc-kicker.cyan { background: rgba(6,182,212,.16); color: #0e7490; }
    .bbsc-kicker.rose { background: rgba(225,29,72,.14); color: #be123c; }
    .bbsc-kicker.indigo { background: rgba(79,70,229,.14); color: #4338ca; }
    .bbsc-kicker.on-dark { background: rgba(255,255,255,.14); color: #dbeafe; }

    h1 { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-weight: 800; letter-spacing: -.02em; font-size: clamp(2.4rem, 5vw, 4.3rem); line-height: 1.04; color: var(--bbsc-navy); }
    .bbsc-grad { background: linear-gradient(105deg, var(--bbsc-blue), var(--bbsc-cyan-2) 45%, var(--bbsc-amber-2)); -webkit-background-clip: text; background-clip: text; color: transparent; }

    .bbsc-lede { color: #44566f; font-size: clamp(1.02rem, 1.4vw, 1.2rem); line-height: 1.6; margin: 22px 0 0; max-width: 36ch; }

    .bbsc-hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
    .bbsc-hero-actions.bbsc-center { justify-content: center; }
    .bbsc-hero-actions .bbsc-pill-btn { height: 50px; padding: 0 24px; font-size: .96rem; }

    .bbsc-trust-row { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 34px; color: var(--bbsc-muted); font-size: .9rem; font-weight: 600; }
    .bbsc-trust-row span { display: inline-flex; align-items: center; gap: 8px; }
    .bbsc-tick { font-style: normal; width: 22px; height: 22px; border-radius: 7px; display: grid; place-items: center; font-size: .72rem; background: #e8f1ff; color: var(--bbsc-blue); }
    .bbsc-tick.green { background: #e3f7ec; color: var(--bbsc-green); }
    .bbsc-tick.cyan { background: #e0f7fb; color: var(--bbsc-cyan); }
    .bbsc-tick.amber { background: #fdf0db; color: var(--bbsc-amber); }

    /* === Command / preview card === */
    .bbsc-command-card { background: var(--bbsc-panel); backdrop-filter: blur(10px); border: 1px solid rgba(37,99,235,.12); border-radius: var(--bbsc-radius-lg); padding: 18px; box-shadow: var(--bbsc-shadow); }
    .bbsc-score-card { display: grid; gap: 14px; }
    .bbsc-card-head { display: flex; align-items: center; justify-content: space-between; }
    .bbsc-mini-muted { color: #94a3b8; font-size: .76rem; font-weight: 600; }
    .bbsc-queue { display: grid; gap: 9px; }
    .bbsc-queue-item { display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 14px; background: #f7faff; border: 1px solid rgba(15,23,42,.05); }
    .bbsc-q-ico { width: 28px; height: 28px; flex: 0 0 28px; border-radius: 9px; display: grid; place-items: center; font-size: .82rem; background: #e8f1ff; color: var(--bbsc-blue); }
    .bbsc-q-ico.amber { background: #fdf0db; color: var(--bbsc-amber); }
    .bbsc-q-ico.rose { background: #fde4ea; color: var(--bbsc-rose); }
    .bbsc-q-name { flex: 1; font-weight: 700; font-size: .9rem; color: #28415e; }
    .bbsc-q-meta { flex: 1; display: grid; }
    .bbsc-q-meta strong { font-size: .9rem; color: #28415e; }
    .bbsc-q-meta span { font-size: .76rem; color: var(--bbsc-muted); }
    .bbsc-card-foot { text-align: center; font-size: .78rem; color: var(--bbsc-muted); border-top: 1px dashed var(--bbsc-line); padding-top: 12px; }

    /* === Status pills === */
    .bbsc-status { display: inline-flex; align-items: center; gap: 6px; padding: 4px 11px; border-radius: 999px; font-size: .72rem; font-weight: 800; background: #eef2f7; color: #51637a; white-space: nowrap; }
    .bbsc-status.blue { background: #e6efff; color: var(--bbsc-blue); }
    .bbsc-status.green { background: #e3f7ec; color: #15803d; }
    .bbsc-status.warn { background: #fdf0db; color: #b45309; }

    /* === Bands / sections === */
    .bbsc-band { max-width: 1240px; margin: 0 auto; padding: clamp(40px, 6vw, 84px) clamp(20px, 4vw, 56px); border-radius: var(--bbsc-radius-lg); }
    .bbsc-band.soft { background: rgba(255,255,255,.66); border: 1px solid var(--bbsc-line); box-shadow: var(--bbsc-shadow-soft); }
    .bbsc-band.bbsc-tinted { background: linear-gradient(120deg, rgba(37,99,235,.07), rgba(6,182,212,.07) 55%, rgba(245,158,11,.06)); border: 1px solid rgba(37,99,235,.10); }
    .bbsc-band.dark { background: linear-gradient(135deg, #0b2342, #103a63 60%, #0e7490); color: #eaf2ff; }

    .bbsc-section-head { max-width: 760px; margin-bottom: 8px; }
    .bbsc-section-head h2 { margin: 6px 0 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(1.8rem, 3.4vw, 2.9rem); letter-spacing: -.02em; color: var(--bbsc-navy); }
    .bbsc-band.dark .bbsc-section-head h2, .bbsc-band.dark h2 { color: #fff; }
    .bbsc-section-copy { color: #4a5c73; font-size: 1.04rem; line-height: 1.62; margin-top: 14px; }
    .bbsc-band.dark .bbsc-section-copy { color: #cfe0f5; }

    /* === Cards grid === */
    .bbsc-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 30px; }
    .bbsc-cards-2 { grid-template-columns: repeat(2, 1fr); }
    .bbsc-cards-3 { grid-template-columns: repeat(3, 1fr); }
    .bbsc-card {
      background: #fff; border: 1px solid var(--bbsc-line); border-radius: var(--bbsc-radius-md);
      padding: 22px; box-shadow: 0 8px 22px rgba(30,64,124,.05);
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .bbsc-card:hover { transform: translateY(-4px); box-shadow: 0 22px 40px -16px rgba(30,64,124,.20); }
    .bbsc-card h3 { margin: 14px 0 6px; font-size: 1.12rem; color: var(--bbsc-navy); }
    .bbsc-card p { margin: 0; color: var(--bbsc-muted); font-size: .92rem; line-height: 1.55; }

    .bbsc-card.border-blue { border-left: 4px solid var(--bbsc-blue); }
    .bbsc-card.border-cyan { border-left: 4px solid var(--bbsc-cyan-2); }
    .bbsc-card.border-amber { border-left: 4px solid var(--bbsc-amber-2); }
    .bbsc-card.border-rose { border-left: 4px solid var(--bbsc-rose); }
    .bbsc-card.border-green { border-left: 4px solid var(--bbsc-green-2); }
    .bbsc-card.border-purple { border-left: 4px solid var(--bbsc-purple); }
    .bbsc-card.border-indigo { border-left: 4px solid var(--bbsc-indigo); }
    .bbsc-card.top-blue { border-top: 4px solid var(--bbsc-blue); }
    .bbsc-card.top-cyan { border-top: 4px solid var(--bbsc-cyan-2); }
    .bbsc-card.top-amber { border-top: 4px solid var(--bbsc-amber-2); }
    .bbsc-card.top-rose { border-top: 4px solid var(--bbsc-rose); }
    .bbsc-card.top-green { border-top: 4px solid var(--bbsc-green-2); }
    .bbsc-card.top-purple { border-top: 4px solid var(--bbsc-purple); }

    .bbsc-icon { width: 44px; height: 44px; border-radius: 13px; display: grid; place-items: center; font-size: 1.2rem; font-style: normal; background: #e8f1ff; color: var(--bbsc-blue); }
    .bbsc-icon.blue { background: #e8f1ff; color: var(--bbsc-blue); }
    .bbsc-icon.cyan { background: #e0f7fb; color: var(--bbsc-cyan); }
    .bbsc-icon.amber { background: #fdf0db; color: var(--bbsc-amber); }
    .bbsc-icon.rose { background: #fde4ea; color: var(--bbsc-rose); }
    .bbsc-icon.green { background: #e3f7ec; color: var(--bbsc-green); }
    .bbsc-icon.purple { background: #efe7fd; color: var(--bbsc-purple); }
    .bbsc-icon.indigo { background: #e7e6fd; color: var(--bbsc-indigo); }

    .bbsc-mod-head { display: flex; align-items: center; gap: 12px; }
    .bbsc-mod-head .bbsc-icon { width: 38px; height: 38px; font-size: 1rem; }
    .bbsc-mod-head strong { font-size: 1.06rem; color: var(--bbsc-navy); }
    .bbsc-card .bbsc-mod-head + p { margin-top: 10px; }

    /* === Pipeline tiles === */
    .bbsc-pipeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-top: 28px; }
    .bbsc-pipe { display: grid; gap: 4px; text-align: center; padding: 18px 12px; border-radius: 16px; background: rgba(255,255,255,.7); border: 1px solid var(--bbsc-line); }
    .bbsc-pipe i { font-style: normal; font-size: 1.3rem; }
    .bbsc-pipe strong { font-size: .98rem; color: var(--bbsc-navy); }
    .bbsc-pipe span { font-size: .76rem; color: var(--bbsc-muted); }
    .bbsc-pipe.blue { box-shadow: inset 0 -3px 0 var(--bbsc-blue); }
    .bbsc-pipe.rose { box-shadow: inset 0 -3px 0 var(--bbsc-rose); }
    .bbsc-pipe.amber { box-shadow: inset 0 -3px 0 var(--bbsc-amber-2); }
    .bbsc-pipe.green { box-shadow: inset 0 -3px 0 var(--bbsc-green-2); }

    /* === Flow steps === */
    .bbsc-flow { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 28px; }
    .bbsc-flow-step { display: flex; gap: 14px; align-items: flex-start; background: #fff; border: 1px solid var(--bbsc-line); border-left-width: 4px; border-radius: 16px; padding: 16px 18px; box-shadow: 0 6px 18px rgba(30,64,124,.05); }
    .bbsc-step-no { width: 30px; height: 30px; flex: 0 0 30px; border-radius: 9px; display: grid; place-items: center; font-weight: 800; font-family: "Space Grotesk", sans-serif; background: linear-gradient(135deg, var(--bbsc-blue), var(--bbsc-cyan)); color: #fff; }
    .bbsc-flow-step strong { color: var(--bbsc-navy); }
    .bbsc-flow-step p { margin: 4px 0 0; color: var(--bbsc-muted); font-size: .9rem; line-height: 1.5; }
    .border-blue { border-left-color: var(--bbsc-blue); }
    .border-cyan { border-left-color: var(--bbsc-cyan-2); }
    .border-amber { border-left-color: var(--bbsc-amber-2); }
    .border-rose { border-left-color: var(--bbsc-rose); }
    .border-green { border-left-color: var(--bbsc-green-2); }
    .border-indigo { border-left-color: var(--bbsc-indigo); }
    .border-purple { border-left-color: var(--bbsc-purple); }

    /* === Meeting ladder === */
    .bbsc-ladder { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 28px; }
    .bbsc-rung { display: flex; flex-direction: column; gap: 3px; background: #fff; border: 1px solid var(--bbsc-line); border-left-width: 4px; border-radius: 14px; padding: 14px 16px; }
    .bbsc-rung b { font-family: "Space Grotesk", monospace; font-size: .98rem; color: var(--bbsc-navy); }
    .bbsc-rung span { font-size: .88rem; color: var(--bbsc-muted); }
    .bbsc-rung-wide { grid-column: 1 / -1; }

    /* === Mini console === */
    .bbsc-mini-console { margin-top: 26px; background: #fff; border: 1px solid var(--bbsc-line); border-radius: var(--bbsc-radius-md); overflow: hidden; box-shadow: var(--bbsc-shadow-soft); }
    .bbsc-console-head { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; border-bottom: 1px solid var(--bbsc-line); background: linear-gradient(105deg, rgba(37,99,235,.06), rgba(6,182,212,.06)); }
    .bbsc-console-head strong { color: var(--bbsc-navy); }
    .bbsc-console-body { padding: 16px 18px; display: grid; gap: 10px; }
    .bbsc-console-row { display: flex; align-items: center; gap: 12px; padding: 11px 12px; border-radius: 12px; background: #f7faff; border: 1px solid rgba(15,23,42,.05); }

    /* === MVP === */
    .bbsc-mvp-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; }
    .bbsc-mvp-head h2 { margin: 0; font-family: "Space Grotesk", Inter, sans-serif; font-size: clamp(1.6rem, 3vw, 2.3rem); color: var(--bbsc-navy); }

    /* === Why / different === */
    .bbsc-cta { max-width: 880px; margin: 0 auto; text-align: center; }
    .bbsc-cta h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
    .bbsc-why { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin: 30px 0; text-align: left; }
    .bbsc-why-item { display: flex; gap: 12px; align-items: flex-start; }
    .bbsc-why-item strong { color: #fff; display: block; }
    .bbsc-why-item p { margin: 4px 0 0; color: #c4d7ef; font-size: .9rem; line-height: 1.5; }
    .bbsc-quote { margin: 0 0 26px; padding: 22px 26px; border-radius: var(--bbsc-radius-md); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14); font-style: italic; font-size: 1.05rem; line-height: 1.6; color: #eaf2ff; }

    /* === Chat zone === */
    .bbsc-chat-zone { max-width: 1000px; margin: 0 auto; padding: clamp(26px, 4vw, 46px); background: linear-gradient(135deg, rgba(37,99,235,.06), rgba(6,182,212,.07)); border: 1px solid rgba(37,99,235,.14); border-radius: var(--bbsc-radius-lg); box-shadow: var(--bbsc-shadow-soft); }
    .bbsc-chat-zone-label { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 14px; }
    .bbsc-chat-zone-label span:first-child { font-family: "Space Grotesk", sans-serif; font-weight: 700; color: var(--bbsc-navy); font-size: 1.1rem; }
    .bbsc-chat-zone-label span:last-child { color: var(--bbsc-muted); font-size: .82rem; }
    .bbsc-chat-box { display: grid; grid-template-columns: 1fr auto; gap: 12px; background: #fff; border: 1px solid rgba(37,99,235,.16); border-radius: var(--bbsc-radius-md); padding: 14px; box-shadow: 0 10px 30px rgba(37,99,235,.08); }
    .bbsc-chat-box textarea { resize: none; min-height: 58px; border: 0; outline: none; padding: 8px 10px; color: var(--bbsc-ink); background: transparent; font-size: 1rem; }
    .bbsc-chat-box .bbsc-chat-send { align-self: end; height: 46px; }
    .bbsc-chat-tips { margin-top: 16px; }
    .bbsc-chat-tips button { border: 1px solid rgba(37,99,235,.18); background: rgba(255,255,255,.8); color: var(--bbsc-blue); border-radius: 999px; padding: 8px 15px; font-size: .82rem; font-weight: 700; cursor: pointer; transition: .16s ease; }
    .bbsc-chat-tips button:hover { background: rgba(37,99,235,.10); transform: translateY(-1px); }

    /* === Answer overlay === */
    .bbsc-answer-overlay { position: fixed; inset: 0; z-index: 80; display: none; align-items: center; justify-content: center; padding: 22px; background: rgba(12, 30, 56, .42); backdrop-filter: blur(6px); }
    .bbsc-answer-overlay.is-open { display: flex; }
    .bbsc-answer-card { width: min(620px, 100%); background: #fff; border-radius: var(--bbsc-radius-lg); overflow: hidden; box-shadow: var(--bbsc-shadow); }
    .bbsc-answer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--bbsc-line); background: linear-gradient(105deg, rgba(37,99,235,.07), rgba(6,182,212,.07)); }
    .bbsc-answer-head strong { font-family: "Space Grotesk", Inter, sans-serif; color: var(--bbsc-navy); font-size: 1.12rem; }
    .bbsc-answer-close { width: 34px; height: 34px; border-radius: 10px; border: 1px solid var(--bbsc-line); background: #fff; cursor: pointer; font-size: 1.1rem; color: var(--bbsc-muted); }
    .bbsc-answer-body { padding: 22px; color: #3b526f; line-height: 1.7; max-height: 64vh; overflow: auto; }
    .bbsc-answer-body strong { color: var(--bbsc-navy); }
    .bbsc-answer-body p { margin: 0 0 14px; }

    /* === Footer === */
    .bbsc-footer { max-width: 1240px; margin: 30px auto 0; padding: 30px clamp(20px, 4vw, 56px); display: flex; flex-wrap: wrap; gap: 14px; justify-content: space-between; align-items: center; border-top: 1px solid var(--bbsc-line); color: var(--bbsc-muted); font-size: .88rem; }
    .bbsc-footer strong { color: var(--bbsc-ink); }
    .bbsc-footer a { text-decoration: none; font-weight: 600; }
    .bbsc-footer a:hover { color: var(--bbsc-blue); }
    .bbsc-foot-copy { width: 100%; color: #9aa7b6; font-size: .8rem; }

    /* === Sub-page shell === */
    .bbsc-page-shell { max-width: 1100px; margin: 0 auto clamp(28px, 5vw, 58px); }
    .bbsc-page-hero { margin-bottom: clamp(20px, 4vw, 34px); }
    .bbsc-page-hero h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
    .bbsc-wp-content { background: rgba(255,255,255,.78); border: 1px solid var(--bbsc-line); border-radius: var(--bbsc-radius-lg); box-shadow: var(--bbsc-shadow-soft); padding: clamp(24px, 4vw, 48px); }

    /* === Image placeholder === */
    .bbsc-image-placeholder { min-height: 240px; border-radius: var(--bbsc-radius-md); border: 1px dashed rgba(37,99,235,.3); background: linear-gradient(135deg, rgba(37,99,235,.05), rgba(6,182,212,.05)); display: flex; align-items: flex-end; padding: 18px; }
    .bbsc-image-caption { color: var(--bbsc-muted); font-size: .82rem; }
    .bbsc-image-caption strong { display: block; color: var(--bbsc-navy); }

    /* === Responsive === */
    @media (max-width: 980px) {
      .bbsc-hero-grid { grid-template-columns: 1fr; }
      .bbsc-cards, .bbsc-cards-3 { grid-template-columns: repeat(2, 1fr); }
      .bbsc-pipeline { grid-template-columns: repeat(2, 1fr); }
      .bbsc-why { grid-template-columns: 1fr; }
    }
    @media (max-width: 840px) {
      :root { --bbsc-sidebar: 260px; --bbsc-topbar: auto; }
      .bbsc-app { display: block; }
      .bbsc-sidebar { position: fixed; inset: 0 auto 0 0; transform: translateX(-100%); width: 292px; }
      .bbsc-sidebar.is-open { transform: translateX(0); }
      .bbsc-sidebar.is-collapsed { width: 292px; }
      .bbsc-sidebar.is-collapsed .bbsc-brand-copy,
      .bbsc-sidebar.is-collapsed .bbsc-nav span,
      .bbsc-sidebar.is-collapsed .bbsc-sidebar-foot { display: block; }
      .bbsc-sidebar.is-collapsed .bbsc-nav a { justify-content: flex-start; }
      .bbsc-top { min-height: 74px; flex-wrap: wrap; align-items: center; padding: 12px 16px; }
      .bbsc-top-logo { display: flex; }
      .bbsc-mobile-menu { display: inline-flex !important; }
      .bbsc-compact-chat { flex-basis: 100%; order: 3; justify-content: stretch; }
      .bbsc-compact-chat input { width: 100%; min-width: 0; }
      .bbsc-content { padding-inline: 16px; }
      .bbsc-hero { min-height: auto; padding-top: 32px; }
      .bbsc-chat-box { grid-template-columns: 1fr; }
      .bbsc-chat-box .bbsc-chat-send { justify-self: start; }
      .bbsc-footer { flex-direction: column; align-items: flex-start; }
    }
    @media (max-width: 620px) {
      .bbsc-cards, .bbsc-cards-2, .bbsc-cards-3, .bbsc-flow, .bbsc-ladder, .bbsc-pipeline { grid-template-columns: 1fr; }
      .bbsc-rung-wide { grid-column: auto; }
    }
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after { transition: none !important; scroll-behavior: auto !important; animation: none !important; }
    }

    /* === WordPress integration === */
    body.bbsc-wp-theme { overflow-x: clip; }
    body.admin-bar .bbsc-sidebar,
    body.admin-bar .bbsc-top { top: 32px; }
    @media (max-width: 782px) {
      body.admin-bar .bbsc-sidebar,
      body.admin-bar .bbsc-top { top: 46px; }
    }
    .bbsc-sub-page .bbsc-top { position: sticky; top: 0; }
    .bbsc-sub-page .bbsc-compact-chat { opacity: 1; transform: translateY(0); pointer-events: auto; }
    .bbsc-sub-page .bbsc-content { padding-top: clamp(22px, 4vw, 44px); }
    .screen-reader-text { border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%); height: 1px; margin: -1px; overflow: hidden; padding: 0; position: absolute; width: 1px; }

    /* Block editor preview: neutralize sticky/100vh so the canvas renders naturally. */
    .editor-styles-wrapper .bbsc-app,
    .editor-styles-wrapper .bbsc-main,
    .editor-styles-wrapper .bbsc-content { min-height: auto; }
    .editor-styles-wrapper .bbsc-sidebar,
    .editor-styles-wrapper .bbsc-top,
    .editor-styles-wrapper .bbsc-answer-overlay { position: static; }

    /* === BridgeBrain SC visual identity override (safe visual pass, v1.1.0) === */
    :root {
      --bbsc-bg: #fff7ed;
      --bbsc-bg-2: #ffedd5;
      --bbsc-panel: rgba(255,255,255,.90);
      --bbsc-ink: #0b0f17;
      --bbsc-muted: #64748b;
      --bbsc-line: rgba(15, 23, 42, .11);
      --bbsc-blue: #2563eb;
      --bbsc-blue-2: #1d4ed8;
      --bbsc-cyan: #0ea5e9;
      --bbsc-cyan-2: #38bdf8;
      --bbsc-teal: #facc15;
      --bbsc-amber: #ea580c;
      --bbsc-amber-2: #f97316;
      --bbsc-rose: #ef4444;
      --bbsc-green: #16a34a;
      --bbsc-green-2: #22c55e;
      --bbsc-purple: #8b5cf6;
      --bbsc-indigo: #4f46e5;
      --bbsc-navy: #111827;
      --bbsc-black: #0b0f17;
      --bbsc-charcoal: #111827;
      --bbsc-yellow: #facc15;
      --bbsc-shadow: 0 30px 90px rgba(11, 15, 23, .20);
      --bbsc-shadow-soft: 0 18px 50px rgba(249, 115, 22, .14);
    }

    body {
      background:
        radial-gradient(circle at 6% 0%, rgba(249,115,22,.24), transparent 30%),
        radial-gradient(circle at 94% 4%, rgba(37,99,235,.20), transparent 28%),
        radial-gradient(circle at 72% 92%, rgba(250,204,21,.24), transparent 32%),
        linear-gradient(180deg, #fff7ed 0%, #fffaf3 42%, #ffffff 100%);
    }

    .bbsc-sidebar {
      background:
        radial-gradient(circle at 18% 0%, rgba(249,115,22,.18), transparent 32%),
        radial-gradient(circle at 110% 18%, rgba(37,99,235,.18), transparent 32%),
        linear-gradient(180deg, #0b0f17 0%, #111827 100%);
      border-right-color: rgba(250,204,21,.18);
      box-shadow: 18px 0 46px rgba(11,15,23,.26);
    }

    .bbsc-sidebar-head,
    .bbsc-sidebar-foot {
      border-color: rgba(255,255,255,.10);
    }

    .bbsc-mark {
      color: #0b0f17;
      font-size: .9rem;
      letter-spacing: -.04em;
      background: linear-gradient(135deg, var(--bbsc-yellow) 0%, var(--bbsc-amber-2) 45%, var(--bbsc-blue) 100%);
      border: 1px solid rgba(255,255,255,.20);
      box-shadow: 0 16px 34px rgba(249,115,22,.32), inset 0 1px 0 rgba(255,255,255,.38);
    }

    .bbsc-brand-copy strong,
    .bbsc-sidebar-foot strong {
      color: #fff7ed;
    }

    .bbsc-brand-copy span {
      color: var(--bbsc-yellow);
    }

    .bbsc-sidebar-foot {
      color: rgba(255,247,237,.68);
    }

    .bbsc-collapse {
      background: rgba(255,255,255,.08);
      border-color: rgba(255,255,255,.16);
      color: var(--bbsc-yellow);
    }

    .bbsc-nav a {
      color: rgba(255,247,237,.78);
      border-color: transparent;
    }

    .bbsc-nav a:hover,
    .bbsc-nav a.is-active {
      background: linear-gradient(135deg, rgba(249,115,22,.20), rgba(37,99,235,.15));
      border-color: rgba(250,204,21,.20);
      color: #ffffff;
      transform: translateX(3px);
    }

    .bbsc-nav i {
      background: rgba(255,255,255,.10);
      color: var(--bbsc-yellow);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,.08);
    }

    .bbsc-top {
      background: rgba(255,247,237,.86);
      border-bottom-color: rgba(249,115,22,.18);
      box-shadow: 0 10px 36px rgba(11,15,23,.06);
    }

    .bbsc-top-logo {
      color: var(--bbsc-black);
      text-decoration: none;
    }

    .bbsc-compact-chat input,
    .bbsc-chat-box {
      border-color: rgba(249,115,22,.22);
      box-shadow: 0 12px 34px rgba(249,115,22,.10);
    }

    .bbsc-compact-chat input:focus,
    .bbsc-chat-box:focus-within {
      border-color: rgba(249,115,22,.50);
      box-shadow: 0 0 0 4px rgba(249,115,22,.11), 0 12px 34px rgba(249,115,22,.12);
    }

    .bbsc-pill-btn,
    .bbsc-top-link,
    .bbsc-chat-send {
      border-color: rgba(17,24,39,.12);
      color: var(--bbsc-black);
    }

    .bbsc-chat-send,
    .bbsc-pill-btn.primary {
      color: #0b0f17;
      background: linear-gradient(105deg, var(--bbsc-yellow), var(--bbsc-amber-2) 55%, #fb923c);
      box-shadow: 0 16px 34px rgba(249,115,22,.30);
    }

    .bbsc-pill-btn:not(.primary):not(.ghost):hover,
    .bbsc-top-link:hover {
      border-color: rgba(37,99,235,.28);
      color: var(--bbsc-blue);
    }

    .bbsc-chat-send:disabled,
    .bbsc-chat-disabled,
    .bbsc-chat-tips button:disabled {
      cursor: not-allowed;
      opacity: .72;
      filter: saturate(.85);
      transform: none !important;
    }

    .bbsc-blob-a {
      background: radial-gradient(circle, rgba(37,99,235,.24), rgba(56,189,248,.08) 70%);
    }

    .bbsc-blob-b {
      background: radial-gradient(circle, rgba(249,115,22,.26), rgba(250,204,21,.12) 70%);
    }

    .bbsc-kicker {
      background: linear-gradient(105deg, rgba(249,115,22,.14), rgba(37,99,235,.11));
      color: #c2410c;
      border: 1px solid rgba(249,115,22,.16);
    }

    .bbsc-kicker.amber {
      background: rgba(249,115,22,.15);
      color: #c2410c;
    }

    .bbsc-kicker.cyan {
      background: rgba(37,99,235,.12);
      color: #1d4ed8;
    }

    .bbsc-kicker.rose {
      background: rgba(250,204,21,.22);
      color: #92400e;
    }

    .bbsc-kicker.indigo {
      background: rgba(17,24,39,.08);
      color: #111827;
    }

    .bbsc-kicker.on-dark {
      background: rgba(255,255,255,.10);
      color: var(--bbsc-yellow);
      border-color: rgba(255,255,255,.16);
    }

    .bbsc-grad {
      background: linear-gradient(105deg, var(--bbsc-amber-2), var(--bbsc-yellow) 42%, var(--bbsc-blue) 86%);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .bbsc-lede,
    .bbsc-section-copy {
      color: #475569;
    }

    .bbsc-command-card {
      background:
        radial-gradient(circle at 0% 0%, rgba(249,115,22,.24), transparent 34%),
        radial-gradient(circle at 110% 0%, rgba(37,99,235,.26), transparent 34%),
        linear-gradient(145deg, #0b0f17, #111827 72%, #172033);
      border-color: rgba(250,204,21,.20);
      box-shadow: 0 32px 90px rgba(11,15,23,.30);
    }

    .bbsc-score-card {
      color: #fff7ed;
    }

    .bbsc-command-card .bbsc-mini-muted,
    .bbsc-command-card .bbsc-card-foot {
      color: rgba(255,247,237,.66);
    }

    .bbsc-command-card .bbsc-queue-item {
      background: rgba(255,255,255,.075);
      border-color: rgba(255,255,255,.10);
    }

    .bbsc-command-card .bbsc-q-name {
      color: #fff7ed;
    }

    .bbsc-q-ico,
    .bbsc-icon.blue {
      background: rgba(37,99,235,.12);
      color: var(--bbsc-blue);
    }

    .bbsc-q-ico.amber,
    .bbsc-icon.amber {
      background: rgba(249,115,22,.14);
      color: var(--bbsc-amber-2);
    }

    .bbsc-q-ico.rose,
    .bbsc-icon.rose {
      background: rgba(250,204,21,.22);
      color: #b45309;
    }

    .bbsc-status.blue {
      background: rgba(37,99,235,.13);
      color: var(--bbsc-blue);
    }

    .bbsc-status.warn {
      background: rgba(249,115,22,.15);
      color: #c2410c;
    }

    .bbsc-band.soft,
    .bbsc-wp-content {
      background: rgba(255,255,255,.82);
      border-color: rgba(17,24,39,.10);
      box-shadow: 0 18px 50px rgba(11,15,23,.08);
    }

    .bbsc-band.bbsc-tinted {
      background: linear-gradient(120deg, rgba(249,115,22,.10), rgba(37,99,235,.08) 56%, rgba(250,204,21,.12));
      border-color: rgba(249,115,22,.16);
    }

    .bbsc-band.dark {
      background:
        radial-gradient(circle at 12% 0%, rgba(249,115,22,.22), transparent 34%),
        radial-gradient(circle at 90% 12%, rgba(37,99,235,.22), transparent 34%),
        linear-gradient(135deg, #0b0f17, #111827 58%, #172033);
      color: #fff7ed;
      border: 1px solid rgba(250,204,21,.16);
      box-shadow: 0 34px 90px rgba(11,15,23,.22);
    }

    .bbsc-band.dark .bbsc-section-copy,
    .bbsc-why-item p {
      color: rgba(255,247,237,.72);
    }

    .bbsc-card,
    .bbsc-flow-step,
    .bbsc-rung,
    .bbsc-mini-console {
      border-color: rgba(17,24,39,.10);
      box-shadow: 0 12px 28px rgba(11,15,23,.06);
    }

    .bbsc-card:hover {
      box-shadow: 0 28px 56px -20px rgba(249,115,22,.32);
    }

    .bbsc-console-head,
    .bbsc-answer-head {
      background: linear-gradient(105deg, rgba(249,115,22,.08), rgba(37,99,235,.07));
    }

    .bbsc-console-row,
    .bbsc-queue-item {
      background: #fffaf3;
    }

    .bbsc-step-no {
      background: linear-gradient(135deg, var(--bbsc-amber-2), var(--bbsc-blue));
    }

    .bbsc-chat-zone {
      background:
        radial-gradient(circle at 0% 0%, rgba(249,115,22,.18), transparent 36%),
        radial-gradient(circle at 100% 0%, rgba(37,99,235,.16), transparent 36%),
        linear-gradient(135deg, #111827, #172033);
      border-color: rgba(250,204,21,.18);
      box-shadow: 0 26px 70px rgba(11,15,23,.18);
    }

    .bbsc-chat-zone-label span:first-child {
      color: #fff7ed;
    }

    .bbsc-chat-zone-label span:last-child {
      color: rgba(255,247,237,.66);
    }

    .bbsc-chat-tips button {
      border-color: rgba(255,247,237,.18);
      background: rgba(255,255,255,.08);
      color: #fff7ed;
    }

    .bbsc-chat-tips button:hover {
      background: rgba(249,115,22,.20);
    }

    .bbsc-answer-overlay {
      background: rgba(11,15,23,.62);
    }

    .bbsc-answer-body {
      color: #334155;
    }

    .bbsc-footer {
      border-top-color: rgba(249,115,22,.16);
    }

    .bbsc-footer a:hover {
      color: var(--bbsc-amber-2);
    }

    .bbsc-image-placeholder {
      border-color: rgba(249,115,22,.34);
      background: linear-gradient(135deg, rgba(249,115,22,.07), rgba(37,99,235,.06));
    }


/* === BridgeBrain SC final suite identity overrides === */
:root {
  --bbsc-bg: #07090f;
  --bbsc-bg-2: #0d111a;
  --bbsc-panel: rgba(15, 19, 30, .82);
  --bbsc-ink: #f8fafc;
  --bbsc-muted: #a6b0c3;
  --bbsc-line: rgba(212, 175, 55, .18);
  --bbsc-blue: #38bdf8;
  --bbsc-blue-2: #60a5fa;
  --bbsc-cyan: #7dd3fc;
  --bbsc-cyan-2: #38bdf8;
  --bbsc-teal: #14b8a6;
  --bbsc-amber: #d4af37;
  --bbsc-amber-2: #f6c453;
  --bbsc-rose: #fb7185;
  --bbsc-green: #22c55e;
  --bbsc-green-2: #86efac;
  --bbsc-purple: #a78bfa;
  --bbsc-indigo: #818cf8;
  --bbsc-navy: #f8fafc;
  --bbsc-shadow: 0 32px 90px rgba(0,0,0,.42);
  --bbsc-shadow-soft: 0 16px 46px rgba(0,0,0,.28);
}

body, body.bbsc-wp-theme {
  color: var(--bbsc-ink);
  background:
    radial-gradient(circle at 18% -8%, rgba(212,175,55,.22), transparent 30%),
    radial-gradient(circle at 84% 8%, rgba(56,189,248,.15), transparent 28%),
    radial-gradient(circle at 70% 96%, rgba(251,113,133,.10), transparent 32%),
    linear-gradient(135deg, #07090f 0%, #0d111a 42%, #10131c 100%);
}

.bbsc-sidebar,
.bbsc-top {
  background: rgba(7, 9, 15, .82);
  border-color: rgba(212,175,55,.18);
  box-shadow: 18px 0 46px rgba(0,0,0,.28);
}

.bbsc-top { box-shadow: 0 18px 48px rgba(0,0,0,.24); }

.bbsc-mark {
  color: #07090f;
  background: linear-gradient(135deg, #f8fafc 0%, #d4af37 42%, #f6c453 68%, #94a3b8 100%);
  box-shadow: 0 16px 34px rgba(212,175,55,.32), inset 0 1px 0 rgba(255,255,255,.65);
  text-shadow: 0 1px 0 rgba(255,255,255,.28);
}

.bbsc-brand-copy strong,
.bbsc-sidebar-foot strong,
.bbsc-top-logo,
.bbsc-section-head h2,
.bbsc-page-hero h1 {
  color: #f8fafc;
}

.bbsc-brand-copy span,
.bbsc-kicker,
.bbsc-footer a:hover { color: var(--bbsc-amber-2); }

.bbsc-sidebar-foot,
.bbsc-footer,
.bbsc-section-copy,
.bbsc-lede,
.bbsc-mini-muted { color: rgba(226,232,240,.72); }

.bbsc-collapse,
.bbsc-pill-btn,
.bbsc-top-link,
.bbsc-compact-chat input,
.bbsc-chat-box textarea {
  background: rgba(15, 19, 30, .74);
  border-color: rgba(212,175,55,.22);
  color: #f8fafc;
}

.bbsc-nav a {
  color: rgba(226,232,240,.78);
  border-color: transparent;
}

.bbsc-nav a:hover,
.bbsc-nav a.is-active {
  background: linear-gradient(135deg, rgba(212,175,55,.16), rgba(56,189,248,.10));
  border-color: rgba(212,175,55,.28);
  color: #fff;
}

.bbsc-nav i {
  background: linear-gradient(135deg, rgba(212,175,55,.22), rgba(148,163,184,.14));
  color: var(--bbsc-amber-2);
}

.bbsc-pill-btn.primary,
.bbsc-chat-send,
.bbsc-step-no {
  color: #07090f;
  background: linear-gradient(105deg, #f8fafc 0%, #d4af37 34%, #f6c453 72%, #94a3b8 100%);
  box-shadow: 0 18px 38px rgba(212,175,55,.24);
}

.bbsc-top-link:hover,
.bbsc-pill-btn:hover,
.bbsc-chat-send:hover,
.bbsc-collapse:hover { filter: brightness(1.06); box-shadow: 0 18px 38px rgba(212,175,55,.18); }

.bbsc-hero {
  color: #f8fafc;
}

.bbsc-blob-a { background: radial-gradient(circle, rgba(212,175,55,.26), rgba(212,175,55,.06) 70%); }
.bbsc-blob-b { background: radial-gradient(circle, rgba(56,189,248,.18), rgba(251,113,133,.07) 70%); }

.bbsc-kicker {
  background: linear-gradient(105deg, rgba(212,175,55,.16), rgba(148,163,184,.10));
  border: 1px solid rgba(212,175,55,.18);
}

.bbsc-kicker.cyan { background: rgba(56,189,248,.13); color: #bae6fd; }
.bbsc-kicker.rose { background: rgba(251,113,133,.13); color: #fecdd3; }
.bbsc-kicker.indigo { background: rgba(129,140,248,.13); color: #c7d2fe; }
.bbsc-kicker.on-dark { background: rgba(255,255,255,.10); color: #f8fafc; }

.bbsc-grad {
  background: linear-gradient(105deg, #f8fafc 0%, #f6c453 35%, #94a3b8 66%, #38bdf8 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.bbsc-command-card,
.bbsc-score-card,
.bbsc-chat-zone,
.bbsc-answer-panel {
  background: linear-gradient(145deg, rgba(15,19,30,.88), rgba(7,9,15,.94));
  border: 1px solid rgba(212,175,55,.22);
  box-shadow: 0 32px 90px rgba(0,0,0,.40);
  color: #f8fafc;
}

.bbsc-queue-item,
.bbsc-console-row {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  color: #f8fafc;
}

.bbsc-card-foot,
.bbsc-card-head,
.bbsc-console-head,
.bbsc-answer-head { border-color: rgba(212,175,55,.16); }

.bbsc-status.amber,
.bbsc-status.warn { background: rgba(212,175,55,.16); color: #fde68a; }
.bbsc-status.green { background: rgba(34,197,94,.14); color: #bbf7d0; }
.bbsc-status.blue { background: rgba(56,189,248,.14); color: #bae6fd; }

.bbsc-q-ico.amber,
.bbsc-icon.amber { background: rgba(212,175,55,.18); color: #fde68a; }
.bbsc-q-ico.blue,
.bbsc-icon.blue { background: rgba(56,189,248,.16); color: #bae6fd; }
.bbsc-q-ico.rose,
.bbsc-icon.rose { background: rgba(251,113,133,.16); color: #fecdd3; }
.bbsc-q-ico.green,
.bbsc-icon.green { background: rgba(34,197,94,.15); color: #bbf7d0; }

.bbsc-band,
.bbsc-band.soft,
.bbsc-wp-content,
.bbsc-card,
.bbsc-flow-step,
.bbsc-rung,
.bbsc-mini-console {
  background: rgba(15, 19, 30, .68);
  border: 1px solid rgba(212,175,55,.16);
  box-shadow: 0 22px 58px rgba(0,0,0,.25);
  color: #f8fafc;
}

.bbsc-band.dark,
.bbsc-final {
  background:
    radial-gradient(circle at 12% 0%, rgba(212,175,55,.24), transparent 34%),
    radial-gradient(circle at 90% 10%, rgba(56,189,248,.16), transparent 35%),
    linear-gradient(135deg, #05060a, #10131c 58%, #171923);
  border: 1px solid rgba(212,175,55,.22);
  color: #f8fafc;
}

.bbsc-card h3,
.bbsc-card p,
.bbsc-card strong,
.bbsc-flow-step h3,
.bbsc-rung h3,
.bbsc-wp-content,
.bbsc-answer-body { color: #f8fafc; }
.bbsc-card p,
.bbsc-flow-step p,
.bbsc-rung p,
.bbsc-band.dark .bbsc-section-copy { color: rgba(226,232,240,.72); }

.bbsc-card:hover { box-shadow: 0 28px 68px -22px rgba(212,175,55,.36); }

.bbsc-chat-zone-label span:first-child { color: #f8fafc; }
.bbsc-chat-zone-label span:last-child { color: rgba(226,232,240,.66); }
.bbsc-chat-tips button {
  border-color: rgba(212,175,55,.18);
  background: rgba(255,255,255,.06);
  color: #f8fafc;
}

.bbsc-feature-grid,
.bbsc-modules,
.bbsc-timeline,
.bbsc-final-inner {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.bbsc-feature-grid { grid-template-columns: repeat(3, 1fr); }
.bbsc-modules { grid-template-columns: repeat(4, 1fr); }
.bbsc-timeline { grid-template-columns: repeat(4, 1fr); }

.bbsc-feature-grid article,
.bbsc-modules div,
.bbsc-timeline div,
.bbsc-final-inner {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(212,175,55,.16);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 44px rgba(0,0,0,.20);
}

.bbsc-feature-grid span,
.bbsc-timeline span {
  display: inline-grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  padding: 0 10px;
  border-radius: 999px;
  color: #07090f;
  background: linear-gradient(135deg, #f8fafc, #d4af37 54%, #94a3b8);
  font-weight: 900;
  margin-bottom: 14px;
}

.bbsc-feature-grid h3,
.bbsc-modules strong,
.bbsc-timeline h3,
.bbsc-final h2 { color: #f8fafc; }
.bbsc-feature-grid p,
.bbsc-modules span,
.bbsc-timeline p,
.bbsc-final p { color: rgba(226,232,240,.72); line-height: 1.58; }

.bbsc-final { max-width: 1240px; margin: 0 auto; padding: clamp(48px, 7vw, 96px) clamp(20px, 4vw, 56px); border-radius: var(--bbsc-radius-lg); }
.bbsc-final-inner { max-width: 760px; }

.bbsc-footer { border-top-color: rgba(212,175,55,.18); }

@media (max-width: 980px) {
  .bbsc-feature-grid,
  .bbsc-modules,
  .bbsc-timeline { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .bbsc-feature-grid,
  .bbsc-modules,
  .bbsc-timeline { grid-template-columns: 1fr; }
}


/* === BridgeBrain SC front-page template rebuild (v1.0.1) === */
.bbsc-front-page .bbsc-content {
  padding-bottom: 72px;
}

.bbsc-sc-hero h1 {
  max-width: 11.6ch;
}

.bbsc-sc-hero .bbsc-lede {
  max-width: 52ch;
}

.bbsc-studio-tags {
  max-width: 760px;
}

.bbsc-studio-tags span {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(212,175,55,.13);
  color: rgba(248,250,252,.78);
}

.bbsc-hero-console .bbsc-score-card {
  gap: 18px;
}

.bbsc-console-title {
  margin: 4px 0 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(1.7rem, 2.8vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  color: #f8fafc;
}

.bbsc-console-copy {
  margin: 0;
  color: rgba(226,232,240,.72);
  line-height: 1.62;
}

.bbsc-phase-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.bbsc-phase-strip div {
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 5px;
  min-height: 126px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.035));
  border: 1px solid rgba(212,175,55,.16);
}

.bbsc-phase-strip div::after {
  content: "";
  position: absolute;
  inset: auto -20% -44% 42%;
  height: 90px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(212,175,55,.22), transparent 70%);
}

.bbsc-phase-strip b {
  width: max-content;
  padding: 4px 9px;
  border-radius: 999px;
  color: #07090f;
  background: linear-gradient(135deg, #f8fafc, #d4af37 54%, #94a3b8);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: .74rem;
  line-height: 1;
}

.bbsc-phase-strip strong {
  color: #fff;
  font-size: 1.02rem;
}

.bbsc-phase-strip span {
  color: rgba(226,232,240,.68);
  font-size: .86rem;
  line-height: 1.45;
}

.bbsc-metric-grid,
.bbsc-production-deck {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.bbsc-metric-grid {
  grid-template-columns: repeat(4, 1fr);
}

.bbsc-metric-grid div {
  min-height: 190px;
  padding: 22px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 100% 0%, rgba(212,175,55,.14), transparent 40%),
    rgba(15,19,30,.68);
  border: 1px solid rgba(212,175,55,.16);
  box-shadow: 0 18px 44px rgba(0,0,0,.18);
}

.bbsc-metric-grid strong {
  display: block;
  margin-bottom: 12px;
  color: #f8fafc;
  font-size: 1.02rem;
}

.bbsc-metric-grid span {
  color: rgba(226,232,240,.70);
  line-height: 1.56;
  font-size: .92rem;
}

.bbsc-production-deck {
  grid-template-columns: 1.2fr .9fr .9fr;
}

.bbsc-deck-card {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 26px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 10%, rgba(56,189,248,.13), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(212,175,55,.16);
  box-shadow: 0 22px 58px rgba(0,0,0,.25);
}

.bbsc-deck-card.featured {
  background:
    radial-gradient(circle at 12% 4%, rgba(212,175,55,.24), transparent 40%),
    radial-gradient(circle at 92% 0%, rgba(56,189,248,.16), transparent 38%),
    linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.045));
}

.bbsc-deck-card span {
  width: max-content;
  padding: 5px 11px;
  border-radius: 999px;
  color: #07090f;
  background: linear-gradient(135deg, #f8fafc, #d4af37 54%, #94a3b8);
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
  font-size: .78rem;
}

.bbsc-deck-card h3 {
  margin: 0;
  color: #fff;
  font-size: 1.35rem;
}

.bbsc-deck-card p {
  margin: 0;
  color: rgba(226,232,240,.70);
  line-height: 1.56;
}

.bbsc-card .bbsc-icon {
  font-family: "Space Grotesk", Inter, sans-serif;
  font-weight: 900;
}

.bbsc-final .bbsc-hero-actions {
  margin-top: 26px;
}

@media (max-width: 1100px) {
  .bbsc-metric-grid,
  .bbsc-production-deck { grid-template-columns: repeat(2, 1fr); }
  .bbsc-deck-card.featured { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .bbsc-phase-strip,
  .bbsc-metric-grid,
  .bbsc-production-deck { grid-template-columns: 1fr; }
  .bbsc-sc-hero h1 { max-width: 100%; }
}
