/* V1.5.3 updated on 2026-05-11 */
/* Shared styles for the plain HTML embed version */
:root {
    --bg: #fcfcfd;
    --text: #0f172a;
    /* slate-900 */
    --muted: #64748b;
    /* slate-500 */
    --muted2: #94a3b8;
    /* slate-400 */
    --border: #e2e8f0;
    /* slate-200 */
    --borderSoft: #f1f5f9;
    /* slate-100 */
    --card: #ffffff;
    --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
    --shadowStrong: 0 20px 45px rgba(99, 102, 241, 0.16);
    --indigo: #6366f1;
    --indigoDark: #312e81;
    --emerald: #10b981;
    --rose: #f43f5e;
    --slate900: #0f172a;
    --border: #e2e8f0;
    --insight-blue: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    text-wrap: pretty;
    font-family:
        ui-sans-serif,
        system-ui,
        -apple-system,
        Segoe UI,
        Roboto,
        Helvetica,
        Arial,
        'Apple Color Emoji',
        'Segoe UI Emoji';
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    font-family: inherit;
}

.page {
    /* min-height: 100vh;
      padding: 32px; */
}

.container {
    /* max-width: 1200px;  */
    /* ~max-w-6xl */

    /* margin: 0 auto; */
}

.header {
    /* display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      margin-bottom: 40px;
      padding-bottom: 32px; */
    border-bottom: 2px solid var(--borderSoft);
}

.titleRow {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    flex-wrap: wrap;
}



.h1 {
    margin: 0;
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    font-style: italic;
    line-height: 1;
}

.pill {
    /* background: var(--navy-blue); */
    background: var(--insight-blue);
    color: #fff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.subtitle {
    margin: 0;
    margin-top: 1rem;
    color: var(--muted);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    font-size: 14px;
}

.nav {
    /* background: #f1f5f9;
      border: 1px solid var(--border);
      padding: 6px;
      border-radius: 16px;
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      box-shadow: inset 0 2px 10px rgba(15, 23, 42, 0.04);
      max-width: none; */
}


input.btn.cc-secondary.cc-full {
    background: var(--insight-blue);
}

/* .navBtn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 14px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: 900;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      color: var(--muted);
      border: 0;
      background: transparent;
      cursor: pointer;
      transition:
        transform 0.15s ease,
        background 0.15s ease,
        color 0.15s ease,
        box-shadow 0.15s ease;
    }
    .navBtn:hover {
      color: #334155;
      background: #fff;
      box-shadow: var(--shadow);
    }
    .navBtn.isActive {
      background: #fff;
      color: var(--indigo);
      box-shadow: var(--shadow);
    } */

.main {
    /* padding-bottom: 80px; */
}

.stack {
    /* display: flex;
      flex-direction: column;
      gap: 48px; */
}

.card {
    background: var(--card);
    border: 1px solid var(--borderSoft);
    border-radius: 32px;
    box-shadow: var(--shadow);
}

.card.padded {
    padding: 20px;
}

/* .card.padded.bb-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
} */

.card.paddedLg {
    padding: 56px;
}

.card.tight {
    padding: 24px;
}

.card.tight .bb-panel-title {
    margin-bottom: 18px;
}

.card.borderIndigo {
    border: 2px solid var(--indigo);
}

.cardCopyright {
    /* margin-top: auto; */
    padding-top: 12px;
    border-top: 1px solid var(--borderSoft);
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
}

/* Provide breathing room above the divider in non-flex card parents,
   where `margin-top: auto` resolves to 0. */
.card>.cardCopyright {
    margin-top: 20px;
}

.card.bb-panel>.cardCopyright,
.bb-insight-card>.cardCopyright,
#section-pulse .grid.grid2>.card.padded>.cardCopyright {
    /* margin-top: auto; */
}


.cardCopyright--a {
    justify-content: center;
}

.cardCopyright--b,
.cardCopyright--c,
.cardCopyright--d,
.cardCopyright--e {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

.cardCopyright--b> :first-child,
.cardCopyright--c> :first-child,
.cardCopyright--d> :first-child,
.cardCopyright--e> :first-child {
    justify-self: start;
}

.cardCopyright--c> :nth-child(2),
.cardCopyright--d> :nth-child(2) {
    justify-self: center;
}

.cardCopyright--b> :last-child,
.cardCopyright--c> :last-child,
.cardCopyright--d> :last-child,
.cardCopyright--e> :last-child {
    justify-self: end;
    text-align: right;
}

.cardCopyright--b> :last-child,
.cardCopyright--e> :last-child {
    grid-column: 3;
}

.cardCopyright--a>img {
    display: block;
    /* max-height: 24px; */
    max-height: 14px;
    width: auto;
    opacity: 0.7;
}

.cardCopyrightText {
    font-size: 10px;
    font-weight: 700;
    color: var(--muted2);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cardCopyrightLogos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.cardCopyrightLogo {
    display: block;
    height: 18px;
    width: auto;
    opacity: 0.85;
}

.cardCopyrightLogo--x {
    height: 10px;
    opacity: 0.55;
}

@media (max-width: 600px) {

    .cardCopyright--b,
    .cardCopyright--c,
    .cardCopyright--d,
    .cardCopyright--e {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

.roundedXL {
    border-radius: 48px;
}

.sectionEnter {
    animation: fadeUp 0.45s ease both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.grid {
    display: grid;
    gap: 24px;
}

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

.grid2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid12 {
    grid-template-columns: repeat(12, 1fr);
}

.colSpan7 {
    grid-column: span 7;
}

.colSpan5 {
    grid-column: span 5;
}

.colSpan8 {
    grid-column: span 8;
}

.colSpan4 {
    grid-column: span 4;
}

.kicker {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted2);
}

.h2 {
    margin: 0;
    font-size: 24px;
    font-weight: 900;
    /* text-transform: uppercase; */
    letter-spacing: -0.02em;
    margin-bottom: 4px;
}

.h2Sm {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.note {
    margin: 6px 0 0;
    color: var(--muted2);
    font-size: 14px;
    font-weight: 600;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(99, 102, 241, 0.22);
}

.note2 {
    margin: 6px 0 0;
    color: var(--muted2);
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    text-decoration: underline;
    text-decoration-color: rgba(99, 102, 241, 0.22);
}

.metricCard {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: 28px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--borderSoft);
    box-shadow: var(--shadow);
}

.metricIcon {
    width: 56px;
    height: 56px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    color: var(--indigo);
}

.metricLabel {
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--muted2);
    margin-bottom: 4px;
}

.metricValue {
    font-size: 34px;
    font-weight: 900;
    letter-spacing: -0.04em;
    line-height: 1;
}

.metricDesc {
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--muted2);
    margin-top: 6px;
    letter-spacing: -0.01em;
}

.insight {
    height: 100%;
    border-radius: 40px;
    border: 2px solid var(--slate900);
    border: 2px solid var(--border);
    background: #f8fafc;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.insightTitle {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--muted2);
    margin-bottom: 18px;
}

.insightHeading {
    margin: 0 0 18px;
    font-size: 44px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 0.9;
    letter-spacing: -0.04em;
    color: var(--indigo);
}

.insightText {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

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

.figureChip {
    background: var(--slate900);
    color: #fff;
    padding: 12px 18px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.12);
}

.rule {
    height: 2px;
    background: var(--border);
    flex: 1;
}

.chartBox {
    height: 320px;
}

.chartBoxSm {
    height: 260px;
}

.chartBoxLg {
    height: 360px;
}

.chartCanvas {
    width: 100% !important;
    height: 100% !important;
}

.progressRow {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.progressLabel {
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--muted);
}

.progressLine {
    display: flex;
    gap: 16px;
    align-items: center;
}

.barWrap {
    flex: 1;
    height: 24px;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid var(--border);
    overflow: hidden;
    box-shadow: inset 0 2px 10px rgba(15, 23, 42, 0.05);
}

.barFill {
    height: 100%;
    background: var(--indigo);
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 12px;
    color: #fff;
    font-size: 10px;
    font-weight: 900;
}

.barTop {
    font-size: 12px;
    font-weight: 900;
    color: var(--text);
    background: #f8fafc;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 6px 10px;
    max-width: 180px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.missionTitle {
    margin: 0 0 28px;
    font-size: 56px;
    font-weight: 900;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: -0.04em;
    line-height: 0.85;
}

.missionTitle .accent {
    color: var(--indigo);
}

.qBlock {
    position: relative;
    padding-left: 48px;
    border-left: 4px solid var(--borderSoft);
}

.qMark {
    position: absolute;
    left: -18px;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: #fff;
    border: 2px solid var(--indigo);
    color: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
}

.qTitle {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.qText {
    margin: 8px 0 0;
    color: var(--muted);
    font-weight: 800;
    font-style: italic;
    font-size: 18px;
    line-height: 1.35;
}

.ctaRow {
    margin-top: 28px;
    padding-top: 28px;
    border-top: 2px solid #f8fafc;
}

.ctaBtn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 22px;
    border-radius: 18px;
    border: 0;
    cursor: pointer;
    background: var(--slate900);
    color: #fff;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    box-shadow: var(--shadowStrong);
    transition:
        transform 0.15s ease,
        background 0.15s ease;
}

@media (hover: hover) and (pointer: fine) {
    .ctaBtn:hover {
        background: var(--indigo);
        transform: translateY(-1px) scale(1.01);
    }
}

.ctaBtn:active {
    transform: scale(0.98);
}

.footer {
    text-align: center;
    padding-top: 48px;
    border-top: 1px solid var(--borderSoft);
    color: #cbd5e1;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.4em;
}

.section.cc-footer.is-report {
    background: var(--insight-blue);
}

.srOnly {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* CUSTOM STYLES */

#section-summary #metricGrid {
    margin-bottom: 24px;
}

.kicker svg,
.figureChipRow {
    display: none;
}

/* Desktop-first breakpoints (Webflow style) */
@media (max-width: 991px) {
    .page {
        /* padding: 24px; */
    }

    .grid3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .grid2,
    .grid12 {
        grid-template-columns: 1fr;
    }

    .colSpan7,
    .colSpan5,
    .colSpan8,
    .colSpan4 {
        grid-column: span 1;
    }
}

@media (max-width: 767px) {
    .page {
        /* padding: 16px; */
    }

    .header {
        /* flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start; */
    }

    .titleRow {
        justify-content: center;
        gap: 8px;
    }

    .nav {
        /* max-width: 90vw; */
    }

    a.navbtn.navBtn {
        width: fit-content;
    }

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

    /* Smaller cards on mobile L and down */
    .card {
        border-radius: 24px;
    }

    .card.padded {
        padding: 24px;
    }

    .card.paddedLg {
        padding: 28px;
    }

    .card.tight {
        padding: 16px;
    }

    /* Smaller headings on mobile L and down */
    .h1 {
        font-size: 36px;
    }

    .h2 {
        font-size: 20px;
    }

    .h2Sm {
        font-size: 16px;
    }

    .insightHeading {
        font-size: 32px;
    }

    .missionTitle {
        font-size: 42px;
    }

    .qTitle {
        font-size: 18px;
    }

    .qText {
        font-size: 16px;
    }
}

@media (max-width: 476px) {
    .page {
        /* padding: 12px; */
    }

    .h1 {
        font-size: 30px;
    }

    .h2 {
        font-size: 18px;
    }

    .insightHeading {
        font-size: 28px;
    }

    .missionTitle {
        font-size: 34px;
    }

    .card.padded {
        padding: 20px;
    }

    .card.paddedLg {
        padding: 22px;
    }
}

/* Hover styling only when real hover is available. Browser title tooltips on .navBtn
   are stripped below 1024px width by syncNavBtnTitles() in report.js (tablet + mobile). */
@media (hover: hover) and (pointer: fine) {
    .navBtn:hover {
        color: #334155;
        background: #fff;
        box-shadow: var(--shadow);
    }
}

.navBtn.isActive {
    /* background: #fff;
      color: var(--indigo);
      box-shadow: var(--shadow); */
    background: var(--insight-blue);
    color: #fff;
    box-shadow: var(--shadow);
}

#legendTip,
#pickedBfTip {
    position: fixed;
    background: #0f172a;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    padding: 4px 9px;
    border-radius: 6px;
    pointer-events: none;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.15s ease;
    z-index: 9999;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

#pickedBfTip {
    white-space: normal;
    text-align: center;
    max-width: 220px;
}

#legendTip.visible,
#pickedBfTip.visible {
    opacity: 1;
}

#legendTip::after,
#pickedBfTip::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    border: 4px solid transparent;
    border-top: 4px solid #0f172a;
    border-bottom: none;
}

/* Brand Battle: stacked sub-section layout */
.bb-category {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 8px;
}

.bb-category+.bb-category {
    border-top: 1px dashed rgba(15, 23, 42, 0.12);
    padding-top: 32px;
}

.bb-category-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bb-category-title {
    margin: 0;
    font-size: 26px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--slate900, #0f172a);
    line-height: 1.1;
}

.bb-panel-grid {
    gap: 20px;
    align-items: start;
}

.bb-panel {
    display: flex;
    flex-direction: column;
    /* gap: 14px; */
    justify-content: space-between;
}

.methodologyCols {
    display: flex;
    gap: 40px;
}

.methodologyCol {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 768px) {
    .methodologyCols {
        flex-direction: column;
        gap: 12px;
    }
}

/* Groups the chart (+ copyright) so it sits at the bottom of the card,
   with `space-between` pushing the header to the top. */
.bb-panel-body {
    display: flex;
    flex-direction: column;
}

.bb-panel-body>.cardCopyright {
    margin-top: 20px;
}

/* Equal-height cards in every bb-panel grid (AI, sourcing, crm, dd, admin). */
.grid.grid2.bb-panel-grid .card.padded.bb-panel {
    height: 100%;
}

/* White panel beside Strategic Insights (e.g. Ecosystem Fragmentation): do not
   stretch to the insight card's row height; keep natural content height. */
.grid.grid2.bb-panel-grid>.card.padded.bb-panel:has(+ .bb-insight-card) {
    height: auto;
    align-self: start;
}

.grid.grid2.bb-panel-grid>.card.padded.bb-panel:has(+ .bb-insight-card)>.cardCopyright {
    margin-top: 20px;
}

/* Pulse DNA: equalize the two-card row (Fund Lifecycle + Strategic Insights). */
#section-pulse .grid.grid2>.card.padded {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.bb-panel-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bb-panel-title {
    margin: 0;
    font-size: 18px;
    font-weight: 800;
    color: var(--slate900, #0f172a);
    letter-spacing: -0.01em;
}

.bb-panel-sub {
    margin: 0;
    font-size: 14px;
    font-style: italic;
    color: #64748b;
    line-height: 1.4;
    margin-bottom: 12px;
}

.bb-panel-sub strong {
    font-style: normal;
    color: #0f172a;
}

.summaryQuotes {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 18px;
}

.summaryQuotes .card {
    display: flex;
    flex-direction: column;
}

.summaryQuotes_companyLink {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 2px;
    font-size: 12px;
    font-weight: 700;
    color: #64748b;
    /* text-decoration: underline; */
    text-underline-offset: 2px;
    width: fit-content;
}

.summaryQuotes_companyLink--bottom {
    margin-top: auto;
    padding-top: 10px;
}

.summaryQuotes_logo {
    height: 14px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.summaryQuotes--logoTop .summaryQuotes_companyLink--bottom {
    /* display: none; */
}

.summaryQuotes_author-desc {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    font-style: italic;
    color: #64748b;
    line-height: 1.4;
    text-decoration: none;
    text-underline-offset: 2px;
    width: fit-content;
}

.summaryQuotes_companyLink--top img {
    display: none;
}

.summaryQuotes_companyLink--bottom img {
    height: 44px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    object-fit: cover;
}

.summaryQuotes .pulse_logo,
.summaryQuotes_pulse_logo_top,
.summaryQuotes_pulse_logo_bottom {
    display: none;
}

@media (min-width: 900px) {
    .summaryQuotes {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        align-items: stretch;
    }

    .summaryQuotes .card {
        height: 100%;
    }
}

.ai-depth-section.stack {
    display: flex;
    flex-direction: column;
}

.ai-depth-intro {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.ai-depth-title {
    margin: 0;
    font-size: clamp(17px, 2.1vw, 22px);
    font-weight: 800;
    line-height: 1.25;
    color: #0f172a;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.ai-depth-note {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.45;
    color: #94a3b8;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ai-depth-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Charts card | legends card */
.ai-depth-method-pair {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 20px;
    align-items: stretch;
}

.ai-depth-bars-card.card.padded,
.ai-depth-legends-card.card.padded {
    padding: 24px 28px;
    margin: 0;
    border-radius: 24px;
    box-sizing: border-box;
}

.ai-depth-bars,
.ai-depth-legends {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.ai-depth-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f6;
}

.ai-depth-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.ai-depth-legend-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eef2f6;
}

.ai-depth-legend-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 768px) {
    .ai-depth-method-pair {
        grid-template-columns: 1fr;
    }

    .ai-depth-legends-card {
        display: none;
    }
}

.ai-depth-card-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
}

.ai-depth-pct {
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.25;
    color: #4f46e5;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.ai-depth-row-heading {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ai-depth-bar-track {
    flex-shrink: 0;
}

.ai-depth-row-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
    font-style: normal;
}

/* Shown only on small viewports; desktop copy lives in .ai-depth-legend-item. */
.ai-depth-row-desc--mobile-only {
    display: none;
}

@media (max-width: 768px) {
    .ai-depth-row-desc--mobile-only {
        display: block;
    }
}

.ai-depth-legend-title {
    margin: 0;
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.ai-depth-legend-desc {
    margin: 0;
    font-size: 14px;
    line-height: 1.55;
    color: #475569;
}

.ai-depth-bar-track {
    position: relative;
    height: 12px;
    width: 100%;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.ai-depth-bar-fill {
    display: block;
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Match reference: gradients + solid slate for custom */
.ai-depth-bar-fill--vendor {
    background: linear-gradient(90deg, #93c5fd 0%, #2563eb 100%);
}

.ai-depth-bar-fill--human {
    background: linear-gradient(90deg, #3b82f6 0%, #4338ca 100%);
}

.ai-depth-bar-fill--workflows {
    background: linear-gradient(90deg, #c4b5fd 0%, #7c3aed 92%, #9333ea 100%);
}

.ai-depth-bar-fill--custom {
    background: linear-gradient(90deg, #64748b 0%, #64748b 100%);
}

.bb-donut-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 6px 8px 0;
}

.bb-donut-box canvas {
    width: 100% !important;
    height: 100% !important;
    max-width: 100%;
    display: block;
    margin: 0 auto;
}

.bb-placeholder-box {
    position: relative;
    background: #f8fafc;
    border: 1px dashed rgba(15, 23, 42, 0.15);
    border-radius: 16px;
    overflow: hidden;
}

.bb-placeholder-box canvas {
    opacity: 0;
}

.bb-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: #94a3b8;
    pointer-events: none;
}

.bb-insight-card {
    /* background: linear-gradient(135deg, #1e293b 0%, #334155 100%); */
    /* background: var(--navy-blue); */
    background: var(--insight-blue);
    color: #f8fafc;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 10px -2px rgba(15, 23, 42, 0.25);
    display: flex;
    flex-direction: column;
    gap: 18px;
    min-height: 360px;
}

.bb-insight-card--placeholder {
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
    opacity: 0.92;
}

.bb-insight-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.01em;
}

.bb-insight-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 8px;
    background: rgba(248, 250, 252, 0.08);
}

.bb-insight-icon svg {
    width: 16px;
    height: 16px;
}

.bb-insight-blocks {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.bb-insight-block {
    padding-left: 12px;
    border-left: 3px solid transparent;
}

.bb-insight-block.tone-emerald {
    border-left-color: #34d399;
}

.bb-insight-block.tone-amber {
    border-left-color: #fbbf24;
}

.bb-insight-block.tone-blue {
    border-left-color: #60a5fa;
}

.bb-insight-block.tone-red {
    border-left-color: #f87171;
    border-left-width: 4px;
}

.bb-insight-heading {
    margin: 0 0 4px;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.bb-insight-block.tone-emerald .bb-insight-heading {
    color: #34d399;
}

.bb-insight-block.tone-amber .bb-insight-heading {
    color: #fbbf24;
}

.bb-insight-block.tone-blue .bb-insight-heading {
    color: #60a5fa;
}

.bb-insight-block.tone-red .bb-insight-heading {
    color: #f87171;
}

.bb-insight-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.65;
    color: #e2e8f0;
}

.bb-insight-text strong {
    color: #f8fafc;
}

.frontierHero {
    /* background: linear-gradient(135deg, #0b1220 0%, #1e293b 100%); */
    /* background: linear-gradient(135deg, #1e293b 0%, #334155 100%); */
    background: var(--insight-blue);
    border-radius: 28px;
    color: #e2e8f0;
}

.frontierHero .bb-insight-title {
    margin-bottom: 12px;
}

.frontierHeroCol {
    padding-right: 12px;
    border-right: 1px solid rgba(148, 163, 184, 0.2);
    color: #fff;
}

.frontierHeroKicker {
    color: #60a5fa;
    margin-bottom: 10px;
}

.frontierHeroTitle {
    color: #f8fafc;
    margin-bottom: 12px;
}

.frontierHeroText {
    color: #e2e8f0;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
}

.frontierHeroQuote {
    text-transform: none;
    text-decoration: none;
    color: #fff;
    color: #60a5fa;
    margin-bottom: 10px;
    font-size: 19px;
}

.frontierHeroAuthor {
    text-transform: none;
    text-decoration: none;
    color: #ffffff;
    margin-bottom: 14px;
    font-size: 13px;
}

.frontierLegend {
    padding: 14px 20px;
}

#wishlistMount {
    max-width: 900px;
    margin-inline: auto;
    width: 100%;
}

#wishlistMount .card.padded.frontierLegend {
    display: none;
}

.frontierLegendRow {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.frontierLegendItems {
    display: flex;
    gap: 20px;
    align-items: center;
}

.frontierLegendItem {
    display: flex;
    align-items: center;
    gap: 8px;
}

.frontierDot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    display: inline-block;
}

.frontierPillar {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
}

.frontierPillarBody {
    display: flex;
    flex-direction: column;
}

.frontierRows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 14px;
}

.frontierPillar .progressRow {
    gap: 2px;
}

.frontierPillar .barWrap {
    height: 8px;
}

.frontierPillarIcon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.frontierPillarIcon svg {
    width: 18px;
    height: 18px;
}

.frontierPillarHeading {
    color: #0f172a;
    margin-bottom: 12px;
    font-size: 24px;
    line-height: 1.2;
    text-transform: none;
}

.frontierAdoptionFill {
    background: #10b981;
}

.frontierBarFill {
    min-width: 0;
    padding: 0;
    transition: width 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ----- Wishlist: Live voting card ----- */
.wishlistPollCard {
    display: flex;
    flex-direction: column;
    gap: 16px;
    border-radius: 32px;
}

.wishlistPollHead {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

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

.wishlistPollKicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
}

.wishlistPollMeta {
    color: #94a3b8;
}

.wishlistPollQuestion {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.15;
    color: #0f172a;
}

.wishlistPollQuestion--long {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0;
    color: #334155;
    white-space: pre-line;
}

.wishlistPollOption.isSelected {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 10px 22px rgba(99, 102, 241, 0.14);
}

/* Tighter spacing for option description; uses bb-panel-sub typography */
.wishlistPollOptionDesc {
    margin-top: -2px;
    margin-bottom: 8px;
}

.wishlistPollSubmit {
    appearance: none;
    border: 1px solid #eef2f6;
    background: #0f172a;
    color: #fff;
    border-radius: 18px;
    padding: 12px 14px;
    font-weight: 900;
    letter-spacing: 0.02em;
    cursor: pointer;
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.wishlistPollSubmitSpinner {
    width: 14px;
    height: 14px;
    border-radius: 999px;
    border: 2px solid rgba(255, 255, 255, 0.35);
    border-top-color: rgba(255, 255, 255, 1);
    animation: wishlistSpin 0.8s linear infinite;
    display: none;
}

.wishlistPollCard.isSubmitting .wishlistPollSubmitSpinner {
    display: inline-block;
}

.wishlistPollCard.isSubmitting .wishlistPollSubmitText {
    opacity: 0.9;
}

.wishlistPollCard.isVoted .wishlistPollSubmit {
    display: none;
}

@keyframes wishlistSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.wishlistPollSubmit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* Hide results until submitted */
.wishlistPollCard:not(.isRevealed) .wishlistPollBarTrack,
.wishlistPollCard:not(.isRevealed) .wishlistPollOptionVotes,
.wishlistPollCard:not(.isRevealed) .wishlistPollOptionPct {
    display: none;
}

.wishlistPollNote.note {
    margin: 0;
    font-size: 12px;
    color: #94a3b8;
}

.wishlistPollNoteSpinner {
    width: 12px;
    height: 12px;
    border-radius: 999px;
    border: 2px solid rgba(148, 163, 184, 0.35);
    border-top-color: rgba(148, 163, 184, 1);
    animation: wishlistSpin 0.8s linear infinite;
    display: none;
    vertical-align: -2px;
    margin-right: 8px;
}

.wishlistPollCard.isSubmitting .wishlistPollNoteSpinner {
    display: inline-block;
}

.wishlistPollOptions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.wishlistPollOption {
    appearance: none;
    border: 1px solid #eef2f6;
    background: #fff;
    border-radius: 18px;
    padding: 12px 14px;
    cursor: pointer;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.15s ease,
        border-color 0.15s ease,
        box-shadow 0.15s ease;
    text-align: left;
}

@media (hover: hover) and (pointer: fine) {
    .wishlistPollOption:hover {
        transform: translateY(-1px);
        border-color: rgba(99, 102, 241, 0.25);
        box-shadow: 0 8px 18px rgba(99, 102, 241, 0.12);
    }
}

.wishlistPollOption:active {
    transform: translateY(0);
}

.wishlistPollOption:disabled {
    cursor: not-allowed;
    opacity: 0.8;
    transform: none;
}

.wishlistPollOptionTop {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}

.wishlistPollOptionLabelRow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.wishlistPollCheckbox {
    width: 18px;
    height: 18px;
    border-radius: 6px;
    border: 2px solid #cbd5e1;
    background: #fff;
    flex: 0 0 auto;
    position: relative;
}

.wishlistPollCard.isVoted .wishlistPollCheckbox {
    display: none;
}

.wishlistPollOption.isSelected .wishlistPollCheckbox {
    border-color: rgba(99, 102, 241, 0.8);
    background: rgba(99, 102, 241, 0.12);
}

.wishlistPollOption.isSelected .wishlistPollCheckbox::after {
    content: '';
    position: absolute;
    left: 4px;
    top: 1px;
    width: 4px;
    height: 8px;
    border: solid rgba(99, 102, 241, 1);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.wishlistPollOptionVotes {
    margin-top: 8px;
    margin-bottom: 0;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.02em;
    color: #94a3b8;
    text-transform: uppercase;
}

.wishlistPollOptionLabel {
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: #0f172a;
}

.wishlistPollOptionPct {
    font-size: 12px;
    font-weight: 900;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
}

.wishlistPollBarTrack {
    position: relative;
    height: 10px;
    width: 100%;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.wishlistPollBarFill {
    display: block;
    height: 100%;
    width: 0%;
    border-radius: inherit;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.35) 0%, rgba(99, 102, 241, 1) 100%);
    transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .wishlistPollCard.isDisabled .wishlistPollOption:hover {
        transform: none;
        box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
        border-color: #eef2f6;
    }
}

@media (max-width: 900px) {
    .frontierHeroCol {
        padding-right: 0;
        border-right: 0;
    }

    .frontierLegendItems {
        gap: 12px;
    }

    .frontierPillarHeading {
        font-size: 21px;
    }

    .bb-insight-card {
        min-height: 0;
    }

    .bb-category-title {
        font-size: 22px;
    }
}

/* ----- Picked (Brand Battle / last tool chosen) ----- */
.picked-stack {
    text-align: left;
}

.picked-header {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 0;
}

.picked-hero-grid {
    align-items: stretch;
    width: 100%;
}

/* Picked: Primary Drivers (single card with bar rows) */
.picked-drivers-bars-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.picked-podium-card-body {
    align-self: stretch;
    width: 100%;
    text-align: left;
    margin-bottom: 8px;
}

.insightText.picked-intro {
    margin-top: 4px;
}

.picked-intro-highlight {
    font-style: normal;
    font-weight: 800;
    color: #0f172a;
    text-decoration: underline;
    text-decoration-color: rgba(59, 130, 246, 0.55);
    text-decoration-thickness: 3px;
    text-underline-offset: 3px;
}

.picked-podium-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.picked-podium-card .bb-panel-header {
    align-self: stretch;
    text-align: left;
}

.picked-podium-bottom {
    margin-top: auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.picked-podium-kicker {
    display: block;
    margin-bottom: 0;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #94a3b8;
}

.picked-podium {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.25rem;
    width: 100%;
    padding-top: 28px;
}

.picked-podium-step {
    --podium-scale: 0;
    --podium-lift: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: min(100px, 28vw);
    border-radius: 12px 12px 0 0;
    position: relative;
    transform: translateY(var(--podium-lift)) scaleY(var(--podium-scale));
    transform-origin: bottom;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

@media (hover: hover) and (pointer: fine) {
    .picked-podium-step:hover {
        --podium-lift: -4px;
    }
}

.picked-podium-step--first {
    order: 2;
    height: 160px;
    background: linear-gradient(to top, #059669, #10b981);
    box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.2);
}

.picked-podium-step--second {
    order: 1;
    height: 125px;
    background: linear-gradient(to top, #1e293b, #334155);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.picked-podium-step--third {
    order: 3;
    height: 90px;
    background: linear-gradient(to top, #94a3b8, #cbd5e1);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.picked-podium-label {
    position: absolute;
    top: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 700;
    font-size: 13px;
    text-align: center;
    width: 120px;
    max-width: 36vw;
    color: #1e293b;
}

.picked-podium-label--first {
    color: #047857;
}

.picked-podium-label--second {
    color: #475569;
}

.picked-podium-label--third {
    color: #64748b;
}

.picked-podium-rank {
    margin-top: 4px;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    opacity: 0.92;
}

.picked-podium-pct {
    margin-top: auto;
    font-size: 12px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.95);
    letter-spacing: 0.02em;
    font-variant-numeric: tabular-nums;
    position: absolute;
    bottom: 4px;
}

.picked-rigor-rows {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 8px;
}

.picked-rigor-meta {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #475569;
}

.picked-rigor-track {
    width: 100%;
    height: 10px;
    border-radius: 999px;
    background: #f1f5f9;
    overflow: hidden;
}

.picked-rigor-fill {
    height: 100%;
    border-radius: inherit;
    min-width: 0;
    transition: width 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.picked-rigor-fill--1 {
    background: #cbd5e1;
}

.picked-rigor-fill--2 {
    background: #93c5fd;
}

.picked-rigor-fill--3 {
    background: #3b82f6;
}

.picked-rigor-fill--4 {
    background: #2563eb;
}

.picked-velocity {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    height: 160px;
    align-items: flex-end;
    margin-top: 8px;
}

.picked-velocity-panel {
    justify-content: space-between;
}

.picked-velocity-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    height: 100%;
}

.picked-velocity-pct {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: #0f172a;
    font-variant-numeric: tabular-nums;
    line-height: 1;
}

.picked-velocity-bar {
    width: 100%;
    border-radius: 4px 4px 0 0;
    min-height: 2px;
    transition: height 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.picked-velocity-bar--t1 {
    background: #dbeafe;
}

.picked-velocity-bar--t2 {
    background: #93c5fd;
}

.picked-velocity-bar--t3 {
    background: #2563eb;
}

.picked-velocity-bar--t4 {
    background: #0f172a;
}

.picked-velocity-label {
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #94a3b8;
    text-align: center;
    line-height: 1.2;
}

.picked-drivers-bars {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.picked-drivers-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-bottom: 8px;
    border-bottom: 0;
}

.picked-drivers-row:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.picked-drivers-row-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px 16px;
}

.picked-drivers-row-title {
    margin: 0;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    color: #0f172a;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.picked-drivers-pct {
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 900;
    line-height: 1.25;
    color: #4f46e5;
    letter-spacing: -0.03em;
    font-variant-numeric: tabular-nums;
}

.picked-drivers-bar-track {
    position: relative;
    height: 10px;
    width: 100%;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.picked-drivers-bar-fill {
    display: block;
    height: 100%;
    min-width: 0;
    border-radius: inherit;
    transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.picked-drivers-bar-fill--lead {
    background: linear-gradient(90deg, #34d399 0%, #059669 100%);
}

.picked-drivers-bar-fill--base {
    background: linear-gradient(90deg, #93c5fd 0%, #2563eb 100%);
}

.picked-drivers-bar-fill--red {
    background: linear-gradient(90deg, #f87171 0%, #dc2626 100%);
}


.picked-bf-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.picked-adoption-head {
    padding-bottom: 16px;
    margin-bottom: 12px;
    border-bottom: 1px solid #f1f5f9;
}

.picked-mini-charts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.picked-mini-row {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    gap: 14px;
    align-items: center;
}

.picked-mini-title {
    margin: 0 0 4px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
    line-height: 1.25;
}

.picked-mini-sub {
    margin: 0;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #94a3b8;
    font-style: italic;
    line-height: 1.25;
}

.picked-mini-canvas {
    height: 150px;
}

@media (max-width: 768px) {
    .picked-mini-row {
        grid-template-columns: 1fr;
        align-items: stretch;
    }
}

.picked-bf-heading {
    margin: 0 0 4px;
    font-size: 18px;
    font-weight: 800;
    color: #1e293b;
}

.picked-bf-sub {
    margin: 0 0 12px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #94a3b8;
    font-style: italic;
}

.picked-bf-row {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    align-items: center;
    gap: 0;
    margin-top: 12px;
}

.picked-bf-side {
    min-width: 0;
}

.picked-bf-barWrap {
    position: relative;
    height: 40px;
    display: flex;
    align-items: center;
}

.picked-bf-barWrap--left {
    justify-content: flex-end;
}

.picked-bf-barWrap--right {
    justify-content: flex-start;
}

.picked-bf-fill {
    height: 40px;
    min-width: 0;
    transition: width 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.picked-bf-fill--grey {
    background: #cbd5e1;
    border-radius: 6px 0 0 6px;
}

.picked-bf-fill--green {
    background: #10b981;
    border-radius: 0 6px 6px 0;
}

.picked-bf-center {
    width: 2px;
    align-self: stretch;
    min-height: 40px;
    background: #cbd5e1;
    margin: 0 auto;
}

.picked-bf-scale-row {
    display: grid;
    grid-template-columns: 1fr 2px 1fr;
    margin-top: 6px;
}

.picked-bf-scale {
    display: flex;
    justify-content: space-between;
    padding: 0 4px;
    font-size: 8px;
    font-weight: 800;
    color: #94a3b8;
    text-transform: uppercase;
}

.picked-bf-legend {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 40px;
    margin-top: 20px;
    font-size: 11px;
}

.picked-bf-legend-item {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.picked-bf-legend-item--accent {
    padding-left: 24px;
    border-left: 1px solid #f1f5f9;
}

.picked-bf-legend-name {
    font-weight: 800;
    text-transform: uppercase;
    color: #94a3b8;
}

.picked-bf-legend-item--accent .picked-bf-legend-name {
    color: #059669;
}

.picked-bf-legend-desc {
    color: #94a3b8;
    font-style: italic;
}

/* Picked: same Strategic Insights chrome as bb-* panels; footer chip stays custom */
.picked-insight-aside {
    border-radius: 24px;
}

.picked-insight-aside .bb-insight-blocks {
    flex: 1;
}

.picked-insight-aside .picked-insight-footer {
    margin-top: auto;
    padding-top: 12px;
}

.picked-insight-tag {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #93c5fd;
    background: rgba(59, 130, 246, 0.15);
    border: 1px solid rgba(59, 130, 246, 0.35);
}

@media (max-width: 900px) {
    .picked-bf-legend {
        flex-direction: column;
        align-items: flex-start;
    }

    .picked-bf-legend-item--accent {
        padding-left: 0;
        border-left: 0;
    }
}

/* @media (max-width: 600px) {
    .picked-velocity {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
        min-height: 140px;
    }

    .picked-podium {
        gap: 8px;
    }
} */