/* ============================================================
   Cohesion pass — bring late-stage components in line with BMW
   design tokens. Loaded LAST so it overrides ad-hoc styles.

   Touches:
     - .shipbar (free-shipping bar)
     - .sub-block (PDP subscription card)
     - .intro-modal (first-visit popup)
     - .bac-cross (bac-water cross-sell)
     - input/select unification
     - cart drawer + checkout polish
   ============================================================ */

/* ---------- 1. SHIPBAR — match dark hero band, no off-brand navy ---------- */
.shipbar {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 12px var(--pad-x);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.shipbar__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
  align-items: center;
}
.shipbar__txt {
  white-space: normal;
  letter-spacing: 1.2px;
  color: rgba(255,255,255,0.78);
}
.shipbar__txt b {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: none;
}
.shipbar__txt b.tabular { color: var(--blue); }
.shipbar__track {
  height: 2px;
  background: rgba(255,255,255,0.10);
  width: 220px;
  max-width: 40vw;
}
.shipbar__fill { background: var(--blue); }
.shipbar__icon {
  display: inline-flex;
  width: 18px; height: 18px;
  color: var(--blue);
}
@media (max-width: 700px) {
  .shipbar { padding: 10px var(--pad-x); }
  .shipbar__inner { grid-template-columns: 1fr; gap: 8px; }
  .shipbar__track { width: 100%; max-width: none; height: 3px; }
  .shipbar__txt { font-size: 11px; }
}

/* ---------- 2. SUB-BLOCK — two-card variant pattern ---------- */
.sub-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
  padding: 0;
  margin: 16px 0;
}
.sub-block__opt {
  background: var(--canvas);
  padding: 18px 20px;
  cursor: pointer;
  display: flex; flex-direction: column; gap: 6px;
  position: relative;
  transition: background var(--dur-fast) var(--ease-out);
}
.sub-block__opt:hover { background: var(--surface-soft); }
.sub-block__opt input[type="radio"] {
  position: absolute; opacity: 0; pointer-events: none;
}
.sub-block__opt-head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
}
.sub-block__opt-name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
}
.sub-block__opt-save {
  font-family: var(--font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: var(--success);
}
.sub-block__opt-meta {
  font-size: 13px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.5;
}
.sub-block__opt:has(input[type="radio"]:checked) {
  background: var(--canvas);
  outline: 2px solid var(--blue);
  outline-offset: -2px;
  z-index: 1;
}
.sub-block__opt:has(input[type="radio"]:checked) .sub-block__opt-name { color: var(--blue); }
.sub-block__opt-freq {
  margin-top: 4px;
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--body); font-weight: 400;
}
.sub-block__opt-freq select {
  padding: 6px 10px;
  font-family: var(--font); font-size: 12px;
  border: 1px solid var(--hairline-strong);
  background: var(--canvas);
  color: var(--ink);
  outline: none;
}
.sub-block__opt-freq select:focus { border-color: var(--blue); }
@media (max-width: 600px) { .sub-block { grid-template-columns: 1fr; } }

/* ---------- 3. INTRO MODAL — clean BMW card pattern ---------- */
.intro-modal__card {
  background: var(--canvas);
  width: min(440px, 100%);
  padding: 40px 36px 32px;
  position: relative;
  border-top: 3px solid var(--blue);
  display: flex; flex-direction: column; gap: 14px;
  border-radius: 0;
}
.intro-modal__card .eyebrow {
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.intro-modal__card h3 {
  font-family: var(--font);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: 0;
  margin: 0;
  color: var(--ink);
}
.intro-modal__card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--body);
  margin: 0 0 4px;
  max-width: 100%;
}
.intro-modal__form {
  display: flex; flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.intro-modal__form input {
  width: 100%;
  padding: 14px 16px;
  height: 48px;
  border: 1px solid var(--hairline-strong);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  background: var(--canvas);
  color: var(--ink);
}
.intro-modal__form input:focus { border-color: var(--blue); }
.intro-modal__form .btn {
  width: 100%;
  justify-content: center;
}
.intro-modal__close {
  position: absolute;
  top: 10px; right: 10px;
  width: 36px; height: 36px;
  background: transparent;
  border: 0;
  font-size: 22px;
  color: var(--muted);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}
.intro-modal__close:hover { color: var(--ink); }
.intro-modal small {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.4px;
  margin-top: 6px;
}

/* ---------- 4. BAC-WATER CROSS-SELL — proper component ---------- */
.bac-cross {
  background: var(--surface-soft);
  border-left: 3px solid var(--blue);
  padding: 18px 22px;
  margin: 24px 0;
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 18px;
  align-items: center;
}
.bac-cross__icon {
  width: 28px; height: 28px;
  color: var(--blue);
}
.bac-cross__body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.bac-cross__name {
  font-family: var(--font);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
}
.bac-cross__meta {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--muted);
}
.bac-cross__meta b {
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}
.bac-cross .btn {
  white-space: nowrap;
}
@media (max-width: 640px) {
  .bac-cross { grid-template-columns: 32px 1fr; }
  .bac-cross .btn { grid-column: 1 / -1; justify-content: center; }
}

/* ---------- 5. INPUT / SELECT UNIFICATION (site-wide consistency) ---------- */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="search"],
input[type="date"],
input[type="password"],
select,
textarea {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  border-radius: 0;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="search"]:focus,
input[type="date"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  outline: 0;
}

/* ---------- 6. CART drawer — tighter, more BMW ---------- */
.cart-drawer__head .eyebrow {
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--ink);
}
.cart-shipbar {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
  padding: 14px 24px;
}
.cart-shipbar__txt {
  font-size: 12px;
  letter-spacing: 0.3px;
  text-transform: none;
  color: var(--body);
  margin-bottom: 8px;
  font-weight: 400;
}
.cart-shipbar__txt b { color: var(--ink); font-weight: 700; }
.cart-shipbar__track {
  height: 2px;
  background: var(--hairline);
}
.cart-foot-row {
  font-size: 13px;
  letter-spacing: 0.4px;
  font-weight: 400;
  text-transform: none;
}
.cart-foot-row :last-child { font-size: 24px; font-weight: 300; }

/* ---------- 7. DISCOUNT row — match form pattern ---------- */
.disc-row {
  background: var(--canvas);
}
.disc-row input {
  font-weight: 700;
  letter-spacing: 1.4px;
  font-size: 13px;
}
.disc-applied {
  letter-spacing: 0.4px;
  font-weight: 400;
}
.disc-applied b { font-weight: 700; }

/* ---------- 8. CHECKOUT layout polish ---------- */
.checkout-grid { gap: 64px; }
.checkout-col .title-md {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}
.field span {
  font-weight: 700;
  letter-spacing: 1.2px;
}
.field input, .field select, .field textarea {
  height: 48px;
  padding: 12px 14px;
}
.field textarea { height: auto; min-height: 96px; padding: 12px 14px; }
.pay-opt {
  padding: 16px 18px;
  font-size: 14px;
  font-weight: 400;
}
.checkout-summary {
  padding: 28px 24px;
  border: 1px solid var(--hairline);
  background: var(--canvas);
}
.checkout-summary .title-md {
  margin-bottom: 16px;
  letter-spacing: 1.5px;
}

/* ---------- 9. NEWSLETTER footer — calmer ---------- */
.newsletter h3 {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0;
}
.newsletter p {
  font-weight: 300;
  font-size: 14px;
}
.newsletter input {
  height: 48px;
  padding: 12px 16px;
}

/* ---------- 10. TOAST — match design tokens ---------- */
.toast {
  background: var(--ink);
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 13px;
  line-height: 1.45;
}
.toast b { font-weight: 700; }

/* ---------- 11. ORDER TICKER — calm down ---------- */
.order-ticker {
  border-left: 3px solid var(--blue);
  font-weight: 400;
  letter-spacing: 0.3px;
}
.order-ticker__loc { font-size: 13px; font-weight: 700; letter-spacing: 0; }
.order-ticker__meta { letter-spacing: 0.3px; }

/* ---------- 12. AGE GATE — BMW pattern ---------- */
.age-gate__card {
  border-top: 3px solid var(--blue);
  border-radius: 0;
  padding: 40px 36px 32px;
}
.age-gate__card h2 {
  font-family: var(--font);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0 0 12px;
}
.age-gate__card p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--body);
}

/* ---------- 13. GEO NOTICE — calmer ---------- */
.geo-notice {
  font-weight: 400;
  letter-spacing: 0.3px;
  font-size: 13px;
}
.geo-notice b {
  color: var(--blue);
  font-weight: 700;
}

/* ---------- 14. WHY-CARD — uniform ---------- */
.why-card h3 {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.why-card li {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- 15. RECON CALC — uniform ---------- */
.recon-calc h3 {
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--ink);
}
.recon-calc .caption {
  font-weight: 300;
  letter-spacing: 0.3px;
  text-transform: none;
  font-size: 12px;
}
.recon-grid input {
  height: 44px;
  padding: 10px 12px;
}

/* ---------- 16. BULK SLIDER — uniform ---------- */
.bulk-slider {
  background: var(--surface-soft);
  border: 1px solid var(--hairline);
}
.bulk-slider h4 {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.bulk-slider__qty { font-weight: 300; font-size: 28px; }
.bulk-slider__price { font-size: 16px; font-weight: 400; }
.bulk-slider__price b { font-weight: 700; }

/* ---------- 17. VARIANT TABLE — uniform ---------- */
.variant-cell__size {
  font-size: 12px; letter-spacing: 1.4px; text-transform: uppercase;
}
.variant-cell__price { font-weight: 700; }
.variant-cell__per-mg {
  font-size: 11px; letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--muted);
}

/* ---------- 18. STATUS ROWS — uniform ---------- */
.status-row__name {
  font-size: 13px;
  letter-spacing: 0;
  font-weight: 700;
}
.status-row__pill {
  letter-spacing: 1.4px;
  font-weight: 700;
}

/* ---------- 19. SOCIAL ROW — calmer ---------- */
.social-row__lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--on-dark-soft);
}

/* ---------- 20. LAB CARD — uniform ---------- */
.lab-headline {
  font-weight: 700;
  letter-spacing: 0;
}
.lab-headline__compound { color: var(--blue); }
.lab-stats dt {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--muted);
}
.lab-stats dd { font-weight: 400; font-size: 16px; }

/* ---------- 21. FBW card — uniform ---------- */
.fbw-card__cat {
  letter-spacing: 1.5px;
  font-weight: 700;
}
.fbw-card__body b { font-weight: 700; }

/* ---------- 22. JANOSHIK BADGE — calmer ---------- */
.janoshik-badge {
  letter-spacing: 1.2px;
  font-weight: 700;
}

/* ---------- 23. EYEBROWS — site-wide enforcement ---------- */
.eyebrow, .label-uppercase {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 12px;
}

/* ---------- 24. RUO BLOCK — calmer ---------- */
.ruo-block h3 {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.ruo-block p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}

/* ---------- 25. TRUST BADGES — calmer ---------- */
.trust__h {
  font-size: 12px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.trust__p {
  font-weight: 300;
  font-size: 13px;
  line-height: 1.55;
  letter-spacing: 0.2px;
}

/* ---------- 26. CARD CTA / CAT — uniform ---------- */
.card__cat {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.card__cta {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
}
.card__name {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0;
}

/* ---------- 27. RIBBON — make labels uppercase + bold consistent ---------- */
.ribbon__lbl {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: rgba(255,255,255,0.55);
}
.ribbon__val {
  font-weight: 700;
  letter-spacing: 0;
  font-size: 28px;
}

/* ---------- 28. NAV — refine link weights ---------- */
.nav__links a {
  font-weight: 700;
  letter-spacing: 1.5px;
  font-size: 12px;
}

/* ---------- 29. COMPLIANCE bar — quiet ---------- */
.compliance {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 1.4px;
}
.compliance b {
  font-weight: 700;
  letter-spacing: 1.4px;
}

/* ---------- 30. STOCK BADGES — uniform ---------- */
.stock-badge {
  font-size: 11px;
  letter-spacing: 1.5px;
  font-weight: 700;
  padding: 6px 12px;
}

/* ---------- 31. BREADCRUMBS — sub-nav strip ---------- */
.breadcrumbs {
  background: var(--surface-soft);
  border-bottom: 1px solid var(--hairline);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--muted);
  padding: 10px 0;
}
.breadcrumbs .container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex; flex-wrap: wrap; align-items: center; gap: 4px;
}
.breadcrumbs a {
  color: var(--body);
  text-decoration: none;
  transition: color var(--dur-fast) var(--ease-out);
}
.breadcrumbs a:hover { color: var(--blue); }
.breadcrumbs span[aria-current="page"] {
  color: var(--ink);
  font-weight: 700;
}
.bc-sep { color: var(--muted-soft); padding: 0 4px; }

/* ---------- 32. ARIA-CURRENT nav ---------- */
.nav__links a[aria-current="page"] {
  color: #fff;
}
.nav__links a[aria-current="page"]::after {
  transform: scaleX(1);
}

/* ---------- 33. NAV DROPDOWN (Policies) ---------- */
.nav__dd { position: relative; display: inline-block; }
.nav__dd-toggle {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.78);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  position: relative;
  transition: color var(--dur-fast) var(--ease-out);
}
.nav__dd-toggle i, .nav__dd-toggle svg { width: 14px; height: 14px; transition: transform var(--dur-fast); }
.nav__dd-toggle:hover, .nav__dd[data-open="1"] .nav__dd-toggle { color: #fff; }
.nav__dd[data-open="1"] .nav__dd-toggle i, .nav__dd[data-open="1"] .nav__dd-toggle svg { transform: rotate(180deg); }
.nav__dd-toggle::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--blue);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--dur-med) var(--ease-out);
}
.nav__dd-toggle:hover::after, .nav__dd[data-open="1"] .nav__dd-toggle::after { transform: scaleX(1); }

.nav__dd-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 220px;
  background: var(--surface-dark);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 8px 0;
  display: flex;
  flex-direction: column;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med) var(--ease-out), transform var(--dur-med) var(--ease-out);
  z-index: 60;
}
.nav__dd[data-open="1"] .nav__dd-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav__dd-menu a {
  padding: 10px 18px;
  color: rgba(255,255,255,0.78);
  font-family: var(--font);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast);
}
.nav__dd-menu a:hover {
  color: #fff;
  background: rgba(28,105,212,0.20);
}

/* Mobile: nav__dd flattens into a labeled section in the slide-down nav */
@media (max-width: 900px) {
  .nav__dd { width: 100%; }
  .nav__dd-toggle { width: 100%; padding: 16px var(--pad-x); border-bottom: 1px solid var(--hairline-dark); justify-content: flex-start; font-size: 14px; }
  .nav__dd-menu {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    background: rgba(255,255,255,0.04);
    border: 0;
    padding: 0;
    display: none;
    min-width: 0;
  }
  .nav__dd[data-open="1"] .nav__dd-menu { display: flex; }
  .nav__dd-menu a {
    padding: 14px var(--pad-x) 14px calc(var(--pad-x) + 16px);
    border-bottom: 1px solid var(--hairline-dark);
    font-size: 13px;
  }
}

/* On nav links: skip the auto active underline rule for the dropdown items */
.nav__dd-menu a::after { display: none !important; }

/* ============================================================
   FOOTER REBUILD — round 4
   - Logo as transparent SVG (no white square)
   - Social icons inside footer (no separate band)
   - Newsletter as collapsible <details>
   - Breadcrumbs flipped to dark (no white strip at top)
   ============================================================ */

/* ---- Hide the obsolete standalone social/newsletter bands if any survive ---- */
.social-row { display: none !important; }
.newsletter:not(.footer__newsletter):not([data-keep]) { display: none !important; }

/* ---- Logo treatment in the dark nav ---- */
.nav__brand img {
  height: 40px; width: auto;
  display: block;
}

/* ---- Footer brand + social ---- */
.footer { background: var(--surface-dark); padding: 64px 0 0; color: var(--on-dark); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--hairline-dark);
}
.footer__brand img {
  height: 44px; width: auto;
  display: block;
  margin-bottom: 18px;
}
.footer__tag {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--on-dark-soft);
  max-width: 320px;
  margin: 0 0 18px;
}
.footer__social {
  list-style: none;
  margin: 0; padding: 0;
  display: flex; flex-wrap: wrap;
  gap: 8px;
}
.footer__social a {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color var(--dur-fast), background var(--dur-fast), border-color var(--dur-fast);
}
.footer__social a:hover {
  color: #fff;
  background: var(--blue);
  border-color: var(--blue);
}
.footer__social svg, .footer__social i { width: 16px; height: 16px; }

/* ---- Footer link columns ---- */
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__h {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 10px;
}
.footer__col a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.footer__col a:hover { color: #fff; }

/* ---- Newsletter collapsible inside footer ---- */
.footer__newsletter {
  border-top: 1px solid var(--hairline-dark);
  border-bottom: 1px solid var(--hairline-dark);
  padding: 0 var(--pad-x);
  max-width: var(--container-max);
  margin: 0 auto;
}
.footer__newsletter > summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,0.78);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: color var(--dur-fast);
}
.footer__newsletter > summary::-webkit-details-marker { display: none; }
.footer__newsletter > summary:hover { color: #fff; }
.footer__newsletter > summary i, .footer__newsletter > summary svg {
  width: 16px; height: 16px; transition: transform var(--dur-fast);
}
.footer__newsletter[open] > summary i, .footer__newsletter[open] > summary svg { transform: rotate(180deg); }
.footer__newsletter form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  padding: 0 0 14px;
  max-width: 520px;
}
.footer__newsletter input {
  height: 44px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  color: #fff;
  font-family: var(--font);
  font-size: 14px;
}
.footer__newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.footer__newsletter input:focus { border-color: var(--blue); background: rgba(255,255,255,0.10); outline: none; }
.footer__newsletter small {
  display: block;
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.4px;
  color: var(--on-dark-soft);
  padding-bottom: 18px;
  max-width: 520px;
}

/* ---- Footer base ---- */
.footer__base {
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; flex-wrap: wrap;
  padding: 22px var(--pad-x);
  max-width: var(--container-max);
  margin: 0 auto;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.45);
}

@media (max-width: 900px) {
  .footer__inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
  .footer__base { flex-direction: column; align-items: flex-start; gap: 8px; }
}

/* ============================================================
   BREADCRUMBS FIX — was light grey strip ('white bar at top')
   Now: surface-dark-alt, blends with nav above.
   ============================================================ */
.breadcrumbs {
  background: var(--surface-dark-alt);
  border-bottom: 1px solid var(--hairline-dark);
  border-top: 1px solid var(--hairline-dark);
  font-size: 12px;
  letter-spacing: 0.4px;
  color: var(--on-dark-soft);
  padding: 12px 0;
}
.breadcrumbs a {
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color var(--dur-fast);
}
.breadcrumbs a:hover { color: #fff; }
.breadcrumbs span[aria-current="page"] {
  color: #fff;
  font-weight: 700;
}
.bc-sep { color: rgba(255,255,255,0.30); padding: 0 4px; }

/* ============================================================
   FOOTER SOCIAL — round 5 fix
   Bigger tap targets, properly centered icons, no list-style.
   ============================================================ */
.footer__social {
  list-style: none !important;
  margin: 0; padding: 0;
  display: flex !important;
  flex-wrap: wrap;
  gap: 10px !important;
  margin-top: 18px;
}
.footer__social li {
  list-style: none;
  margin: 0; padding: 0;
}
.footer__social a {
  width: 44px !important;
  height: 44px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 1px solid rgba(255,255,255,0.20) !important;
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none !important;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease !important;
}
.footer__social a:hover {
  color: #fff !important;
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  transform: translateY(-2px) !important;
}
.footer__social svg, .footer__social i {
  width: 20px !important;
  height: 20px !important;
  stroke-width: 1.75 !important;
}

/* Hide newsletter wrapper if any orphaned markup remains */
.footer__newsletter, section.newsletter:not([data-keep]) { display: none !important; }

/* ============================================================
   ROUND 6 — kill the cruft user explicitly rejected
   ============================================================ */
.tabs-mobile, .marquee, .age-gate, .intro-modal, .footer__newsletter { display: none !important; }
/* Restore body padding now that mobile tabs are gone */
@media (max-width: 720px) {
  body { padding-bottom: 80px !important; }
}

/* ============================================================
   ROUND 7 — final UI cleanup per user feedback
   ============================================================ */

/* HERO: logo only, no vial photo */
.hero { padding-top: 0 !important; }
.hero__bg { display: none !important; }
.hero__logo {
  display: block;
  margin: 32px auto 24px;
  max-width: 320px;
  height: auto;
  width: 35vw;
  min-width: 200px;
  filter: drop-shadow(0 20px 60px rgba(28,105,212,0.45));
  position: relative; z-index: 2;
}
.hero__inner { padding-top: 24px; }

/* NAV: cleaner spacing + tighter Policies dropdown */
.nav { padding: 0 var(--pad-x); height: 64px; }
.nav__brand img {
  height: 38px !important; width: auto !important;
}
.nav__brand span {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
}
.nav__links {
  gap: 26px !important;
  justify-content: center;
}
.nav__links > a, .nav__dd-toggle {
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 1.4px !important;
  white-space: nowrap;
  padding: 4px 0 !important;
}

.nav__dd-menu {
  background: #1a2129 !important;
  border: 1px solid rgba(255,255,255,0.08) !important;
  min-width: 240px !important;
  padding: 6px 0 !important;
}
.nav__dd-menu a {
  padding: 11px 18px !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  letter-spacing: 1.4px !important;
  text-transform: uppercase !important;
}

@media (max-width: 1100px) {
  .nav__links { gap: 18px !important; }
  .nav__links > a, .nav__dd-toggle { font-size: 11px !important; letter-spacing: 1.2px !important; }
}

/* FOOTER v2 — clean, BMW-style */
.footer-v2 {
  background: var(--surface-dark);
  color: var(--on-dark);
  padding: 64px 0 0;
  margin-top: 0;
}
.footer-v2__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.footer-v2__brand {
  text-align: center;
  display: flex; flex-direction: column;
  align-items: center; gap: 14px;
  padding-bottom: 28px;
}
.footer-v2__brand img {
  height: 64px;
  width: auto;
}
.footer-v2__brand p {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--on-dark-soft);
  max-width: 460px;
  margin: 0;
}
.footer-v2__social {
  display: flex !important;
  list-style: none !important;
  margin: 0 auto !important;
  padding: 8px 0 32px !important;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  max-width: 100%;
}
.footer-v2__social li { list-style: none; margin: 0; }
.footer-v2__social a {
  display: inline-flex !important;
  align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border: 1px solid rgba(255,255,255,0.20) !important;
  background: transparent !important;
  color: rgba(255,255,255,0.85) !important;
  text-decoration: none;
  transition: all 180ms ease;
}
.footer-v2__social a:hover {
  background: var(--blue) !important;
  border-color: var(--blue) !important;
  color: #fff !important;
  transform: translateY(-2px);
}
.footer-v2__social svg {
  width: 18px; height: 18px;
}
.footer-v2__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  padding: 40px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-v2__cols > div {
  display: flex; flex-direction: column; gap: 10px;
}
.footer-v2__cols h5 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 6px;
}
.footer-v2__cols a {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--on-dark-soft);
  text-decoration: none;
  transition: color 160ms ease;
}
.footer-v2__cols a:hover { color: #fff; }
.footer-v2__base {
  display: flex; flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 20px 0 28px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.4px;
  color: rgba(255,255,255,0.45);
}
@media (max-width: 720px) {
  .footer-v2__cols { grid-template-columns: 1fr; gap: 28px; padding: 32px 0; }
  .footer-v2__base { flex-direction: column; align-items: flex-start; gap: 6px; }
}

/* IG follow CTA — clean, no fake grid */
.ig-follow { padding: 56px 0; }
.ig-follow__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.ig-follow__copy { flex: 1; min-width: 280px; }
.ig-follow__copy h2 { margin: 8px 0 12px; }
.ig-follow__copy p {
  color: var(--on-dark-soft);
  font-size: 15px;
  font-weight: 300;
  line-height: 1.6;
  max-width: 480px;
  margin: 0;
}

/* Defensive: hide any kill-listed cruft if HTML still survives */
.tabs-mobile, .marquee, .age-gate, .intro-modal,
.footer__newsletter, .reviews,
.ig-band, .ig-grid, .ig-tile { display: none !important; }
.footer { display: none !important; } /* old footer if any persists */
.social-row { display: none !important; }

/* ============================================================
   ROUND 8 — premium polish, kill white gaps, lock spacing
   ============================================================ */

/* Hero — tighter composition centered on the logo */
.hero {
  min-height: 78vh !important;
  background:
    radial-gradient(1200px 600px at 50% 30%, rgba(28,105,212,0.22) 0%, rgba(28,105,212,0) 60%),
    var(--surface-dark) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px var(--pad-x) 64px !important;
  text-align: center !important;
}
.hero__bg, .hero__grain { display: none !important; }
.hero__logo {
  display: block;
  margin: 0 auto 32px;
  width: clamp(140px, 22vw, 240px);
  height: auto;
  filter: drop-shadow(0 16px 56px rgba(28,105,212,0.55));
  animation: heroLogo 700ms cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes heroLogo {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: center !important;
  text-align: center !important;
  gap: 22px !important;
}
.hero__inner > .eyebrow { color: var(--blue); }
.hero__inner > .eyebrow.on-dark::before { display: none; }
.hero-title, .hero__inner h1 {
  font-family: var(--font);
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  text-transform: none !important;
  margin: 0 !important;
}
.hero__lead, .hero-sub {
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
}
.hero__cta {
  justify-content: center !important;
  margin-top: 8px !important;
}

/* Spec ribbon below hero — clean dark stripe */
.ribbon {
  background: var(--surface-dark-alt) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: static !important;
  margin: 0 !important;
}
.ribbon__cell {
  padding: 22px 24px !important;
  border-right: 1px solid rgba(255,255,255,0.06) !important;
  align-items: center !important;
  text-align: center !important;
}
.ribbon__lbl { font-size: 11px !important; letter-spacing: 1.5px !important; }
.ribbon__val { font-size: 24px !important; }

/* Defensive: kill any scroll-hint chevron leftover */
.scroll-hint { display: none !important; }

/* Hero CTA buttons — calmer, centered */
.btn--ghost-dark {
  background: transparent !important;
  border-color: rgba(255,255,255,0.40) !important;
  color: #fff !important;
}
.btn--ghost-dark:hover { background: #fff !important; color: var(--ink) !important; border-color: #fff !important; }

/* Section rhythm — tighten light/dark transitions, no awkward gaps */
.band { padding: 80px 0 !important; }
.band--light + .band--light, .band--dark + .band--dark {
  padding-top: 0 !important;
}
section + section { margin: 0 !important; }
main { background: var(--canvas); }

/* Section heads — clean alignment */
.section-head {
  text-align: left;
  margin-bottom: 40px !important;
}
.section-head .eyebrow {
  display: inline-block;
  margin-bottom: 14px !important;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

/* Filters — calmer */
.filters { gap: 8px !important; margin-bottom: 32px !important; }
.chip {
  font-weight: 700 !important;
  letter-spacing: 1.4px !important;
  font-size: 11px !important;
  padding: 9px 14px !important;
}
.chip.is-active { background: var(--blue) !important; border-color: var(--blue) !important; color: #fff !important; }

/* Product cards — premium plate look, no harsh borders */
.product-grid {
  border: 0 !important;
  background: transparent !important;
  gap: 24px !important;
}
.card {
  background: var(--canvas) !important;
  border: 1px solid var(--hairline) !important;
  transition: border-color 240ms ease, transform 240ms ease !important;
}
.card:hover { border-color: var(--ink) !important; transform: translateY(-3px) !important; }
.card__photo { background: var(--surface-card) !important; padding: 12px !important; }
.card__photo img { mix-blend-mode: multiply; }
.card__body { padding: 22px !important; }
.card__name { font-size: 18px !important; font-weight: 700 !important; }
.card__cat { font-size: 10px !important; letter-spacing: 1.5px !important; color: var(--blue) !important; }
.card__price { font-size: 22px !important; font-weight: 700 !important; color: var(--ink) !important; }
.card__cta { color: var(--blue) !important; font-size: 11px !important; letter-spacing: 1.5px !important; }
.card__row { padding-top: 14px !important; border-top: 1px solid var(--hairline) !important; }

/* Standards rows on dark — calmer numeric */
.standards__num {
  background: none !important;
  -webkit-text-fill-color: var(--blue) !important;
  color: var(--blue) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.standards__row { padding-bottom: 28px !important; border-bottom: 1px solid rgba(255,255,255,0.10) !important; }
.standards__body { font-size: 14px !important; line-height: 1.65 !important; color: rgba(255,255,255,0.78) !important; }

/* Pre-footer CTA — large editorial */
.cta__inner {
  align-items: center !important;
  gap: 32px !important;
}
.cta__inner h2 {
  font-size: clamp(28px, 4vw, 44px) !important;
  line-height: 1.1 !important;
}

/* Defensive: any element that was hidden but had margin/padding still is gone */
[data-recently]:empty, [data-fbw-anchor]:empty, [data-recon-anchor]:empty,
[data-bulk-anchor]:empty, [data-variants-anchor]:empty,
[data-qa-anchor]:empty, [data-reviews-anchor]:empty { display: none !important; }
.why-card:empty { display: none !important; }

/* Make sure the body background under footer extends seamlessly */
body { background: var(--canvas); }
.footer-v2 { margin-top: 0 !important; }

/* ============= MOBILE ============= */
@media (max-width: 720px) {
  .hero { min-height: auto !important; padding: 64px var(--pad-x) 48px !important; }
  .hero__logo { width: 140px; }
  .ribbon { grid-template-columns: 1fr 1fr !important; }
  .ribbon__cell:nth-child(2n) { border-right: 0 !important; }
  .ribbon__cell:nth-child(1), .ribbon__cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .band { padding: 56px 0 !important; }
  body { padding-bottom: 0 !important; }
}

/* Defensive HIDE list — kill anything we explicitly removed earlier */
.tabs-mobile, .marquee, .age-gate, .intro-modal,
.footer__newsletter, section.reviews, section[id="reviews"],
.ig-band, .ig-grid, .ig-tile, .social-row,
section.newsletter:not([data-keep]),
.footer:not(.footer-v2),
.scroll-hint, .compliance-tab,
.toast:not(.is-in) { display: none !important; }


/* ============================================================
   ROUND 8 - premium polish: hero centered on logo, kill gaps
   ============================================================ */
.hero {
  min-height: 78vh !important;
  background: radial-gradient(1200px 600px at 50% 30%, rgba(28,105,212,0.22) 0%, rgba(28,105,212,0) 60%), var(--surface-dark) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 80px var(--pad-x) 64px !important;
  text-align: center !important;
}
.hero__bg, .hero__grain { display: none !important; }
.hero__logo {
  display: block;
  margin: 0 auto 32px;
  width: clamp(140px, 22vw, 240px);
  height: auto;
  filter: drop-shadow(0 16px 56px rgba(28,105,212,0.55));
  animation: heroLogo 700ms cubic-bezier(0.2,0.8,0.2,1) both;
}
@keyframes heroLogo {
  from { opacity: 0; transform: translateY(8px) scale(0.96); }
  to   { opacity: 1; transform: none; }
}
.hero__inner {
  position: relative; z-index: 2;
  max-width: 760px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  align-items: center !important;
  text-align: center !important;
  gap: 22px !important;
}
.hero__inner > .eyebrow.on-dark { color: var(--blue); }
.hero__inner > .eyebrow.on-dark::before { display: none; }
.hero-title, .hero__inner h1 {
  font-family: var(--font);
  font-size: clamp(36px, 5.5vw, 64px) !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  letter-spacing: -0.005em !important;
  color: #fff !important;
  text-transform: none !important;
  margin: 0 !important;
}
.hero__lead, .hero-sub {
  font-size: 17px !important;
  font-weight: 300 !important;
  line-height: 1.65 !important;
  color: rgba(255,255,255,0.78) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
}
.hero__cta { justify-content: center !important; margin-top: 8px !important; }

.ribbon {
  background: var(--surface-dark-alt) !important;
  border-top: 1px solid rgba(255,255,255,0.08) !important;
  border-bottom: 1px solid rgba(255,255,255,0.08) !important;
  position: static !important;
  margin: 0 !important;
}
.ribbon__cell {
  padding: 22px 24px !important;
  border-right: 1px solid rgba(255,255,255,0.06) !important;
  align-items: center !important;
  text-align: center !important;
}
.ribbon__lbl { font-size: 11px !important; letter-spacing: 1.5px !important; }
.ribbon__val { font-size: 24px !important; }
.scroll-hint { display: none !important; }

.btn--ghost-dark {
  background: transparent !important;
  border-color: rgba(255,255,255,0.40) !important;
  color: #fff !important;
}
.btn--ghost-dark:hover { background: #fff !important; color: var(--ink) !important; border-color: #fff !important; }

.band { padding: 80px 0 !important; }
.band--light + .band--light, .band--dark + .band--dark { padding-top: 0 !important; }
section + section { margin: 0 !important; }
main { background: var(--canvas); }

.section-head { text-align: left; margin-bottom: 40px !important; }
.section-head .eyebrow { display: inline-block; margin-bottom: 14px !important; }
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px) !important;
  font-weight: 700 !important;
  line-height: 1.1 !important;
}

.filters { gap: 8px !important; margin-bottom: 32px !important; }
.chip {
  font-weight: 700 !important;
  letter-spacing: 1.4px !important;
  font-size: 11px !important;
  padding: 9px 14px !important;
}
.chip.is-active { background: var(--blue) !important; border-color: var(--blue) !important; color: #fff !important; }

.product-grid { border: 0 !important; background: transparent !important; gap: 24px !important; }
.card {
  background: var(--canvas) !important;
  border: 1px solid var(--hairline) !important;
  transition: border-color 240ms ease, transform 240ms ease !important;
}
.card:hover { border-color: var(--ink) !important; transform: translateY(-3px) !important; }
.card__photo { background: var(--surface-card) !important; padding: 12px !important; }
.card__body { padding: 22px !important; }
.card__name { font-size: 18px !important; font-weight: 700 !important; }
.card__cat { font-size: 10px !important; letter-spacing: 1.5px !important; color: var(--blue) !important; }
.card__price { font-size: 22px !important; font-weight: 700 !important; color: var(--ink) !important; }
.card__cta { color: var(--blue) !important; font-size: 11px !important; letter-spacing: 1.5px !important; }
.card__row { padding-top: 14px !important; border-top: 1px solid var(--hairline) !important; }

.standards__num {
  background: none !important;
  -webkit-text-fill-color: var(--blue) !important;
  color: var(--blue) !important;
  font-size: 28px !important;
  font-weight: 700 !important;
}
.standards__row { padding-bottom: 28px !important; border-bottom: 1px solid rgba(255,255,255,0.10) !important; }
.standards__body { font-size: 14px !important; line-height: 1.65 !important; color: rgba(255,255,255,0.78) !important; }

.cta__inner { align-items: center !important; gap: 32px !important; }
.cta__inner h2 { font-size: clamp(28px, 4vw, 44px) !important; line-height: 1.1 !important; }

[data-recently]:empty, [data-fbw-anchor]:empty, [data-recon-anchor]:empty,
[data-bulk-anchor]:empty, [data-variants-anchor]:empty,
[data-qa-anchor]:empty, [data-reviews-anchor]:empty { display: none !important; }
.why-card:empty { display: none !important; }

body { background: var(--canvas); }
.footer-v2 { margin-top: 0 !important; }

@media (max-width: 720px) {
  .hero { min-height: auto !important; padding: 64px var(--pad-x) 48px !important; }
  .hero__logo { width: 140px; }
  .ribbon { grid-template-columns: 1fr 1fr !important; }
  .ribbon__cell:nth-child(2n) { border-right: 0 !important; }
  .ribbon__cell:nth-child(1), .ribbon__cell:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .band { padding: 56px 0 !important; }
  body { padding-bottom: 0 !important; }
}

/* Defensive HIDE list */
.tabs-mobile, .marquee, .age-gate, .intro-modal,
.footer__newsletter, section.reviews, section[id="reviews"],
.ig-band, .ig-grid, .ig-tile, .social-row,
section.newsletter:not([data-keep]),
.footer:not(.footer-v2),
.scroll-hint, .compliance-tab { display: none !important; }

.nav__dd{display:none!important}

/* Strip white background from lumeralogo.png on dark surfaces */
.nav__brand img,
.footer-v2__brand img,
.hero__logo,
.footer__brand img {
  mix-blend-mode: screen !important;
  background: transparent !important;
}

/* ============================================================
   Feature strip — 4-up under hero
   ============================================================ */
.features-strip {
  background: var(--canvas);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.features-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feat {
  padding: 36px 28px;
  border-right: 1px solid var(--hairline);
  display: flex; flex-direction: column; gap: 10px;
}
.feat:last-child { border-right: 0; }
.feat__icon {
  width: 28px !important; height: 28px !important;
  color: var(--blue);
  margin-bottom: 6px;
}
.feat__h {
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--ink);
  margin: 0;
}
.feat__p {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: var(--body);
  margin: 0;
}
@media (max-width: 900px) {
  .features-strip__inner { grid-template-columns: 1fr 1fr; }
  .feat { border-right: 0; border-bottom: 1px solid var(--hairline); }
  .feat:nth-child(2n) { border-right: 0; }
  .feat:nth-child(odd) { border-right: 1px solid var(--hairline); }
  .feat:nth-last-child(-n+2) { border-bottom: 0; }
}
@media (max-width: 600px) {
  .features-strip__inner { grid-template-columns: 1fr; }
  .feat { border-right: 0 !important; border-bottom: 1px solid var(--hairline); padding: 28px 20px; }
  .feat:last-child { border-bottom: 0; }
}

/* /why-lumera/ — numbered editorial sections */
.why-section {
  position: relative;
  padding: 48px 0 48px 88px;
  border-bottom: 1px solid var(--hairline);
}
.why-section:last-child { border-bottom: 0; padding-bottom: 0; }
.why-section__num {
  position: absolute;
  left: 0; top: 48px;
  font-family: var(--font);
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--blue);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.why-section h2 {
  font-size: clamp(24px, 3vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
  margin: 0 0 14px !important;
  color: var(--ink);
}
.why-section h2 span { display: block; font-size: 0.75em; }
.why-section p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body);
  margin: 0 0 14px;
  max-width: 68ch;
}
.why-section ul {
  margin: 0 0 14px;
  padding: 0 0 0 20px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--body);
}
.why-section li { margin: 4px 0; }
.why-section b { font-weight: 700; color: var(--ink); }
@media (max-width: 720px) {
  .why-section { padding: 36px 0 36px 64px; }
  .why-section__num { font-size: 28px; top: 36px; }
}

/* ============================================================
   ROUND 9 - dark-band auto-contrast fix
   Any text inside .band--dark renders white by default.
   No more invisible headlines on dark navy.
   ============================================================ */
.band--dark,
.band--dark p,
.band--dark h1,
.band--dark h2,
.band--dark h3,
.band--dark h4,
.band--dark .display-xl,
.band--dark .display-lg,
.band--dark .display-md,
.band--dark .display-sm,
.band--dark .title-lg,
.band--dark .title-md,
.band--dark .title-sm,
.band--dark .page-head h1,
.band--dark .page-head__lede,
.band--dark li {
  color: #fff !important;
}
.band--dark .page-head__lede,
.band--dark p:not(.on-dark) {
  color: rgba(255,255,255,0.78) !important;
}
.band--dark .page-head .eyebrow {
  color: var(--blue) !important;
}
.band--dark a {
  color: #fff;
}
.band--dark a:hover { color: var(--blue); }

/* Page heads — tighter spacing inside bands, never floating like a separate card */
.band .page-head {
  padding: 0 !important;
  margin-bottom: 24px !important;
}
.band--dark .page-head {
  border: 0 !important;
  background: transparent !important;
}

/* FAQ page — get the hero out of a giant box and into a clean band */
.faq {
  display: flex;
  flex-direction: column;
  margin: 0 !important;
  padding: 0;
  border-top: 1px solid var(--hairline);
}
.faq details {
  border: 0 !important;
  border-bottom: 1px solid var(--hairline) !important;
  padding: 22px 0 !important;
}
.faq summary {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  font-family: var(--font);
  font-size: 17px !important;
  font-weight: 700 !important;
  letter-spacing: -0.005em !important;
  color: var(--ink) !important;
  cursor: pointer;
  list-style: none;
  text-transform: none;
}
.faq summary::after {
  content: "+";
  color: var(--blue);
  font-size: 24px;
  font-weight: 300;
  transition: transform 240ms ease;
}
.faq details[open] summary::after {
  content: "2";
}
.faq p {
  margin: 16px 0 0 !important;
  font-size: 15px !important;
  font-weight: 300 !important;
  line-height: 1.7 !important;
  color: var(--body) !important;
  max-width: 70ch !important;
}

/* Tighten band padding doubling for hero+content rhythm */
.band + .band--light:not(.cta) { padding-top: 56px !important; }
.band--dark + .band--light:not(.cta) { padding-top: 64px !important; }
.band--light + .band--dark { padding-top: 64px !important; }
