:root {
  --bc-navy-950: #061725;
  --bc-navy-900: #0a2236;
  --bc-navy-800: #123a57;
  --bc-orange: #f27a45;
  --bc-orange-light: #ff9a6f;
  --bc-cyan: #63d8df;
  --bc-paper: #f4f1eb;
  --bc-white: #fffdf9;
  --bc-ink: #102a3d;
  --bc-muted: #536978;
  --bc-line: rgba(10, 43, 65, 0.16);
  --bc-shell: 1240px;
  --bc-gutter: clamp(20px, 4vw, 56px);
  --bc-serif: Iowan Old Style, Baskerville, "Times New Roman", serif;
  --bc-sans: Montserrat, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.bc-page {
  background: var(--bc-paper);
  color: var(--bc-ink);
  font-family: var(--bc-sans);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

@media only screen and (min-width: 640px) {
  .bc-page {
    margin-top: 44px;
    background: var(--bc-navy-950);
  }
}

.bc-page *,
.bc-page *::before,
.bc-page *::after {
  box-sizing: border-box;
}

.bc-page h1,
.bc-page h2,
.bc-page h3,
.bc-page p,
.bc-page ul,
.bc-page ol {
  margin-top: 0;
}

.bc-page h1,
.bc-page h2 {
  color: inherit;
  font-family: var(--bc-serif);
  font-weight: 600;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.bc-page h1 {
  max-width: 10.8ch;
  margin-bottom: 24px;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.97;
}

.bc-page h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: clamp(38px, 4.7vw, 64px);
  line-height: 1.02;
}

.bc-page h3 {
  color: inherit;
  font-family: var(--bc-sans);
  font-size: clamp(20px, 2vw, 25px);
  font-weight: 650;
  letter-spacing: -0.025em;
  line-height: 1.25;
}

.bc-page a:focus-visible,
.bc-page summary:focus-visible,
.bc-page button:focus-visible {
  outline: 3px solid var(--bc-orange);
  outline-offset: 4px;
}

.bc-skip {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-150%);
  border-radius: 4px;
  background: var(--bc-white);
  color: var(--bc-navy-950);
  font-weight: 700;
}

.bc-skip:focus {
  transform: none;
}

.bc-shell {
  width: min(100%, var(--bc-shell));
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--bc-gutter);
  padding-left: var(--bc-gutter);
}

.bc-eyebrow {
  margin-bottom: 18px;
  color: #c95120;
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bc-hero {
  position: relative;
  min-height: 780px;
  padding: 140px 0 34px;
  overflow: hidden;
  background: var(--bc-navy-950);
  color: var(--bc-white);
}

.bc-hero::before {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 44%, rgba(51, 150, 169, 0.13), transparent 32%),
    linear-gradient(115deg, rgba(6, 23, 37, 0.22), rgba(6, 23, 37, 0.84));
  content: "";
  pointer-events: none;
}

.bc-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.055) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, #000 20%, transparent 94%);
  pointer-events: none;
}

.bc-hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 0.78fr);
  gap: clamp(40px, 7vw, 96px);
  align-items: center;
}

.bc-breadcrumb {
  margin-bottom: clamp(50px, 7vw, 80px);
}

.bc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 0;
  padding: 0;
  color: #9eb3c1;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  list-style: none;
  text-transform: uppercase;
}

.bc-breadcrumb li:not(:last-child)::after {
  margin-left: 8px;
  content: "/";
  opacity: 0.55;
}

.bc-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.bc-breadcrumb a:hover {
  color: var(--bc-white);
}

.bc-hero .bc-eyebrow,
.bc-section-dark .bc-eyebrow,
.bc-cta .bc-eyebrow {
  color: var(--bc-orange-light);
}

.bc-lede {
  max-width: 610px;
  margin-bottom: 0;
  color: #c3d2dc;
  font-size: clamp(18px, 1.75vw, 22px);
  font-weight: 400;
  line-height: 1.55;
}

.bc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.bc-button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 12px 20px;
  border: 1px solid var(--bc-navy-950);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease;
}

.bc-button:hover {
  transform: translateY(-2px);
  text-decoration: none;
}

.bc-button-primary {
  border-color: var(--bc-orange);
  background: var(--bc-orange);
  color: var(--bc-navy-950);
}

.bc-button-primary:hover {
  border-color: var(--bc-orange-light);
  background: var(--bc-orange-light);
  color: var(--bc-navy-950);
}

.bc-button-secondary {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.03);
  color: var(--bc-white);
}

.bc-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.68);
  color: var(--bc-white);
}

.bc-capability-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 32px 0 0;
  padding: 0;
  color: #8fa7b7;
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  list-style: none;
  text-transform: uppercase;
}

.bc-capability-list li::before {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--bc-cyan);
  content: "";
  vertical-align: 2px;
}

.bc-visual {
  position: relative;
  min-height: 510px;
  overflow: visible;
  isolation: isolate;
}

.bc-shader {
  position: absolute;
  z-index: -1;
  inset: -56px -10vw -54px -76px;
  display: block;
  width: calc(100% + 10vw + 152px);
  height: calc(100% + 110px);
  background: transparent;
  mask-image: radial-gradient(ellipse 72% 76% at 53% 49%, #000 45%, rgba(0, 0, 0, 0.78) 66%, transparent 100%);
}

.bc-shader[data-fallback="true"] {
  background:
    radial-gradient(circle at 65% 38%, rgba(78, 190, 198, 0.23), transparent 34%),
    linear-gradient(145deg, #102f46, #071824 72%);
}

.bc-visual::after {
  content: none;
}

.bc-visual-topline {
  position: relative;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  padding: 18px 2px;
  color: #9bb0be;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-live {
  color: #a7e5d1;
}

.bc-live i {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 7px;
  border-radius: 50%;
  background: #68dfb8;
  box-shadow: 0 0 12px rgba(104, 223, 184, 0.7);
}

.bc-signal-title {
  position: absolute;
  z-index: 2;
  top: 44%;
  left: 50%;
  width: 100%;
  color: var(--bc-white);
  text-align: center;
  text-shadow: 0 2px 18px rgba(1, 10, 18, 0.82);
  transform: translate(-50%, -50%);
}

.bc-signal-title small,
.bc-signal-title strong {
  display: block;
}

.bc-signal-title small {
  margin-bottom: 7px;
  color: #9eb6c5;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.bc-signal-title strong {
  font-size: clamp(27px, 3vw, 38px);
  font-weight: 650;
  letter-spacing: -0.04em;
}

.bc-ledger-index {
  position: absolute;
  z-index: 2;
  right: 32px;
  bottom: 128px;
  left: 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0;
  padding: 0;
  list-style: none;
}

.bc-ledger-index::before {
  position: absolute;
  top: 4px;
  right: 4%;
  left: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 213, 221, 0.68) 12%, rgba(124, 213, 221, 0.68) 74%, rgba(242, 122, 69, 0.84) 88%, transparent);
  box-shadow: 0 0 8px rgba(99, 216, 223, 0.28);
  content: "";
}

.bc-ledger-index li {
  position: relative;
  padding-top: 17px;
  color: #8ca7b7;
  text-align: center;
}

.bc-ledger-index li::before {
  position: absolute;
  top: 1px;
  left: calc(50% - 3px);
  width: 7px;
  height: 7px;
  border: 1px solid rgba(145, 226, 229, 0.75);
  border-radius: 50%;
  background: #163e50;
  box-shadow: 0 0 10px rgba(99, 216, 223, 0.48);
  content: "";
}

.bc-ledger-index span,
.bc-ledger-index small {
  display: block;
}

.bc-ledger-index span {
  color: #d6e8eb;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.bc-ledger-index small {
  margin-top: 2px;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-ledger-index .bc-ledger-new::before {
  border-color: rgba(255, 159, 108, 0.92);
  background: var(--bc-orange);
  box-shadow: 0 0 14px rgba(242, 122, 69, 0.82);
}

.bc-ledger-index .bc-ledger-new span {
  color: var(--bc-orange-light);
}

.bc-signal-key {
  position: absolute;
  z-index: 2;
  top: 79px;
  right: 20px;
  display: flex;
  gap: 17px;
  color: #718b9c;
  font-size: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bc-signal-key span {
  display: flex;
  gap: 6px;
  align-items: center;
}

.bc-signal-key i {
  display: inline-block;
  width: 13px;
  height: 1px;
  box-shadow: 0 0 6px currentColor;
}

.bc-key-confirmed {
  background: var(--bc-cyan);
  color: var(--bc-cyan);
}

.bc-key-incoming {
  background: var(--bc-orange);
  color: var(--bc-orange);
}

.bc-block-status {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 10px;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: transparent;
}

.bc-status-icon {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(104, 223, 184, 0.13);
  color: #85e3c5;
  font-size: 13px;
}

.bc-block-status small,
.bc-block-status strong {
  display: block;
}

.bc-block-status small {
  color: #718c9e;
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.4;
  text-transform: uppercase;
}

.bc-block-status strong {
  color: #eaf6f7;
  font-size: 11px;
  font-weight: 650;
}

.bc-block-status code {
  color: #708d9f;
  font-size: 9px;
}

.bc-hero-foot {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  margin-top: 66px;
  color: #718a9a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.bc-section {
  padding-top: clamp(88px, 11vw, 150px);
  padding-bottom: clamp(88px, 11vw, 150px);
}

.bc-split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 0.75fr);
  gap: clamp(48px, 10vw, 140px);
}

.bc-prose {
  max-width: 620px;
  padding-top: 42px;
  color: var(--bc-muted);
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.75;
}

.bc-prose p {
  margin-bottom: 24px;
}

.bc-section-dark {
  background: var(--bc-navy-950);
  color: var(--bc-white);
}

.bc-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.5fr);
  gap: 48px;
  align-items: end;
}

.bc-section-heading > p {
  max-width: 460px;
  margin-bottom: 6px;
  color: var(--bc-muted);
  font-size: 16px;
}

.bc-section-dark .bc-section-heading > p {
  color: #9cb0bd;
}

.bc-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 76px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.bc-card {
  min-height: 430px;
  padding: clamp(28px, 4vw, 50px);
  border-right: 1px solid rgba(255, 255, 255, 0.14);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.015);
}

.bc-card-number {
  display: block;
  margin-bottom: 84px;
  color: var(--bc-orange);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.bc-card p {
  max-width: 500px;
  margin: 18px 0 26px;
  color: #a9bbc6;
}

.bc-card ul {
  margin-bottom: 0;
  padding-left: 18px;
  color: #d3e0e6;
  font-size: 13px;
}

.bc-card li {
  margin-bottom: 8px;
  padding-left: 4px;
}

.bc-process {
  margin: 76px 0 0;
  padding: 0;
  border-top: 1px solid var(--bc-line);
  list-style: none;
}

.bc-process li {
  display: grid;
  grid-template-columns: 0.4fr 1.6fr;
  gap: 32px;
  padding: 32px 0;
  border-bottom: 1px solid var(--bc-line);
}

.bc-process > li > span {
  color: #cc5423;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.bc-process h3 {
  margin-bottom: 8px;
}

.bc-process p {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--bc-muted);
}

.bc-use-cases {
  background: #e9e7e1;
}

.bc-use-case {
  padding: 30px 0 34px;
  border-top: 1px solid var(--bc-line);
}

.bc-use-case:last-child {
  border-bottom: 1px solid var(--bc-line);
}

.bc-use-case > span {
  display: block;
  margin-bottom: 24px;
  color: #c95120;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.bc-use-case h3 {
  margin-bottom: 12px;
}

.bc-use-case p {
  max-width: 630px;
  margin-bottom: 0;
  color: var(--bc-muted);
}

.bc-fit {
  background: var(--bc-white);
}

.bc-fit h2 {
  max-width: 15ch;
}

.bc-fit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 64px;
}

.bc-fit-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(23, 118, 109, 0.22);
  background: #edf7f2;
}

.bc-fit-panel-muted {
  border-color: var(--bc-line);
  background: #f1f0ed;
}

.bc-fit-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 30px;
  color: #206e62;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.bc-fit-panel-muted .bc-fit-label {
  color: #697985;
}

.bc-fit-label i {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-style: normal;
}

.bc-fit-panel ul {
  margin-bottom: 0;
  padding-left: 20px;
  color: #345568;
}

.bc-fit-panel li {
  margin-bottom: 14px;
  padding-left: 5px;
}

.bc-faq-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: clamp(50px, 10vw, 140px);
}

.bc-faq {
  border-top: 1px solid var(--bc-line);
}

.bc-faq details {
  border-bottom: 1px solid var(--bc-line);
}

.bc-faq summary {
  position: relative;
  padding: 26px 48px 26px 0;
  color: var(--bc-ink);
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  list-style: none;
}

.bc-faq summary::-webkit-details-marker {
  display: none;
}

.bc-faq summary::after {
  position: absolute;
  top: 25px;
  right: 4px;
  color: #c95120;
  content: "+";
  font-size: 24px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.bc-faq details[open] summary::after {
  transform: rotate(45deg);
}

.bc-faq details p {
  max-width: 680px;
  margin: -4px 48px 28px 0;
  color: var(--bc-muted);
}

.bc-cta {
  padding: clamp(76px, 10vw, 130px) 0;
  background: var(--bc-orange);
  color: var(--bc-navy-950);
}

.bc-cta .bc-eyebrow {
  color: #742d14;
}

.bc-cta-inner {
  display: grid;
  grid-template-columns: 1fr 0.65fr;
  gap: clamp(48px, 10vw, 140px);
  align-items: end;
}

.bc-cta-inner > div:last-child {
  max-width: 480px;
}

.bc-cta-inner p {
  margin-bottom: 28px;
  color: #542e23;
  font-size: 17px;
}

.bc-button-light {
  border-color: var(--bc-navy-950);
  background: var(--bc-navy-950);
  color: var(--bc-white);
}

.bc-button-light:hover {
  background: var(--bc-navy-800);
  color: var(--bc-white);
}

.bc-page #footer {
  background: var(--bc-navy-950);
}

.bc-page .footer-cookie-link {
  padding: 0;
  border: 0;
  border-bottom: 1px dotted #a2a2a2;
  background: transparent;
  color: #a2a2a2;
  cursor: pointer;
  font: inherit;
}

.bc-page .top-bar .name > a {
  display: inline-block;
  width: 174px;
  height: 45px;
}

.bc-page .top-bar .name img {
  width: 144px;
  max-width: none;
  height: 29px;
  padding: 8px 15px;
}

@media only screen and (max-width: 980px) {
  .bc-hero {
    padding-top: 112px;
  }

  .bc-hero-layout {
    grid-template-columns: 1fr;
  }

  .bc-hero-copy {
    max-width: 760px;
  }

  .bc-visual {
    min-height: 500px;
  }

  .bc-split,
  .bc-section-heading,
  .bc-faq-layout,
  .bc-cta-inner {
    grid-template-columns: 1fr;
  }

  .bc-prose {
    padding-top: 0;
  }
}

@media only screen and (max-width: 700px) {
  .bc-page h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .bc-page h2 {
    font-size: clamp(36px, 10vw, 52px);
  }

  .bc-hero {
    min-height: auto;
    padding-top: 72px;
  }

  .bc-breadcrumb {
    margin-bottom: 46px;
  }

  .bc-actions {
    display: grid;
  }

  .bc-button {
    width: 100%;
  }

  .bc-capability-list {
    display: grid;
  }

  .bc-visual {
    min-height: 430px;
  }

  .bc-block-status {
    right: 12px;
    bottom: 12px;
    left: 12px;
  }

  .bc-block-status code {
    display: none;
  }

  .bc-hero-foot {
    margin-top: 40px;
  }

  .bc-split {
    grid-template-columns: 1fr;
  }

  .bc-card-grid,
  .bc-fit-grid {
    grid-template-columns: 1fr;
  }

  .bc-card {
    min-height: auto;
  }

  .bc-card-number {
    margin-bottom: 48px;
  }

  .bc-process li {
    grid-template-columns: 44px 1fr;
    gap: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bc-page {
    scroll-behavior: auto;
  }

  .bc-button {
    transition: none;
  }
}
