/* ============================================================
   BloodBank.software — page styles, scoped to .bbs
   Load from a child theme (see functions-snippet.php).
   Every rule is confined to elements inside .bbs, so Divi's own
   modules and your Theme Builder typography are left alone.
   Add "bbs" as a CSS Class on the Divi Section wrapping this content:
   Section → Settings → Advanced → CSS ID & Classes → CSS Class.
   ============================================================ */


/* ===== 00-base.css ===== */
/* ============================================================
   BloodBank.software — 00-base.css
   Design tokens, reset, typography, shared building blocks.
   Palette and type taken from the live bloodbank.software site.
   Load this FIRST. Every other stylesheet depends on it.
   ============================================================ */
/* --- Reset ------------------------------------------------- */
.bbs *,
.bbs *::before,
.bbs *::after { box-sizing: border-box; }
.bbs { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
.bbs {
  margin: 0;
  background: var(--mist);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
.bbs img { max-width: 100%; display: block; }
.bbs a { color: inherit; text-decoration: none; }
.bbs button { font: inherit; color: inherit; }
/* DM Serif Display ships in a single weight — size and colour do the work */
.bbs h1,
.bbs h2,
.bbs h3,
.bbs h4 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  letter-spacing: -.012em;
  line-height: 1.1;
}
.bbs p { margin: 0 0 1.1em; }
.bbs ul { margin: 0; padding: 0; list-style: none; }
.bbs dl,
.bbs dd,
.bbs dt { margin: 0; }
/* the site's own emphasis pattern: a phrase set in blood, upright */
.bbs em.accent { color: var(--blood); font-style: normal; }
/* --- Layout ------------------------------------------------ */
.bbs .wrap { width: 100%; max-width: var(--max); margin-inline: auto; padding-inline: var(--gutter); }
.bbs .section { padding-block: var(--band); }
.bbs .section--paper { background: var(--mist); }
.bbs .section--surface { background: var(--surface); }
/* --- Grain, borrowed from the live hero -------------------- */
.bbs .grain { position: relative; }
.bbs .grain::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}
.bbs .grain > * { position: relative; z-index: 1; }
/* --- Type roles -------------------------------------------- */
.bbs .eyebrow {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blood);
  display: flex;
  align-items: center;
  gap: .7rem;
  margin: 0 0 1.4rem;
}
.bbs .eyebrow::before {
  content: "";
  width: 26px; height: 1px;
  background: var(--blood);
  flex: none;
}
.bbs .eyebrow--light { color: #D98B80; }
.bbs .eyebrow--light::before { background: #D98B80; }
/* pill badge, as used on the live site */
.bbs .badge {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blood);
  border: 1px solid rgba(192, 57, 43, .3);
  background: rgba(192, 57, 43, .05);
  border-radius: 999px;
  padding: .4rem 1rem;
}
.bbs .badge-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blood);
  animation: pulseSlow 3s cubic-bezier(.4, 0, .6, 1) infinite;
}
@keyframes pulseSlow { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }
.bbs .h-section { font-size: clamp(2rem, 4vw, 3.1rem); max-width: 20ch; }
.bbs .lead {
  font-size: clamp(1.02rem, 1.35vw, 1.14rem);
  color: var(--stone-dk);
  max-width: 62ch;
  margin-top: 1.3rem;
}
/* section masthead: heading left, standfirst right, hairline under */
.bbs .section-head {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(1rem, 1.8vw, 1.5rem) clamp(1.2rem, 4vw, 4rem);
  align-items: end;
  padding-bottom: clamp(1.4rem, 2.5vw, 2rem);
  border-bottom: 1px solid var(--rule);
  margin-bottom: clamp(2.2rem, 4.5vw, 3.4rem);
}
.bbs .section-head .eyebrow { grid-column: 1 / -1; margin-bottom: 0; }
.bbs .section-head .lead { margin-top: 0; }
@media (max-width: 860px) {
  .bbs .section-head { grid-template-columns: 1fr; align-items: start; }
  .bbs .section-head .lead { margin-top: .4rem; }
}
/* --- Buttons ----------------------------------------------- */
.bbs .btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--body);
  font-weight: 500;
  font-size: .92rem;
  letter-spacing: .005em;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .18s ease;
}
.bbs .btn:active { transform: translateY(1px); }
.bbs .btn--primary { background: var(--blood); color: #fff; box-shadow: 0 1px 2px rgba(26,26,26,.06); }
.bbs .btn--primary:hover { background: var(--blood-dk); }
.bbs .btn--ghost { border-color: var(--rule); color: var(--ink); background: var(--surface); }
.bbs .btn--ghost:hover { border-color: var(--stone); }
.bbs .btn--ink { background: var(--ink); color: #fff; }
.bbs .btn--ink:hover { background: #333; }
.bbs .btn--chill { background: var(--ink); color: #fff; }
.bbs .btn--chill:hover { background: #333; }
.bbs .btn--light { border-color: rgba(247,245,242,.3); color: #fff; background: transparent; }
.bbs .btn--light:hover { border-color: #fff; background: rgba(255,255,255,.08); }
/* --- The label motif --------------------------------------- */
.bbs .barcode {
  height: 30px;
  background-image: repeating-linear-gradient(
    90deg,
    currentColor 0 2px, transparent 2px 5px,
    currentColor 5px 6px, transparent 6px 10px,
    currentColor 10px 13px, transparent 13px 15px,
    currentColor 15px 16px, transparent 16px 21px
  );
  opacity: .82;
}
.bbs .code {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--stone-dk);
}
/* --- Focus + motion floor ---------------------------------- */
.bbs :focus-visible { outline: 2px solid var(--blood); outline-offset: 3px; }
.bbs .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s ease, transform .8s ease;
}
.bbs .reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .bbs { scroll-behavior: auto; }
  .bbs *,
.bbs *::before,
.bbs *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
  }
  .bbs .reveal { opacity: 1; transform: none; }
}

/* ===== 01-header.css ===== */
/* ============================================================
   01-header.css — sticky primary navigation
   ============================================================ */
.bbs .site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(247, 245, 242, .92);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--rule);
}
.bbs .nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  min-height: 70px;
}
/* --- brand: the site's own drop mark, lowercase lockup ------ */
.bbs .brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.bbs .brand-drop { width: 26px; height: 29px; flex: none; transform-origin: top center; }
.bbs .drop-anim { animation: drip 2.8s ease-in-out infinite; }
@keyframes drip {
  0%, 100% { transform: scaleY(1) translateY(0); }
  50%      { transform: scaleY(1.06) translateY(2px); }
}
.bbs .brand-name { font-size: 1rem; font-weight: 500; letter-spacing: -.01em; }
.bbs .brand-name span { color: var(--stone); font-weight: 400; }
/* --- links ------------------------------------------------- */
.bbs .nav-list { display: flex; align-items: center; gap: 1.7rem; }
.bbs .nav-link {
  font-size: .92rem;
  color: var(--ink);
  padding-block: .4rem;
  position: relative;
  transition: color .2s ease;
}
.bbs .nav-link:hover { color: var(--blood); }
.bbs .nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
}
.bbs .nav-link:hover::after,
.bbs .nav-link:focus-visible::after { transform: scaleX(1); }
.bbs .nav-cta { padding: .6rem 1.15rem; font-size: .86rem; }
/* --- mobile toggle ----------------------------------------- */
.bbs .nav-toggle {
  display: none;
  width: 42px; height: 38px;
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
}
.bbs .nav-toggle i,
.bbs .nav-toggle i::before,
.bbs .nav-toggle i::after {
  display: block;
  width: 17px; height: 1.5px;
  background: var(--ink);
  transition: transform .22s ease, opacity .22s ease;
}
.bbs .nav-toggle i::before,
.bbs .nav-toggle i::after { content: ""; position: absolute; }
.bbs .nav-toggle i::before { transform: translateY(-5.5px); }
.bbs .nav-toggle i::after { transform: translateY(5.5px); }
.bbs .nav-toggle[aria-expanded="true"] i { background: transparent; }
.bbs .nav-toggle[aria-expanded="true"] i::before { transform: rotate(45deg); }
.bbs .nav-toggle[aria-expanded="true"] i::after { transform: rotate(-45deg); }
@media (max-width: 940px) {
  .bbs .nav-toggle { display: inline-flex; position: relative; }
  .bbs .nav-list {
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--mist);
    border-bottom: 1px solid var(--rule);
    padding: .5rem var(--gutter) 1.5rem;
    display: none;
  }
  .bbs .nav-list.is-open { display: flex; }
  .bbs .nav-list li { border-top: 1px solid var(--rule); }
  .bbs .nav-link { display: block; padding: .95rem 0; }
  .bbs .nav-link::after { display: none; }
  .bbs .nav-list li:last-child { border-top: 0; padding-top: 1.1rem; }
  .bbs .nav-cta { display: flex; }
}

/* ===== 02-hero.css ===== */
/* ============================================================
   02-hero.css — rotating hero + signature unit-label card
   ============================================================ */
.bbs .hero {
  background: var(--mist);
  border-bottom: 1px solid var(--rule);
  padding-block: clamp(3.2rem, 7vw, 6rem) clamp(3.2rem, 7vw, 5.5rem);
  overflow: hidden;
}
.bbs .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, .88fr);
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
/* --- rotating copy ----------------------------------------- */
.bbs .hero-badge { margin: 0 0 1.6rem; }
.bbs .hero-slides { position: relative; }
.bbs .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .55s ease, transform .55s ease, visibility .55s;
}
.bbs .hero-slide.is-active { position: relative; opacity: 1; visibility: visible; transform: none; }
.bbs .hero h1 {
  font-size: clamp(2.2rem, 4.1vw, 3.5rem);
  line-height: 1.08;
  letter-spacing: -.015em;
  max-width: 100%;
}
.bbs .hero-lead {
  margin-top: 1.5rem;
  font-size: clamp(1.02rem, 1.4vw, 1.16rem);
  color: var(--stone-dk);
  max-width: 52ch;
}
.bbs .hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
/* --- slide controls ---------------------------------------- */
.bbs .hero-dots { display: flex; gap: .7rem; margin-top: 2.6rem; }
.bbs .hero-dot {
  width: 68px; height: 3px;
  background: var(--rule);
  border: 0; padding: 0;
  cursor: pointer;
  position: relative;
  border-radius: 999px;
  overflow: hidden;
}
.bbs .hero-dot span {
  position: absolute; inset: 0;
  background: var(--blood);
  transform: scaleX(0);
  transform-origin: left;
}
.bbs .hero-dot.is-active span { animation: heroFill 6800ms linear forwards; }
.bbs .hero-dot.is-done span { transform: scaleX(1); }
@keyframes heroFill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
@media (prefers-reduced-motion: reduce) {
  .bbs .hero-dot.is-active span { animation: none; transform: scaleX(1); }
}
/* --- signature: the unit label ----------------------------- */
.bbs .unit-label {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--blood);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.4rem 1.5rem 1.2rem;
  max-width: 400px;
  margin-left: auto;
}
.bbs .ul-top {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .66rem; font-weight: 500; letter-spacing: .12em;
  text-transform: uppercase; color: var(--stone-dk);
}
.bbs .ul-live { display: inline-flex; align-items: center; gap: .45rem; color: var(--blood); }
.bbs .ul-pulse {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--blood);
  animation: pulseSlow 3s cubic-bezier(.4, 0, .6, 1) infinite;
}
.bbs .ul-abo {
  font-family: var(--display);
  font-size: 3.5rem;
  line-height: 1;
  margin: .85rem 0 .15rem;
  color: var(--blood);
}
.bbs .ul-abo sup { font-size: .4em; top: -.6em; position: relative; }
.bbs .ul-component {
  font-size: .74rem; font-weight: 500; letter-spacing: .08em;
  text-transform: uppercase; color: var(--ink);
  padding-bottom: 1rem; border-bottom: 1px solid var(--rule);
}
.bbs .ul-rows { margin-top: .2rem; }
.bbs .ul-rows > div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px dashed var(--rule);
}
.bbs .ul-rows dt {
  color: var(--stone-dk); font-size: .68rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase; padding-top: .12rem;
}
.bbs .ul-rows dd { font-size: .82rem; text-align: right; font-variant-numeric: tabular-nums; }
.bbs .ul-ok { color: var(--ink); font-weight: 500; }
.bbs .ul-barcode { color: var(--ink); margin: 1.2rem 0 .55rem; }
.bbs .ul-foot {
  font-size: .64rem; font-weight: 500; letter-spacing: .1em;
  text-transform: uppercase; color: var(--stone-dk); text-align: center;
}
@media (max-width: 940px) {
  .bbs .hero-grid { grid-template-columns: 1fr; }
  .bbs .unit-label { margin-left: 0; max-width: 100%; }
  .bbs .hero h1 { max-width: 100%; }
}
@media (max-width: 480px) {
  .bbs .hero-dot { width: 46px; }
  .bbs .hero-actions .btn { flex: 1 1 100%; }
}

/* ===== 03-intro.css ===== */
/* ============================================================
   03-intro.css — positioning statement
   ============================================================ */
.bbs .intro { background: var(--mist); }
.bbs .intro-grid {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: start;
}
.bbs .intro h2 { font-size: clamp(2rem, 3.9vw, 3rem); max-width: 17ch; }
.bbs .intro-standfirst {
  margin-top: 1.4rem;
  font-size: 1.06rem;
  color: var(--stone-dk);
  max-width: 46ch;
}
.bbs .intro-body { border-left: 1px solid var(--rule); padding-left: clamp(1.4rem, 3vw, 2.8rem); }
.bbs .intro-body p { color: var(--ink); max-width: 66ch; }
.bbs .intro-body p + p { margin-top: 0; }
.bbs .intro-body .pull {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  line-height: 1.35;
  letter-spacing: -.01em;
  color: var(--ink);
  padding: 1.3rem 0 1.5rem;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  margin: 1.8rem 0 1.8rem;
}
.bbs .intro-body .stack {
  font-family: var(--mono);
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--blood);
}
/* closing three-beat line */
.bbs .intro-close {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.4rem;
  font-family: var(--mono);
  font-size: .74rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone-dk);
}
.bbs .intro-close span { display: inline-flex; align-items: center; gap: .55rem; }
.bbs .intro-close span::before {
  content: "";
  width: 6px; height: 6px;
  background: var(--blood);
  border-radius: 1px;
}
@media (max-width: 940px) {
  .bbs .intro-grid { grid-template-columns: 1fr; }
  .bbs .intro-body { border-left: 0; padding-left: 0; }
}

/* ===== 04-highlights.css ===== */
/* ============================================================
   04-highlights.css — four differentiators
   ============================================================ */
.bbs .highlights { background: var(--surface); border-block: 1px solid var(--rule); }
.bbs .hl-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--rule);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  overflow: hidden;
}
.bbs .hl-item {
  background: var(--surface);
  padding: clamp(1.7rem, 3vw, 2.6rem);
  position: relative;
  transition: background .2s ease;
}
.bbs .hl-item::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--blood);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform .28s cubic-bezier(.2,.7,.2,1);
}
.bbs .hl-item:hover { background: #FDFCFB; }
.bbs .hl-item:hover::before { transform: scaleY(1); }
.bbs .hl-tag {
  font-family: var(--mono);
  font-size: .66rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--blood);
}
.bbs .hl-item h3 {
  font-size: 1.5rem;
  margin: .8rem 0 .7rem;
  letter-spacing: -.01em;
}
.bbs .hl-item p { color: var(--stone-dk); font-size: .96rem; margin: 0; }
@media (max-width: 780px) {
  .bbs .hl-grid { grid-template-columns: 1fr; }
}

/* ===== 05-modules.css ===== */
/* ============================================================
   05-modules.css — eight modules as specimen-label cards
   ============================================================ */
.bbs .modules { background: var(--mist); }
.bbs .mod-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
  gap: clamp(1rem, 1.6vw, 1.4rem);
}
.bbs .mod-card {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.35rem;
  display: flex;
  flex-direction: column;
  transition: transform .22s cubic-bezier(.2,.7,.2,1), box-shadow .22s ease, border-color .22s ease;
}
.bbs .mod-card:hover {
  transform: translateY(-3px);
  border-color: #CFC7BE;
  box-shadow: var(--shadow);
}
.bbs .mod-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: .85rem;
  border-bottom: 1px solid var(--rule);
}
/* the code is the module's real LIS shorthand — it carries information, not decoration */
.bbs .mod-code {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  color: var(--blood);
}
.bbs .mod-rule { flex: 1; height: 1px; background: var(--rule); }
.bbs .mod-num { font-family: var(--mono); font-size: .66rem; color: var(--stone-dk); letter-spacing: .1em; }
.bbs .mod-card h3 { font-size: 1.34rem; margin: .95rem 0 .55rem; letter-spacing: -.01em; }
.bbs .mod-card p { color: var(--stone-dk); font-size: .92rem; margin: 0; }
.bbs .mod-card .barcode {
  height: 16px;
  margin-top: 1.3rem;
  color: var(--ink);
  opacity: .13;
  transition: opacity .22s ease;
}
.bbs .mod-card:hover .barcode { opacity: .3; }

/* ===== 06-usecases.css ===== */
/* ============================================================
   06-usecases.css — eight deployment shapes, listed
   ============================================================ */
.bbs .usecases { background: var(--ink); color: var(--ink-text); }
.bbs .usecases .h-section { color: var(--ink-text); }
.bbs .usecases .h-section .accent { color: #E4796A; }
.bbs .usecases .section-head { border-bottom-color: var(--ink-rule); }
.bbs .usecases .lead { color: var(--ink-muted); }
.bbs .uc-list {
  border-top: 1px solid var(--ink-rule);
}
.bbs .uc-item {
  display: grid;
  grid-template-columns: 200px minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(1rem, 3vw, 2.5rem);
  align-items: start;
  padding: 1.7rem 0;
  border-bottom: 1px solid var(--ink-rule);
  transition: background .2s ease, padding-left .2s ease;
}
.bbs .uc-item:hover { background: rgba(247,245,242,.04); padding-left: .9rem; }
.bbs .uc-tag {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #D98B80;
  padding-top: .4rem;
}
.bbs .uc-item h3 { font-size: 1.36rem; color: var(--ink-text); letter-spacing: -.01em; }
.bbs .uc-item p { margin: 0; color: var(--ink-muted); font-size: .93rem; }
@media (max-width: 940px) {
  .bbs .uc-item { grid-template-columns: 1fr; gap: .6rem; padding: 1.5rem 0; }
  .bbs .uc-tag { padding-top: 0; }
}

/* ===== 07-partners.css ===== */
/* ============================================================
   07-partners.css — two audiences, side by side
   ============================================================ */
.bbs .partners { background: var(--mist); }
.bbs .pt-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: stretch;
}
.bbs .pt-col {
  background: var(--surface);
  border: 1px solid var(--rule);
  border-top: 4px solid var(--ink);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3vw, 2.4rem);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.bbs .pt-col--partner { border-top-color: var(--blood); }
.bbs .pt-col h3 { font-size: clamp(1.6rem, 2.5vw, 2rem); }
.bbs .pt-for {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--stone-dk);
  margin: .55rem 0 1.8rem;
}
.bbs .pt-col--partner .pt-for { color: var(--blood); }
.bbs .pt-block + .pt-block { margin-top: 1.7rem; }
.bbs .pt-block h4 {
  font-family: var(--mono);
  font-weight: 500;
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--stone-dk);
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--rule);
  margin-bottom: .9rem;
}
.bbs .pt-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: .94rem;
  color: var(--ink);
}
.bbs .pt-list li + li { margin-top: .55rem; }
.bbs .pt-list li::before {
  content: "";
  position: absolute;
  left: 0; top: .68em;
  width: 8px; height: 1px;
  background: var(--ink);
}
.bbs .pt-col--partner .pt-list li::before { background: var(--blood); }
.bbs .pt-col .btn { margin-top: auto; align-self: flex-start; }
.bbs .pt-block:last-of-type { margin-bottom: 2rem; }
@media (max-width: 900px) {
  .bbs .pt-grid { grid-template-columns: 1fr; }
}

/* ===== 08-numbers.css ===== */
/* ============================================================
   08-numbers.css — what partners save
   ============================================================ */
.bbs .numbers {
  background: var(--blood-dk);
  color: #fff;
  padding-block: clamp(3rem, 6vw, 4.5rem);
}
.bbs .nb-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.6rem;
  border-bottom: 1px solid rgba(247,245,242,.24);
}
.bbs .nb-head h2 { font-size: clamp(1.7rem, 2.9vw, 2.3rem); color: #fff; }
.bbs .nb-head p {
  margin: 0;
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: rgba(247,245,242,.68);
}
.bbs .nb-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: rgba(247,245,242,.24);
  margin-top: 1px;
}
.bbs .nb-cell {
  background: var(--blood-dk);
  padding: 1.9rem 1.4rem 1.9rem 0;
  display: flex;
  flex-direction: column;
}
.bbs .nb-grid .nb-cell + .nb-cell { padding-left: 1.4rem; }
.bbs .nb-value {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(1.9rem, 3.7vw, 2.9rem);
  letter-spacing: -.015em;
  line-height: 1.08;
}
.bbs .nb-label {
  margin: .7rem 0 0;
  padding-top: .7rem;
  font-size: .88rem;
  color: rgba(247,245,242,.76);
  margin-top: auto;
}
@media (max-width: 860px) {
  .bbs .nb-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 460px) {
  .bbs .nb-grid { grid-template-columns: 1fr; }
}

/* ===== 09-cta.css ===== */
/* ============================================================
   09-cta.css — closing call to action
   ============================================================ */
.bbs .cta { background: var(--surface); }
.bbs .cta-inner {
  border: 1px solid var(--rule);
  border-radius: var(--radius);
  padding: clamp(2.2rem, 5vw, 4rem);
  background:
    linear-gradient(180deg, rgba(192,57,43,.05), rgba(192,57,43,0) 58%),
    var(--mist);
  position: relative;
  overflow: hidden;
}
.bbs .cta-inner .barcode {
  position: absolute;
  right: 0; bottom: 0; left: 0;
  height: 10px;
  color: var(--blood);
  opacity: .2;
}
.bbs .cta h2 { font-size: clamp(2rem, 3.8vw, 3rem); max-width: 21ch; }
.bbs .cta-sub { margin-top: 1.2rem; max-width: 62ch; color: var(--stone-dk); font-size: 1.05rem; }
.bbs .cta-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.2rem; }
@media (max-width: 520px) {
  .bbs .cta-actions .btn { flex: 1 1 100%; justify-content: center; }
}

/* ===== 10-footer.css ===== */
/* ============================================================
   10-footer.css
   ============================================================ */
.bbs .site-footer {
  background: var(--ink);
  color: var(--ink-muted);
  padding-block: 2.6rem;
  font-size: .88rem;
}
.bbs .site-footer .brand-name { color: var(--ink-text); }
.bbs .site-footer .brand-name span { color: var(--stone); }
.bbs .ft-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}
.bbs .ft-links { display: flex; flex-wrap: wrap; gap: 1.4rem; }
.bbs .ft-links a { color: var(--ink-muted); }
.bbs .ft-links a:hover { color: var(--ink-text); }
.bbs .ft-meta {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: #857F78;
  width: 100%;
  padding-top: 1.6rem;
  border-top: 1px solid var(--ink-rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .6rem;
}
