/* ============================================================
   de rouge / business — additional section styles
   Layered on top of styles.css + brand.css.
   Only NEW selectors; reuses existing tokens (--red, --fg, --bg)
   and primitives (.btn, .container, .t-eyebrow, .h-xl, .lede).
   ============================================================ */

/* ---------- Unified section rhythm (matches .section in styles.css) ---------- */
.bz-problem,
.bz-solution-wrap,
.bz-layers,
.bz-pricing-wrap,
.bz-onboard,
.bz-pay,
.bz-company-wrap,
.bz-faq-wrap,
.bz-final,
.bz-contact-wrap {
  padding: clamp(64px, 9vw, 140px) 0;
  position: relative;
}
/* tighten the gap when two related sections sit back-to-back */
.bz-solution-wrap + .bz-layers,
.bz-pricing-wrap + .bz-onboard,
.bz-final + .bz-contact-wrap,
.bz-company-wrap + .bz-faq-wrap,
.bz-faq-wrap + .bz-final {
  padding-top: clamp(32px, 5vw, 72px);
}

/* ---------- Page-wide rhythm normalisation (old + new sections) ---------- */
/* Single consistent section padding across the whole landing page */
.aud, .features, .journey, .stats, .launch, .product, .social, .trust,
.partners, .sms-band,
.bz-problem, .bz-solution-wrap, .bz-layers, .bz-pricing-wrap, .bz-onboard,
.bz-pay, .bz-company-wrap, .bz-faq-wrap, .bz-final, .bz-contact-wrap {
  padding-top:    clamp(72px, 8vw, 112px);
  padding-bottom: clamp(72px, 8vw, 112px);
}
/* Tighter when two related sections sit back-to-back */
.launch + .bz-pricing-wrap,
.bz-pricing-wrap + .bz-onboard,
.bz-onboard + .product,
.social + .bz-pay,
.bz-company-wrap + .bz-faq-wrap,
.bz-faq-wrap + .bz-final,
.bz-final + .bz-contact-wrap {
  padding-top: clamp(40px, 5vw, 72px);
}

/* Single H2 scale across the page — old + new sections all use the same size.
   Spec: clamp(36px, 5vw, 58px), -0.045em, line-height 0.96 */
.aud .h-xl,
.features .h-xl,
.journey .h-xl,
.stats .h-xl,
.launch .h-xl,
.product .h-xl,
.product .product__slogan,
.social .h-xl,
.trust .h-xl,
.partners .h-xl,
.sms-band .h-lg,
.bz-head h2,
.bz-final__title,
.bz-contact__title,
.bz-pay__title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 700;
}
/* The final CTA can sit one notch larger for closing emphasis, but capped */
.bz-final__title {
  font-size: clamp(40px, 5.5vw, 68px);
  letter-spacing: -0.05em;
}

/* ============================================================
   SHOWCASE BLOCKS — large alternating teaser sections that
   link out to dedicated audience pages (organisers, venues,
   artists, investors). The homepage is a showcase, not the
   full product spec.
   ============================================================ */
.show {
  position: relative;
  padding: clamp(72px, 8vw, 112px) 0;
}
.show__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.show--flip .show__inner {
  grid-template-columns: 1fr 1fr;
}
.show--flip .show__copy   { order: 2; }
.show--flip .show__visual { order: 1; }
@media (max-width: 900px) {
  .show__inner        { grid-template-columns: 1fr !important; gap: 32px; }
  .show__copy         { order: 1 !important; max-width: none; }
  .show__visual       { order: 2 !important; max-height: 480px; aspect-ratio: 4/3; }
}
@media (max-width: 600px) {
  .show               { padding: clamp(48px, 7vw, 80px) 0; }
  .show__inner        { grid-template-columns: 1fr !important; gap: 20px; }
  .show__copy         { order: 1 !important; max-width: none; }
  .show__visual       { order: 2 !important; aspect-ratio: 4/3; max-height: 300px; }
  .show__title        { font-size: clamp(28px, 7vw, 40px); }
  .show__lede         { font-size: 15px; }
}

.show__copy {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 520px;
}
.show__title {
  font-size: clamp(36px, 5vw, 58px);
  line-height: 0.97;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--fg);
}
.show__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 0;
}
.show__bullets {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.show__bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--fg);
}
.show__bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  margin-top: 9px;
  flex: 0 0 6px;
}
.show__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 8px;
}

/* Visual side: large image card with subtle frame */
.show__visual {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  aspect-ratio: 4/5;
  max-height: 720px;
  margin: 0;
}
.show__visual img,
.show__visual picture {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  object-fit: cover;
  display: block;
}
.show__visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}

/* Optional small caption pinned at bottom of the visual */
.show__caption {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  z-index: 1;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}
.show__caption .pin {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.18);
}
.show__caption .pin::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
}

/* Investors variant: crowd photo + glass metrics overlay */
.show--inv .show__visual {
  background: #060606;
}
.show--inv .show__visual::after {
  background: linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.55) 100%);
  display: block;
}

/* Glass metrics overlay on top of photo */
.show__metrics--glass {
  background: transparent;
  gap: 2px;
}
.show__metrics--glass .show__metric {
  background: rgba(8, 2, 2, 0.52);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}
.show__metrics--glass .show__metric:hover {
  background: rgba(20, 4, 4, 0.65);
}

/* Mini metric grid that can be placed inside .show__visual for investors */
.show__metrics {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 1px;
  background: var(--bz-border);
  padding: 1px;
}
.show__metric {
  background: linear-gradient(180deg, #0a0a0a, #050505);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: space-between;
}
.show__metric .lbl {
  font-size: 12px;
  color: var(--fg-mute);
  font-weight: 500;
}
.show__metric .val {
  font-size: clamp(32px, 3.6vw, 48px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
  color: var(--fg);
}
.show__metric .val small {
  font-size: 0.45em;
  font-weight: 500;
  color: var(--fg-mute);
  margin-left: 4px;
}
.show__metric .sub {
  font-size: 12px;
  color: var(--fg-mute);
  line-height: 1.45;
}

/* ============================================================
   Cross-section visual harmonisation
   Unify card radii, borders, and section-header layout across
   old (.features, .launch, .trust, .partners, .social) and
   new (.bz-*) areas so the page reads as ONE system.
   ============================================================ */

/* All section heads: single-column, left-aligned, identical rhythm */
.features__head,
.partners__head,
.section-title-row,
.launch__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 820px;
}
/* Flatten any inner wrapper that the old markup used for the 2-col layout */
.features__head > div,
.partners__head > div,
.section-title-row > div {
  display: contents;
}
.features__head h2,
.partners__head h2,
.section-title-row h2,
.launch__head h2 {
  max-width: none;
  margin: 0 !important;
}
.features__head .lede,
.partners__head p,
.partners__head .lede,
.section-title-row .lede,
.launch__head .lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-mute);
  max-width: 680px;
  margin: 0 !important;
}
.features__head .t-eyebrow,
.partners__head .t-eyebrow,
.section-title-row .t-eyebrow,
.launch__head .t-eyebrow {
  margin: 0;
}
@media (max-width: 800px) {
  .features__head, .partners__head, .section-title-row, .launch__head {
    margin-bottom: 40px;
    gap: 14px;
  }
}

/* All card-like surfaces share the same radius — 24px, per the spec */
.launch__card,
.trust__card,
.partners__cell,
.social-card,
.bz-card,
.bz-solution__step,
.bz-timeline__step,
.bz-price,
.bz-company__stat,
.bz-pay-row,
.bz-pay-card {
  border-radius: 24px;
}

/* Tighter inner cells stay smaller — wallet inner row, mini stat cell */
.bz-org__mini-cell,
.hero__metric,
.hero__event {
  border-radius: 14px;
}

/* Give the partners cells a visible border so they read as cards
   alongside the .bz-card grid that sits earlier on the page */
.partners__cell {
  border: 1px solid rgba(255,255,255,0.10);
  padding: 28px;
  background: linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
}
/* Trust cards already have a border — normalise its colour to match */
.trust__card {
  border-color: rgba(255,255,255,0.10);
}

/* ---------- Tokens specific to business sections ---------- */
:root {
  --bz-card:      linear-gradient(180deg, rgba(255,255,255,0.045), rgba(255,255,255,0.018));
  --bz-card-hov:  linear-gradient(180deg, rgba(255,255,255,0.07),  rgba(255,255,255,0.025));
  --bz-important: linear-gradient(180deg, #b00000, #780000);
  --bz-border:    rgba(255,255,255,0.11);
  --bz-radius:    24px;
}

/* ---------- Shared card primitive ---------- */
.bz-card {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  padding: 28px;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: border-color .2s ease, background .2s ease;
}
.bz-card:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--bz-card-hov);
}
.bz-card__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-mute);
}
.bz-card__title {
  font-family: var(--font-display);
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-weight: 600;
  color: var(--fg);
}
.bz-card__body {
  font-size: 15px;
  line-height: 1.55;
  color: var(--fg-mute);
  flex: 1;
}
.bz-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--fg);
  margin-top: 4px;
}
.bz-card__cta .arr { transition: transform .2s ease; }
.bz-card:hover .bz-card__cta .arr { transform: translateX(3px); }

.bz-card--important {
  background: var(--bz-important);
  border-color: rgba(255,255,255,0.12);
}
.bz-card--important .bz-card__body { color: rgba(255,255,255,0.86); }
.bz-card--important .bz-card__tag  { color: rgba(255,255,255,0.7); }

.bz-card__icon {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bz-card__icon svg { width: 20px; height: 20px; }
.bz-card--important .bz-card__icon {
  background: rgba(255,255,255,0.18);
  color: #fff;
}

/* ---------- Grids ---------- */
.bz-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.bz-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.bz-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
@media (max-width: 980px) {
  .bz-grid-3, .bz-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .bz-grid-2 { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 640px) {
  .bz-grid-3, .bz-grid-4 { grid-template-columns: 1fr; }
}

/* ============================================================
   PROBLEM
   ============================================================ */
.bz-problem .bz-card__title { font-size: 22px; }
.bz-problem__num {
  font-family: var(--font-mono);
  font-size: 13px;
  font-weight: 600;
  color: var(--red);
  letter-spacing: 0.06em;
}

/* ============================================================
   SOLUTION — Discover · Sell · Enter · Return
   ============================================================ */
.bz-solution {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.bz-solution__step {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 260px;
  transition: border-color .2s, background .2s;
}
.bz-solution__step:hover {
  border-color: rgba(255,255,255,0.18);
  background: var(--bz-card-hov);
}
.bz-solution__head {
  display: flex; align-items: center; justify-content: space-between;
}
.bz-solution__num {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--fg-mute);
}
.bz-solution__glyph {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
}
.bz-solution__title {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  color: var(--fg);
}
.bz-solution__body {
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--fg-mute);
}
@media (max-width: 980px) { .bz-solution { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .bz-solution { grid-template-columns: 1fr; } }

/* ============================================================
   PRODUCT LAYERS — 6 cards, first is featured/important
   ============================================================ */
.bz-layers .bz-grid-3 > .bz-card:first-child {
  background: var(--bz-important);
  border-color: rgba(255,255,255,0.12);
}
.bz-layers .bz-grid-3 > .bz-card:first-child .bz-card__body { color: rgba(255,255,255,0.85); }
.bz-layers .bz-grid-3 > .bz-card:first-child .bz-card__tag  { color: rgba(255,255,255,0.7); }

/* ============================================================
   PRICING
   ============================================================ */
.bz-pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: stretch;
}
.bz-pricing--two {
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 880px;
}
@media (max-width: 980px) { .bz-pricing, .bz-pricing--two { grid-template-columns: 1fr; max-width: none; } }

.bz-price {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: 28px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 560px;
  position: relative;
}
.bz-price--featured {
  background: var(--bz-important);
  border-color: rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(204,0,0,0.2);
}
.bz-price__tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--fg-mute);
}
.bz-price--featured .bz-price__tag { color: rgba(255,255,255,0.85); }
.bz-price__name {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.035em;
  line-height: 1;
  font-weight: 600;
  color: var(--fg);
}
.bz-price__sub {
  font-size: 14px;
  color: var(--fg-mute);
}
.bz-price--featured .bz-price__sub { color: rgba(255,255,255,0.85); }
.bz-price__amount {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--fg);
  margin: 4px 0;
}
.bz-price__amount .unit {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--fg-mute);
  letter-spacing: 0;
  margin-left: 6px;
}
.bz-price--featured .bz-price__amount,
.bz-price--featured .bz-price__amount .unit { color: #fff; }
.bz-price--featured .bz-price__amount .unit { color: rgba(255,255,255,0.7); }
.bz-price__list {
  list-style: none;
  margin: 0;
  padding: 16px 0 0;
  border-top: 1px solid var(--bz-border);
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.bz-price--featured .bz-price__list { border-top-color: rgba(255,255,255,0.16); }
.bz-price__list li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14.5px;
  color: var(--fg-mute);
}
.bz-price--featured .bz-price__list li { color: rgba(255,255,255,0.88); }
.bz-price__list svg {
  width: 14px; height: 14px; flex: 0 0 14px;
  color: var(--red);
}
.bz-price--featured .bz-price__list svg { color: #fff; }
.bz-price > .btn { margin-top: auto; }

/* ============================================================
   14-DAY ONBOARDING TIMELINE
   ============================================================ */
.bz-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  position: relative;
}
.bz-timeline::before {
  content: '';
  position: absolute;
  top: 50px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--bz-border) 8%, var(--bz-border) 92%, transparent);
  z-index: 0;
}
.bz-timeline__step {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  z-index: 1;
}
.bz-timeline__node {
  width: 14px; height: 14px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 0 4px rgba(204,0,0,0.18);
  margin-bottom: 6px;
}
.bz-timeline__days {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.bz-timeline__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.bz-timeline__body {
  font-size: 14px;
  color: var(--fg-mute);
  line-height: 1.55;
}
@media (max-width: 980px) {
  .bz-timeline { grid-template-columns: repeat(2, 1fr); }
  .bz-timeline::before { display: none; }
}
@media (max-width: 640px) {
  .bz-timeline { grid-template-columns: 1fr; }
}

/* ============================================================
   COMPANY STATS
   ============================================================ */
.bz-company {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.bz-company__copy { display: flex; flex-direction: column; gap: 20px; }
.bz-company__copy p {
  color: var(--fg-mute);
  font-size: 17px;
  line-height: 1.6;
  max-width: 540px;
}
.bz-company__stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bz-company__stat {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.bz-company__stat .ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
}
.bz-company__stat .ico svg { width: 16px; height: 16px; }
.bz-company__stat .lbl {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.02em;
}
.bz-company__stat .desc {
  font-size: 13px;
  color: var(--fg-mute);
  line-height: 1.5;
}
@media (max-width: 980px) { .bz-company { grid-template-columns: 1fr; gap: 40px; } }

/* ============================================================
   FAQ
   ============================================================ */
.bz-faq {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--bz-border);
  max-width: 880px;
  margin: 0 auto;
}
.bz-faq__item { border-bottom: 1px solid var(--bz-border); }
.bz-faq__item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--fg);
}
.bz-faq__item summary::-webkit-details-marker { display: none; }
.bz-faq__plus {
  width: 32px; height: 32px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bz-border);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--fg);
  flex: 0 0 32px;
  transition: transform .2s ease, background .2s, border-color .2s;
}
.bz-faq__item[open] .bz-faq__plus {
  background: var(--red);
  border-color: var(--red);
  transform: rotate(45deg);
}
.bz-faq__body {
  padding: 0 0 26px;
  font-size: 16px;
  color: var(--fg-mute);
  line-height: 1.6;
  max-width: 760px;
}

/* ============================================================
   FINAL CTA  +  CONTACT FORM
   ============================================================ */
.bz-final {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.bz-final::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 380px at 50% 0%, rgba(204,0,0,0.18), transparent 70%);
  pointer-events: none;
}
.bz-final__inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 28px;
  align-items: center;
  position: relative;
}
.bz-final__buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}
.bz-final__small {
  font-size: 13px;
  color: var(--fg-dim);
  max-width: 480px;
}

.bz-contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 980px) { .bz-contact { grid-template-columns: 1fr; gap: 40px; } }

.bz-contact__copy { display: flex; flex-direction: column; gap: 16px; }
.bz-contact__bullets {
  list-style: none; padding: 0; margin: 16px 0 0;
  display: flex; flex-direction: column; gap: 12px;
}
.bz-contact__bullets li {
  display: flex; align-items: center; gap: 12px;
  color: var(--fg-mute);
  font-size: 15px;
}
.bz-contact__bullets li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  flex: 0 0 6px;
}

.bz-form {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: 28px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.bz-field { display: flex; flex-direction: column; gap: 6px; }
.bz-field > label {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--fg-mute);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.bz-field input,
.bz-field select,
.bz-field textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bz-border);
  border-radius: 12px;
  padding: 14px 16px;
  color: var(--fg);
  font-family: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .15s ease, background .15s ease;
}
.bz-field input::placeholder,
.bz-field textarea::placeholder { color: var(--fg-dim); }
.bz-field input:focus,
.bz-field select:focus,
.bz-field textarea:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.bz-field textarea { resize: vertical; min-height: 110px; line-height: 1.5; }
.bz-field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) { .bz-field-row { grid-template-columns: 1fr; } }
.bz-form__submit { margin-top: 6px; align-self: flex-start; }

.bz-roles {
  display: flex; flex-wrap: wrap; gap: 8px;
}
.bz-role {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bz-border);
  color: var(--fg-mute);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.bz-role:hover { color: var(--fg); }
.bz-role.is-active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.bz-success {
  display: none;
  padding: 16px;
  background: rgba(94, 196, 126, 0.1);
  border: 1px solid rgba(94, 196, 126, 0.3);
  border-radius: 12px;
  color: #b8e6c8;
  font-size: 14px;
}
.bz-form.is-sent .bz-success { display: block; }
.bz-form.is-sent .bz-form__hide { display: none; }

/* ============================================================
   Section eyebrow accent — small red dot before label
   (re-uses existing .t-eyebrow with optional class)
   ============================================================ */
.t-eyebrow.bz-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.t-eyebrow.bz-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
}

/* ============================================================
   VENUE / ORGANIZER / ARTIST — already covered by audience
   selector in the page. New B2B "Organizer split block" below.
   ============================================================ */
.bz-org {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}
.bz-org__block {
  background: var(--bz-important);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--bz-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  min-height: 480px;
  position: relative;
  overflow: hidden;
}
.bz-org__block::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(400px 280px at 80% 20%, rgba(255,255,255,0.10), transparent 70%);
  pointer-events: none;
}
.bz-org__tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.16);
  color: #fff;
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  align-self: flex-start;
}
.bz-org__name {
  font-family: var(--font-display);
  font-size: 44px;
  letter-spacing: -0.04em;
  line-height: 0.98;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.bz-org__name .slash { color: rgba(255,255,255,0.55); margin: 0 2px; font-weight: 500; }
.bz-org__desc {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(255,255,255,0.85);
  max-width: 460px;
  position: relative;
}
.bz-org__mini {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  position: relative;
}
.bz-org__mini-cell {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 12px;
  padding: 12px 14px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bz-org__mini-cell .lbl {
  font-family: var(--font-mono);
  font-size: 10px; color: rgba(255,255,255,0.7);
  text-transform: uppercase; letter-spacing: 0.08em; font-weight: 600;
}
.bz-org__mini-cell .val {
  font-family: var(--font-display);
  font-size: 18px; font-weight: 600; letter-spacing: -0.02em; color: #fff;
}

.bz-org__checklist {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: var(--bz-radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 480px;
}
.bz-org__checklist h4 {
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--fg-mute);
  margin: 0 0 8px;
}
.bz-org__checklist ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; }
.bz-org__checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--bz-border);
  font-size: 15.5px;
  font-weight: 500;
  color: var(--fg);
}
.bz-org__checklist li:last-child { border-bottom: none; }
.bz-org__check {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 22px;
}
.bz-org__check svg { width: 12px; height: 12px; }

@media (max-width: 980px) {
  .bz-org { grid-template-columns: 1fr; }
  .bz-org__block, .bz-org__checklist { min-height: auto; padding: 32px; }
  .bz-org__name { font-size: 36px; }
}

/* ============================================================
   Launch pricing note (after 5-card launch grid)
   ============================================================ */
.bz-launch-note {
  margin-top: 28px;
  padding: 22px 26px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--bz-border);
  font-size: 14.5px;
  color: var(--fg-mute);
  line-height: 1.6;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.bz-launch-note strong { color: var(--fg); font-weight: 600; }
.bz-launch-note .ico {
  width: 32px; height: 32px;
  border-radius: 10px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  display: inline-flex; align-items: center; justify-content: center;
  flex: 0 0 32px;
}
.bz-launch-note .ico svg { width: 16px; height: 16px; }

/* ============================================================
   Standard section heading block used in business sections
   ============================================================ */
.bz-head {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 56px;
  max-width: 820px;
}
@media (max-width: 800px) { .bz-head { margin-bottom: 40px; gap: 14px; } }
.bz-head .t-eyebrow { margin-bottom: 0; }
.bz-head h2 {
  font-weight: 600;
}
.bz-head p {
  color: var(--fg-mute);
  font-size: 17px;
  line-height: 1.55;
  max-width: 680px;
  margin: 0;
}
.bz-head--center {
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.bz-head--center .t-eyebrow { align-self: center; }
.bz-head--center h2 { text-align: center; }

/* Final CTA + Contact form headings */
.bz-final__lede {
  font-size: 18px;
  line-height: 1.5;
  color: var(--fg-mute);
  max-width: 640px;
}
.bz-contact__lede {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-mute);
  margin: 0;
}

/* ============================================================
   de rouge Pay — coming soon block (after Pulse)
   ============================================================ */
.bz-pay {
  position: relative;
  overflow: hidden;
}
.bz-pay::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 360px at 85% 30%, rgba(204,0,0,0.18), transparent 70%),
    radial-gradient(500px 320px at 10% 80%, rgba(204,0,0,0.10), transparent 70%);
  pointer-events: none;
}
.bz-pay__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
}
@media (max-width: 980px) {
  .bz-pay__inner { grid-template-columns: 1fr; gap: 40px; }
  .bz-pay__visual { max-width: 100%; margin-left: 0; }
}
@media (max-width: 600px) {
  .bz-pay__inner { gap: 28px; }
  .bz-pay__visual { max-width: 100%; }
  .bz-pay__form { flex-direction: column; }
  .bz-pay__form input { min-width: 0; width: 100%; }
  .bz-pay__form .btn { width: 100%; justify-content: center; }
}
.bz-pay__copy { display: flex; flex-direction: column; gap: 22px; }
.bz-pay__tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(204,0,0,0.14);
  color: var(--red);
  padding: 6px 12px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  align-self: flex-start;
}
.bz-pay__tag::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 999px;
  background: var(--red);
  box-shadow: 0 0 10px var(--red);
}
.bz-pay__title {
  font-family: var(--font-display);
  color: var(--fg);
}
.bz-pay__title em {
  font-style: normal;
  color: var(--red);
}
.bz-pay__desc {
  font-size: 17px;
  line-height: 1.55;
  color: var(--fg-mute);
  max-width: 520px;
}
.bz-pay__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bz-pay__list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: var(--fg);
  font-size: 15.5px;
  line-height: 1.5;
}
.bz-pay__list li strong { color: var(--fg); font-weight: 600; }
.bz-pay__list .ico {
  width: 22px; height: 22px;
  border-radius: 999px;
  background: rgba(204,0,0,0.18);
  color: var(--red);
  display: inline-flex;
  align-items: center; justify-content: center;
  flex: 0 0 22px;
  margin-top: 2px;
}
.bz-pay__list .ico svg { width: 12px; height: 12px; }
.bz-pay__form {
  display: flex;
  gap: 10px;
  margin-top: 8px;
  max-width: 460px;
  flex-wrap: wrap;
}
.bz-pay__form input {
  flex: 1;
  min-width: 200px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--bz-border);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--fg);
  font: inherit;
  font-size: 14px;
  outline: none;
}
.bz-pay__form input:focus {
  border-color: var(--red);
  background: rgba(255,255,255,0.06);
}
.bz-pay__form .form-status {
  flex: 0 0 100%;
}
.bz-pay__small {
  font-size: 12.5px;
  color: var(--fg-dim);
  margin-top: 4px;
}

/* Visual side: stack of pay surfaces */
.bz-pay__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  max-width: 480px;
  margin-left: auto;
}
.bz-pay-card {
  background: linear-gradient(135deg, #b00000 0%, #780000 100%);
  border-radius: 22px;
  padding: 22px 24px;
  color: #fff;
  box-shadow: 0 30px 80px rgba(204,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.08) inset;
  position: relative;
  overflow: hidden;
}
.bz-pay-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(220px 140px at 80% 10%, rgba(255,255,255,0.18), transparent 70%);
  pointer-events: none;
}
.bz-pay-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  position: relative;
}
.bz-pay-card__brand {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: -0.01em;
}
.bz-pay-card__brand em {
  font-style: normal;
  opacity: 0.7;
  margin-left: 4px;
}
.bz-pay-card__chip {
  width: 32px; height: 24px;
  border-radius: 6px;
  background: linear-gradient(135deg, rgba(255,255,255,0.5), rgba(255,255,255,0.15));
  border: 1px solid rgba(255,255,255,0.25);
}
.bz-pay-card__balance {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 22px;
  position: relative;
}
.bz-pay-card__balance .lbl {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}
.bz-pay-card__balance .val {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.025em;
}
.bz-pay-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  opacity: 0.85;
  position: relative;
}
.bz-pay-row {
  background: var(--bz-card);
  border: 1px solid var(--bz-border);
  border-radius: 16px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.bz-pay-row .bz-pay-row__logo {
  width: 36px; height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 12px;
  color: var(--fg);
  flex: 0 0 36px;
  letter-spacing: -0.01em;
}
.bz-pay-row .bz-pay-row__logo.twint { background: #ed1d24; color: #fff; }
.bz-pay-row .bz-pay-row__logo.apple { background: #1a1a1a; color: #fff; }
.bz-pay-row .bz-pay-row__logo.google { background: #fff; color: #1a1a1a; }
.bz-pay-row__info { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.bz-pay-row__name { font-size: 14px; font-weight: 600; color: var(--fg); }
.bz-pay-row__meta { font-family: var(--font-mono); font-size: 11px; color: var(--fg-mute); }
.bz-pay-row__amount {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--fg);
  letter-spacing: -0.01em;
}
.bz-pay-row__amount .neg { color: #5ec47e; }
.bz-pay__actions {
  display: flex;
  justify-content: space-between;
  gap: 6px;
  margin-top: 4px;
  padding: 14px 4px 2px;
}
.bz-pay__action {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  cursor: default;
  user-select: none;
  transition: transform 0.2s cubic-bezier(0.34,1.56,0.64,1);
}
.bz-pay__action:hover {
  transform: scale(1.12);
}
.bz-pay__action-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--fg);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.bz-pay__action-icon svg {
  width: 18px;
  height: 18px;
}
.bz-pay__action:hover .bz-pay__action-icon {
  background: rgba(204,0,0,0.22);
  border-color: rgba(204,0,0,0.45);
  color: #fff;
}
.bz-pay__action span {
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--fg-mute);
  transition: color 0.2s;
}
.bz-pay__action:hover span {
  color: var(--fg);
}

.bz-pay__visual-soon {
  position: absolute;
  top: 14px;
  right: 0;
  background: var(--red);
  color: #fff;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  padding: 6px 12px;
  border-radius: 999px;
  transform: rotate(6deg);
  box-shadow: 0 8px 24px rgba(204,0,0,0.4);
}
