:root {
  --bc-dark: #313b45;
  --bc-white: #fefffa;
  --bc-blue: #80a6ed;
  --bc-deep: #0e498f;
}

.bc-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: var(--bc-white);
  color: var(--bc-dark);
  display: flex;
  align-items: center;
  padding: 120px 7vw;
}
.bc-hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 72% 42%, rgba(128,166,237,.18), transparent 32%),
    radial-gradient(circle at 18% 80%, rgba(14,73,143,.05), transparent 25%);
  pointer-events:none;
}

.bc-hero__noise {
  position: absolute;
  inset: 0;
  opacity: .18;
  background-image: radial-gradient(rgba(49,59,69,.16) 1px, transparent 1px);
  background-size: 5px 5px;
  pointer-events: none;
}

.bc-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.bc-hero__inner {
  position: relative;
  z-index: 5;
  width: 100%;
}

.bc-hero__content {
  position: relative;
  z-index: 5;
  max-width: 760px;
}

.bc-eyebrow {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--bc-deep);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-hero__title {
  margin: 0;
  font-family: "Archivo Black", Impact, Arial Black, sans-serif;
  font-size: clamp(62px, 9vw, 120px);
  line-height: .85;
  color: var(--bc-dark);
}

.bc-hero__title span {
  color: var(--bc-deep);
}

.bc-hero__copy {
  max-width: 520px;
  margin: 30px 0 0;
  color: rgba(49,59,69,.74);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.65;
}

.bc-hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

.bc-hero__title,
.bc-section-title,
.bc-statement h2{
   font-family:'Anton',sans-serif;
}
.bc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
  transition:
    transform .35s ease,
    box-shadow .35s ease,
    background .35s ease;
}

.bc-btn:hover {
  transform: translateY(-4px);
}

.bc-btn-primary {
  background: var(--bc-deep);
  color: #fff !important;
  box-shadow: 0 22px 55px rgba(14,73,143,.24);
}

.bc-btn-primary:hover {
  box-shadow: 0 28px 70px rgba(14,73,143,.34);
}

.bc-btn-outline {
  border: 1px solid rgba(14,73,143,.3);
  color: var(--bc-deep) !important;
  background: rgba(255,255,255,.45);
  backdrop-filter: blur(10px);
}

.bc-btn-outline:hover {
  background: rgba(255,255,255,.7);
}

.bc-hero__visual{
    position:absolute;
    right:-4vw;
    top:50%;
    width:58vw;
    height:58vw;

    transform:translateY(-50%);

    display:flex;
    align-items:center;
    justify-content:center;

    pointer-events:none;
}
.bc-hero__visual::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(14,73,143,.16) 0 1px, transparent 1px 12px),
    radial-gradient(circle, rgba(128,166,237,.22), transparent 58%);
  animation: bcWavePulse 9s ease-in-out infinite;
}

.bc-hero__svg{
    position:absolute;
    width:100%;
    height:100%;
    object-fit:contain;

    opacity:.72;

    filter:
      blur(.2px)
      drop-shadow(0 0 40px rgba(128,166,237,.22));
}

.bc-hero__glow{
    position:absolute;

    width:60%;
    height:60%;
    border-radius:50%;

    background:
      radial-gradient(circle,
      rgba(128,166,237,.22),
      transparent 70%);

    filter:blur(40px);
}

.bc-hero__portal{
    position:absolute;

    width:180px;
    height:280px;

    border:2px solid rgba(34,99,255,.75);

    transform:rotate(8deg);

    background:
      linear-gradient(
        180deg,
        rgba(255,255,255,.12),
        rgba(255,255,255,.02)
      );

    backdrop-filter:blur(12px);
}
.bc-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 36px;
  z-index: 5;
  transform: translateX(-50%);
  color: rgba(49,59,69,.62);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}

.bc-hero__scroll span {
  display: block;
  width: 1px;
  height: 38px;
  margin: 0 auto 10px;
  background: linear-gradient(
    to bottom,
    transparent,
    var(--bc-deep),
    transparent
  );
}

@keyframes bcWavePulse {
  0%, 100% {
    transform: translateY(-50%) scale(1) rotate(0deg);
  }

  50% {
    transform: translateY(-50%) scale(1.05) rotate(4deg);
  }
}

@media (max-width: 768px) {

  .bc-hero {
    padding: 120px 24px 90px;
  }

  .bc-hero__title {
    font-size: clamp(50px, 17vw, 86px);
  }

  .bc-hero__wave {
    width: 120vw;
    height: 120vw;
    right: -72vw;
    opacity: .35;
  }

  .bc-hero__copy {
    font-size: 16px;
  }

  .bc-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .bc-btn {
    width: 100%;
  }

  .bc-hero__scroll {
    display: none;
  }
}

/* ================================
   Shared clean sections
================================ */

.bc-split-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  margin-bottom: 76px;
}

.bc-section-title--clean {
  margin-top: 18px;
  font-family: "Archivo Black", Impact, Arial Black, sans-serif;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.02;
  color: var(--bc-dark);
}

.bc-mini-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  padding: 0 18px 0 22px;
  border-radius: 999px;
  border: 1px solid rgba(14, 73, 143, .22);
  color: var(--bc-deep) !important;
  text-decoration: none !important;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  background: rgba(255,255,255,.62);
  transition: transform .35s ease, box-shadow .35s ease, background .35s ease;
  white-space: nowrap;
}

.bc-mini-btn span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  color: #fff;
  background: var(--bc-deep);
}

.bc-mini-btn:hover {
  transform: translateY(-3px);
  background: #fff;
  box-shadow: 0 16px 42px rgba(14,73,143,.1);
}

/* ================================
   Ecosystems horizontal cinematic
================================ */

.bc-ecosystems--cinematic {
  position: relative;
  z-index: 2;
  height: 260vh;
  margin-top: -110px;
  background:
    radial-gradient(circle at 72% 0%, rgba(128,166,237,.18), transparent 26%),
    linear-gradient(180deg, rgba(251,252,255,.25) 0%, #fbfcff 18%, #fff 100%);
}

.bc-ecosystems__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow: hidden;
  padding-top: 150px;
}

.bc-eco-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bc-eco-bg__wave {
  position: absolute;
  right: -18vw;
  top: -18vw;
  width: 82vw;
  height: 82vw;
  border-radius: 50%;
  opacity: .2;
  background:
    repeating-radial-gradient(circle, rgba(14,73,143,.24) 0 1px, transparent 1px 14px),
    radial-gradient(circle, rgba(128,166,237,.25), transparent 58%);
}

.bc-eco-bg__glow {
  position: absolute;
  left: 10vw;
  bottom: 8vh;
  width: 36vw;
  height: 36vw;
  border-radius: 50%;
  background: rgba(128,166,237,.16);
  filter: blur(80px);
}

.bc-ecosystems__header {
  display: grid;
  grid-template-columns: 1fr .58fr;
  gap: 70px;
  align-items: end;
  margin-bottom: 70px;
}

.bc-ecosystems__intro p {
  margin: 0;
  max-width: 430px;
  color: rgba(49,59,69,.66);
  font-size: 18px;
  line-height: 1.65;
}

.bc-eco-track-wrap {
  position: relative;
  width: 100%;
  overflow: visible;
}

.bc-eco-track {
  display: flex;
  gap: 28px;
  width: max-content;
  padding-left: max(7vw, calc((100vw - 1440px) / 2 + 48px));
  padding-right: 7vw;
  will-change: transform;
}

.bc-eco-panel {
  position: relative;
  width: min(520px, 78vw);
  height: 460px;
  padding: 38px;
  border-radius: 38px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,.42));
  border: 1px solid rgba(14,73,143,.1);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 35px 110px rgba(14,73,143,.08);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.bc-eco-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 15%, rgba(128,166,237,.25), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.16), transparent);
  pointer-events: none;
}

.bc-eco-panel__num {
  position: absolute;
  right: 30px;
  top: 24px;
  color: rgba(14,73,143,.18);
  font-size: 90px;
  line-height: 1;
  font-family: "Archivo Black", Impact, sans-serif;
}

.bc-eco-panel .bc-eco-visual {
  position: absolute;
  left: 38px;
  top: 42px;
  width: 160px;
  height: 160px;
}

.bc-eco-kicker {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 16px;
  color: rgba(14,73,143,.62);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-eco-panel h3 {
  position: relative;
  z-index: 2;
  max-width: 380px;
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(36px, 3vw, 58px);
  line-height: .88;
  color: #111c35;
}

.bc-eco-panel p {
  position: relative;
  z-index: 2;
  max-width: 330px;
  margin: 20px 0 0;
  color: rgba(49,59,69,.68);
  font-size: 16px;
  line-height: 1.55;
}

/* Reutiliza tus .bc-visual--rings, audio, layers, dots */

@media (max-width: 768px) {
  .bc-ecosystems--cinematic {
    height: auto;
    margin-top: -70px;
    padding: 150px 0 90px;
  }

  .bc-ecosystems__sticky {
    position: relative;
    height: auto;
    padding-top: 0;
  }

  .bc-ecosystems__header {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 46px;
  }

  .bc-eco-track {
    width: auto;
    flex-direction: column;
    padding: 0 24px;
  }

  .bc-eco-panel {
    width: 100%;
    height: 430px;
  }
}

/* ================================
   Methodology cinematic countdown
================================ */

.bc-methodology--cinematic {
  position: relative;
  z-index: 2;
  min-height: 120vh;
  padding: 160px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 30%, rgba(128,166,237,.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f8fbff 100%);
}

.bc-method-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.bc-method-bg__wave {
  position: absolute;
  left: -18vw;
  bottom: -22vw;
  width: 76vw;
  height: 76vw;
  border-radius: 50%;
  opacity: .18;
  background:
    repeating-radial-gradient(circle, rgba(14,73,143,.24) 0 1px, transparent 1px 15px),
    radial-gradient(circle, rgba(128,166,237,.22), transparent 58%);
}

.bc-method-bg__glow {
  position: absolute;
  right: 4vw;
  top: 22vh;
  width: 32vw;
  height: 32vw;
  border-radius: 50%;
  background: rgba(128,166,237,.18);
  filter: blur(80px);
}

.bc-methodology__header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr .55fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 80px;
}

.bc-methodology__header p {
  max-width: 520px;
  margin: 0;
  color: rgba(49,59,69,.66);
  font-size: 18px;
  line-height: 1.65;
}

.bc-method-cinema {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .42fr 1fr;
  gap: 56px;
  align-items: center;
  min-height: 620px;
  perspective: 1400px;
}

.bc-method-count {
  position: relative;
  min-height: 440px;
  padding: 42px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.bc-method-count__label,
.bc-method-count__text {
  color: rgba(14,73,143,.65);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-countdown-reel {
  position: relative;
  width: min(360px, 70vw);
  aspect-ratio: 1;
  margin: 24px 0;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 50%, rgba(254,255,250,.92), rgba(128,166,237,.12) 58%, rgba(14,73,143,.08)),
    linear-gradient(135deg, rgba(14,73,143,.06), rgba(255,255,255,.55));
  border: 1px solid rgba(14,73,143,.14);
  box-shadow:
    0 30px 90px rgba(14,73,143,.12),
    inset 0 0 0 1px rgba(255,255,255,.65);
}

.bc-countdown-reel::before,
.bc-countdown-reel::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 34px;
  background:
    linear-gradient(90deg, #111923 0 10px, transparent 10px 24px) 0 50% / 34px 14px repeat-x,
    #111923;
  z-index: 4;
}

.bc-countdown-reel::before {
  top: 0;
}

.bc-countdown-reel::after {
  bottom: 0;
}

.bc-countdown-reel__frame {
  position: absolute;
  inset: 34px 0;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(17,25,35,.22) 50%, transparent calc(50% + 1px)),
    linear-gradient(0deg, transparent calc(50% - 1px), rgba(17,25,35,.22) 50%, transparent calc(50% + 1px));
  z-index: 1;
}

.bc-countdown-reel__scan {
  position: absolute;
  inset: 34px 0;
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(255,255,255,.42) 43% 58%, transparent 59%),
    radial-gradient(circle at 50% 50%, transparent 0 36%, rgba(14,73,143,.08) 37% 38%, transparent 39% 100%);
  opacity: .7;
  z-index: 2;
}

.bc-countdown-reel__circle {
  position: absolute;
  inset: 72px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,.8);
  box-shadow:
    0 0 0 18px rgba(255,255,255,.26),
    0 0 0 38px rgba(255,255,255,.18),
    0 0 0 58px rgba(255,255,255,.12);
  z-index: 3;
}

.bc-countdown-reel__hand {
  position: absolute;
  left: 50%;
  top: 34px;
  width: 2px;
  height: calc(50% - 34px);
  background: linear-gradient(to bottom, rgba(17,25,35,.65), transparent);
  transform-origin: bottom center;
  transform: translateX(-50%) rotate(0deg);
  z-index: 5;
}

.bc-method-count__number {
  position: absolute;
  inset: 34px 0;
  z-index: 6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(110px, 13vw, 220px);
  line-height: 1;
  color: #111923;
  text-shadow:
    0 18px 55px rgba(14,73,143,.16),
    0 1px 0 rgba(255,255,255,.9);
}

.bc-method-slider {
  position: relative;
  height: 560px;
  transform-style: preserve-3d;
}

.bc-method-slide {
  position: absolute;
  inset: 0;
  padding: 46px;
  border-radius: 42px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,.48));
  border: 1px solid rgba(14,73,143,.12);
  box-shadow: 0 34px 110px rgba(14,73,143,.11);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transform-origin: center;
  opacity: 0;
  transform: translate3d(160px, 0, -220px) rotateY(-18deg) scale(.88);
  transition:
    transform .9s cubic-bezier(.22,1,.36,1),
    opacity .9s cubic-bezier(.22,1,.36,1),
    filter .9s cubic-bezier(.22,1,.36,1);
  filter: blur(10px);
  pointer-events: none;
}

.bc-method-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(128,166,237,.24), transparent 38%),
    linear-gradient(180deg, rgba(255,255,255,.22), transparent);
  pointer-events: none;
}

.bc-method-slide::after {
  content: "";
  position: absolute;
  right: -12%;
  bottom: -28%;
  width: 70%;
  height: 70%;
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(14,73,143,.12) 0 1px, transparent 1px 16px);
  opacity: .55;
}

.bc-method-slide.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0) rotateY(0deg) scale(1);
  filter: blur(0);
  pointer-events: auto;
  z-index: 5;
}

.bc-method-slide.is-prev {
  opacity: .28;
  transform: translate3d(-100px, 0, -180px) rotateY(14deg) scale(.86);
  z-index: 2;
}

.bc-method-slide.is-next {
  opacity: .35;
  transform: translate3d(120px, 0, -160px) rotateY(-14deg) scale(.88);
  z-index: 3;
}

.bc-method-slide__index {
  position: absolute;
  right: 34px;
  top: 26px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: 130px;
  line-height: .8;
  color: rgba(14,73,143,.08);
}

.bc-method-slide .bc-method-icon {
  position: relative;
  z-index: 2;
  width: 92px;
  height: 92px;
  margin-bottom: 96px;
}

.bc-method-slide__kicker {
  position: relative;
  z-index: 2;
  display: block;
  color: rgba(14,73,143,.65);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.bc-method-slide h3 {
  position: relative;
  z-index: 2;
  max-width: 660px;
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 5vw, 86px);
  line-height: .88;
  color: #111c35;
}

.bc-method-slide p {
  position: relative;
  z-index: 2;
  max-width: 520px;
  margin: 26px 0 0;
  color: rgba(49,59,69,.68);
  font-size: 18px;
  line-height: 1.62;
}

.bc-method-progress {
  position: absolute;
  right: 0;
  bottom: -42px;
  display: flex;
  gap: 12px;
}

.bc-method-progress span {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(14,73,143,.18);
  color: rgba(14,73,143,.48);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  transition: all .45s ease;
}

.bc-method-progress span.is-active {
  background: var(--bc-deep);
  color: #fff;
  border-color: var(--bc-deep);
  box-shadow: 0 16px 34px rgba(14,73,143,.22);
}

@media (max-width: 992px) {
  .bc-method-cinema,
  .bc-methodology__header {
    grid-template-columns: 1fr;
  }

  .bc-method-count {
    min-height: auto;
    padding: 0;
  }

  .bc-method-slider {
    height: 560px;
  }
}

@media (max-width: 640px) {
  .bc-methodology--cinematic {
    padding: 100px 0;
    min-height: auto;
  }

  .bc-method-slider {
    height: 600px;
  }

  .bc-method-slide {
    padding: 32px;
    border-radius: 30px;
  }

  .bc-method-slide .bc-method-icon {
    margin-bottom: 80px;
  }

  .bc-method-progress {
    position: relative;
    bottom: auto;
    margin-top: 24px;
    flex-wrap: wrap;
  }
}

@media (max-width: 640px) {
  .bc-ecosystems {
    padding: 90px 0 80px;
  }

  .bc-methodology {
    padding: 90px 0;
  }

  .bc-ecosystems__grid,
  .bc-method-line {
    grid-template-columns: 1fr;
  }

  .bc-eco-item {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(49,59,69,.08);
  }

  .bc-eco-item:last-child {
    border-bottom: 0;
  }

  .bc-method-step {
    min-height: auto;
    border-bottom: 1px solid rgba(49,59,69,.08);
  }

  .bc-method-step:last-child {
    border-bottom: 0;
  }
}
.bc-statement {
  position: relative;
  overflow: hidden;
  padding: 160px 0;
  background: #111923;
  color: var(--bc-white);
}

.bc-statement__noise {
  position: absolute;
  inset: 0;
  opacity: .12;
  background-image: radial-gradient(rgba(255,255,255,.18) 1px, transparent 1px);
  background-size: 5px 5px;
}

.bc-statement__glow {
  position: absolute;
  right: -10vw;
  top: 50%;
  width: 55vw;
  height: 55vw;
  border-radius: 50%;
  transform: translateY(-50%);
  background:
    radial-gradient(circle, rgba(128,166,237,.24), transparent 58%),
    repeating-radial-gradient(circle, rgba(128,166,237,.16) 0 1px, transparent 1px 14px);
  animation: bcWavePulse 10s ease-in-out infinite;
}

.bc-statement .bc-container {
  position: relative;
  z-index: 2;
}

.bc-statement .bc-eyebrow {
  color: var(--bc-blue);
}

.bc-statement h2 {
  max-width: 980px;
  margin: 24px 0 0;
  font-family: "Archivo Black", Impact, Arial Black, sans-serif;
  font-size: clamp(52px, 8vw, 128px);
  line-height: .86;
  color: var(--bc-white);
}

.bc-statement p {
  max-width: 560px;
  margin-top: 34px;
  color: rgba(254,255,250,.68);
  font-size: 20px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .bc-statement {
    padding: 110px 0;
  }

  .bc-statement__glow {
    width: 110vw;
    height: 110vw;
    right: -65vw;
    opacity: .45;
  }
}

.bc-socials{
    position:absolute;

    left:26px;
    top:50%;

    transform:translateY(-50%);

    display:flex;
    flex-direction:column;
    gap:22px;

    z-index:20;
}

.bc-socials::before{
    content:"";
    position:absolute;

    left:50%;
    top:-120px;

    width:1px;
    height:90px;

    background:
      linear-gradient(
        to bottom,
        transparent,
        rgba(14,73,143,.22)
      );
}

.bc-socials::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:-120px;

    width:1px;
    height:90px;

    background:
      linear-gradient(
        to top,
        transparent,
        rgba(14,73,143,.22)
      );
}

.bc-socials a{
    width:42px;
    height:42px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    color:#4b5563;

    transition:
      transform .35s ease,
      color .35s ease,
      background .35s ease;
}

.bc-socials a:hover{
    transform:translateY(-4px);

    background:#fff;

    color:var(--bc-deep);

    box-shadow:
      0 10px 30px rgba(14,73,143,.12);
}

html {
  scroll-behavior: auto !important;
}

body {
  background: #fefffa;
  overflow-x: hidden;
}

.bc-atmosphere {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.bc-atmosphere__noise {
  position: absolute;
  inset: 0;
  opacity: .13;
  background-image: radial-gradient(rgba(14,73,143,.18) 1px, transparent 1px);
  background-size: 5px 5px;
  mix-blend-mode: multiply;
}

.bc-atmosphere__orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  opacity: .45;
  will-change: transform;
}

.bc-atmosphere__orb--one {
  width: 38vw;
  height: 38vw;
  right: -12vw;
  top: 12vh;
  background: rgba(128,166,237,.38);
}

.bc-atmosphere__orb--two {
  width: 28vw;
  height: 28vw;
  left: -10vw;
  top: 64vh;
  background: rgba(14,73,143,.16);
}

.bc-atmosphere__grid {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image:
    linear-gradient(rgba(14,73,143,.25) 1px, transparent 1px),
    linear-gradient(90deg, rgba(14,73,143,.25) 1px, transparent 1px);
  background-size: 90px 90px;
}

.bc-hero,
.bc-ecosystems,
.bc-methodology,
.bc-statement {
  position: relative;
  z-index: 2;
}

.bc-hero {
  min-height: 100svh;
  background:
    radial-gradient(circle at 74% 46%, rgba(128,166,237,.18), transparent 34%),
    linear-gradient(180deg, #fefffa 0%, #fbfcff 100%);
}

.bc-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 160px;
  background: linear-gradient(to bottom, transparent, #fbfcff);
  pointer-events: none;
  z-index: 3;
}

/* ================================
   Cinematic case studies
================================ */

.bc-cases {
  position: relative;
  z-index: 2;
  padding: 130px 0 150px;
  background:
    radial-gradient(circle at 80% 20%, rgba(128,166,237,.16), transparent 28%),
    linear-gradient(180deg, #fff 0%, #fbfcff 100%);
  overflow: hidden;
}

.bc-cases::before {
  content: "";
  position: absolute;
  left: 7vw;
  right: 7vw;
  top: 0;
  height: 1px;
  background: rgba(49,59,69,.08);
}

.bc-cases__grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  grid-template-rows: repeat(2, 330px);
  gap: 24px;
}

.bc-case-card {
  position: relative;
  overflow: hidden;
  border-radius: 32px;
  background: #111923;
  box-shadow: 0 28px 90px rgba(14,73,143,.08);
}

.bc-case-card--large {
  grid-row: span 2;
}

.bc-case-card__link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff !important;
  text-decoration: none !important;
  overflow: hidden;
}

.bc-case-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.1s cubic-bezier(.22,1,.36,1);
}

.bc-case-card:hover .bc-case-card__image {
  transform: scale(1.14);
}

.bc-case-card__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(17,25,35,.1) 0%, rgba(17,25,35,.78) 100%),
    radial-gradient(circle at 80% 20%, rgba(14,73,143,.48), transparent 38%);
  z-index: 1;
  transition: opacity .6s ease;
}

.bc-case-card:hover .bc-case-card__overlay {
  opacity: .92;
}

.bc-case-card__content {
  position: absolute;
  inset: auto 0 0 0;
  z-index: 2;
  padding: 34px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 22px;
}

.bc-case-card__tag {
  display: inline-block;
  margin-bottom: 14px;
  color: rgba(254,255,250,.72);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.bc-case-card h3 {
  margin: 0;
  font-family: "Archivo Black", Impact, Arial Black, sans-serif;
  font-size: clamp(38px, 4vw, 76px);
  line-height: .9;
  color: #fff;
}

.bc-case-card:not(.bc-case-card--large) h3 {
  font-size: clamp(30px, 2.7vw, 48px);
}

.bc-case-card__metrics {
  display: flex;
  gap: 18px;
  flex-shrink: 0;
}

.bc-case-card__metrics div {
  min-width: 112px;
}

.bc-case-card__metrics strong {
  display: block;
  font-family: "Archivo Black", Impact, Arial Black, sans-serif;
  font-size: clamp(28px, 3vw, 52px);
  line-height: .9;
  color: #fff;
}

.bc-case-card__metrics span {
  display: block;
  margin-top: 7px;
  color: rgba(254,255,250,.72);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.bc-case-card__arrow {
  position: absolute;
  right: 28px;
  top: 28px;
  z-index: 3;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,.9);
  color: var(--bc-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  transform: rotate(-35deg);
  transition: transform .45s ease, background .45s ease, color .45s ease;
}

.bc-case-card:hover .bc-case-card__arrow {
  transform: rotate(0deg) scale(1.06);
  background: var(--bc-deep);
  color: #fff;
}

@media (max-width: 992px) {
  .bc-cases__grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .bc-case-card,
  .bc-case-card--large {
    min-height: 420px;
    grid-row: auto;
  }
}

@media (max-width: 640px) {
  .bc-cases {
    padding: 90px 0;
  }

  .bc-case-card {
    border-radius: 24px;
    min-height: 380px;
  }

  .bc-case-card__content {
    flex-direction: column;
    align-items: flex-start;
    padding: 26px;
  }

  .bc-case-card__metrics {
    flex-wrap: wrap;
  }
}

/* ================================
   Brands cinematic marquee
================================ */

.bc-brands {
  position: relative;
  z-index: 2;
  padding: 140px 0 120px;
  overflow: hidden;
  background: #fff;
}

.bc-brands__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(128,166,237,.16), transparent 28%),
    radial-gradient(circle at 10% 70%, rgba(14,73,143,.06), transparent 28%);
  pointer-events: none;
}

.bc-brands__title {
  position: relative;
  z-index: 2;
  margin: 18px 0 80px;
  max-width: 900px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(56px, 8vw, 132px);
  line-height: .84;
  color: var(--bc-dark);
}

.bc-brands__marquee {
  position: relative;
  z-index: 2;
  width: 100%;
  overflow: hidden;
  border-top: 1px solid rgba(49,59,69,.08);
  border-bottom: 1px solid rgba(49,59,69,.08);
}

.bc-brands__track {
  display: flex;
  width: max-content;
  gap: 80px;
  padding: 38px 0;
  will-change: transform;
  animation: bcMarquee 34s linear infinite;
}

.bc-brands__track span {
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 72px);
  line-height: 1;
  white-space: nowrap;
  color: rgba(49,59,69,.22);
  transition: color .35s ease;
}

.bc-brands:hover .bc-brands__track span {
  color: rgba(14,73,143,.42);
}

@keyframes bcMarquee {
  to {
    transform: translateX(-50%);
  }
}

/* ================================
   Insights cinematic list
================================ */

.bc-insights {
  position: relative;
  z-index: 2;
  padding: 150px 0;
  background:
    linear-gradient(180deg, #fbfcff 0%, #fff 100%);
  overflow: hidden;
}

.bc-insights__list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(49,59,69,.1);
}

.bc-insight-card a {
  position: relative;
  display: grid;
  grid-template-columns: .22fr 1fr .55fr;
  align-items: center;
  gap: 36px;
  min-height: 190px;
  padding: 42px 0;
  border-bottom: 1px solid rgba(49,59,69,.1);
  text-decoration: none !important;
  color: var(--bc-dark);
  overflow: hidden;
}

.bc-insight-card span {
  color: var(--bc-deep);
  font-size: 11px;
  font-weight: 900;
}

.bc-insight-card h3 {
  margin: 0;
  max-width: 760px;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(34px, 4vw, 66px);
  line-height: .9;
  color: var(--bc-dark);
  transition: transform .45s ease, color .45s ease;
}

.bc-insight-card p {
  margin: 0;
  color: rgba(49,59,69,.66);
  font-size: 16px;
  line-height: 1.55;
}

.bc-insight-card img {
  position: absolute;
  right: 4vw;
  top: 50%;
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 22px;
  transform: translateY(-50%) scale(.88) rotate(-4deg);
  opacity: 0;
  filter: blur(12px);
  transition:
    opacity .45s ease,
    transform .55s cubic-bezier(.22,1,.36,1),
    filter .45s ease;
  pointer-events: none;
}

.bc-insight-card:hover h3 {
  transform: translateX(20px);
  color: var(--bc-deep);
}

.bc-insight-card:hover img {
  opacity: 1;
  filter: blur(0);
  transform: translateY(-50%) scale(1) rotate(0deg);
}

/* ================================
   Home CTA immersive
================================ */

.bc-home-cta {
  position: relative;
  z-index: 2;
  min-height: 92vh;
  display: flex;
  align-items: center;
  padding: 150px 0;
  overflow: hidden;
  background: #f7faff;
}

.bc-home-cta__wave {
  position: absolute;
  right: -14vw;
  top: 50%;
  width: 70vw;
  height: 70vw;
  transform: translateY(-50%);
  border-radius: 50%;
  background:
    repeating-radial-gradient(circle, rgba(14,73,143,.20) 0 1px, transparent 1px 14px),
    radial-gradient(circle, rgba(128,166,237,.32), transparent 58%);
  opacity: .75;
  animation: bcWavePulse 9s ease-in-out infinite;
}

.bc-home-cta__glow {
  position: absolute;
  right: 18vw;
  top: 48%;
  width: 20vw;
  height: 20vw;
  border-radius: 999px;
  background: rgba(128,166,237,.42);
  filter: blur(60px);
}

.bc-home-cta .bc-container {
  position: relative;
  z-index: 3;
}

.bc-home-cta h2 {
  max-width: 900px;
  margin: 20px 0 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(58px, 8vw, 140px);
  line-height: .84;
  color: var(--bc-dark);
}

.bc-home-cta p {
  max-width: 560px;
  margin-top: 34px;
  color: rgba(49,59,69,.72);
  font-size: 20px;
  line-height: 1.65;
}

.bc-home-cta__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 38px;
}

/* ================================
   Responsive
================================ */

@media (max-width: 992px) {
  .bc-insight-card a {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .bc-insight-card img {
    position: relative;
    right: auto;
    top: auto;
    width: 100%;
    height: 240px;
    transform: none;
    opacity: 1;
    filter: none;
    margin-top: 14px;
  }
}

@media (max-width: 640px) {
  .bc-brands,
  .bc-insights,
  .bc-home-cta {
    padding: 90px 0;
  }

  .bc-brands__title,
  .bc-home-cta h2 {
    font-size: clamp(52px, 15vw, 82px);
  }

  .bc-home-cta__wave {
    width: 120vw;
    height: 120vw;
    right: -76vw;
    opacity: .45;
  }

  .bc-home-cta p {
    font-size: 17px;
  }
}
