/* Brokers — inherits styles.css tokens & components (eyebrow, btn…).
   Adds: broker hero, two-client value row, partner CTA band. */

.bhero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(56px, 7vw, 96px);
  padding-bottom: clamp(40px, 5vw, 72px);
  background: var(--ink);
  color: var(--paper);
}
.bhero .container { position: relative; z-index: 1; }
.bhero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.bhero-media-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.bhero-media-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(23, 18, 13, 0.55), rgba(23, 18, 13, 0.75));
}
.bhero .eyebrow, .bhero .eyebrow::before { color: rgba(244, 240, 232, 0.6); }
.bhero .eyebrow::before { background: rgba(244, 240, 232, 0.6); }
.bhero-top {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 24px; flex-wrap: wrap;
  margin-bottom: clamp(28px, 4vw, 48px);
}
.bhero-title {
  margin: 0;
  font-family: var(--serif);
  font-size: var(--t-h1);
  font-weight: 400;
  line-height: 0.94;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.bhero-title em { font-style: italic; color: var(--accent); }
.bhero-rotator { display: inline-block; }
.bhero-sub {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: end;
  margin-top: clamp(28px, 4vw, 48px);
}
.bhero-lead {
  font-size: var(--t-body-lg);
  line-height: 1.45;
  color: rgba(244, 240, 232, 0.75);
  max-width: 52ch;
  text-wrap: pretty;
}
.bhero-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.bhero-actions .btn-primary { background: var(--paper); color: var(--ink); }
.bhero-actions .btn-primary:hover { background: var(--accent); color: var(--paper); }

/* ---- The two clients you bring ---- */
.bvalues {
  padding-block: clamp(60px, 7vw, 100px);
}
.bvalues-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.bvalue {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 40px;
}
.bvalue::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: radial-gradient(220px circle at var(--gx, 50%) var(--gy, 50%), var(--accent), transparent 70%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}
.bvalue.is-glowing::before { opacity: 1; }
.bvalue-num {
  font-family: var(--mono);
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--accent);
  margin-bottom: 24px;
}
.bvalue h3 {
  font-family: var(--serif);
  font-size: var(--t-h3);
  font-weight: 350;
  letter-spacing: -0.01em;
  line-height: 1.05;
  margin-bottom: 14px;
  text-wrap: balance;
}
.bvalue p { color: var(--muted); font-size: 16px; line-height: 1.55; text-wrap: pretty; }

/* ---- Partner CTA band ---- */
.bcta {
  background: var(--paper-2);
  border-block: 1px solid var(--line);
  padding-block: clamp(90px, 11vw, 150px);
}
.bcta-inner { text-align: center; max-width: 760px; margin-inline: auto; }
.bcta-title {
  font-family: var(--serif);
  font-size: clamp(36px, 5.4vw, 76px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: 0.005em;
  text-wrap: balance;
}
.bcta-title em { font-style: italic; color: var(--accent); }
.bcta-sub { font-size: var(--t-body-lg); color: var(--muted); margin-top: 24px; text-wrap: pretty; }
.bcta-actions { margin-top: 36px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

@media (max-width: 1024px) {
  .bvalues-grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .bhero-sub { grid-template-columns: 1fr; }
  .bhero-actions { justify-content: flex-start; }
}
