
/* ===========================================================
   Biolume — "What we test, and why it matters"
   Mockup stylesheet. Builds on the approved homepage tokens
   from biolume-landing.css. Extends with section-specific
   styles for: systems grid, base-panel grid, addon cards,
   biomarker map (search + filter chips), portal proof, and
   two-door CTA. Desktop-first with three breakpoints.
   =========================================================== */

:root {
  --font-display: "Instrument Serif", Georgia, "Times New Roman", serif;
  --bg: #ece5db;
  --bg-2: #f2ece4;
  --surface: #f7f2eb;
  --surface-2: #efe6db;
  --surface-3: #e8ddd0;
  --ink: #241e19;
  --ink-soft: #6f665e;
  --ink-faint: #8f877f;
  --cream: #f8f1e8;
  --cream-soft: rgba(248, 241, 232, 0.78);
  --dark: #2f2925;
  --dark-2: #3a332e;
  --dark-3: #433a34;
  --line: rgba(36, 30, 25, 0.10);
  --line-soft: rgba(255, 248, 240, 0.16);
  --accent: #7f6c4e;       /* sand/bronze for tier accents */
  --accent-deep: #4a3f30;
  --base-chip: #efe1c8;
  --addon-chip: #2f2925;
  --shadow: 0 20px 60px rgba(29, 23, 18, 0.09);
  --shadow-deep: 0 30px 90px rgba(17, 13, 10, 0.26);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max: 1460px;
}

.biolume-what-we-test,
.biolume-what-we-test * { box-sizing: border-box; }
.biolume-what-we-test {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  /* background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%); */
  color: var(--ink);
  /* padding: 18px; */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
.biolume-what-we-test img { max-width: 100%; display: block; }
.biolume-what-we-test a { color: inherit; text-decoration: none; }
.biolume-what-we-test button { font: inherit; cursor: pointer; }

.biolume-what-we-test .page { max-width: var(--max); margin: 0 auto; display: grid; gap: 18px; }

.biolume-what-we-test .display {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: -0.055em;
  line-height: 0.95;
}
.biolume-what-we-test h1,
.biolume-what-we-test h2,
.biolume-what-we-test h3 {
  font-style: italic;
}
.biolume-what-we-test .eyebrow {
  font-size: 12px; text-transform: uppercase; letter-spacing: 0.16em;
  color: var(--ink-faint); font-weight: 700;
}
.biolume-what-we-test .eyebrow.on-dark { color: rgba(248, 241, 232, 0.72); }

.biolume-what-we-test .section { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); }
.biolume-what-we-test .panel-light { background: linear-gradient(180deg, var(--surface) 0%, var(--surface-2) 100%); }
.biolume-what-we-test .panel-dark {
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.16), transparent 30%),
    linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 100%);
  color: var(--cream);
}
.biolume-what-we-test .panel-dark h1,
.biolume-what-we-test .panel-dark h2,
.biolume-what-we-test .panel-dark .display,
.biolume-what-we-test .panel-dark .door-title,
.biolume-what-we-test .cta-band h1,
.biolume-what-we-test .cta-band h2,
.biolume-what-we-test .cta-band h3,
.biolume-what-we-test .cta-band .display,
.biolume-what-we-test .cta-band .cta-title {
  color: var(--cream);
}
.biolume-what-we-test .panel-soft { background: linear-gradient(180deg, #f5efe7 0%, #e8ddd1 100%); }
.biolume-what-we-test .inner { padding: 40px; }

/* ============ TOP BAR ============ */
.biolume-what-we-test .topbar {
  position: sticky; top: 14px; z-index: 50;
  background: rgba(247, 242, 235, 0.86);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(36, 30, 25, 0.06);
  border-radius: 999px;
  padding: 14px 18px;
  display: flex; justify-content: space-between; align-items: center; gap: 18px;
  box-shadow: 0 10px 28px rgba(29, 23, 18, 0.08);
}
.biolume-what-we-test .brand {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 29px; letter-spacing: -0.05em;
}
.biolume-what-we-test .nav-links { display: flex; gap: 22px; color: var(--ink-soft); font-size: 14px; }
.biolume-what-we-test .nav-links a:hover { color: var(--ink); }
.biolume-what-we-test .nav-actions { display: flex; gap: 12px; align-items: center; }
.biolume-what-we-test .login { color: var(--ink-soft); font-size: 14px; }
.biolume-what-we-test .login:hover { color: var(--ink); }

/* ============ BUTTONS ============ */
.biolume-what-we-test .btn {
  min-height: 50px; padding: 0 22px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 999px; font-size: 15px; font-weight: 700;
  border: 1px solid transparent;
  transition: transform 200ms ease, background-color 200ms ease, box-shadow 200ms ease, color 200ms ease;
}
.biolume-what-we-test .btn:hover { transform: translateY(-1px); }
.biolume-what-we-test .btn:active { transform: translateY(0); }
.biolume-what-we-test .btn-dark { background: var(--ink); color: var(--cream); }
.biolume-what-we-test .btn-dark:hover { background: #100c08; }
.biolume-what-we-test .btn-panel-atc {
  background: #4E070A;
  color: #f8f1e8;
  border-color: #4E070A;
}
.biolume-what-we-test .btn-panel-atc:hover {
  background: #6b1a1f;
  border-color: #6b1a1f;
  color: #fff;
}
.biolume-what-we-test .btn-light { background: #f4eee6; color: var(--ink); border-color: rgba(36, 30, 25, 0.08); }
.biolume-what-we-test .btn-light:hover { background: #fff8ed; }
.biolume-what-we-test .btn-outline-light { background: transparent; color: var(--cream); border-color: rgba(255, 255, 255, 0.54); }
.biolume-what-we-test .btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); }
.biolume-what-we-test .btn-outline-dark { background: transparent; color: var(--ink); border-color: rgba(36, 30, 25, 0.18); }
.biolume-what-we-test .btn-outline-dark:hover { background: rgba(36, 30, 25, 0.04); }

/* ============ SECTION HEAD (shared) ============ */
.biolume-what-we-test .section-head { display: grid; gap: 12px; margin-bottom: 32px; }
.biolume-what-we-test .section-head h2 { margin: 0; font-size: clamp(40px, 4.4vw, 64px); max-width: 14ch; }
.biolume-what-we-test .section-head p {
  margin: 0; font-size: 17px; line-height: 1.6;
  color: var(--ink-soft); max-width: 56ch;
}
.biolume-what-we-test .section-head.two-col {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: end; gap: 32px;
}
.biolume-what-we-test .section-head.two-col.light p { color: var(--cream-soft); }

/* ============ 2) SYSTEMS GRID ============ */
.biolume-what-we-test .systems-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
}
.biolume-what-we-test .system-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(36, 30, 25, 0.08);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid; gap: 12px;
  min-height: 240px;
}
.biolume-what-we-test .system-card-head { display: flex; align-items: center; gap: 10px; }
.biolume-what-we-test .system-card .dot {
  width: 10px; height: 10px; border-radius: 999px;
  background: var(--ink);
}
.biolume-what-we-test .system-card h3 {
  margin: 0; font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 28px; font-weight: 400; letter-spacing: -0.04em;
}
.biolume-what-we-test .system-card p {
  margin: 0; color: var(--ink-soft); font-size: 15px; line-height: 1.55;
}
.biolume-what-we-test .systems-note {
  margin: 28px 0 0;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 22px; line-height: 1.45; letter-spacing: -0.03em;
  color: var(--ink); max-width: 70ch;
}
.biolume-what-we-test .systems-note em { font-style: italic; }

/* ============ 3) BASE PANEL GRID ============ */
/* ============ BASE IMAGE SECTION ============ */
.biolume-what-we-test .base-image-section {
  position: relative;
  overflow: hidden;
  background-image: url('/media/wysiwyg/mountain-bg.jpg');
  background-size: cover;
  background-position: center 30%;
  color: var(--cream);
}
.biolume-what-we-test .base-image-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 6, 10, 0.55) 0%, rgba(8, 6, 10, 0.48) 100%);
  pointer-events: none;
  z-index: 0;
}
.biolume-what-we-test .base-image-section .inner {
  position: relative;
  z-index: 1;
}
.biolume-what-we-test .base-image-section .eyebrow { color: rgba(248, 241, 232, 0.60); }
.biolume-what-we-test .base-image-section .display { color: var(--cream); }
.biolume-what-we-test .base-head-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}
.biolume-what-we-test .base-head-cta p {
  margin: 0;
}
.biolume-what-we-test .base-head-tocart-form,
.biolume-what-we-test .base-cta-tocart-form {
  margin: 0;
}
.biolume-what-we-test .base-head-tocart-form button[type="submit"],
.biolume-what-we-test .base-cta-tocart-form button[type="submit"] {
  cursor: pointer;
}

.biolume-what-we-test .base-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
}
.biolume-what-we-test .base-card {
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: 24px;
  display: grid; gap: 14px; align-content: start;
  min-height: 260px;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  transition: transform 200ms ease, box-shadow 200ms ease, background 200ms ease;
  color: var(--cream);
}
.biolume-what-we-test .base-card:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.40);
}
.biolume-what-we-test .base-card-top { display: flex; align-items: center; justify-content: space-between; gap: 10px; }
.biolume-what-we-test .base-card .num {
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 22px; color: rgba(248, 241, 232, 0.35); letter-spacing: -0.02em;
}
.biolume-what-we-test .base-card h3 {
  margin: 0; font-size: 30px; font-weight: 400; letter-spacing: -0.04em;
  color: var(--cream);
}
.biolume-what-we-test .bullets {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 8px;
  font-size: 15px; line-height: 1.5;
}
.biolume-what-we-test .bullets li { position: relative; padding-left: 18px; color: rgba(248, 241, 232, 0.72); }
.biolume-what-we-test .bullets li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 6px; height: 6px; border-radius: 999px; background: var(--cream);
  opacity: 0.38;
}
.biolume-what-we-test .bullets.small { font-size: 14px; }
.biolume-what-we-test .bullets.small li { padding-left: 16px; }
.biolume-what-we-test .bullets.small li::before { top: 8px; width: 5px; height: 5px; }
.biolume-what-we-test .why {
  margin: 0; padding-top: 10px;
  border-top: 1px solid rgba(255, 248, 240, 0.10);
  color: rgba(248, 241, 232, 0.50); font-size: 14px; line-height: 1.55;
}

.biolume-what-we-test .base-card-cta {
  background: rgba(248, 241, 232, 0.10);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.18);
  grid-column: span 1;
  min-height: 0;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
}
.biolume-what-we-test .base-card-cta h3 { font-size: 30px; max-width: 14ch; color: var(--cream); }
.biolume-what-we-test .base-card-cta p {
  margin: 0; color: var(--cream-soft); font-size: 15px; line-height: 1.55;
}

.biolume-what-we-test .base-card-addons {
  grid-column: span 2;
  background: rgba(160, 100, 60, 0.18);
  border: 1px solid rgba(220, 160, 100, 0.22);
  min-height: 0;
  padding: 28px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
}
.biolume-what-we-test .base-card-addons h3 {
  margin: 6px 0 0;
  font-size: clamp(22px, 2.2vw, 30px);
  color: var(--cream);
  line-height: 1.05;
}
.biolume-what-we-test .addons-body {
  color: rgba(248, 241, 232, 0.65);
  font-size: 14px;
  line-height: 1.55;
  margin: 4px 0 0;
  flex-grow: 1;
}
.biolume-what-we-test .btn-addon {
  display: inline-flex;
  align-items: center;
  height: 38px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: rgba(200, 175, 130, 0.22);
  color: rgba(248, 241, 232, 0.92);
  border: 1px solid rgba(200, 175, 130, 0.35);
  transition: background 180ms ease, border-color 180ms ease;
  text-decoration: none;
  width: fit-content;
}
.biolume-what-we-test .btn-addon:hover {
  background: rgba(200, 175, 130, 0.32);
  border-color: rgba(200, 175, 130, 0.55);
}
.biolume-what-we-test .row-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.biolume-what-we-test .panel-dark .row-actions .btn-dark {
  background: var(--cream); color: var(--dark); border-color: var(--cream);
}
.biolume-what-we-test .panel-dark .row-actions .btn-outline-dark {
  color: rgba(248, 241, 232, 0.88); border-color: rgba(248, 241, 232, 0.30);
}
.biolume-what-we-test .panel-dark .section-head p { color: rgba(248, 241, 232, 0.75); }
.biolume-what-we-test .panel-dark .systems-note { color: rgba(248, 241, 232, 0.55); }

/* ============ TAGS / CHIPS ============ */
.biolume-what-we-test .tag {
  display: inline-flex; align-items: center;
  height: 24px; padding: 0 10px;
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  white-space: nowrap;
}
.biolume-what-we-test .tag-base {
  background: transparent;
  color: var(--ink-soft);
  border: 1px solid rgba(36, 30, 25, 0.22);
  font-weight: 500;
}
.biolume-what-we-test .panel-dark .tag-base, .biolume-what-we-test .base-image-section .tag-base {
  background: transparent;
  color: rgba(248, 241, 232, 0.60);
  border: 1px solid rgba(255, 248, 240, 0.22);
}
.biolume-what-we-test .tag-addon { background: var(--addon-chip); color: var(--cream); }

/* ============ 4) MEMBERSHIP / WHY SECTION ============ */
.biolume-what-we-test .why-section {
  position: relative; padding: 40px;
  background-image: url('/media/wysiwyg/why-bg_1.jpg');
  background-size: cover; background-position: center 38%;
  min-height: 620px; display: flex; align-items: center;
  border-radius: var(--radius-xl); overflow: hidden;
  box-shadow: var(--shadow);
}
.biolume-what-we-test .why-section::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 28, 38, 0.18) 0%, rgba(20, 28, 38, 0.08) 40%, rgba(20, 28, 38, 0.22) 100%);
  pointer-events: none;
}
.biolume-what-we-test .why-frost {
  position: relative; z-index: 1; width: 100%;
  background: rgba(247, 242, 235, 0.40);
  backdrop-filter: blur(38px) saturate(1.4);
  -webkit-backdrop-filter: blur(38px) saturate(1.4);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: 0 30px 80px rgba(17, 22, 28, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.35);
}
.biolume-what-we-test .why-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 36px; align-items: start;
}
.biolume-what-we-test .why-grid > div > h2 {
  margin: 8px 0 16px; font-size: clamp(40px, 4.4vw, 60px);
  max-width: 12ch;
}
.biolume-what-we-test .why-grid > div > h2 em { font-style: italic; }
.biolume-what-we-test .lede {
  margin: 0 0 22px; font-size: 18px; line-height: 1.6;
  color: var(--ink-soft); max-width: 44ch;
}
.biolume-what-we-test .why-items {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px;
  list-style: none; margin: 0; padding: 0;
}
.biolume-what-we-test .why-items.membership-items {
  border-top: 1px solid rgba(36, 30, 25, 0.14);
  padding-top: 26px;
}
.biolume-what-we-test .why-item h3 {
  margin: 0 0 10px;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 29px; font-weight: 400; letter-spacing: -0.04em;
}
.biolume-what-we-test .why-item p {
  margin: 0; color: var(--ink-soft); line-height: 1.55; font-size: 15px;
}

/* ============ 5) BIOMARKER MAP ============ */
.biolume-what-we-test .map-toolbar {
  display: grid; gap: 14px; margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(36, 30, 25, 0.08);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
}
.biolume-what-we-test .map-search {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(36, 30, 25, 0.10);
  border-radius: 999px;
  padding: 0 16px; height: 48px;
  color: var(--ink-faint);
}
.biolume-what-we-test .map-search input {
  flex: 1; border: 0; outline: 0; background: transparent;
  font: inherit; font-size: 15px; color: var(--ink);
  min-width: 0;
}
.biolume-what-we-test .map-search input::placeholder { color: var(--ink-faint); }

.biolume-what-we-test .filter-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  align-items: center;
}
.biolume-what-we-test .chip {
  height: 34px; padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(36, 30, 25, 0.22);
  background: transparent;
  color: var(--ink-soft);
  font-size: 12px; font-weight: 500; letter-spacing: 0.01em;
  display: inline-flex; align-items: center;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease;
}
.biolume-what-we-test .chip:hover { background: rgba(36, 30, 25, 0.05); color: var(--ink); border-color: rgba(36, 30, 25, 0.38); }
.biolume-what-we-test .chip.active {
  background: var(--ink);
  color: var(--cream);
  border-color: var(--ink);
}
.biolume-what-we-test .chip-divider {
  width: 1px; height: 22px; background: rgba(36, 30, 25, 0.14);
  margin: 0 4px;
}

.biolume-what-we-test .marker-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px;
}
.biolume-what-we-test .marker-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(36, 30, 25, 0.08);
  border-radius: var(--radius-md);
  padding: 18px;
  display: grid; gap: 10px; align-content: start;
  min-height: 168px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}
.biolume-what-we-test .marker-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(29, 23, 18, 0.08);
}
.biolume-what-we-test .marker-card[hidden] { display: none; }
.biolume-what-we-test .marker-card header {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
}
.biolume-what-we-test .marker-card .system {
  font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--ink-faint); font-weight: 700;
}
.biolume-what-we-test .marker-card h3 {
  margin: 0; font-size: 22px; font-weight: 400; letter-spacing: -0.04em;
}
.biolume-what-we-test .marker-card p {
  margin: 0; font-size: 13.5px; line-height: 1.5; color: var(--ink-soft);
}
.biolume-what-we-test .map-empty {
  margin: 16px 0 0;
  font-size: 15px; color: var(--ink-soft); text-align: center;
  padding: 22px;
  background: rgba(255, 255, 255, 0.42);
  border: 1px dashed rgba(36, 30, 25, 0.14);
  border-radius: var(--radius-md);
}
.biolume-what-we-test .map-foot {
  margin: 24px 0 0; color: var(--ink-soft);
  font-size: 14px; line-height: 1.55;
}

/* ============ 7) PORTAL ============ */
.biolume-what-we-test .portal-grid {
  display: grid; grid-template-columns: 0.92fr 1.08fr;
  gap: 24px; align-items: stretch;
}
.biolume-what-we-test .tabs { display: grid; gap: 12px; align-content: start; }
.biolume-what-we-test .tab {
  border-radius: var(--radius-lg);
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.12);
  cursor: pointer;
}
.biolume-what-we-test .tab.active {
  background: rgba(255, 255, 255, 0.94);
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.94);
}
.biolume-what-we-test .portal-grid .tab h3 {
  margin: 0 0 8px;
  font-family: "Instrument Serif", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.04em;
  font-style: italic;
}
.biolume-what-we-test .portal-grid .tab:not(.active) h3 {
  color: var(--cream);
}
.biolume-what-we-test .portal-grid .tab.active h3 {
  color: var(--ink) !important;
}
.biolume-what-we-test .portal-grid .tab p {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}
.biolume-what-we-test .portal-grid .tab:not(.active) p {
  color: var(--cream-soft);
}
.biolume-what-we-test .portal-grid .tab.active p {
  color: var(--ink-soft) !important;
}

.biolume-what-we-test .portal-panels {
  position: relative;
}
.biolume-what-we-test .portal-panel {
  display: none;
  height: 100%;
}
.biolume-what-we-test .portal-panel.active {
  display: block;
}
.biolume-what-we-test .portal-img-placeholder {
  height: 100%;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1.5px dashed rgba(255, 255, 255, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  padding: 32px;
}
.biolume-what-we-test .placeholder-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(248, 241, 232, 0.50);
}
.biolume-what-we-test .placeholder-hint {
  font-size: 13px;
  color: rgba(248, 241, 232, 0.28);
}

.biolume-what-we-test .copilot-stage {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 32px;
  min-height: 520px;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, #1a1714 0%, #211e1a 60%, #2a2118 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.biolume-what-we-test .copilot-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.biolume-what-we-test .copilot-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(248, 241, 232, 0.45);
}
.biolume-what-we-test .copilot-sub {
  margin: 0;
  font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -0.03em;
  color: var(--cream);
  line-height: 1.1;
}
.biolume-what-we-test .copilot-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex: 1;
  align-content: flex-start;
}
.biolume-what-we-test .copilot-pill {
  display: inline-flex;
  align-items: center;
  height: auto;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(248, 241, 232, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.13);
  cursor: pointer;
  transition: background 160ms ease, border-color 160ms ease;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}
.biolume-what-we-test .copilot-pill:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.24);
}
.biolume-what-we-test .copilot-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 14px 14px 14px 20px;
  gap: 12px;
}
.biolume-what-we-test .copilot-placeholder {
  font-size: 14px;
  color: rgba(248, 241, 232, 0.35);
  flex: 1;
}
.biolume-what-we-test .copilot-send {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(248, 241, 232, 0.12);
  display: grid;
  place-items: center;
  font-size: 11px;
  color: rgba(248, 241, 232, 0.55);
  flex-shrink: 0;
}
/* ============ 8) DOORS ============ */
.biolume-what-we-test .doors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
.biolume-what-we-test .door {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.biolume-what-we-test .door .inner {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 580px;
  height: 100%;
}
.biolume-what-we-test .door .eyebrow {
  min-height: 1.2em;
  margin: 0;
}
.biolume-what-we-test .door-title {
  margin: 8px 0 4px;
  font-size: clamp(40px, 3.4vw, 56px);
  max-width: 12ch;
  min-height: calc(clamp(40px, 3.4vw, 56px) * 0.95 * 3);
}
.biolume-what-we-test .door-price {
  font-size: 17px;
  color: var(--ink-soft);
  margin: 0;
  min-height: calc(17px * 1.5 * 2);
}
.biolume-what-we-test .door.panel-dark .door-price { color: var(--cream-soft); }
.biolume-what-we-test .door-copy {
  font-size: 17px;
  line-height: 1.6;
  max-width: 36ch;
  opacity: 0.88;
  margin: 0;
  min-height: calc(17px * 1.6 * 3);
}
.biolume-what-we-test .feature-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  flex: 1 1 auto;
}
.biolume-what-we-test .feature-item {
  display: grid; grid-template-columns: 22px 1fr; gap: 12px; align-items: start;
  font-size: 15px; line-height: 1.5;
}
.biolume-what-we-test .feature-item .check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 999px;
  background: rgba(36, 30, 25, 0.08); color: var(--ink);
  font-size: 12px; font-weight: 700;
}
.biolume-what-we-test .door.panel-dark .feature-item .check {
  background: rgba(255, 255, 255, 0.14); color: var(--cream);
}
.biolume-what-we-test .door-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: auto;
  align-items: flex-start;
}

/* ============ 9) FAQ ============ */
.biolume-what-we-test .faq { display: grid; gap: 12px; }
.biolume-what-we-test details {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(36, 30, 25, 0.08);
  border-radius: 20px; padding: 18px 22px;
  transition: background-color 200ms ease;
}
.biolume-what-we-test details[open] { background: rgba(255, 255, 255, 0.7); }
.biolume-what-we-test summary {
  cursor: pointer; list-style: none;
  font-weight: 700; font-size: 16px;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
}
.biolume-what-we-test summary::-webkit-details-marker { display: none; }
.biolume-what-we-test summary::after {
  content: "+"; font-family: "Instrument Serif", Georgia, serif;
  font-size: 28px; color: var(--ink-soft); line-height: 1;
  transition: transform 200ms ease;
}
.biolume-what-we-test details[open] summary::after { content: "–"; }
.biolume-what-we-test details p { margin: 12px 0 0; color: var(--ink-soft); font-size: 15px; line-height: 1.6; }

/* ============ 10) FINAL CTA ============ */
.biolume-what-we-test .cta-band {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
  color: var(--cream);
  box-shadow: var(--shadow-deep);
}
.biolume-what-we-test .cta-grid {
  display: grid; grid-template-columns: 1fr auto;
  gap: 24px; align-items: end;
}
.biolume-what-we-test .cta-title { margin: 0; font-size: clamp(44px, 4.6vw, 72px); max-width: 14ch; line-height: 1.04; }
.biolume-what-we-test .cta-copy {
  margin: 16px 0 0; color: var(--cream-soft);
  max-width: 48ch; font-size: 17px; line-height: 1.6;
}
.biolume-what-we-test .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; }
.biolume-what-we-test .trust-line {
  margin-top: 18px;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--cream-soft);
}

/* ============ FOOTER ============ */
.biolume-what-we-test .footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 28px;
}
.biolume-what-we-test .footer-col .brand { font-size: 32px; }
.biolume-what-we-test .footer-col h4 {
  margin: 0 0 14px; font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--ink-faint);
}
.biolume-what-we-test .footer-copy {
  margin: 12px 0 0; color: var(--ink-soft);
  font-size: 15px; line-height: 1.55; max-width: 32ch;
}
.biolume-what-we-test .footer-links { display: grid; gap: 10px; color: var(--ink-soft); font-size: 15px; }
.biolume-what-we-test .footer-links a:hover { color: var(--ink); }
.biolume-what-we-test .footer-bottom {
  margin-top: 28px; padding-top: 22px;
  border-top: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr auto auto; gap: 18px;
  align-items: center;
  font-size: 13px; color: var(--ink-soft);
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1180px) {
  .biolume-what-we-test .doors, .biolume-what-we-test .why-grid, .biolume-what-we-test .portal-grid, .biolume-what-we-test .cta-grid, .biolume-what-we-test .footer-grid {
    grid-template-columns: 1fr;
  }
  .biolume-what-we-test .door-title,
  .biolume-what-we-test .door-price,
  .biolume-what-we-test .door-copy {
    min-height: 0;
  }
  .biolume-what-we-test .section-head.two-col { grid-template-columns: 1fr; }
  .biolume-what-we-test .systems-grid, .biolume-what-we-test .why-items { grid-template-columns: repeat(2, 1fr); }
  .biolume-what-we-test .base-grid { grid-template-columns: repeat(2, 1fr); }
  .biolume-what-we-test .marker-grid { grid-template-columns: repeat(3, 1fr); }
  .biolume-what-we-test .cta-actions { justify-content: flex-start; }
  .biolume-what-we-test .footer-bottom { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .biolume-what-we-test body { padding: 10px; }
  .biolume-what-we-test .inner { padding: 26px; }
  .biolume-what-we-test .topbar { flex-direction: column; align-items: flex-start; border-radius: 24px; }
  .biolume-what-we-test .nav-links { flex-wrap: wrap; gap: 12px 16px; }
  .biolume-what-we-test .nav-actions { width: 100%; justify-content: space-between; }
  .biolume-what-we-test .hero-title { font-size: 44px; max-width: 14ch; }
  .biolume-what-we-test .systems-grid, .biolume-what-we-test .base-grid { grid-template-columns: 1fr; }
  .biolume-what-we-test .why-items { grid-template-columns: 1fr; }
  .biolume-what-we-test .marker-grid { grid-template-columns: repeat(2, 1fr); }
  .biolume-what-we-test .why-section { padding: 18px; }
  .biolume-what-we-test .why-frost { padding: 26px; }
  /* Base image section */
  .biolume-what-we-test .base-card-addons { grid-column: span 1; }
  .biolume-what-we-test .base-card-cta { grid-column: span 1; min-height: 0; }
  /* Portal */
  .biolume-what-we-test .portal-grid { grid-template-columns: 1fr; }
  .biolume-what-we-test .portal-img-placeholder { min-height: 320px; }
  .biolume-what-we-test .copilot-stage { min-height: auto; padding: 24px; }
  .biolume-what-we-test .copilot-pills { gap: 8px; }
  .biolume-what-we-test .copilot-pill { font-size: 13px; padding: 9px 14px; }
  /* Hero — hide long editorial copy on mobile */
  .biolume-what-we-test .hero-editorial { display: none; }
}
@media (max-width: 560px) {
  .biolume-what-we-test .inner { padding: 20px; }
  .biolume-what-we-test .hero-title { font-size: 36px; }
  .biolume-what-we-test .marker-grid { grid-template-columns: 1fr; }
  .biolume-what-we-test .footer-grid { grid-template-columns: 1fr; }
  .biolume-what-we-test .cta-actions { justify-content: flex-start; }
  .biolume-what-we-test .section-head h2, .biolume-what-we-test .door-title, .biolume-what-we-test .cta-title { font-size: 36px; }
  .biolume-what-we-test .base-card { padding: 18px; min-height: 0; }
  .biolume-what-we-test .base-card-addons { padding: 20px; }
  .biolume-what-we-test .tabs { gap: 8px; }
  .biolume-what-we-test .tab { padding: 14px 16px; }
}

/* ============ MOTION PREFERENCES ============ */
@media (prefers-reduced-motion: reduce) {
  .biolume-what-we-test * { transition: none !important; animation: none !important; }
  /* reduced motion: scroll on body */
}

/* ============ FOCUS STATES ============ */
.biolume-what-we-test :focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 3px;
  border-radius: 4px;
}
.biolume-what-we-test .btn:focus-visible { outline-offset: 4px; }

.biolume-what-we-test .hero-kicker {
  margin: 0 0 18px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
  font-weight: 700;
  max-width: 58ch;
}

.biolume-what-we-test .hero-editorial {
  display: grid;
  gap: 12px;
  max-width: 66ch;
  margin-bottom: 24px;
}

.biolume-what-we-test .hero-editorial p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.62;
}

.biolume-what-we-test .what-we-test-tile {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  display: block;
  padding: 48px 52px 56px;
}

.biolume-what-we-test .what-we-test-tile > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.0) contrast(1.0);
}

.biolume-what-we-test .what-we-test-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(14, 18, 22, 0.62) 0%, rgba(14, 18, 22, 0.48) 38%, rgba(14, 18, 22, 0.10) 65%, rgba(14, 18, 22, 0.0) 100%),
    linear-gradient(180deg, rgba(14, 18, 22, 0.10) 0%, rgba(14, 18, 22, 0.22) 100%);
  pointer-events: none;
}

.biolume-what-we-test .tile-copy-panel {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin: 0;
  padding: 0;
}

.biolume-what-we-test .image-tile-hero .eyebrow {
  color: rgba(248, 241, 232, 0.72);
}

.biolume-what-we-test .image-tile-hero .hero-title {
  color: #f8f1e8;
  letter-spacing: -0.025em;
  max-width: 11ch;
}

.biolume-what-we-test .hero-title-ref {
  font-size: clamp(58px, 7vw, 104px);
  line-height: 0.9;
}

.hero-title-ref span,
.biolume-what-we-test .hero-title-ref em {
  display: block;
}

.biolume-what-we-test .hero-title-ref em {
  color: #ffffff;
  font-weight: 400;
  letter-spacing: -0.035em;
}

.biolume-what-we-test .image-tile-hero .hero-kicker {
  color: rgba(248, 241, 232, 0.92);
}

.biolume-what-we-test .image-tile-hero .hero-editorial {
  max-width: 62ch;
}

.biolume-what-we-test .image-tile-hero .hero-editorial p {
  color: rgba(248, 241, 232, 0.80);
}

.biolume-what-we-test .image-tile-hero .btn-dark {
  background: rgba(248, 241, 232, 0.95);
  color: #14202E;
  border-color: rgba(248, 241, 232, 0.95);
}

.biolume-what-we-test .image-tile-hero .btn-outline-dark {
  color: rgba(248, 241, 232, 0.92);
  border-color: rgba(248, 241, 232, 0.40);
  box-shadow: inset 0 0 0 1px rgba(248, 241, 232, 0.10);
}

.biolume-what-we-test .image-tile-hero .btn-outline-dark:hover {
  background: rgba(248, 241, 232, 0.10);
  border-color: rgba(248, 241, 232, 0.65);
}

.biolume-what-we-test .hero-result-graph {
  position: absolute;
  z-index: 2;
  right: 58px;
  top: 92px;
  width: min(430px, 36vw);
  padding: 24px;
  border-radius: 18px;
  background: rgba(251, 248, 241, 0.92);
  color: #14202E;
  border: 1px solid rgba(20, 32, 46, 0.18);
  box-shadow: 0 32px 80px rgba(20, 32, 46, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.biolume-what-we-test .graph-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.mono-label,
.biolume-what-we-test .hero-result-graph footer {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 11px;
  color: rgba(20, 32, 46, 0.58);
}

.biolume-what-we-test .graph-head h3 {
  margin: 9px 0 6px;
  font-family: var(--font-display);
  font-size: 25px;
  line-height: 1;
  font-weight: 400;
}

.biolume-what-we-test .graph-head p {
  margin: 0;
  color: rgba(20, 32, 46, 0.66);
  line-height: 1.4;
}

.biolume-what-we-test .range-pill {
  flex: 0 0 auto;
  align-self: start;
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(88, 107, 92, 0.13);
  color: #586B5C;
  border: 1px solid rgba(88, 107, 92, 0.24);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.biolume-what-we-test .graph-readout {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: end;
  margin: 58px 0 26px;
}

.biolume-what-we-test .graph-readout strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 70px;
  letter-spacing: -0.04em;
  line-height: 0.85;
}

.biolume-what-we-test .graph-readout span {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  color: rgba(20, 32, 46, 0.58);
  margin-left: 6px;
}

.biolume-what-we-test .graph-readout p {
  margin: 0 0 5px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 11px;
  color: #586B5C;
}

.biolume-what-we-test .range-track {
  position: relative;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #e6d7bf;
}

.biolume-what-we-test .graph-range {
  position: relative;
  margin: 16px 0 8px;
}

.biolume-what-we-test .zone {
  position: absolute;
  top: 0;
  bottom: 0;
}

.biolume-what-we-test .zone-low { left: 0; width: 22%; background: #e3cfae; }
.biolume-what-we-test .zone-ok { left: 22%; width: 56%; background: #bbc5ab; }
.biolume-what-we-test .zone-high { right: 0; width: 22%; background: #dfc7a5; }

.marker-now,
.biolume-what-we-test .marker-prev {
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  border-radius: 999px;
}

.biolume-what-we-test .marker-now { left: 48%; background: #14202E; border: 2px solid #f8f1e8; }
.biolume-what-we-test .marker-prev { left: 60%; background: rgba(20, 32, 46, 0.34); }

.biolume-what-we-test .range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  color: rgba(20, 32, 46, 0.58);
  font-size: 12px;
}

.biolume-what-we-test .graph-notes {
  display: grid;
  gap: 10px;
  padding: 22px 0;
  margin: 16px 0 0;
  border-top: 1px solid rgba(20, 32, 46, 0.12);
  border-bottom: 1px solid rgba(20, 32, 46, 0.12);
  list-style: none;
}

.biolume-what-we-test .graph-notes li {
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(20, 32, 46, 0.72);
}

.biolume-what-we-test .note-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.biolume-what-we-test .note-dot.burgundy { background: #6B1E2C; }
.biolume-what-we-test .note-dot.ink { background: #14202E; }

.biolume-what-we-test .hero-result-graph footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 18px;
}

.biolume-what-we-test .image-tile-hero .catalog-jumpbar {
  position: relative;
  z-index: 2;
}

@media (max-width: 1180px) {
  .biolume-what-we-test .hero-result-graph {
    width: min(380px, 34vw);
    right: 34px;
  }
}

@media (max-width: 820px) {
  .biolume-what-we-test .what-we-test-tile {
    min-height: auto;
    display: grid;
    padding: 28px 22px 30px;
  }
  .biolume-what-we-test .what-we-test-tile > img {
    position: absolute;
    inset: 0;
    height: 100%;
  }
  .biolume-what-we-test .tile-copy-panel {
    position: relative;
    top: auto; left: auto;
    margin: 0; padding: 0;
    max-width: none;
    background: transparent;
  }
  .biolume-what-we-test .hero-result-graph {
    position: relative;
    right: auto; top: auto;
    width: 100%;
    max-width: 460px;
    margin-top: 26px;
  }
  .biolume-what-we-test .graph-readout {
    margin: 34px 0 22px;
  }
}

@media (max-width: 560px) {
  .biolume-what-we-test .hero-title-ref {
    font-size: 54px;
  }
  .biolume-what-we-test .graph-head,
  .biolume-what-we-test .graph-readout,
  .biolume-what-we-test .hero-result-graph footer {
    flex-direction: column;
    align-items: flex-start;
  }
  .biolume-what-we-test .graph-readout strong {
    font-size: 58px;
  }
}


/* ========== Magento: what-we-test page layout ========== */
body[class*="what-we-test"] { scroll-behavior: smooth; }
body[class*="what-we-test"] .breadcrumbs, body.bl-shop-tests-page .breadcrumbs,
body[class*="what-we-test"] .page-title-wrapper, body.bl-shop-tests-page .page-title-wrapper,
body[class*="what-we-test"] .page-title, body.bl-shop-tests-page .page-title,
body[class*="what-we-test"] h1.page-title, body.bl-shop-tests-page h1.page-title,
body[class*="what-we-test"] .page-heading, body.bl-shop-tests-page .page-heading,
body[class*="what-we-test"] .column.main > h1, body.bl-shop-tests-page .column.main > h1,
body[class*="what-we-test"] #maincontent .page.messages {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body[class*="what-we-test"] .page-header .panel.wrapper , body.bl-shop-tests-page .page-header .panel.wrapper {
  display: none !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body[class*="what-we-test"] main#maincontent.page-main, body.bl-shop-tests-page main#maincontent.page-main,
body[class*="what-we-test"] #maincontent, body.bl-shop-tests-page #maincontent,
body[class*="what-we-test"] #maincontent > .columns, body.bl-shop-tests-page #maincontent > .columns,
body[class*="what-we-test"] #maincontent .column.main, body.bl-shop-tests-page #maincontent .column.main,
body[class*="what-we-test"] #maincontent [data-content-type="row"], body.bl-shop-tests-page #maincontent [data-content-type="row"],
body[class*="what-we-test"] #maincontent [data-content-type="column"], body.bl-shop-tests-page #maincontent [data-content-type="column"],
body[class*="what-we-test"] #maincontent [data-content-type="html"], body.bl-shop-tests-page #maincontent [data-content-type="html"],
body[class*="what-we-test"] #maincontent .pagebuilder-column-group, body.bl-shop-tests-page #maincontent .pagebuilder-column-group,
body[class*="what-we-test"] #maincontent .pagebuilder-column-line, body.bl-shop-tests-page #maincontent .pagebuilder-column-line,
body[class*="what-we-test"] #maincontent .pagebuilder-column , body.bl-shop-tests-page #maincontent .pagebuilder-column {
  margin: 0 !important;
  padding: 0 !important;
  max-width: none !important;
  width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
}
body[class*="what-we-test"] #maincontent .pagebuilder-column-line , body.bl-shop-tests-page #maincontent .pagebuilder-column-line { flex-wrap: wrap !important; }
body[class*="what-we-test"] #maincontent .pagebuilder-column , body.bl-shop-tests-page #maincontent .pagebuilder-column { flex-basis: 100% !important; }
body[class*="what-we-test"] .page-wrapper , body.bl-shop-tests-page .page-wrapper { min-height: 0 !important; overflow-x: clip; }
body[class*="what-we-test"] .column.main , body.bl-shop-tests-page .column.main { overflow-x: clip; padding-left: 0 !important; padding-right: 0 !important; }
@media (max-width: 767px) {
  body[class*="what-we-test"] .page-wrapper , body.bl-shop-tests-page .page-wrapper { padding-top: 60px !important; }
  body[class*="what-we-test"] .biolume-what-we-test , body.bl-shop-tests-page .biolume-what-we-test { padding: 10px !important; }
}
@media (min-width: 768px) {
  body[class*="what-we-test"] .page-wrapper , body.bl-shop-tests-page .page-wrapper { padding-top: 90px !important; }
}
body[class*="what-we-test"] .biolume-what-we-test .portal-grid .tab , body.bl-shop-tests-page .biolume-what-we-test .portal-grid .tab { cursor: pointer; }
body[class*="what-we-test"] .biolume-what-we-test .portal-grid .tab.active , body.bl-shop-tests-page .biolume-what-we-test .portal-grid .tab.active {
  background: rgba(255, 255, 255, 0.94) !important;
  color: var(--ink) !important;
}
body[class*="what-we-test"] .biolume-what-we-test a.btn , body.bl-shop-tests-page .biolume-what-we-test a.btn { text-decoration: none; }
body[class*="what-we-test"] .biolume-what-we-test .panel-dark h1, body.bl-shop-tests-page .biolume-what-we-test .panel-dark h1,
body[class*="what-we-test"] .biolume-what-we-test .panel-dark h2, body.bl-shop-tests-page .biolume-what-we-test .panel-dark h2,
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .display, body.bl-shop-tests-page .biolume-what-we-test .panel-dark .display,
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .door-title, body.bl-shop-tests-page .biolume-what-we-test .panel-dark .door-title,
body[class*="what-we-test"] .biolume-what-we-test .cta-band h1, body.bl-shop-tests-page .biolume-what-we-test .cta-band h1,
body[class*="what-we-test"] .biolume-what-we-test .cta-band h2, body.bl-shop-tests-page .biolume-what-we-test .cta-band h2,
body[class*="what-we-test"] .biolume-what-we-test .cta-band h3, body.bl-shop-tests-page .biolume-what-we-test .cta-band h3,
body[class*="what-we-test"] .biolume-what-we-test .cta-band .display, body.bl-shop-tests-page .biolume-what-we-test .cta-band .display,
body[class*="what-we-test"] .biolume-what-we-test .cta-band .cta-title , body.bl-shop-tests-page .biolume-what-we-test .cta-band .cta-title {
  color: #f8f1e8 !important;
}

/* Portal tabs — must override .panel-dark heading/cream rules on shop + CMS */
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .portal-grid .tab.active h3,
body.bl-shop-tests-page .biolume-what-we-test .panel-dark .portal-grid .tab.active h3,
.biolume-what-we-test .panel-dark .portal-grid .tab.active h3 {
  color: #241e19 !important;
}
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) h3,
body.bl-shop-tests-page .biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) h3,
.biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) h3 {
  color: #f8f1e8 !important;
}
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .portal-grid .tab.active p,
body.bl-shop-tests-page .biolume-what-we-test .panel-dark .portal-grid .tab.active p,
.biolume-what-we-test .panel-dark .portal-grid .tab.active p {
  color: #6f665e !important;
}
body[class*="what-we-test"] .biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) p,
body.bl-shop-tests-page .biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) p,
.biolume-what-we-test .panel-dark .portal-grid .tab:not(.active) p {
  color: rgba(248, 241, 232, 0.78) !important;
}
