:root {
  color-scheme: light;
  --bb-ink: #181b1a;
  --bb-muted: #606864;
  --bb-line: #dfe4e0;
  --bb-paper: #fff;
  --bb-soft: #f4f6f4;
  --bb-accent: #f6ba40;
  --bb-accent-ink: #272419;
  --bb-radius: 6px;
  --bb-font:
    -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC",
    "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  background: var(--bb-paper);
  color: var(--bb-ink);
  font: 15px/1.65 var(--bb-font);
  letter-spacing: 0;
}
button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
a,
input,
select,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
button {
  color: inherit;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  line-height: 1.2;
  letter-spacing: 0;
}
h2 {
  font-size: 36px;
  font-weight: 650;
}
h3 {
  font-size: 21px;
  font-weight: 650;
}
p {
  color: var(--bb-muted);
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
select:focus-visible {
  outline: 3px solid #25877b;
  outline-offset: 4px;
}
svg.lucide {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  stroke-width: 1.7;
}
[hidden] {
  display: none !important;
}
.bb-container {
  max-width: 1280px;
  padding: 0 48px;
  margin: auto;
}
.bb-mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  font-size: 12px;
}
.bb-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "SFMono-Regular", Consolas, monospace;
  font-size: 11px;
  color: var(--bb-muted);
  font-weight: 500;
}
.bb-kicker::before {
  content: "";
  height: 7px;
  width: 7px;
  background: var(--bb-accent);
}
.bb-skip {
  position: fixed;
  top: -100px;
  left: 16px;
  z-index: 100;
  padding: 10px;
  background: white;
}
.bb-skip:focus {
  top: 10px;
}
.bb-header {
  height: 80px;
  border-bottom: 1px solid var(--bb-line);
  background: var(--bb-paper);
  position: relative;
  z-index: 20;
}
.bb-nav {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.bb-brand {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
  font-size: 21px;
  font-weight: 750;
}
.bb-brand img {
  width: 31px;
  height: 31px;
  object-fit: contain;
}
.bb-brand small {
  font-size: 12px;
  font-weight: 500;
  color: var(--bb-muted);
  margin-left: 7px;
  padding-left: 14px;
  border-left: 1px solid var(--bb-line);
}
.bb-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 13px;
}
.bb-links a {
  padding: 10px 0;
}
.bb-links a:hover {
  color: #91701d;
}
.bb-nav-actions {
  display: flex;
  align-items: center;
  gap: 19px;
  font-size: 13px;
}
.bb-btn {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid transparent;
  background: var(--bb-ink);
  color: white;
  padding: 11px 22px;
  border-radius: var(--bb-radius);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.4;
  transition:
    transform 0.18s,
    background 0.18s;
}
.bb-btn:hover {
  background: #343c38;
  transform: translateY(-2px);
}
.bb-btn-accent {
  background: var(--bb-accent);
  color: var(--bb-accent-ink);
}
.bb-btn-accent:hover {
  background: var(--bb-accent);
  filter: brightness(0.96);
}
.bb-btn-outline {
  border-color: var(--bb-line);
  background: transparent;
  color: var(--bb-ink);
}
.bb-btn-outline:hover {
  background: var(--bb-soft);
}
.bb-nav-actions .bb-btn {
  min-height: 38px;
  padding: 9px 15px;
}
.bb-menu {
  display: none;
}
.bb-icon-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--bb-line);
  border-radius: 4px;
  background: transparent;
  position: relative;
}
.bb-icon-btn[data-tooltip]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  z-index: 40;
  white-space: nowrap;
  color: white;
  background: #202923;
  padding: 4px 8px;
  font-size: 11px;
  border-radius: 3px;
}
.bb-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid var(--bb-line);
  min-height: 620px;
  height: min(690px, calc(100svh - 160px));
  background: #f7f9f7;
}
.bb-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.bb-scene canvas {
  width: 100%;
  height: 100%;
  display: block;
}
.bb-scene-fallback {
  position: absolute;
  width: 250px;
  height: 250px;
  right: 17%;
  top: 27%;
  object-fit: contain;
  opacity: 0.75;
}
.bb-scene[data-ready="true"] .bb-scene-fallback {
  display: none;
}
.bb-hero-inner {
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 75px;
  pointer-events: none;
}
.bb-hero-inner a,
.bb-hero-inner button {
  pointer-events: auto;
}
.bb-hero-heading > h1 {
  font: inherit;
  line-height: 1.2;
}
.bb-hero-subtitle {
  color: var(--bb-ink);
  line-height: 1.2;
  font-weight: inherit;
}
.bb-mobile-break {
  display: none;
}
.bb-hero-heading {
  font-size: 68px;
  font-weight: 600;
  margin: 24px 0 17px;
}
.bb-hero .bb-hero-subtitle {
  display: block;
  font-size: 51px;
  margin-top: 12px;
}
.bb-hero-copy {
  max-width: 455px;
  font-size: 16px;
  line-height: 1.85;
}
.bb-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.bb-hero-note {
  margin-top: 19px;
  font-size: 11px;
  color: #747d78;
  display: flex;
  gap: 17px;
}
.bb-hero-meta {
  position: absolute;
  bottom: 25px;
  left: 48px;
  right: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  color: #6a756e;
}
.bb-hero-meta span {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bb-hero-meta svg {
  width: 13px;
  height: 13px;
}
.bb-scene-control {
  position: absolute;
  bottom: 20px;
  right: 48px;
  z-index: 5;
  display: flex;
  border-color: #c7cec9;
  background: rgba(255, 255, 255, 0.8);
}
.bb-hero-meta > span:last-child {
  margin-right: 54px;
}
.bb-provider-band {
  padding: 30px 0;
  border-bottom: 1px solid var(--bb-line);
}
.bb-provider-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
}
.bb-provider-row > span {
  font-size: 11px;
  line-height: 1.6;
  color: var(--bb-muted);
  max-width: 115px;
}
.bb-provider-names {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 25px;
  font-size: 23px;
  font-weight: 600;
  color: #444b48;
}
.bb-provider-names > span {
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
}
.bb-provider-logo {
  display: block;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  object-fit: contain;
}
.bb-section {
  padding: 86px 0;
}
.bb-section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
  margin-bottom: 35px;
}
.bb-section-heading .bb-kicker {
  margin-bottom: 15px;
}
.bb-section-heading p {
  font-size: 14px;
  max-width: 400px;
  margin-top: 14px;
}
.bb-text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  white-space: nowrap;
  padding: 7px 0;
}
.bb-text-link:hover {
  color: #876622;
}
.bb-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  overflow: hidden;
}
.bb-feature {
  padding: 32px;
  min-width: 0;
  position: relative;
}
.bb-feature + .bb-feature {
  border-left: 1px solid var(--bb-line);
}
.bb-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  background: #f9efce;
  margin-bottom: 32px;
  border-radius: 5px;
}
.bb-feature:nth-child(2) .bb-feature-icon {
  background: #e4efe9;
}
.bb-feature:nth-child(3) .bb-feature-icon {
  background: #e6ebf6;
}
.bb-feature h3 {
  margin-bottom: 12px;
}
.bb-feature p {
  font-size: 13px;
  min-height: 62px;
  line-height: 1.8;
}
.bb-feature .bb-text-link {
  margin-top: 18px;
}
.bb-feature-num {
  font:
    11px Consolas,
    monospace;
  color: #8b938d;
  position: absolute;
  right: 25px;
  top: 27px;
}
.bb-model-section {
  background: var(--bb-soft);
  border-block: 1px solid var(--bb-line);
}
.bb-model-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}
.bb-filter-group {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}
.bb-filter {
  min-height: 38px;
  padding: 8px 15px;
  border: 1px solid transparent;
  background: transparent;
  border-radius: 4px;
  color: var(--bb-muted);
  font-size: 12px;
}
.bb-filter[aria-pressed="true"] {
  background: var(--bb-ink);
  color: white;
}
.bb-search {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #b4bdb6;
  gap: 8px;
  min-width: 215px;
}
.bb-search svg {
  width: 15px;
  height: 15px;
  color: var(--bb-muted);
}
.bb-search input {
  width: 100%;
  min-width: 0;
  background: transparent;
  border: 0;
  min-height: 38px;
  font-size: 12px;
  padding: 7px 0;
  color: var(--bb-ink);
  outline-offset: 1px;
}
.bb-model-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.bb-model-card {
  padding: 24px;
  background: var(--bb-paper);
  border: 1px solid var(--bb-line);
  border-radius: var(--bb-radius);
  min-width: 0;
  transition:
    transform 0.18s,
    border-color 0.18s;
}
.bb-model-card:hover {
  border-color: #a6b8ac;
  transform: translateY(-3px);
}
.bb-model-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.bb-model-mark {
  font-size: 20px;
  font-weight: 650;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bb-soft);
  border-radius: 4px;
  color: var(--bb-model-color, #232925);
}
.bb-model-provider {
  font-family: Consolas, monospace;
  font-size: 10px;
  color: #717b75;
}
.bb-model-card h3 {
  font-size: 20px;
}
.bb-model-card p {
  font-size: 12px;
  margin-top: 9px;
  min-height: 40px;
}
.bb-model-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 23px;
  font-size: 10px;
  color: var(--bb-muted);
}
.bb-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.bb-tags span {
  border: 1px solid var(--bb-line);
  padding: 3px 7px;
  border-radius: 3px;
}
.bb-model-open {
  display: flex;
  border: none;
  background: transparent;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  padding: 9px 0 9px 9px;
  color: var(--bb-ink);
}
.bb-model-open:hover {
  color: #897028;
}
.bb-model-note {
  font-size: 11px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.bb-empty {
  padding: 40px 15px;
  border-block: 1px solid var(--bb-line);
  text-align: center;
}
.bb-empty button {
  margin-top: 15px;
}
.bb-connect-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 75px;
  align-items: center;
}
.bb-connect-intro h2 {
  margin: 17px 0;
}
.bb-connect-intro > p {
  font-size: 14px;
  max-width: 390px;
}
.bb-steps {
  list-style: none;
  padding: 0;
  margin: 28px 0;
}
.bb-steps li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px solid var(--bb-line);
}
.bb-step-number {
  font:
    11px Consolas,
    monospace;
  background: var(--bb-soft);
  padding: 6px 8px;
}
.bb-steps strong {
  font-size: 13px;
  font-weight: 600;
}
.bb-steps p {
  font-size: 12px;
  margin-top: 4px;
}
.bb-code-tool {
  background: #181e1b;
  border: 1px solid #343c37;
  border-radius: 6px;
  color: #e8ede9;
  min-width: 0;
  overflow: hidden;
}
.bb-code-toolbar {
  padding: 8px 15px;
  border-bottom: 1px solid #38413c;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
}
.bb-code-tabs {
  display: flex;
  gap: 4px;
  align-items: center;
}
.bb-code-tab {
  font-size: 11px;
  background: transparent;
  border: 0;
  border-bottom: 2px solid transparent;
  color: #a0afa5;
  padding: 11px 12px;
}
.bb-code-tab[aria-selected="true"] {
  color: #f9cc66;
  border-bottom-color: #f9cc66;
}
.bb-code-copy {
  display: flex;
  gap: 7px;
  align-items: center;
  background: transparent;
  color: #b8c4bc;
  border: 0;
  font-size: 11px;
  padding: 8px;
}
.bb-code-copy svg {
  width: 15px;
  height: 15px;
}
.bb-code-tool pre {
  margin: 0;
  padding: 25px 24px;
  min-height: 286px;
  overflow-x: auto;
  font:
    12px/1.9 "SFMono-Regular",
    Consolas,
    monospace;
  tab-size: 2;
}
.bb-code-tool code {
  font: inherit;
  white-space: pre;
}
.bb-code-foot {
  font-size: 10px;
  display: flex;
  gap: 12px;
  justify-content: space-between;
  border-top: 1px solid #35403a;
  padding: 12px 22px;
  color: #a0afa5;
}
.bb-code-foot span:first-child {
  color: #b7dcbc;
}
.bb-product-section {
  background: var(--bb-soft);
  border-block: 1px solid var(--bb-line);
}
.bb-product-layout {
  display: grid;
  grid-template-columns: 1fr 0.38fr;
  gap: 40px;
  align-items: center;
}
.bb-product-shot {
  margin: 0;
  min-width: 0;
  width: 100%;
}
.bb-product-shot a {
  display: block;
  border: 1px solid var(--bb-line);
  border-radius: 5px;
  overflow: hidden;
  background: white;
  box-shadow: 0 10px 25px #1c362709;
}
.bb-product-shot figcaption {
  font-size: 10px;
  color: var(--bb-muted);
  margin-top: 11px;
}
.bb-product-points {
  display: grid;
  gap: 30px;
}
.bb-product-points h3 {
  font-size: 16px;
  margin: 9px 0;
}
.bb-product-points p {
  font-size: 12px;
}
.bb-product-points svg {
  color: #47816a;
}
.bb-usecases {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 35px;
}
.bb-usecase {
  border-top: 1px solid var(--bb-line);
  padding-top: 24px;
}
.bb-usecase .bb-kicker {
  margin-bottom: 28px;
}
.bb-usecase h3 {
  font-size: 21px;
  margin-bottom: 12px;
}
.bb-usecase p {
  font-size: 13px;
}
.bb-usecase .bb-text-link {
  margin-top: 14px;
}
.bb-faq-layout {
  display: grid;
  grid-template-columns: 0.5fr 1fr;
  gap: 80px;
  border-top: 1px solid var(--bb-line);
  padding-top: 65px;
}
.bb-faq-intro .bb-kicker {
  margin-bottom: 15px;
}
.bb-faq-intro p {
  font-size: 13px;
  margin-top: 18px;
}
.bb-faq details {
  border-bottom: 1px solid var(--bb-line);
}
.bb-faq summary {
  list-style: none;
  padding: 21px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 14px;
}
.bb-faq summary::-webkit-details-marker {
  display: none;
}
.bb-faq summary svg {
  transition: transform 0.2s;
}
.bb-faq details[open] summary svg {
  transform: rotate(45deg);
}
.bb-faq details p {
  padding: 0 30px 22px 0;
  font-size: 13px;
  line-height: 1.85;
}
.bb-cta {
  background: var(--bb-accent);
  padding: 60px 0;
}
.bb-cta .bb-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 35px;
}
.bb-cta .bb-kicker {
  color: var(--bb-accent-ink);
  margin-bottom: 12px;
}
.bb-cta .bb-kicker::before {
  background: var(--bb-accent-ink);
}
.bb-cta h2 {
  font-size: 32px;
  color: var(--bb-accent-ink);
}
.bb-cta p {
  color: var(--bb-accent-ink);
  font-size: 13px;
  margin-top: 12px;
}
.bb-footer {
  padding: 50px 0 24px;
}
.bb-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  padding-bottom: 40px;
}
.bb-footer-about > p {
  margin-top: 14px;
  font-size: 12px;
}
.bb-footer-links {
  display: flex;
  gap: 65px;
}
.bb-footer-links div {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 12px;
}
.bb-footer-links strong {
  font-weight: 550;
  color: #8a938d;
  margin-bottom: 5px;
  font-size: 11px;
}
.bb-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--bb-line);
  padding-top: 21px;
  font-size: 10px;
  color: var(--bb-muted);
}
.bb-footer-bottom a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bb-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  max-width: calc(100% - 32px);
  background: #1e3226;
  color: #fff;
  padding: 11px 20px;
  border-radius: 5px;
  box-shadow: 0 4px 20px #0002;
  font-size: 13px;
}
.bb-dialog {
  border: 1px solid var(--bb-line);
  border-radius: 8px;
  padding: 32px;
  width: 520px;
  max-width: calc(100% - 32px);
  max-height: calc(100svh - 40px);
  color: var(--bb-ink);
  background: var(--bb-paper);
}
.bb-dialog::backdrop {
  background: #13291b66;
  backdrop-filter: blur(3px);
}
.bb-dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
}
.bb-dialog-head .bb-icon-btn {
  display: flex;
}
.bb-dialog h2 {
  font-size: 28px;
  margin: 15px 0;
}
.bb-dialog p {
  font-size: 13px;
  margin: 15px 0;
}
.bb-dialog .bb-btn {
  margin-top: 15px;
}
.bb-dialog .bb-model-provider {
  display: block;
}
.bb-dialog-note {
  padding: 13px 0;
  border-block: 1px solid var(--bb-line);
}

/* Grove puts the brand and model matrix at the center of a developer-first page. */
.bb-grove {
  --bb-accent: #d6f46a;
  --bb-accent-ink: #203c2e;
  --bb-paper: #fcfefc;
  --bb-soft: #f0f6f0;
  --bb-line: #d9e3d9;
  --bb-ink: #183b2b;
  --bb-muted: #5d7165;
  --bb-radius: 3px;
}
.bb-grove .bb-header {
  background: #e8f3e8;
}
.bb-grove .bb-hero {
  background: #e8f3e8;
  min-height: 700px;
  height: min(760px, calc(100svh - 140px));
}
.bb-grove .bb-hero-inner {
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  padding-top: 54px;
  padding-bottom: 0;
}
.bb-grove .bb-hero-heading {
  font-size: 62px;
  margin: 15px 0;
}
.bb-grove .bb-hero .bb-hero-subtitle {
  font-size: 36px;
  font-weight: 500;
  margin-top: 12px;
}
.bb-grove .bb-hero-copy {
  max-width: 540px;
  font-size: 14px;
}
.bb-grove .bb-hero-actions {
  margin-top: 21px;
}
.bb-grove .bb-hero-note {
  margin-top: 12px;
}
.bb-grove .bb-provider-band {
  padding: 25px 0;
}
.bb-grove .bb-provider-names {
  font-size: 21px;
}
.bb-grove .bb-connect-layout {
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
}
.bb-grove .bb-feature-grid {
  border: 0;
  border-top: 1px solid var(--bb-line);
  border-bottom: 1px solid var(--bb-line);
  border-radius: 0;
}
.bb-grove .bb-feature {
  padding: 30px 28px 32px;
}
.bb-grove .bb-feature:first-child {
  padding-left: 0;
}
.bb-grove .bb-feature-icon {
  background: #e3eccf;
  border-radius: 0;
}
.bb-grove .bb-code-tool {
  background: #183b2b;
}
.bb-grove .bb-code-tab[aria-selected="true"] {
  color: #d6f46a;
  border-color: #d6f46a;
}
.bb-grove .bb-model-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bb-grove .bb-model-card {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  column-gap: 20px;
  padding: 26px;
}
.bb-grove .bb-model-top {
  grid-column: 1;
  grid-row: 1/3;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  margin: 0;
}
.bb-grove .bb-model-mark {
  width: 50px;
  height: 50px;
  font-size: 27px;
}
.bb-grove .bb-model-card h3 {
  grid-column: 2;
  grid-row: 1;
}
.bb-grove .bb-model-card p {
  grid-column: 2;
  grid-row: 2;
}
.bb-grove .bb-model-bottom {
  grid-column: 1/3;
}
.bb-grove .bb-cta {
  background: #183b2b;
}
.bb-grove .bb-cta h2,
.bb-grove .bb-cta p,
.bb-grove .bb-cta .bb-kicker {
  color: #eff7eb;
}
.bb-grove .bb-cta .bb-kicker::before {
  background: #d6f46a;
}
.bb-grove .bb-cta .bb-btn {
  background: #d6f46a;
  color: #183b2b;
}

/* Signal uses editorial scale and numbered rows for an enterprise presentation. */
.bb-signal {
  --bb-accent: #f36957;
  --bb-accent-ink: #251e1d;
  --bb-paper: #fff;
  --bb-soft: #f5f5f3;
  --bb-ink: #232421;
  --bb-muted: #71716a;
  --bb-line: #ddddd8;
  --bb-radius: 0;
}
.bb-signal .bb-header {
  height: 88px;
}
.bb-signal .bb-hero {
  min-height: 645px;
  height: min(730px, calc(100svh - 160px));
  background: #f4f4f1;
}
.bb-signal .bb-hero-inner {
  padding-top: 0;
  padding-bottom: 65px;
}
.bb-signal .bb-hero-heading {
  font-family: Georgia, "Songti SC", serif;
  font-weight: 400;
  font-size: 94px;
  margin: 26px 0 18px;
}
.bb-signal .bb-hero .bb-hero-subtitle {
  font-family: var(--bb-font);
  font-size: 32px;
  font-weight: 450;
  margin-top: 19px;
}
.bb-signal .bb-hero-copy {
  font-size: 14px;
  max-width: 400px;
}
.bb-signal .bb-hero-actions {
  margin-top: 26px;
}
.bb-signal .bb-hero-meta {
  border-top: 1px solid #cfd1c9;
  padding-top: 17px;
  bottom: 21px;
}
.bb-signal .bb-provider-band {
  padding: 24px 0;
}
.bb-signal h2 {
  font-weight: 500;
  font-size: 39px;
}
.bb-signal .bb-feature-grid {
  display: block;
  border: 0;
  border-radius: 0;
}
.bb-signal .bb-feature {
  display: grid;
  grid-template-columns: 55px 0.7fr 1fr auto;
  gap: 30px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--bb-line);
}
.bb-signal .bb-feature + .bb-feature {
  border-left: 0;
}
.bb-signal .bb-feature:last-child {
  border-bottom: 1px solid var(--bb-line);
}
.bb-signal .bb-feature-icon {
  margin: 0;
  background: transparent !important;
  width: 45px;
  height: 45px;
}
.bb-signal .bb-feature-icon svg {
  width: 27px;
  height: 27px;
  stroke: #e06751;
}
.bb-signal .bb-feature-num {
  display: none;
}
.bb-signal .bb-feature h3 {
  margin: 0;
}
.bb-signal .bb-feature p {
  min-height: 0;
}
.bb-signal .bb-feature .bb-text-link {
  margin: 0;
}
.bb-signal .bb-model-card {
  border: 0;
  border-top: 1px solid #c6c6be;
  background: transparent;
  padding: 25px 8px;
}
.bb-signal .bb-model-grid {
  gap: 22px 35px;
}
.bb-signal .bb-model-mark {
  background: #eaeae5;
}
.bb-signal .bb-model-card:hover {
  transform: none;
  border-color: #f36957;
}
.bb-signal .bb-connect-layout {
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
.bb-signal .bb-cta {
  background: #f36957;
}
.bb-signal .bb-product-layout {
  grid-template-columns: 1fr;
}
.bb-signal .bb-product-points {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}
.bb-signal .bb-product-shot {
  max-width: 1020px;
  margin: auto;
}
.bb-signal .bb-section-heading > div {
  max-width: 630px;
}

@media (min-width: 1700px) {
  .bb-container {
    max-width: 1500px;
    padding-inline: 60px;
  }
  .bb-hero-inner {
    padding-bottom: 65px;
  }
  .bb-hero-meta {
    left: 60px;
    right: 60px;
  }
  .bb-hero-heading {
    font-size: 76px;
  }
  .bb-hero .bb-hero-subtitle {
    font-size: 58px;
  }
  .bb-grove .bb-hero-heading {
    font-size: 68px;
  }
  .bb-grove .bb-hero .bb-hero-subtitle {
    font-size: 40px;
  }
  .bb-signal .bb-hero-heading {
    font-size: 100px;
  }
  .bb-signal .bb-hero .bb-hero-subtitle {
    font-size: 38px;
  }
}
@media (max-width: 1100px) {
  .bb-container {
    padding-inline: 30px;
  }
  .bb-links {
    gap: 18px;
  }
  .bb-brand small {
    display: none;
  }
  .bb-hero-heading {
    font-size: 57px;
  }
  .bb-hero .bb-hero-subtitle {
    font-size: 43px;
  }
  .bb-hero-copy {
    max-width: 390px;
    font-size: 14px;
  }
  .bb-hero-meta {
    left: 30px;
    right: 30px;
  }
  .bb-scene-control {
    right: 30px;
  }
  .bb-provider-names {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    font-size: 19px;
    gap: 20px;
  }
  .bb-feature {
    padding: 25px;
  }
  .bb-connect-layout,
  .bb-grove .bb-connect-layout,
  .bb-signal .bb-connect-layout {
    gap: 40px;
  }
  .bb-product-layout {
    grid-template-columns: 1fr 0.4fr;
    gap: 25px;
  }
  .bb-signal .bb-feature {
    grid-template-columns: 42px 0.8fr 1fr auto;
    gap: 18px;
  }
  .bb-signal .bb-hero-heading {
    font-size: 78px;
  }
  .bb-signal .bb-hero .bb-hero-subtitle {
    font-size: 29px;
  }
  .bb-signal .bb-hero-copy {
    max-width: 330px;
  }
  .bb-faq-layout {
    gap: 45px;
  }
}
@media (max-width: 760px) {
  .bb-mobile-break {
    display: initial;
  }
  h2,
  .bb-signal h2 {
    font-size: 29px;
  }
  h3 {
    font-size: 20px;
  }
  .bb-container {
    padding-inline: 22px;
  }
  .bb-header,
  .bb-signal .bb-header {
    height: 68px;
  }
  .bb-brand {
    font-size: 19px;
  }
  .bb-brand img {
    width: 28px;
    height: 28px;
  }
  .bb-nav {
    gap: 12px;
  }
  .bb-nav-actions {
    gap: 9px;
  }
  .bb-nav-actions > a:first-child {
    display: none;
  }
  .bb-nav-actions .bb-btn {
    font-size: 11px;
    padding: 9px 12px;
    min-height: 36px;
  }
  .bb-nav-actions .bb-btn svg {
    display: none;
  }
  .bb-menu {
    display: flex;
    border: 0;
  }
  .bb-links {
    display: none;
    position: absolute;
    top: 67px;
    left: 0;
    right: 0;
    background: var(--bb-paper);
    border-bottom: 1px solid var(--bb-line);
    padding: 18px 22px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 14px 22px #192d2010;
  }
  .bb-links.bb-open {
    display: flex;
  }
  .bb-links a {
    padding: 12px;
  }
  .bb-hero,
  .bb-grove .bb-hero,
  .bb-signal .bb-hero {
    height: calc(100svh - 115px);
    min-height: 660px;
    max-height: 850px;
  }
  .bb-hero-inner,
  .bb-signal .bb-hero-inner {
    justify-content: flex-start;
    padding-top: 40px;
    padding-bottom: 0;
  }
  .bb-hero-heading {
    font-size: 47px;
    margin: 16px 0 15px;
  }
  .bb-hero .bb-hero-subtitle {
    font-size: 35px;
    margin-top: 9px;
  }
  .bb-hero-copy {
    max-width: 370px;
    font-size: 13px;
    line-height: 1.8;
  }
  .bb-hero-actions {
    margin-top: 20px;
    gap: 9px;
  }
  .bb-btn {
    font-size: 12px;
    padding: 11px 16px;
    min-height: 44px;
    gap: 12px;
  }
  .bb-hero-note {
    font-size: 10px;
    margin-top: 14px;
    gap: 13px;
  }
  .bb-hero-meta {
    left: 22px;
    right: 22px;
    bottom: 20px;
    font-size: 9px;
  }
  .bb-hero-meta > span:last-child {
    display: none;
  }
  .bb-scene-control {
    right: 22px;
    bottom: 14px;
    width: 34px;
    height: 34px;
  }
  .bb-grove .bb-hero-inner {
    padding-top: 35px;
    justify-content: flex-start;
  }
  .bb-grove .bb-hero-heading {
    font-size: 43px;
    margin: 16px 0 13px;
  }
  .bb-grove .bb-hero .bb-hero-subtitle {
    font-size: 27px;
    line-height: 1.35;
    margin-top: 9px;
  }
  .bb-grove .bb-hero-copy {
    font-size: 12px;
    max-width: 320px;
  }
  .bb-grove .bb-hero-actions {
    margin-top: 18px;
  }
  .bb-grove .bb-hero-note {
    font-size: 9px;
  }
  .bb-signal .bb-hero-heading {
    font-size: 65px;
    margin: 17px 0 15px;
  }
  .bb-signal .bb-hero .bb-hero-subtitle {
    font-size: 26px;
    margin-top: 12px;
  }
  .bb-signal .bb-hero-copy {
    max-width: 330px;
    font-size: 12px;
  }
  .bb-signal .bb-hero-meta {
    padding-top: 13px;
  }
  .bb-provider-band,
  .bb-grove .bb-provider-band {
    padding: 23px 0;
  }
  .bb-provider-row {
    display: block;
  }
  .bb-provider-row > span {
    display: block;
    max-width: none;
    margin-bottom: 16px;
    font-size: 10px;
  }
  .bb-provider-row > span br {
    display: none;
  }
  .bb-provider-names,
  .bb-grove .bb-provider-names {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    font-size: 19px;
    row-gap: 20px;
    text-align: left;
  }
  .bb-section {
    padding: 55px 0;
  }
  .bb-section-heading {
    display: block;
    margin-bottom: 28px;
  }
  .bb-section-heading p {
    font-size: 13px;
  }
  .bb-section-heading > .bb-text-link {
    margin-top: 15px;
  }
  .bb-feature-grid {
    grid-template-columns: 1fr;
  }
  .bb-feature {
    padding: 27px !important;
  }
  .bb-feature + .bb-feature {
    border-left: 0;
    border-top: 1px solid var(--bb-line);
  }
  .bb-feature-icon {
    margin-bottom: 20px;
  }
  .bb-feature p {
    min-height: 0;
  }
  .bb-feature .bb-text-link {
    margin-top: 12px;
  }
  .bb-model-toolbar {
    display: block;
  }
  .bb-filter-group {
    gap: 2px;
    margin-bottom: 14px;
  }
  .bb-filter {
    font-size: 11px;
    padding: 8px 12px;
    min-height: 38px;
  }
  .bb-search {
    width: 100%;
  }
  .bb-model-grid,
  .bb-grove .bb-model-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bb-model-card {
    padding: 22px;
  }
  .bb-model-top {
    margin-bottom: 13px;
  }
  .bb-model-card p {
    min-height: 0;
  }
  .bb-model-bottom {
    margin-top: 15px;
  }
  .bb-model-note {
    font-size: 10px;
    display: block;
  }
  .bb-model-note span {
    display: block;
    margin-top: 5px;
  }
  .bb-connect-layout,
  .bb-grove .bb-connect-layout,
  .bb-signal .bb-connect-layout {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .bb-connect-intro > p {
    font-size: 13px;
  }
  .bb-code-tool pre {
    padding: 22px 16px;
    font-size: 11px;
    min-height: 275px;
  }
  .bb-code-toolbar {
    padding-inline: 7px;
  }
  .bb-code-tab {
    padding: 10px;
  }
  .bb-code-copy {
    font-size: 10px;
    gap: 5px;
  }
  .bb-code-foot {
    font-size: 9px;
    padding: 12px;
    gap: 8px;
  }
  .bb-product-layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bb-product-points {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .bb-product-shot figcaption {
    font-size: 9px;
  }
  .bb-product-shot a {
    overflow-x: auto;
  }
  .bb-product-shot img {
    min-width: 580px;
  }
  .bb-product-points h3 {
    font-size: 16px;
  }
  .bb-usecases {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .bb-usecase .bb-kicker {
    margin-bottom: 17px;
  }
  .bb-usecase h3 {
    font-size: 21px;
  }
  .bb-faq-layout {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 40px;
  }
  .bb-faq-intro p {
    margin-top: 12px;
  }
  .bb-faq summary {
    font-size: 13px;
  }
  .bb-faq details p {
    font-size: 12px;
  }
  .bb-cta {
    padding: 42px 0;
  }
  .bb-cta .bb-container {
    display: block;
  }
  .bb-cta h2 {
    font-size: 27px;
  }
  .bb-cta .bb-btn {
    margin-top: 24px;
  }
  .bb-footer {
    padding-top: 35px;
  }
  .bb-footer-top {
    display: block;
    padding-bottom: 30px;
  }
  .bb-footer-links {
    gap: 55px;
    margin-top: 30px;
  }
  .bb-footer-bottom {
    display: block;
    font-size: 10px;
  }
  .bb-footer-bottom span {
    display: block;
    margin-top: 9px;
  }
  .bb-signal .bb-feature {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 15px;
    padding: 25px 0 !important;
  }
  .bb-signal .bb-feature p {
    grid-column: 2;
  }
  .bb-signal .bb-feature .bb-text-link {
    grid-column: 2;
  }
  .bb-signal .bb-feature h3 {
    font-size: 21px;
  }
  .bb-signal .bb-model-grid {
    gap: 8px;
  }
  .bb-signal .bb-product-points {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .bb-scene-fallback {
    width: 180px;
    height: 180px;
    right: calc(50% - 90px);
    top: auto;
    bottom: 100px;
  }
}
@media (max-width: 370px) {
  .bb-signal .bb-hero .bb-hero-subtitle {
    font-size: 23px;
  }
  .bb-container {
    padding-inline: 17px;
  }
  .bb-hero-heading {
    font-size: 42px;
  }
  .bb-hero .bb-hero-subtitle {
    font-size: 32px;
  }
  .bb-signal .bb-hero-heading {
    font-size: 57px;
  }
  .bb-grove .bb-hero-heading {
    font-size: 39px;
  }
  .bb-provider-names {
    font-size: 17px;
  }
  .bb-brand {
    font-size: 17px;
  }
  .bb-nav-actions .bb-btn {
    padding-inline: 9px;
  }
  .bb-hero-copy {
    font-size: 12px;
  }
}
@media (max-width: 760px) and (max-height: 740px) {
  .bb-hero,
  .bb-grove .bb-hero,
  .bb-signal .bb-hero {
    min-height: 0;
    height: calc(100svh - 110px);
  }
  .bb-hero-inner,
  .bb-grove .bb-hero-inner,
  .bb-signal .bb-hero-inner {
    padding-top: 25px;
  }
  .bb-hero-heading {
    font-size: 42px;
  }
  .bb-hero .bb-hero-subtitle {
    font-size: 31px;
  }
  .bb-grove .bb-hero-heading {
    font-size: 38px;
  }
  .bb-grove .bb-hero .bb-hero-subtitle {
    font-size: 24px;
  }
  .bb-signal .bb-hero-heading {
    font-size: 58px;
  }
  .bb-signal .bb-hero .bb-hero-subtitle {
    font-size: 23px;
  }
  .bb-hero-copy {
    font-size: 12px;
  }
  .bb-hero-note {
    margin-top: 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  .bb-btn:hover,
  .bb-model-card:hover {
    transform: none;
  }
}
