/* ===========================================================================
   BulbFacts v2 — main stylesheet
   ---------------------------------------------------------------------------
   Single file, organized in sections (search by `/* === Section ===` lines).
   No CSS framework. No build step.

   Theming
   -------
   Pages set a `data-theme` attribute on <html> to swap accent colors:
     <html data-theme="general">  neutral gray (default)
     <html data-theme="led">      purple
     <html data-theme="halogen">  coral
     <html data-theme="hid">      deep blue
     <html data-theme="oe">       teal-blue
     <html data-theme="factory">  slate gray

   The accent is applied via --bf-accent / --bf-accent-dark / --bf-accent-soft.
   General pages use a neutral accent; product pages own their category color.

   Sections
   --------
   1.  CSS variables (palette, type, radii, shadows)
   2.  Reset / base
   3.  Layout helpers
   4.  Header / nav
   5.  Footer
   6.  Hero panels
   7.  Section headers
   8.  Category cards (home)
   9.  Featured / video cards (home)
   10. Note band
   11. Chart page head
   12. Filter rail
   13. Chart toolbar
   14. Beam-type tabs
   15. Active filter chips
   16. Halogen reference row
   17. Bulb cards (the chart row)
   18. Tier dividers
   19. Compare tray
   20. Reviews list
   21. Recommended cards
   22. Individual review page
   23. News list / article body
   24. Static page prose
   25. Forms (contact)
   26. Utility classes
   27. Responsive
   =========================================================================== */

/* === 1. CSS variables ====================================================== */
:root {
  /* Brand colors — sampled directly from the existing custom.css / unify.css */
  --bf-purple:       #996cc6;
  --bf-purple-dark:  #7c4fb0;
  --bf-purple-light: #bfa3db;
  --bf-purple-soft:  #f2edf8;
  --bf-newpurple:    #a780ce;
  --bf-lightred:     #d36d6d;
  --bf-blue2:        #416ea4;
  --bf-newblue:      #577c85;
  --bf-primary:      #376674;
  --bf-general:      #5d6673;
  --bf-general-dark: #37414d;
  --bf-general-light:#aeb7c3;
  --bf-general-soft: #f0f3f6;

  /* Kelvin swatch colors (kelvin-colors.css from current site) */
  --k-3400: #fffcdd;
  --k-4300: #fffeee;
  --k-5000: #ffffff;
  --k-5500: #eff9fe;
  --k-6500: #d4effc;

  /* General accent (category pages override this with data-theme) */
  --bf-accent:       var(--bf-general);
  --bf-accent-dark:  var(--bf-general-dark);
  --bf-accent-light: var(--bf-general-light);
  --bf-accent-soft:  var(--bf-general-soft);

  /* Neutrals */
  --ink:    #1f2733;
  --ink-2:  #515a6b;
  --ink-3:  #8a93a3;
  --line:   #e9ebf1;
  --line-2: #f1f3f7;
  --bg:     #fafbfd;
  --surface:#ffffff;

  /* Status */
  --good: #1f9d55;
  --warn: #d97706;
  --bad:  #c0392b;
  --gold: #f5b50a;

  /* Effects */
  --shadow-sm: 0 1px 2px rgba(31,39,51,.04);
  --shadow:    0 2px 6px rgba(31,39,51,.05), 0 8px 24px rgba(31,39,51,.06);
  --shadow-lg: 0 12px 32px rgba(31,39,51,.10);

  /* Radii */
  --radius-pill: 999px;
  --radius-lg:   14px;
  --radius:      10px;
  --radius-sm:    8px;

  /* Type */
  --font: "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Sticky header clearance for in-page anchor links. */
  --anchor-offset: 124px;
}

[data-theme="led"] {
  --bf-accent:       var(--bf-purple);
  --bf-accent-dark:  var(--bf-purple-dark);
  --bf-accent-light: var(--bf-purple-light);
  --bf-accent-soft:  var(--bf-purple-soft);
}
[data-theme="halogen"] {
  --bf-accent:       var(--bf-lightred);
  --bf-accent-dark:  #a85252;
  --bf-accent-light: #e8a8a8;
  --bf-accent-soft:  #fbeeee;
}
[data-theme="hid"] {
  --bf-accent:       var(--bf-blue2);
  --bf-accent-dark:  #2f578a;
  --bf-accent-light: #8aaad1;
  --bf-accent-soft:  #eef3fa;
}
[data-theme="oe"] {
  --bf-accent:       var(--bf-newblue);
  --bf-accent-dark:  #426269;
  --bf-accent-light: #9bb4ba;
  --bf-accent-soft:  #eef3f4;
}
[data-theme="factory"] {
  --bf-accent:       #596873;
  --bf-accent-dark:  #3f4c55;
  --bf-accent-light: #a6b0b8;
  --bf-accent-soft:  #eef2f4;
}

/* === 2. Reset / base ======================================================= */
*, *::before, *::after { box-sizing: border-box; }
html {
  font-size: 16px;
  scroll-padding-top: var(--anchor-offset);
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
main > .container {
  padding-top: 6px;
  padding-bottom: 14px;
}
img { max-width: 100%; display: block; }
a { color: var(--bf-accent); text-decoration: none; }
a:hover { color: var(--bf-accent-dark); }
h1, h2, h3, h4, h5 { margin: 0; line-height: 1.25; color: var(--ink); font-weight: 600; }
h1 { font-size: clamp(28px, 3.6vw, 40px); font-weight: 300; }
h1 strong { font-weight: 700; }
h2 { font-size: 26px; font-weight: 600; }
h3 { font-size: 18px; font-weight: 600; }
h4 { font-size: 15px; font-weight: 600; }
p { margin: 0 0 1em; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* === 3. Layout helpers ===================================================== */
.container { max-width: 1440px; margin: 0 auto; padding: 0 24px; }
.stack > * + * { margin-top: 16px; }
.hidden { display: none !important; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

.site-search-page {
  padding-top: 42px;
  padding-bottom: 72px;
}

.site-search-page h1 {
  margin: 10px 0 12px;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
  line-height: 1.02;
}

.site-search-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 28px 0 18px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(13, 27, 42, 0.06);
}

.site-search-panel input {
  width: 100%;
  min-height: 52px;
  border: 0;
  border-radius: 12px;
  background: #f4f7fa;
  padding: 0 18px;
  color: var(--ink);
  font: inherit;
  font-size: 1rem;
  outline: none;
}

.site-search-panel input:focus {
  box-shadow: inset 0 0 0 2px rgba(74, 107, 135, 0.28);
  background: #fff;
}

.search-status {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 6px 0 18px;
}

.search-results {
  display: grid;
  gap: 12px;
}

.search-result-card {
  display: block;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(13, 27, 42, 0.045);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.search-result-card:hover {
  border-color: rgba(74, 107, 135, 0.36);
  box-shadow: 0 16px 40px rgba(13, 27, 42, 0.08);
  transform: translateY(-1px);
}

.coming-soon-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 28px;
  align-items: stretch;
  padding: 46px 0 18px;
}

.coming-soon-copy,
.coming-soon-panel,
.coming-soon-teasers article {
  border: 1px solid var(--line);
  background: #fff;
  box-shadow: var(--shadow);
}

.coming-soon-copy {
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius);
}

.coming-soon-copy h1 {
  margin: 10px 0 14px;
  font-size: clamp(36px, 5.4vw, 72px);
  line-height: 1.02;
}

.coming-soon-copy .lede {
  max-width: 760px;
  color: var(--ink-2);
  font-size: 18px;
}

.coming-soon-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
  padding: 30px;
  border-radius: var(--radius);
}

.coming-soon-panel span,
.coming-soon-teasers span {
  color: var(--bf-accent-dark);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.coming-soon-panel ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.coming-soon-panel li {
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  background: var(--bf-accent-soft);
  color: var(--ink-2);
}

.coming-soon-teasers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  padding: 12px 0 22px;
}

.coming-soon-teasers article {
  padding: 24px;
  border-radius: var(--radius);
}

.coming-soon-teasers h2 {
  margin: 8px 0;
  font-size: 21px;
}

.coming-soon-teasers p {
  color: var(--ink-2);
}

@media (max-width: 860px) {
  .coming-soon-hero,
  .coming-soon-teasers {
    grid-template-columns: 1fr;
  }

  .coming-soon-hero {
    padding-top: 24px;
  }
}

.search-result-card h2 {
  margin: 8px 0 8px;
  font-size: 1.18rem;
  line-height: 1.25;
}

.search-result-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.search-result-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-result-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 9px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f9fb;
}

.search-empty {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: #f8fafc;
  color: var(--muted);
}

.search-empty strong {
  color: var(--ink);
}

@media (max-width: 640px) {
  .site-search-page {
    padding-top: 28px;
    padding-bottom: 52px;
  }

  .site-search-panel {
    grid-template-columns: 1fr;
    border-radius: 14px;
  }

  .site-search-panel .btn {
    width: 100%;
    justify-content: center;
  }

  .search-result-card {
    padding: 18px;
    border-radius: 14px;
  }
}

/* === 4. Header / nav ======================================================= */
.bf-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 50;
  transition: box-shadow .18s ease;
}
.bf-header.is-scrolled {
  box-shadow: 0 8px 24px rgba(31,39,51,.08);
}
.bf-header .container {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  padding-bottom: 18px;
  transition: padding .18s ease;
}
.bf-header.is-scrolled .container {
  padding-top: 14px;
  padding-bottom: 14px;
}
.bf-logo {
  display: flex;
  align-items: center;
  color: var(--ink);
  margin-left: 12px;
}
.bf-logo:hover { text-decoration: none; color: var(--ink); }
.bf-logo img {
  width: 188px;
  height: auto;
  display: block;
  transition: width .18s ease;
}
[data-theme="general"] .bf-logo img {
  content: url("../img/logo/bf-logo-general.png?v=toned-down-1");
}
[data-theme="led"] .bf-logo img {
  content: url("../img/logo/bf-logo-led.png");
}
[data-theme="halogen"] .bf-logo img {
  content: url("../img/logo/bf-logo-halogen.png");
}
[data-theme="hid"] .bf-logo img {
  content: url("../img/logo/bf-logo-hid.png");
}
[data-theme="oe"] .bf-logo img {
  content: url("../img/logo/bf-logo-oe.png");
}
[data-theme="factory"] .bf-logo img {
  content: url("../img/logo/bf-logo-factory.png");
}
.bf-header:not(.is-scrolled) .bf-logo img {
  width: clamp(188px, 18vw, 236px);
}

.bf-nav { display: flex; align-items: center; justify-content: flex-end; gap: 8px; flex-wrap: nowrap; }
.bf-nav-item { position: relative; }
.bf-nav-item::after {
  content: "";
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 10px;
  z-index: 59;
}
.bf-nav-item:hover::after,
.bf-nav-item:focus-within::after {
  display: block;
}
.bf-nav a, .bf-nav-link {
  display: inline-block;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-2);
  text-transform: uppercase;
  letter-spacing: .04em;
  cursor: pointer;
  background: transparent;
  border: 0;
  white-space: nowrap;
}
.bf-nav a:hover, .bf-nav-link:hover {
  background: var(--bf-accent-soft);
  color: var(--bf-accent);
  text-decoration: none;
}
.bf-nav a.active, .bf-nav-link.active { background: var(--bf-accent-soft); color: var(--bf-accent); }

/* dropdown */
.bf-nav-item .submenu {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px;
  display: none;
  min-width: 200px;
  z-index: 60;
}
.bf-nav-item .submenu-products {
  display: none;
  grid-template-columns: repeat(4, minmax(165px, 1fr));
  position: fixed;
  top: 64px;
  left: 50%;
  right: auto;
  width: min(760px, calc(100vw - 48px));
  min-width: 0;
  padding: 12px;
  transform: translateX(-50%);
}
.bf-nav-item:hover .submenu, .bf-nav-item:focus-within .submenu { display: block; }
.bf-nav-item:hover .submenu-products, .bf-nav-item:focus-within .submenu-products { display: grid; }
.submenu-group {
  display: grid;
  gap: 2px;
  min-width: 0;
}
.submenu a {
  display: block;
  padding: 8px 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  border-radius: 6px;
}
.submenu a:hover { background: var(--bf-accent-soft); color: var(--bf-accent); }
.submenu a.submenu-parent {
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.submenu .group-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--ink-3);
  text-transform: uppercase;
  letter-spacing: .06em;
  padding: 8px 12px 4px;
}

.bf-header-right { display: flex; align-items: center; gap: 8px; }
.bf-header-search {
  align-items: center;
  background: var(--line-2);
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  color: var(--ink-3);
  display: flex;
  gap: 0;
  min-width: 0;
  padding: 8px 12px;
  position: relative;
  width: 118px;
  transition: width .18s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}
.bf-header-search::before {
  align-items: center;
  color: var(--ink-2);
  content: "Search";
  display: flex;
  font-size: 13px;
  font-weight: 700;
  inset: 0;
  justify-content: center;
  letter-spacing: .04em;
  pointer-events: none;
  position: absolute;
  text-transform: uppercase;
}
.bf-header-search:focus-within {
  background: #fff;
  border-color: var(--bf-accent-light);
  box-shadow: 0 0 0 3px var(--bf-accent-soft);
  width: 178px;
}
.bf-header-search:focus-within::before,
.bf-header-search:has(input:not(:placeholder-shown))::before {
  display: none;
}
.bf-header-search-submit {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: none;
  flex: 0 0 auto;
  justify-content: center;
  padding: 0;
}
.bf-header-search-submit svg { display: none; }
.bf-header-search input {
  background: transparent;
  border: 0;
  color: transparent;
  caret-color: transparent;
  flex: 1;
  font-size: 13px;
  font-weight: 700;
  min-width: 0;
  outline: 0;
  text-transform: uppercase;
  letter-spacing: .04em;
  padding: 0;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 1;
}
.bf-header-search input::placeholder {
  color: transparent;
  opacity: 0;
}
.bf-header-search:focus-within input,
.bf-header-search:has(input:not(:placeholder-shown)) input {
  color: var(--ink);
  caret-color: auto;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
}
.bf-search-mini {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 14px;
  background: var(--line-2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  min-width: 230px;
  color: var(--ink-3);
}
.bf-search-mini input {
  background: transparent; border: 0; outline: 0;
  flex: 1; font-size: 13px; color: var(--ink);
}
.bf-cta {
  background: var(--bf-accent);
  color: #fff;
  border: 0;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
  box-shadow: 0 4px 10px rgba(31,39,51,.16);
  text-decoration: none;
}
.bf-cta:hover { background: var(--bf-accent-dark); color: #fff; text-decoration: none; }
/* Mobile menu */
.bf-burger {
  display: none;
  background: transparent; border: 0;
  padding: 8px; cursor: pointer;
  color: var(--ink);
}
.bf-header.is-compact-nav .container {
  grid-template-columns: 1fr auto;
  gap: 12px;
}
.bf-header.is-compact-nav .bf-nav,
.bf-header.is-compact-nav .bf-search-mini,
.bf-header.is-compact-nav .bf-header-search,
.bf-header.is-compact-nav .bf-header-right {
  display: none;
}
.bf-header.is-compact-nav .bf-burger {
  display: inline-flex;
}
.bf-header.is-compact-nav .bf-nav.open {
  display: flex;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  flex-direction: column;
  padding: 12px;
  gap: 4px;
  box-shadow: var(--shadow-lg);
  border-top: 1px solid var(--line);
  align-items: stretch;
}
.bf-header.is-compact-nav .bf-nav.open a,
.bf-header.is-compact-nav .bf-nav.open .bf-nav-link {
  text-align: left;
  width: 100%;
}
.bf-header.is-compact-nav .bf-nav.open .bf-nav-item {
  display: grid;
}
.bf-header.is-compact-nav .bf-nav.open .submenu,
.bf-header.is-compact-nav .bf-nav.open .submenu-products {
  display: grid;
  grid-template-columns: 1fr;
  min-width: 0;
  position: static;
  box-shadow: none;
  padding: 0 0 8px 12px;
  transform: none;
}
/* === 5. Footer ============================================================= */
.bf-footer {
  background: var(--ink);
  color: rgba(255,255,255,.75);
  padding: 18px 0 12px;
  margin-top: 44px;
}
.bf-footer .container {
  display: grid;
  grid-template-columns: minmax(190px, 1.1fr) minmax(150px, .8fr) minmax(220px, 1fr) minmax(110px, .7fr);
  justify-content: stretch;
  align-items: start;
  column-gap: 44px;
  row-gap: 12px;
}
.bf-footer .container > div:not(.bottom-bar) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 7px;
  min-width: 0;
}
.bf-footer .container:not(:has(> div:nth-of-type(4):not(.bottom-bar))) > div:nth-of-type(3):not(.bottom-bar) {
  grid-column: 4;
  justify-self: start;
}
.bf-footer h4 {
  color: #fff;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin: 0;
  white-space: nowrap;
}
.bf-footer a { color: rgba(255,255,255,.75); }
.bf-footer a:hover { color: #fff; text-decoration: none; }
.bf-footer ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bf-footer li { margin: 0; font-size: 12.5px; line-height: 1.25; }

.bf-footer .social {
  display: flex; gap: 10px; margin-top: 12px;
}
.bf-footer .social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  transition: background .15s;
}
.bf-footer .social a:hover { background: rgba(255,255,255,.18); }

.bf-footer .bottom-bar {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 0;
  padding-top: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 11.5px;
  color: rgba(255,255,255,.55);
  flex-wrap: wrap;
  gap: 18px;
}
.bf-footer .disclaimer {
  grid-column: 1 / -1;
  font-size: 10.5px;
  line-height: 1.35;
  color: rgba(255,255,255,.5);
  padding-top: 0;
  width: 100%;
  max-width: none;
  margin: -2px 0 0;
}
.bf-footer .disclaimer + .disclaimer {
  margin-top: 2px;
}
.bf-footer .brand-disclaimer {
  color: rgba(255,255,255,.42);
}

/* === 6. Hero panels ======================================================== */
.bf-hero {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  padding: 64px 56px;
  background-image:
    linear-gradient(90deg, rgba(10,15,22,.86) 0%, rgba(18,29,39,.74) 42%, rgba(39,92,122,.24) 70%, rgba(10,15,22,.50) 100%),
    radial-gradient(760px 360px at 82% 56%, rgba(58,126,162,.28), transparent 70%),
    linear-gradient(180deg, rgba(255,255,255,.10), rgba(0,0,0,.04)),
    url("../img/bg/home-hero-headlight.webp");
  background-size: cover;
  background-position: center 46%;
  color: #fff;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  margin-top: 32px;
}
.bf-hero::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.01), rgba(0,0,0,.12)),
    linear-gradient(100deg, transparent 0%, transparent 52%, rgba(255,255,255,.14) 72%, transparent 100%);
  pointer-events: none;
}
.bf-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.18); color: #fff;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 18px;
}
.bf-hero h1 { color: #fff; font-weight: 300; line-height: 1.15; margin-bottom: 16px; }
.bf-hero h1 strong { font-weight: 700; }
.bf-hero p.lede { font-size: 17px; line-height: 1.6; opacity: .95; margin-bottom: 28px; max-width: 540px; }
.bf-hero > *, .seo-intro > *, .faq-grid > * { min-width: 0; }
.bf-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.bf-hero-actions .btn {
  background: #fff; color: var(--bf-accent-dark);
  padding: 13px 22px; border-radius: var(--radius-pill);
  border: 0; font-weight: 700; cursor: pointer; font-size: 14px;
  text-transform: uppercase; letter-spacing: .04em;
  display: inline-flex; align-items: center; gap: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,.10);
  text-decoration: none;
}
.bf-hero-actions .btn:hover { transform: translateY(-1px); color: var(--bf-accent-dark); }
.bf-hero-actions .btn.outline {
  background: rgba(255,255,255,.12); color: #fff;
  border: 1px solid rgba(255,255,255,.4); box-shadow: none;
}
.bf-hero-actions .btn.outline:hover { background: rgba(255,255,255,.22); color: #fff; }

.bf-hero-stats { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.stat-tile {
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  padding: 18px;
  min-width: 0;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}
.stat-tile .n { font-size: 30px; font-weight: 700; line-height: 1; }
.stat-tile .l { font-size: 12px; opacity: .9; margin-top: 6px; text-transform: uppercase; letter-spacing: .04em; overflow-wrap: break-word; }

/* Per-category hero gradients */
[data-theme="led"] .bf-hero { background-image: linear-gradient(135deg, rgba(124,79,176,.92), rgba(153,108,198,.86)); }
[data-theme="halogen"] .bf-hero { background-image: linear-gradient(135deg, rgba(168,82,82,.92), rgba(211,109,109,.86)); }
[data-theme="hid"]     .bf-hero { background-image: linear-gradient(135deg, rgba(47,87,138,.92), rgba(65,110,164,.86)); }
[data-theme="oe"]      .bf-hero { background-image: linear-gradient(135deg, rgba(66,98,105,.92), rgba(87,124,133,.86)); }
[data-theme="led"]     .bf-hero-actions .btn,
[data-theme="halogen"] .bf-hero-actions .btn,
[data-theme="hid"]     .bf-hero-actions .btn,
[data-theme="oe"]      .bf-hero-actions .btn { color: var(--bf-accent-dark); }
[data-theme="led"]     .bf-hero-actions .btn:hover { color: var(--bf-accent-dark); }
[data-theme="halogen"] .bf-hero-actions .btn:hover { color: var(--bf-accent-dark); }
[data-theme="hid"]     .bf-hero-actions .btn:hover { color: var(--bf-accent-dark); }
[data-theme="oe"]      .bf-hero-actions .btn:hover { color: var(--bf-accent-dark); }

/* === 7. Section headers =================================================== */
.section-h {
  display: flex; align-items: end; justify-content: space-between;
  margin: 68px 0 24px;
  gap: 16px;
}
.section-h h2 { font-size: 26px; font-weight: 600; }
.section-h .sub { color: var(--ink-2); font-size: 14px; margin-top: 4px; }
.section-h a {
  font-size: 13px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}

/* === 7a. SEO intro / FAQ copy ============================================ */
.seo-intro {
  position: relative;
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 32px;
  align-items: start;
  padding: 28px 32px;
  margin: 30px 0 6px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,249,252,.96)),
    linear-gradient(90deg, var(--bf-accent-soft), transparent);
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.seo-intro::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(124,79,176,.05), transparent 34%);
}
.seo-intro > * { position: relative; z-index: 1; }
.eyebrow-text {
  display: inline-block;
  color: var(--bf-accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.seo-intro h2 {
  font-size: 26px;
  line-height: 1.3;
}
.seo-intro p {
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.testing-proof {
  align-items: center;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, .86fr) minmax(0, 1.14fr);
  margin: 54px 0 8px;
}
.testing-proof-copy h2 {
  font-size: 30px;
  line-height: 1.22;
  margin-bottom: 14px;
}
.testing-proof-copy p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 20px;
}
.testing-proof-points {
  display: grid;
  gap: 12px;
  margin-bottom: 20px;
}
.testing-proof-points div {
  border-left: 3px solid var(--bf-accent-light);
  padding-left: 14px;
}
.testing-proof-points strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  margin-bottom: 2px;
}
.testing-proof-points span {
  color: var(--ink-2);
  display: block;
  font-size: 13px;
  line-height: 1.55;
}
.text-arrow {
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.text-arrow:hover { color: var(--bf-accent); text-decoration: none; }
.testing-proof-gallery {
  display: grid;
  gap: 14px;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, .9fr);
  grid-template-rows: repeat(2, 188px);
}
.testing-shot {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 0;
  overflow: hidden;
  position: relative;
}
.testing-shot.large { grid-row: span 2; }
.testing-shot img {
  height: 100%;
  object-fit: cover;
  object-position: center;
  width: 100%;
}
.testing-shot.large img { object-position: 54% center; }
.testing-shot figcaption {
  background: linear-gradient(180deg, transparent, rgba(19,24,31,.74));
  bottom: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  left: 0;
  letter-spacing: .04em;
  padding: 40px 14px 12px;
  position: absolute;
  right: 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.3);
  text-transform: uppercase;
}

.scoring-proof {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
  margin: 44px 0 8px;
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(247,249,252,.96)),
    linear-gradient(90deg, rgba(96,111,128,.08), transparent);
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.scoring-proof-copy h2 {
  font-size: 27px;
  line-height: 1.25;
  margin-bottom: 12px;
}
.scoring-proof-copy p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.72;
  margin: 0 0 16px;
}
.score-scale-note {
  color: var(--ink-2);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 13.5px;
  line-height: 1.6;
  padding: 14px 16px;
}
.score-scale-note strong,
.score-scale-note b {
  color: var(--ink);
}
.scoring-proof-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.scoring-proof-item {
  min-width: 0;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .04);
}
.scoring-proof-item span {
  color: var(--bf-accent);
  display: inline-flex;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  margin-bottom: 10px;
}
.scoring-proof-item strong {
  color: var(--ink);
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.scoring-proof-item p {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
  margin: 0;
}

/* === 8. Category cards ==================================================== */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  padding: 28px 22px 22px; min-height: 240px;
  color: #fff;
  display: flex; flex-direction: column;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
}
.cat-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; text-decoration: none; }
.cat-card.cat-led {
  background-image:
    linear-gradient(160deg, rgba(124,79,176,.96) 0%, rgba(124,79,176,.9) 48%, rgba(31,39,51,.86) 100%),
    url("../img/bg/category-led.webp");
}
.cat-card.cat-hal {
  background-image:
    linear-gradient(160deg, rgba(211,109,109,.96) 0%, rgba(168,82,82,.9) 52%, rgba(31,39,51,.84) 100%),
    url("../img/bg/category-halogen.webp");
}
.cat-card.cat-hid {
  background-image:
    linear-gradient(160deg, rgba(65,110,164,.96) 0%, rgba(47,87,138,.9) 52%, rgba(31,39,51,.85) 100%),
    url("../img/bg/category-hid.webp");
}
.cat-card.cat-oe  {
  background-image:
    linear-gradient(160deg, rgba(87,124,133,.96) 0%, rgba(66,98,105,.9) 52%, rgba(31,39,51,.85) 100%),
    url("../img/bg/category-oe-hid.webp");
}
.cat-card::after {
  content: ""; position: absolute; right: -40px; top: -40px;
  width: 220px; height: 220px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.22), transparent 70%);
  pointer-events: none;
}
.cat-card .cat-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(255,255,255,.18);
  display: grid; place-items: center; margin-bottom: 18px;
  border: 1.5px solid rgba(255,255,255,.35);
}
.cat-card h3 { color: #fff; font-size: 20px; margin-bottom: 4px; text-shadow: 0 1px 2px rgba(0,0,0,.18); }
.cat-card .cat-meta { font-size: 13px; opacity: .96; margin-bottom: 14px; text-shadow: 0 1px 2px rgba(0,0,0,.16); }
.cat-card .cat-meta strong { font-size: 22px; font-weight: 700; display: block; line-height: 1; margin-bottom: 2px; }
.category-strip { margin: 0 0 28px; }
.category-strip .cat-card {
  min-height: 178px;
  padding: 22px;
}
.category-strip .cat-icon { display: none; }
.category-strip .cat-meta { margin-bottom: 8px; }
.category-strip .cat-meta strong { display: inline; font-size: inherit; margin: 0 5px 0 0; }
.category-strip .cat-card h3 { font-size: 17px; }
.category-strip .cat-links { margin-top: 18px; }
.cat-links {
  margin-top: auto;
  display: flex; flex-wrap: wrap; gap: 6px;
}
.cat-grid .cat-links {
  display: grid;
  grid-template-columns: max-content max-content;
  justify-content: start;
}
.cat-grid .cat-links span:first-child {
  grid-column: 1 / -1;
  justify-self: start;
}
.cat-links a, .cat-links span {
  font-size: 12px; padding: 6px 12px;
  background: rgba(255,255,255,.2); color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 600; border: 1px solid rgba(255,255,255,.34);
  text-transform: uppercase; letter-spacing: .04em;
}
.cat-links a:hover { background: rgba(255,255,255,.28); color: #fff; text-decoration: none; }

/* === Dual home concept ==================================================== */
.home-direction-band {
  --lane-accent: var(--bf-general);
  --lane-accent-dark: var(--bf-general-dark);
  --lane-accent-soft: rgba(93,102,115,.12);
  --lane-accent-border: rgba(93,102,115,.22);
  position: relative;
  margin-top: 64px;
  padding-top: 34px;
  padding-bottom: 36px;
  border-radius: var(--radius-lg);
}

.anchor-offset {
  display: block;
  height: 0;
}

main > .container.home-direction-band {
  padding-top: 34px;
  padding-bottom: 36px;
}

.home-direction-band::before {
  content: "";
  position: absolute;
  inset: 0 24px;
  z-index: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  pointer-events: none;
}

.home-direction-band > * {
  position: relative;
  z-index: 1;
}

.upgrade-direction-band::before {
  background:
    linear-gradient(135deg, rgba(255,255,255,.99), rgba(250,252,254,.97)),
    radial-gradient(circle at 12% 16%, var(--lane-accent-soft), transparent 34%);
  border-top: 4px solid var(--lane-accent);
}


.home-lane-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 36px 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.86);
  box-shadow: 0 12px 24px rgba(31,39,51,.06);
  color: var(--ink-2);
  font-size: 12px;
}

.home-lane-kicker span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  padding: 0 9px;
  border-radius: var(--radius-pill);
  background: var(--ink);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-lane-kicker strong {
  color: var(--ink);
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-lane-kicker em {
  color: var(--ink-3);
  font-style: normal;
}

.home-direction-band .home-lane-kicker span {
  background: var(--lane-accent);
}

.direction-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 36px 28px;
  border-bottom: 1px solid var(--line);
}

.direction-header > div {
  max-width: 880px;
  min-width: 0;
}

.direction-header h2 {
  font-size: 31px;
  line-height: 1.16;
  margin-bottom: 10px;
}

.direction-header p {
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.72;
  margin: 0;
}

.direction-header .page-action {
  flex: 0 0 auto;
}

.home-direction-band .direction-header .page-action.primary {
  border: 1px solid var(--lane-accent);
  background: var(--lane-accent);
  color: #fff;
  box-shadow: 0 8px 18px rgba(31,39,51,.10);
}

.home-direction-band .direction-header .page-action.primary:hover {
  background: var(--lane-accent-dark);
  border-color: var(--lane-accent-dark);
  color: #fff;
}

.direction-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 24px 36px 24px;
}

.direction-facts div {
  min-width: 0;
  padding: 18px;
  border: 1px solid var(--lane-accent-border);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
  box-shadow: 0 10px 22px rgba(31,39,51,.04);
}

.direction-facts strong {
  display: block;
  color: var(--ink);
  font-size: 15px;
  margin-bottom: 6px;
}

.direction-facts span {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.compact-direction-head {
  margin: 28px 36px 18px;
}

.home-direction-band .cat-grid {
  margin-left: 36px;
  margin-right: 36px;
}


.browse-types {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: minmax(220px, .85fr) 1.4fr;
  gap: 22px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.browse-types h2 {
  font-size: 20px;
  line-height: 1.3;
}
.browse-types p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
  margin: 6px 0 0;
}
.browse-type-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 10px;
}
.browse-type-links a {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  color: var(--ink);
  background: var(--bg);
  text-decoration: none;
}
.browse-type-links a:hover {
  border-color: var(--bf-accent-light);
  background: var(--bf-accent-soft);
  color: var(--ink);
}
.browse-type-links strong {
  display: block;
  font-size: 14px;
  margin-bottom: 3px;
}
.browse-type-links span {
  display: block;
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
}

/* === 9. Featured / video cards ============================================ */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.feat-card {
  background: #fff; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform .2s ease, box-shadow .2s ease;
  text-decoration: none; color: inherit;
  display: flex; flex-direction: column;
}
.feat-card:hover { transform: translateY(-2px); box-shadow: var(--shadow); color: inherit; text-decoration: none; }
.feat-thumb {
  position: relative; aspect-ratio: 16/9;
  background:
    linear-gradient(135deg, rgba(31,39,51,.86), rgba(55,102,116,.78)),
    radial-gradient(260px 120px at 75% 45%, rgba(255,255,255,.22), transparent 70%);
  overflow: hidden;
}
.feat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.feat-thumb.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.2), rgba(0,0,0,.04) 45%, rgba(0,0,0,.26));
}
.feat-thumb > * { position: relative; z-index: 1; }
.feat-thumb.has-image img { position: absolute; inset: 0; z-index: 0; }
.feat-thumb .date-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.55); color: #fff;
  padding: 6px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .05em;
  line-height: 1.2; text-align: center;
}
.feat-thumb .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.feat-thumb .play div {
  width: 66px; height: 44px; border-radius: 12px;
  background: rgba(220, 38, 38, .94);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  position: relative;
  display: block;
  font-size: 0;
}
.feat-thumb .play div::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
}
.feat-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.feat-body h3 { font-size: 16px; margin-bottom: 8px; line-height: 1.35; }
.feat-body p { color: var(--ink-2); font-size: 13.5px; line-height: 1.55; margin: 0 0 14px; }
.feat-body .read-link {
  color: var(--bf-accent); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  margin-top: auto;
}

.video-review-section .section-h {
  align-items: end;
  margin-bottom: 18px;
}
.video-review-section .section-h h2 {
  font-size: 30px;
  line-height: 1.18;
}
.video-review-section .feat-grid {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 18px;
}
.video-review-section .feat-card-featured {
  grid-row: span 3;
}
.video-review-section .feat-card-featured .feat-thumb {
  aspect-ratio: 16 / 9;
}
.video-review-section .feat-card-featured .feat-body {
  padding: 24px;
}
.video-review-section .feat-card-featured .feat-body h3 {
  font-size: 24px;
  line-height: 1.22;
  margin-bottom: 10px;
}
.video-review-section .feat-card-featured .feat-body p {
  font-size: 14.5px;
  max-width: 680px;
}
.video-review-section .feat-card:not(.feat-card-featured) {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  min-height: 126px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-thumb {
  aspect-ratio: auto;
  min-height: 100%;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-body {
  padding: 15px 18px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-body h3 {
  font-size: 15px;
  margin-bottom: 6px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-body p {
  font-size: 12.8px;
  line-height: 1.45;
  margin-bottom: 10px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-body .read-link {
  font-size: 11.5px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-thumb .date-tag {
  top: 10px;
  left: 10px;
  padding: 4px 6px;
  font-size: 8.5px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-thumb .play div {
  width: 42px;
  height: 30px;
  border-radius: 9px;
}
.video-review-section .feat-card:not(.feat-card-featured) .feat-thumb .play div::before {
  width: 10px;
  height: 14px;
}

.home-picks {
  margin-top: 52px;
  padding-top: 42px;
  border-top: 1px solid var(--line);
}
.home-picks-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  margin-bottom: 20px;
}
.home-picks-head > div { min-width: 0; }
.home-picks-head h2 {
  font-size: 28px;
  line-height: 1.2;
  margin: 6px 0 6px;
  overflow-wrap: anywhere;
}
.home-picks-head .sub {
  max-width: 720px;
}
.home-picks-head > a {
  color: var(--bf-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
}
.home-picks-head > a:hover {
  color: var(--bf-accent-dark);
  text-decoration: underline;
}
.home-pick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.home-pick {
  --pick-color: var(--bf-accent);
  display: flex;
  flex-direction: column;
  min-width: 0;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.home-pick:hover {
  color: var(--ink);
  border-color: color-mix(in srgb, var(--pick-color) 42%, var(--line));
  box-shadow: var(--shadow);
  transform: translateY(-2px);
  text-decoration: none;
}
.home-pick-led { --pick-color: #8a63c8; }
.home-pick-halogen { --pick-color: #b65e5a; }
.home-pick-hid { --pick-color: #416a9f; }
.home-pick-oe { --pick-color: #567076; }
.home-pick-factory { --pick-color: #596873; }
.home-pick-media {
  min-height: 174px;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  padding: 18px;
  background:
    linear-gradient(140deg, color-mix(in srgb, var(--pick-color) 12%, #fff), #fff 58%),
    #fff;
}
.home-pick-media img {
  width: 100%;
  height: 100%;
  max-height: 190px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 12px 20px rgba(15, 23, 42, .12));
}
.home-pick-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  gap: 8px;
  padding: 18px 18px 20px;
  border-top: 1px solid var(--line);
}
.home-pick-body span {
  color: var(--pick-color);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.home-pick-body h3 {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  margin: 0;
  overflow-wrap: anywhere;
}
.home-pick-body p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0 0 6px;
}
.home-pick-body b {
  color: var(--pick-color);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-top: auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 44px;
}
.faq-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow-sm);
}
.faq-grid h3 {
  font-size: 16px;
  line-height: 1.35;
  margin-bottom: 8px;
}
.faq-grid p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0;
}

/* === 10. Note band ======================================================== */
.note-band {
  background: #fff; border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  padding: 28px 32px; margin-top: 48px;
  display: grid; grid-template-columns: 1fr auto; gap: 24px; align-items: center;
  box-shadow: var(--shadow-sm);
}
.note-band p { color: var(--ink-2); margin: 0; font-size: 14.5px; line-height: 1.65; }
.note-band p b { color: var(--bf-accent); }

/* === 11. Chart page head (also reused on reviews/recommended pages) ======= */
.category-hero {
  position: relative;
  color: #fff;
  background: linear-gradient(135deg, rgba(55,65,77,.92), rgba(93,102,115,.86));
  overflow: hidden;
}
.category-hero.category-hero-led {
  background:
    linear-gradient(160deg, rgba(124,79,176,.96) 0%, rgba(124,79,176,.88) 48%, rgba(31,39,51,.86) 100%),
    url("../img/bg/category-led.webp");
  background-size: cover;
  background-position: center;
}
.category-hero.category-hero-halogen {
  background:
    linear-gradient(160deg, rgba(168,82,82,.96) 0%, rgba(211,109,109,.88) 48%, rgba(75,38,38,.84) 100%),
    url("../img/bg/category-halogen.webp");
  background-size: cover;
  background-position: center;
}
.category-hero.category-hero-oe {
  background:
    linear-gradient(160deg, rgba(66,98,105,.96) 0%, rgba(87,124,133,.88) 48%, rgba(23,35,42,.86) 100%),
    url("../img/bg/category-oe-hid.webp");
  background-size: cover;
  background-position: center;
}
.category-hero.category-hero-hid {
  background:
    linear-gradient(160deg, rgba(47,87,138,.96) 0%, rgba(65,110,164,.88) 48%, rgba(18,32,55,.86) 100%),
    url("../img/bg/category-hid.webp");
  background-size: cover;
  background-position: center;
}
.category-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.22)),
    linear-gradient(105deg, transparent 0%, transparent 52%, rgba(255,255,255,.11) 74%, transparent 100%);
  pointer-events: none;
}
.category-hero .container {
  position: relative;
  z-index: 1;
}
.category-hero-grid {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
  padding: 58px 24px 64px;
}
.category-hero .crumb {
  display: inline-flex;
  gap: 8px;
  margin-bottom: 18px;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.category-hero .crumb a { color: #fff; opacity: .74; }
.category-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.16);
  border: 1px solid rgba(255,255,255,.24);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 16px;
}
.category-hero h1 {
  color: #fff;
  max-width: 760px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.05;
  margin-bottom: 18px;
}
.category-hero p {
  max-width: 680px;
  color: rgba(255,255,255,.9);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.category-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.category-hero-panel {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: 0 20px 48px rgba(0,0,0,.18);
  backdrop-filter: blur(8px);
}
.hero-product-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 14px;
}
.hero-product-row img {
  width: 100%;
  aspect-ratio: 1.1;
  object-fit: contain;
  background: rgba(255,255,255,.9);
  border-radius: var(--radius);
  padding: 12px;
}
.category-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.category-stat-grid div {
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  padding: 16px;
}
.category-stat-grid strong {
  display: block;
  color: #fff;
  font-size: 28px;
  line-height: 1;
}
.category-stat-grid span {
  display: block;
  color: rgba(255,255,255,.82);
  font-size: 11px;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: .04em;
  margin-top: 6px;
}

.landing-intro {
  display: grid;
  grid-template-columns: .9fr 1.35fr;
  gap: 32px;
  align-items: start;
  margin: 44px 0 22px;
}
.landing-intro h2 {
  font-size: 28px;
}
.landing-intro p {
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.route-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 18px;
}
.route-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 26px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  text-decoration: none;
  box-shadow: var(--shadow-sm);
  transition: transform .18s, box-shadow .18s, border-color .18s;
}
.route-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
  border-color: var(--bf-accent-light);
  color: var(--ink);
  text-decoration: none;
}
.route-card span {
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.route-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.route-card p {
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0 0 18px;
}
.route-card strong {
  margin-top: auto;
  color: var(--bf-accent);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.route-card.primary-route {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(248,244,252,.96)),
    var(--bf-accent-soft);
  border-color: var(--bf-accent-light);
}

.landing-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.landing-product {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.landing-product img {
  width: 100%;
  height: 190px;
  object-fit: contain;
  background:
    linear-gradient(135deg, rgba(248,249,252,.96), rgba(240,234,247,.9));
  padding: 24px;
}
.landing-product div {
  padding: 20px;
}
.landing-product span {
  display: block;
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 8px;
}
.landing-product h3 {
  font-size: 19px;
  margin-bottom: 8px;
}
.landing-product p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
  margin-bottom: 14px;
}
.landing-product a {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.landing-feature {
  margin-top: 52px;
  display: grid;
  grid-template-columns: .95fr 1.35fr;
  gap: 32px;
  align-items: start;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  padding: 30px 32px;
  box-shadow: var(--shadow-sm);
}
.landing-feature h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.landing-feature p {
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.landing-checks {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.landing-checks div {
  background: var(--line-2);
  border-radius: var(--radius);
  padding: 16px;
}
.landing-checks b {
  display: block;
  font-size: 14px;
  margin-bottom: 6px;
}
.landing-checks span {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.xenon-landing-page .category-hero-panel {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.24);
}
.xenon-landing-page .hero-product-row img {
  background:
    linear-gradient(135deg, rgba(255,255,255,.96), rgba(238,243,244,.9)),
    #fff;
}
.xenon-landing-page .category-stat-grid div {
  background: rgba(238,243,244,.13);
  border-color: rgba(255,255,255,.22);
}
.xenon-landing-page .landing-feature {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.58)),
    #fff;
  border-color: rgba(87,124,133,.2);
  box-shadow: var(--shadow-sm);
}
.xenon-landing-page .route-card,
.xenon-landing-page .landing-product {
  border-color: rgba(87,124,133,.18);
}
.xenon-landing-page .route-card:hover,
.xenon-landing-page .landing-product:hover {
  border-color: rgba(87,124,133,.42);
  box-shadow: var(--shadow);
}
.xenon-landing-page .route-card.primary-route {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.82)),
    #fff;
  border-color: rgba(87,124,133,.34);
}
.xenon-landing-page .route-card span,
.xenon-landing-page .route-card strong,
.xenon-landing-page .landing-product span,
.xenon-landing-page .landing-product a,
.xenon-landing-page .landing-checks b {
  color: var(--bf-accent-dark);
}
.xenon-landing-page .landing-product img {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.84)),
    radial-gradient(260px 160px at 70% 45%, rgba(87,124,133,.14), transparent 70%);
}
.xenon-landing-page .landing-checks div {
  background: rgba(238,243,244,.8);
  border: 1px solid rgba(87,124,133,.16);
}

.page-head {
  position: relative;
  border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(135deg, rgba(55,65,77,.92), rgba(93,102,115,.86));
  color: #fff;
  padding: 40px 44px;
  margin: 38px 0 32px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
[data-theme="led"]     .page-head { background: linear-gradient(135deg, rgba(124,79,176,.92), rgba(153,108,198,.86)); }
[data-theme="halogen"] .page-head { background: linear-gradient(135deg, rgba(168,82,82,.92), rgba(211,109,109,.86)); }
[data-theme="hid"]     .page-head { background: linear-gradient(135deg, rgba(47,87,138,.92), rgba(65,110,164,.86)); }
[data-theme="oe"]      .page-head { background: linear-gradient(135deg, rgba(66,98,105,.92), rgba(87,124,133,.86)); }
[data-theme="hid"] .page-head.category-hero-hid {
  background:
    linear-gradient(160deg, rgba(47,87,138,.96) 0%, rgba(65,110,164,.88) 48%, rgba(18,32,55,.86) 100%),
    url("../img/bg/category-hid.webp");
  background-size: cover;
  background-position: center;
}
[data-theme="oe"] .page-head.category-hero-oe {
  background:
    linear-gradient(160deg, rgba(66,98,105,.96) 0%, rgba(87,124,133,.88) 48%, rgba(23,35,42,.86) 100%),
    url("../img/bg/category-oe-hid.webp");
  background-size: cover;
  background-position: center;
}
[data-theme="led"] .page-head {
  background:
    linear-gradient(160deg, rgba(124,79,176,.96) 0%, rgba(124,79,176,.88) 48%, rgba(31,39,51,.86) 100%),
    url("../img/bg/category-led.webp");
  background-size: cover;
  background-position: center;
}
[data-theme="halogen"] .page-head {
  background:
    linear-gradient(160deg, rgba(168,82,82,.96) 0%, rgba(189,94,90,.88) 48%, rgba(31,39,51,.82) 100%),
    url("../img/bg/category-halogen.webp");
  background-size: cover;
  background-position: center;
}
.page-head::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.2)),
    linear-gradient(105deg, transparent 0%, transparent 56%, rgba(255,255,255,.12) 76%, transparent 100%);
  pointer-events: none;
}
.page-head > * {
  position: relative;
  z-index: 1;
  min-width: 0;
}
.page-head h1 { color: #fff; font-weight: 300; font-size: 30px; }
.page-head h1,
.page-head p {
  overflow-wrap: anywhere;
}
.page-head h1 strong { font-weight: 700; }
.page-head .crumb {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; opacity: .85;
  margin-bottom: 8px;
  text-transform: uppercase; letter-spacing: .05em;
}
.page-head .crumb a { color: #fff; opacity: .75; }
.page-head .crumb a:hover { opacity: 1; color: #fff; text-decoration: none; }
.page-head p { margin: 6px 0 0; opacity: .92; font-size: 14px; max-width: 720px; }
.page-head-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.page-head .type-pill {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.32);
  color: #fff;
  padding: 10px 18px; border-radius: var(--radius-pill);
  font-weight: 600; text-transform: uppercase; letter-spacing: .04em;
  font-size: 12px;
  white-space: nowrap;
}
.page-head .type-pill:hover {
  background: rgba(255,255,255,.26);
  color: #fff;
  text-decoration: none;
}
.affiliate-note {
  margin: -14px 0 30px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}
.affiliate-note strong {
  color: var(--ink);
  font-weight: 700;
}
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
}
.page-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
  text-decoration: none;
}
.page-action.primary {
  background: #fff;
  color: var(--bf-accent-dark);
  box-shadow: 0 8px 20px rgba(0,0,0,.14);
}
.page-action.secondary {
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.34);
  color: #fff;
}
.page-action:hover { transform: translateY(-1px); text-decoration: none; }
.page-action.primary:hover { color: var(--bf-accent-dark); }
.page-action.secondary:hover { color: #fff; background: rgba(255,255,255,.24); }

/* === 12. Filter rail ====================================================== */
.with-rail {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}
.with-rail > section { min-width: 0; }
.mobile-filter-bar { display: none; }
.filter-rail {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line); padding: 22px;
  position: sticky; top: 90px;
  max-height: calc(100vh - 110px); overflow-y: auto;
}
.filter-rail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.filter-rail h3 {
  font-size: 12px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bf-accent); margin-bottom: 14px;
}
.filter-close { display: none; }
.filter-group { padding: 16px 0; border-top: 1px solid var(--line-2); }
.filter-group:first-of-type { padding-top: 0; border-top: 0; }
.filter-group h4 {
  font-size: 13px; font-weight: 600; margin-bottom: 10px;
  display: flex; justify-content: space-between; align-items: center;
}
.filter-group h4 .count { font-size: 11px; color: var(--ink-3); font-weight: 400; }
.filter-group-collapsible summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.filter-group-collapsible summary::-webkit-details-marker { display: none; }
.filter-group-collapsible summary::after {
  content: "+";
  width: 22px;
  height: 22px;
  border-radius: var(--radius-pill);
  background: var(--line-2);
  color: var(--bf-accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}
.filter-group-collapsible[open] summary::after { content: "-"; }
.filter-group-collapsible summary h4 {
  flex: 1;
  margin-bottom: 0;
}
.filter-group-collapsible .check-list { margin-top: 10px; }
.check-list { display: grid; gap: 4px; }
.check-list label {
  display: flex; align-items: center; gap: 9px;
  padding: 6px 8px; font-size: 13.5px; color: var(--ink-2);
  border-radius: 6px; cursor: pointer;
}
.check-list label:hover { background: var(--bf-accent-soft); color: var(--ink); }
.check-list input { accent-color: var(--bf-accent); }
.range-row input[type=range] {
  --range-percent: 0%;
  width: 100%;
  height: 18px;
  background: linear-gradient(
    to right,
    var(--bf-accent) 0%,
    var(--bf-accent) var(--range-percent),
    var(--line-2) var(--range-percent),
    var(--line-2) 100%
  );
  background-size: 100% 4px;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: var(--radius-pill);
  accent-color: var(--bf-accent);
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}
.range-row input[type=range]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: var(--radius-pill);
  background: transparent;
}
.range-row input[type=range]::-webkit-slider-thumb {
  width: 15px;
  height: 15px;
  margin-top: -5.5px;
  border: 0;
  border-radius: 50%;
  background: var(--bf-accent);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .2);
  -webkit-appearance: none;
  appearance: none;
}
.range-row input[type=range]::-moz-range-track {
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--line-2);
}
.range-row input[type=range]::-moz-range-progress {
  height: 4px;
  border-radius: var(--radius-pill);
  background: var(--bf-accent);
}
.range-row input[type=range]::-moz-range-thumb {
  width: 15px;
  height: 15px;
  border: 0;
  border-radius: 50%;
  background: var(--bf-accent);
  box-shadow: 0 1px 3px rgba(15, 23, 42, .2);
}
.range-vals { display: flex; justify-content: space-between; font-size: 12px; color: var(--ink-3); margin-top: 6px; }
.k-swatch {
  display: inline-block; width: 16px; height: 16px;
  border-radius: 3px; border: 1px solid rgba(0,0,0,.1);
  vertical-align: middle;
}
.clear-btn {
  width: 100%; padding: 9px;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--bf-accent);
  color: var(--bf-accent);
  background: #fff;
  font-weight: 600; font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em;
  cursor: pointer;
}
.clear-btn:hover { background: var(--bf-accent); color: #fff; }

/* === 13. Chart toolbar ==================================================== */
.chart-toolbar {
  display: grid; grid-template-columns: 1fr auto auto; gap: 12px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 12px 14px; margin-bottom: 14px;
  align-items: center;
}
.chart-search {
  display: flex; align-items: center; gap: 8px;
  background: var(--line-2);
  border-radius: var(--radius-pill);
  padding: 9px 14px;
}
.chart-search input {
  flex: 1; background: transparent; border: 0; outline: 0;
  font-size: 14px; color: var(--ink);
}
.chart-sort {
  appearance: none;
  -webkit-appearance: none;
  background-color: var(--line-2);
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23202737' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 14px 14px;
  border: 0;
  padding: 10px 42px 10px 14px; border-radius: var(--radius-pill);
  font-size: 13px; color: var(--ink); cursor: pointer;
  min-width: 236px;
}
.chart-sort::-ms-expand { display: none; }
.view-switch {
  display: flex; background: var(--line-2);
  padding: 3px; border-radius: var(--radius-pill);
}
.view-switch button {
  background: transparent; border: 0;
  padding: 7px 12px; border-radius: var(--radius-pill);
  cursor: pointer; color: var(--ink-2);
  font-size: 12px; font-weight: 600;
}
.view-switch button.active {
  background: #fff; color: var(--bf-accent);
  box-shadow: var(--shadow-sm);
}
.view-switch button:disabled {
  cursor: default;
  opacity: .5;
}

.tier-filter-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 16px;
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: minmax(220px, .8fr) 1.2fr;
  gap: 16px;
  align-items: center;
  box-shadow: var(--shadow-sm);
}
.tier-filter-panel h2 {
  font-size: 17px;
  line-height: 1.3;
  margin: 4px 0 0;
}
.tier-filter-controls {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.tier-filter-controls button {
  min-height: 62px;
  border: 1px solid var(--line);
  background: var(--line-2);
  border-radius: var(--radius);
  color: var(--ink-2);
  cursor: pointer;
  padding: 10px 12px;
  text-align: left;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
}
.tier-filter-controls button:hover {
  border-color: var(--bf-accent-light);
  background: #fff;
}
.tier-filter-controls button.active {
  background: var(--bf-accent-soft);
  border-color: var(--bf-accent);
  color: var(--bf-accent);
}
.tier-filter-controls .tier-count {
  min-width: 30px;
  height: 30px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}

/* === 14. Beam-type tabs =================================================== */
.beam-tabs {
  display: grid; grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px; margin-bottom: 18px;
}
.hid-chart-page .beam-tabs {
  grid-template-columns: 1fr;
}
.beam-tabs a,
.beam-tabs .disabled {
  background: #fff; border: 1px solid var(--line);
  padding: 12px 16px; border-radius: var(--radius);
  font-size: 14px; font-weight: 600; color: var(--ink-2);
  display: flex; align-items: center; gap: 12px;
  justify-content: center;
  text-decoration: none;
}
.beam-tabs .disabled {
  color: var(--ink-3);
}
.beam-tabs a.active {
  border-color: #b9c5d1;
  background: #f8fafc;
  color: #334155;
}
.beam-tabs a.active:has(.icon.reflector),
.beam-tabs a.active:has(.icon.proj) {
  border-color: #aebdcc;
  background: #f3f7fa;
  color: #33465a;
}
.beam-tabs a:hover { border-color: var(--bf-accent-light); text-decoration: none; }
.beam-tabs a .icon,
.beam-tabs .disabled .icon {
  width: 60px; height: 40px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  flex: 0 0 auto;
}
.beam-tabs a .icon.reflector,
.beam-tabs .disabled .icon.reflector {
  background-image: url("../img/ui/reflector-type.svg");
}
.beam-tabs a .icon.proj,
.beam-tabs .disabled .icon.proj {
  background-image: url("../img/ui/projector-type.svg");
}
.beam-tabs a:not(.active) .icon {
  filter: grayscale(.18) saturate(.82);
  opacity: .82;
}
.beam-tabs a:hover .icon,
.beam-tabs a.active .icon {
  filter: none;
  opacity: 1;
}

/* === 15. Active filter chips ============================================== */
.active-chips {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-bottom: 12px; min-height: 26px;
}
.chip {
  background: var(--bf-accent-soft); color: var(--bf-accent);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-size: 12.5px; font-weight: 600;
  display: inline-flex; align-items: center; gap: 6px;
}
.chip button {
  background: transparent; border: 0; color: var(--bf-accent);
  cursor: pointer; line-height: 1; padding: 0; font-size: 16px;
}

/* === 16. Halogen reference row ============================================ */
.ref-row {
  background: linear-gradient(90deg, #fffcdd 0%, #fff8e7 100%);
  border: 1px solid #f3e8b8;
  border-radius: var(--radius);
  padding: 14px 18px;
  margin-bottom: 16px;
  display: grid; grid-template-columns: auto 1fr auto;
  gap: 10px 18px; align-items: center;
}
.ref-row .ref-label {
  font-weight: 700; color: #8a6d1e; font-size: 13px;
  display: flex; align-items: center; gap: 8px;
  text-transform: uppercase; letter-spacing: .04em;
}
.ref-row .ref-data {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13.5px; color: var(--ink-2);
}
.ref-row .ref-data span { white-space: nowrap; }
.ref-row .ref-data b { color: var(--ink); }
.ref-row .ref-note { color: var(--ink-3); font-size: 12px; }

.score-note {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.65;
  margin: 0 0 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-sm);
}
.score-note strong { color: var(--ink); }
.score-note.is-hidden { display: none; }

.chart-card-note {
  background: transparent;
  border: 0;
  border-left: 2px solid var(--bf-accent);
  border-radius: 0;
  box-shadow: none;
  margin: 4px 0 12px;
  padding: 2px 0 2px 14px;
  max-width: 1120px;
}

.chart-proof-band {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.82)),
    #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, .9fr);
  gap: 24px;
  align-items: center;
  margin: -6px 0 24px;
  padding: 24px 26px;
}
.chart-proof-band h2 {
  font-size: 23px;
  line-height: 1.25;
  margin: 4px 0 8px;
}
.chart-proof-band p {
  color: var(--ink-2);
  line-height: 1.65;
  margin: 0;
}
.chart-proof-band > * { min-width: 0; }
.chart-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}
.chart-proof-grid div {
  background: #fff;
  border: 1px solid color-mix(in srgb, var(--bf-accent) 24%, var(--line));
  border-radius: var(--radius);
  padding: 16px;
}
.chart-proof-grid strong {
  color: var(--bf-accent-dark);
  display: block;
  font-size: 27px;
  line-height: 1;
  margin-bottom: 6px;
}
.chart-proof-grid span {
  color: var(--ink-2);
  display: block;
  font-size: 12px;
  line-height: 1.45;
}
.xenon-chart-page .affiliate-note,
.xenon-chart-page .filter-rail,
.xenon-chart-page .tier-filter-panel,
.xenon-chart-page .chart-toolbar,
.xenon-chart-page .chart-table-shell {
  border-color: rgba(87,124,133,.22);
}
.xenon-chart-page .affiliate-note,
.xenon-chart-page .filter-rail,
.xenon-chart-page .tier-filter-panel,
.xenon-chart-page .chart-toolbar,
.xenon-chart-page .score-note {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.58)),
    #fff;
}
.xenon-chart-page .filter-rail h3,
.xenon-chart-page .tier-filter-panel .eyebrow-text,
.xenon-chart-page .chart-proof-band .eyebrow-text {
  color: var(--bf-accent-dark);
}
.xenon-chart-page .ref-row {
  background:
    linear-gradient(90deg, rgba(238,243,244,.98) 0%, rgba(255,255,255,.96) 100%),
    #fff;
  border-color: rgba(87,124,133,.28);
  border-left: 4px solid var(--bf-accent);
}
.xenon-chart-page .ref-row .ref-label,
.xenon-chart-page .ref-row .ref-note {
  color: var(--bf-accent-dark);
}
.xenon-chart-page .bulb-card {
  border-color: rgba(87,124,133,.18);
}
.xenon-chart-page .bulb-card:hover {
  border-color: rgba(87,124,133,.46);
}
.xenon-chart-page .b-thumb {
  background:
    linear-gradient(135deg, #fff, rgba(238,243,244,.78)),
    #fff;
  border-color: rgba(87,124,133,.22);
}
.xenon-chart-page .chart-table th {
  background: #eef3f4;
  color: var(--bf-accent-dark);
}
.xenon-chart-page .chart-table tbody tr:nth-child(even) td {
  background: #f7fafb;
}
.xenon-chart-page .chart-table tbody tr:hover td {
  background: rgba(238,243,244,.92);
}
.xenon-chart-page .chart-sticky-head {
  background: #eef3f4;
}

.results-meta { color: var(--ink-2); font-size: 13px; margin-bottom: 12px; }

.empty-state {
  background: #fff;
  border: 1px dashed var(--line);
  border-radius: var(--radius-lg);
  padding: 44px;
  text-align: center;
  color: var(--ink-2);
  display: grid;
  gap: 10px;
  justify-items: center;
}
.empty-state strong { color: var(--ink); font-size: 16px; }
.empty-state .clear-btn { max-width: 220px; margin-top: 6px; }

/* === 17. Bulb cards (the chart row) ======================================= */
.bulb-list { display: grid; gap: 14px; }
.bulb-list.table-mode { display: block; }
.bulb-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 22px;
  display: grid;
  grid-template-columns: 1.55fr .9fr 1.3fr .78fr;
  gap: 20px;
  align-items: center;
  transition: border-color .18s, box-shadow .18s, transform .18s;
}
.bulb-card:hover { border-color: var(--bf-accent-light); box-shadow: var(--shadow); }
.bulb-card.is-compared {
  border-color: var(--bf-accent);
  box-shadow: 0 0 0 3px var(--bf-accent-soft);
}

.chart-table-shell {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  overflow: visible;
}
.chart-scroll-top {
  background:
    linear-gradient(90deg, var(--bf-accent-soft), rgba(255,255,255,.92));
  border-bottom: 1px solid var(--line);
  height: 30px;
  overflow-x: auto;
  overflow-y: hidden;
  position: sticky;
  top: 82px;
  z-index: 4;
  scrollbar-color: var(--bf-accent) var(--line-2);
  scrollbar-width: thin;
}
.chart-scroll-top::before {
  content: "Scroll table horizontally";
  color: var(--ink-3);
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .06em;
  line-height: 16px;
  padding-left: 12px;
  pointer-events: none;
  position: absolute;
  top: 2px;
  text-transform: uppercase;
}
.chart-scroll-top > div {
  height: 14px;
}
.chart-table-wrap {
  overflow-x: auto;
  scrollbar-color: var(--bf-accent) var(--line-2);
  scrollbar-width: thin;
}
.chart-table {
  width: 100%;
  min-width: 2200px;
  table-layout: fixed;
  border-collapse: separate;
  border-spacing: 0;
  font-size: 12.5px;
}
.chart-table th,
.chart-table td {
  border-bottom: 1px solid var(--line-2);
  padding: 12px 10px;
  text-align: left;
  vertical-align: top;
}
.chart-table th {
  background: var(--line-2);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  white-space: nowrap;
}
.table-sort-head {
  align-items: center;
  background: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  gap: 5px;
  letter-spacing: inherit;
  padding: 0;
  text-align: left;
  text-transform: inherit;
}
.table-sort-head span {
  color: var(--ink-3);
  display: inline-block;
  font-size: 10px;
  line-height: 1;
  min-width: 8px;
}
.table-sort-head span::before {
  content: "\2195";
}
.table-sort-head.active {
  color: var(--bf-accent);
}
.table-sort-head.active.asc span::before {
  content: "\2191";
}
.table-sort-head.active.desc span::before {
  content: "\2193";
}
.table-sort-head:hover {
  color: var(--bf-accent);
}
.chart-table tbody td { background: #fff; }
.chart-table tbody tr:nth-child(even) td { background: #f8f8fb; }
.chart-table tbody tr:hover td { background: var(--bf-accent-soft); }
.chart-sticky-head {
  background: var(--line-2);
  box-shadow: 0 8px 18px rgba(20, 20, 34, .08);
  display: none;
  overflow: hidden;
  pointer-events: auto;
  position: fixed;
  top: 112px;
  z-index: 5;
}
.chart-sticky-head.is-visible { display: block; }
.chart-sticky-head .chart-table {
  min-width: 2200px;
  width: 2200px;
}
.chart-table-oe {
  min-width: 1500px;
}
.chart-sticky-head .chart-table-oe {
  min-width: 1500px;
}
.chart-sticky-head .chart-table th {
  position: static;
}
.chart-table tbody tr:last-child td { border-bottom: 0; }
.chart-table th:nth-child(1), .chart-table td:nth-child(1) { width: 190px; }
.chart-table th:nth-child(2), .chart-table td:nth-child(2) { width: 70px; }
.chart-table th:nth-child(3), .chart-table td:nth-child(3) { width: 76px; }
.chart-table th:nth-child(4), .chart-table td:nth-child(4) { width: 112px; }
.chart-table th:nth-child(5), .chart-table td:nth-child(5) { width: 76px; }
.chart-table th:nth-child(6), .chart-table td:nth-child(6) { width: 112px; }
.chart-table th:nth-child(7), .chart-table td:nth-child(7) { width: 150px; }
.chart-table th:nth-child(8), .chart-table td:nth-child(8) { width: 90px; }
.chart-table th:nth-child(9), .chart-table td:nth-child(9) { width: 96px; }
.chart-table th:nth-child(10), .chart-table td:nth-child(10) { width: 94px; }
.chart-table th:nth-child(11), .chart-table td:nth-child(11) { width: 90px; }
.chart-table th:nth-child(12), .chart-table td:nth-child(12) { width: 90px; }
.chart-table th:nth-child(13), .chart-table td:nth-child(13) { width: 78px; }
.chart-table th:nth-child(14), .chart-table td:nth-child(14) { width: 140px; }
.chart-table th:nth-child(15), .chart-table td:nth-child(15) { width: 86px; }
.chart-table th:nth-child(16), .chart-table td:nth-child(16) { width: 76px; }
.chart-table th:nth-child(17), .chart-table td:nth-child(17) { width: 70px; }
.chart-table th:nth-child(18), .chart-table td:nth-child(18) { width: 118px; }
.chart-table th:nth-child(19), .chart-table td:nth-child(19) { width: 82px; }
.chart-table th:nth-child(20), .chart-table td:nth-child(20) { width: 112px; }
.chart-table th:nth-child(21), .chart-table td:nth-child(21) { width: 96px; }
.chart-table-oe th:nth-child(1), .chart-table-oe td:nth-child(1) { width: 230px; }
.chart-table-oe th:nth-child(2), .chart-table-oe td:nth-child(2) { width: 110px; }
.chart-table-oe th:nth-child(3), .chart-table-oe td:nth-child(3) { width: 120px; }
.chart-table-oe th:nth-child(4), .chart-table-oe td:nth-child(4) { width: 126px; }
.chart-table-oe th:nth-child(5), .chart-table-oe td:nth-child(5) { width: 130px; }
.chart-table-oe th:nth-child(6), .chart-table-oe td:nth-child(6) { width: 134px; }
.chart-table-oe th:nth-child(7), .chart-table-oe td:nth-child(7) { width: 104px; }
.chart-table-oe th:nth-child(8), .chart-table-oe td:nth-child(8) { width: 190px; }
.chart-table-oe th:nth-child(9), .chart-table-oe td:nth-child(9) { width: 106px; }
.chart-table-oe th:nth-child(10), .chart-table-oe td:nth-child(10) { width: 120px; }
.chart-table-oe th:nth-child(11), .chart-table-oe td:nth-child(11) { width: 90px; }
.chart-table-oe th {
  line-height: 1.25;
  white-space: normal;
}
.table-product {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 8px;
  align-items: start;
}
.table-thumb {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #fff;
}
.table-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}
.table-product strong,
.table-product span,
.table-product em {
  display: block;
}
.table-product strong { font-size: 13px; color: var(--ink); }
.table-product span { color: var(--ink-2); margin-top: 2px; }
.table-product em {
  color: var(--ink-3);
  font-size: 11px;
  font-style: normal;
  margin-top: 3px;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.table-score {
  font-size: 20px;
  font-weight: 700;
  color: var(--bf-accent);
}
.table-score.excellent { color: var(--bf-accent); }
.table-score.good { color: var(--good); }
.table-score.mid { color: var(--warn); }
.table-score.low { color: var(--bad); }
.table-metric {
  display: grid;
  gap: 2px;
}
.table-metric strong {
  color: var(--ink);
  font-size: 13px;
}
.table-metric em {
  color: var(--good);
  font-size: 11px;
  font-style: normal;
}
.power-ok { color: var(--ink); font-weight: 700; }
.power-warn {
  color: #a85c00;
  background: #fff1dc;
  border-radius: var(--radius-pill);
  padding: 3px 8px;
  font-weight: 800;
}
.power-warn.high {
  color: #b3261e;
  background: #ffe7e3;
}
.canbus-note {
  display: inline-block;
  font-weight: 700;
  max-width: 130px;
}
.canbus-note.good { color: var(--good); }
.canbus-note.warn { color: #a85c00; }
.canbus-note.bad { color: var(--bad); }
.table-delta {
  display: block;
  color: var(--good);
  font-size: 11px;
  margin-top: 2px;
}
.table-actions {
  display: grid;
  gap: 6px;
}
.table-cost { font-size: 15px; color: var(--ink); text-align: center; }
.table-beam-image {
  align-items: center;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink-2);
  display: grid;
  font-size: 11px;
  gap: 6px;
  grid-template-columns: 72px minmax(0, 1fr);
  min-height: 44px;
  padding: 5px;
  text-decoration: none;
}
.table-beam-image:hover {
  border-color: var(--bf-accent-light);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}
.table-beam-image img {
  background: var(--ink);
  border-radius: var(--radius-sm);
  height: 38px;
  object-fit: cover;
  width: 72px;
}
.table-beam-image span {
  color: var(--bf-accent);
  font-weight: 800;
}
.table-beam-image.no-image {
  background: var(--line-2);
  color: var(--ink-3);
  display: inline-grid;
  grid-template-columns: 1fr;
  min-height: 0;
  padding: 7px 10px;
}
.table-sizes {
  color: var(--ink-2);
  font-size: 11.5px;
  line-height: 1.4;
  word-break: normal;
}
.table-sizes details {
  position: relative;
}
.table-sizes summary {
  color: var(--bf-accent);
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}
.table-sizes summary::-webkit-details-marker { display: none; }
.table-sizes summary::after {
  content: "+";
  margin-left: 4px;
  color: var(--ink-3);
}
.table-sizes details[open] summary::after { content: "-"; }
.table-sizes details span {
  display: block;
  margin-top: 6px;
}
.btn-buy.table-buy,
.btn-review.table-review {
  font-size: 10px;
  padding: 6px 7px;
}

.table-stack {
  display: grid;
  gap: 6px;
}
.output-stack,
.specs-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.specs-stack div:first-child {
  grid-column: span 2;
}
.lab-stack {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.lab-stack div:nth-child(2) {
  grid-column: span 2;
}
.table-stack div {
  display: grid;
  gap: 1px;
}
.table-stack span {
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.table-stack strong {
  color: var(--ink);
  font-size: 12px;
}
.table-stack em {
  color: var(--good);
  font-size: 11px;
  font-style: normal;
}
.b-id {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.b-thumb {
  width: 112px; height: 96px; border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  color: var(--bf-accent);
  overflow: hidden;
}
.b-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}
.b-name { font-size: 17px; font-weight: 700; line-height: 1.2; }
.b-model { font-size: 13.5px; color: var(--ink-2); margin-top: 2px; font-style: italic; }
.b-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.tag {
  font-size: 11px; padding: 3px 9px;
  border-radius: var(--radius-pill);
  background: var(--line-2); color: var(--ink-2);
  font-weight: 600;
  text-transform: uppercase; letter-spacing: .03em;
}
.tag.good { background: #e6f6ec; color: #1f7a3e; }
.tag.warm { background: #fff4e1; color: #8a5a05; }
.tag.purple { background: var(--bf-accent-soft); color: var(--bf-accent); }
.tag.bad { background: #ffe7e3; color: #a02a1f; }

/* Score block */
.score-block {
  background: var(--bf-accent-soft);
  padding: 14px 12px; border-radius: var(--radius);
  text-align: center;
}
.score-num {
  font-size: 36px; font-weight: 700;
  color: var(--bf-accent); line-height: 1;
}
.score-num.excellent { color: var(--bf-accent); }
.score-num.good { color: var(--good); }
.score-num.mid { color: var(--warn); }
.score-num.low { color: var(--bad); }
.stars { color: var(--gold); font-size: 14px; letter-spacing: 1px; margin-top: 6px; }
.score-label {
  font-size: 11px; color: var(--ink-3);
  text-transform: uppercase; letter-spacing: .04em;
  margin-top: 4px; font-weight: 600;
}

/* Performance block */
.perf-block {
  display: grid;
  gap: 9px;
  justify-content: start;
}
.pf-row {
  display: grid;
  grid-template-columns: 44px 116px 72px;
  gap: 8px;
  align-items: center;
}
.pf-label {
  font-size: 12px; font-weight: 600; color: var(--ink-2);
  text-transform: uppercase; letter-spacing: .04em;
}
.pf-bar {
  height: 10px; background: var(--line-2);
  border-radius: var(--radius-pill);
  position: relative; overflow: visible;
}
.pf-fill {
  height: 100%; border-radius: var(--radius-pill);
  background: var(--bf-accent);
}
.pf-fill.light { background: var(--bf-accent-light); }
.pf-ref {
  position: absolute; top: -3px; bottom: -3px;
  width: 2px; background: #8a6d1e;
}
.pf-ref::after {
  content: attr(data-ref-label);
  position: absolute; left: 4px; top: -16px;
  font-size: 9px; color: #8a6d1e; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  white-space: nowrap;
}
.pf-val { font-size: 13px; font-weight: 700; text-align: left; }
.pf-delta { display: block; font-size: 11px; font-weight: 600; }
.pf-delta.up { color: var(--good); }
.pf-delta.down { color: var(--bad); }

.beam-chip {
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 50px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  color: inherit;
  text-decoration: none;
}
.beam-chip:hover {
  border-color: var(--bf-accent-light);
  box-shadow: var(--shadow-sm);
}
.beam-chip img {
  width: 74px;
  height: 42px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  background: var(--ink);
}
.beam-chip.no-image {
  grid-template-columns: 1fr;
  background: var(--line-2);
}
.beam-meta {
  display: grid;
  gap: 2px;
  font-size: 11px;
  color: var(--ink-3);
}
.beam-meta strong {
  font-size: 13px;
  color: var(--ink);
}
.table-beam {
  grid-template-columns: 58px minmax(0, 1fr);
  min-width: 0;
  padding: 5px;
}
.table-beam img {
  width: 58px;
  height: 36px;
}
.specs-mini {
  display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px;
  font-size: 12.5px; color: var(--ink-2);
  margin-top: 4px;
}
.sm-row { display: flex; align-items: center; gap: 6px; }
.sm-row b { color: var(--ink); }

/* Actions */
.actions { display: grid; gap: 7px; align-content: center; }
.price { font-size: 21px; font-weight: 700; text-align: center; color: var(--ink); }
.price .from {
  font-size: 11px; color: var(--ink-3);
  display: block; font-weight: 400;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: -2px;
}
.btn-buy {
  background: var(--bf-accent-soft); color: var(--bf-accent-dark);
  border: 1px solid var(--bf-accent-light);
  padding: 8px 12px;
  border-radius: var(--radius);
  font-weight: 700; font-size: 12px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .04em;
  box-shadow: none;
  text-decoration: none; text-align: center; display: block;
}
.btn-buy .buy-action,
.btn-buy .buy-vendor {
  display: inline;
}
.btn-buy .buy-action::after { content: " "; }
.btn-buy .buy-vendor {
  white-space: nowrap;
}
.btn-buy:hover {
  background: var(--bf-accent);
  border-color: var(--bf-accent);
  color: #fff;
  text-decoration: none;
}
.btn-buy.secondary-buy {
  background: #fff;
  color: var(--bf-accent-dark);
  border: 1px solid var(--line);
  box-shadow: none;
}
.btn-buy.secondary-buy:hover {
  background: var(--bf-accent-soft);
  color: var(--bf-accent-dark);
  border-color: var(--bf-accent);
}
.btn-review {
  background: #fff; color: var(--ink);
  border: 1px solid var(--line);
  padding: 8px 12px; border-radius: var(--radius);
  font-weight: 600; font-size: 12px; cursor: pointer;
  text-transform: uppercase; letter-spacing: .04em;
  text-decoration: none; text-align: center; display: block;
}
.btn-review:hover { border-color: var(--bf-accent); color: var(--bf-accent); text-decoration: none; }
.btn-buy.is-disabled,
.btn-review.is-disabled {
  background: var(--line-2);
  color: var(--ink-3);
  border-color: var(--line);
  box-shadow: none;
  cursor: default;
}
.compare-check {
  display: flex; align-items: center; gap: 6px;
  justify-content: center; padding-top: 4px;
  font-size: 12px; color: var(--ink-2); cursor: pointer;
}
.compare-check input { accent-color: var(--bf-accent); }
.compare-check.is-disabled {
  color: var(--ink-3);
  cursor: not-allowed;
  opacity: .55;
}
.compare-check.is-disabled input {
  cursor: not-allowed;
}

/* === 18. Tier dividers ==================================================== */
.tier-band {
  margin: 22px 0 6px;
  background: linear-gradient(135deg, var(--bf-accent) 0%, var(--bf-accent-dark) 100%);
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius-lg);
  display: flex; justify-content: space-between; align-items: center;
  position: relative; overflow: hidden;
}
.tier-band::after {
  content: ""; position: absolute;
  right: -40px; top: -40px;
  width: 160px; height: 160px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%);
}
.tier-band .tier-title { font-weight: 700; font-size: 17px; display: flex; align-items: center; gap: 10px; }
.tier-band .tier-meta { font-size: 13px; opacity: .92; position: relative; z-index: 1; }

/* === 19. Compare tray ==================================================== */
.compare-tray {
  position: fixed; left: 0; right: 0; bottom: 0;
  background: var(--ink); color: #fff;
  padding: 14px 24px;
  box-shadow: 0 -10px 24px rgba(0,0,0,.18);
  display: none; gap: 16px; align-items: center;
  z-index: 100;
}
.compare-tray.open { display: flex; }
.compare-tray .ct-label {
  font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
}
.compare-tray .ct-list {
  display: flex; gap: 8px; flex: 1; flex-wrap: wrap;
}
.compare-tray .ct-chip {
  background: rgba(255,255,255,.14);
  padding: 7px 12px; border-radius: var(--radius-pill);
  font-size: 12.5px;
  display: flex; align-items: center; gap: 8px;
}
.compare-tray .ct-chip button {
  background: transparent; border: 0;
  color: rgba(255,255,255,.7); cursor: pointer;
  font-size: 14px; padding: 0;
}
.compare-tray .ct-go {
  background: var(--bf-accent); color: #fff;
  padding: 11px 22px; border-radius: var(--radius-pill);
  border: 0; cursor: pointer; font-weight: 700; font-size: 13px;
  text-transform: uppercase; letter-spacing: .04em;
}
.table-compare {
  min-width: 92px;
  justify-content: flex-start;
}
.has-compare-modal { overflow: hidden; }
.compare-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: none;
  padding: 24px;
}
.compare-modal.is-open { display: block; }
.compare-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 24, 33, .72);
  backdrop-filter: blur(4px);
}
.compare-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(1320px, calc(100vw - 48px));
  max-height: calc(100vh - 48px);
  margin: 0 auto;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
}
.compare-modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(90deg, var(--bf-accent-soft), #fff 64%);
}
.compare-modal-head h2 {
  font-size: 24px;
  margin-top: 4px;
}
.compare-modal-close,
.compare-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--ink-2);
  cursor: pointer;
}
.compare-modal-close {
  width: 38px;
  height: 38px;
  font-size: 24px;
  line-height: 1;
}
.compare-remove {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 26px;
  height: 26px;
  font-size: 17px;
}
.compare-modal-close:hover,
.compare-remove:hover {
  border-color: var(--bf-accent);
  color: var(--bf-accent);
}
.compare-modal-body {
  overflow: auto;
  padding: 0;
}
.compare-table-wrap {
  overflow: auto;
}
.compare-table {
  width: 100%;
  min-width: 860px;
  border-collapse: separate;
  border-spacing: 0;
  table-layout: fixed;
}
.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  border-right: 1px solid var(--line-2);
  padding: 13px 14px;
  vertical-align: top;
  text-align: left;
}
.compare-table thead th {
  position: sticky;
  top: 0;
  z-index: 2;
  background: #fff;
  box-shadow: 0 1px 0 var(--line);
}
.compare-table thead th:first-child,
.compare-table tbody th {
  width: 150px;
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.compare-table tbody th {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
  border-right: 1px solid var(--line);
}
.compare-table tbody tr:nth-child(even) th,
.compare-table tbody tr:nth-child(even) td {
  background: #fafbfd;
}
.compare-table td > span {
  display: block;
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 2px;
}
.compare-product-head {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}
.compare-product-img {
  width: 100%;
  height: 112px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  overflow: hidden;
}
.compare-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.compare-product-head strong {
  color: var(--ink);
  font-size: 15px;
}
.compare-product-head span {
  color: var(--ink-2);
  font-size: 13px;
}
.compare-product-head em {
  color: var(--bf-accent);
  font-size: 11px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.compare-score {
  font-size: 28px;
  line-height: 1;
}
.compare-sizes {
  max-width: 280px;
  color: var(--ink-2) !important;
  line-height: 1.45;
}
.compare-links {
  display: grid;
  gap: 8px;
}
.btn-buy.compare-buy,
.compare-review {
  max-width: 180px;
}

/* === 20. Reviews list ===================================================== */
.review-section-head {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin: 0 0 22px;
  padding: 18px 20px;
  background:
    linear-gradient(90deg, var(--bf-accent-soft), rgba(255,255,255,.94)),
    #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.rev-list + .review-section-head { margin-top: 44px; }
.review-section-head h2 {
  font-size: 26px;
  line-height: 1.25;
  margin: 4px 0 0;
}
.review-section-head > span {
  align-items: center;
  align-self: center;
  background: #fff;
  border: 1px solid var(--bf-accent-light);
  border-radius: var(--radius-pill);
  color: var(--bf-accent-dark);
  display: inline-flex;
  font-size: 13px;
  font-weight: 700;
  padding: 7px 12px;
  text-transform: uppercase;
  letter-spacing: .04em;
  white-space: nowrap;
}
.rev-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.rev-card {
  background: #fff; border-radius: var(--radius-lg);
  border: 1px solid var(--line); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .18s, box-shadow .18s;
  text-decoration: none; color: inherit;
}
.rev-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); color: inherit; text-decoration: none; }
.rev-thumb {
  position: relative; aspect-ratio: 16/9;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(31,39,51,.86), rgba(55,102,116,.78)),
    radial-gradient(320px 150px at 74% 44%, rgba(255,255,255,.22), transparent 70%);
}
.rev-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.rev-thumb.has-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 45%, rgba(0,0,0,.25));
}
.rev-thumb > * { position: relative; z-index: 1; }
.rev-thumb.has-image img { position: absolute; inset: 0; z-index: 0; }
.rev-thumb .play {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.rev-thumb .play div {
  width: 66px; height: 44px; border-radius: 12px;
  background: rgba(220, 38, 38, .94);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
  position: relative;
  display: block;
  font-size: 0;
}
.rev-thumb .play div::before {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 16px; height: 20px;
  background: #fff;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translate(-42%, -50%);
}
.rev-thumb .corner {
  position: absolute; top: 14px; left: 14px;
  background: rgba(0,0,0,.6); color: #fff;
  padding: 5px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
}
.rev-thumb .date-tag {
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.55); color: #fff;
  padding: 6px 10px; border-radius: var(--radius-sm);
  font-size: 11px; font-weight: 600;
  text-transform: uppercase; letter-spacing: .04em;
  line-height: 1.2; text-align: center;
}
.rev-body { padding: 20px; display: flex; flex-direction: column; flex: 1; }
.rev-meta {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: var(--ink-3);
  margin-bottom: 10px; flex-wrap: wrap;
}
.rev-meta .score-tag {
  background: var(--bf-accent-soft); color: var(--bf-accent);
  padding: 4px 10px; border-radius: var(--radius-pill);
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
}
.rev-body h3 { font-size: 18px; margin-bottom: 10px; line-height: 1.3; }
.rev-excerpt { color: var(--ink-2); font-size: 14px; line-height: 1.6; margin: 0 0 14px; }
.pc-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 16px;
}
.pc {
  padding: 10px 12px; border-radius: var(--radius);
  font-size: 12.5px; line-height: 1.45;
}
.pc.pros { background: #e6f6ec; color: #155e2e; }
.pc.cons { background: #fce8e3; color: #7a2418; }
.pc b {
  display: block; font-size: 10.5px;
  text-transform: uppercase; letter-spacing: .06em;
  margin-bottom: 4px; font-weight: 700;
}
.rev-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 14px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
}
.rev-foot a { font-weight: 700; text-transform: uppercase; letter-spacing: .04em; font-size: 12px; }
.rev-foot .meta-sm { color: var(--ink-3); font-size: 12px; }

.review-proof-band {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.88)),
    #fff;
  border: 1px solid var(--line);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: .95fr 1.3fr;
  gap: 26px;
  align-items: center;
  margin: -10px 0 32px;
  padding: 24px 26px;
}
.review-proof-band h2 {
  font-size: 24px;
  line-height: 1.25;
  margin: 4px 0 0;
}
.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.review-proof-grid div {
  background: #fff;
  border: 1px solid rgba(87,124,133,.22);
  border-radius: var(--radius);
  padding: 16px;
}
.review-proof-grid strong {
  display: block;
  color: var(--bf-accent-dark);
  font-size: 26px;
  line-height: 1;
  margin-bottom: 6px;
}
.review-proof-grid span {
  color: var(--ink-2);
  display: block;
  font-size: 12px;
  line-height: 1.45;
}
.xenon-review-page .review-section-head {
  background:
    linear-gradient(90deg, rgba(238,243,244,.98), rgba(255,255,255,.96)),
    #fff;
  border-left-color: var(--bf-accent-dark);
}
.xenon-review-page .rev-card {
  border-color: rgba(87,124,133,.22);
  box-shadow: var(--shadow-sm);
}
.xenon-review-page .rev-card:hover {
  border-color: rgba(87,124,133,.45);
}
.xenon-review-page .rev-thumb {
  background:
    linear-gradient(135deg, rgba(23,35,42,.9), rgba(66,98,105,.82)),
    radial-gradient(320px 150px at 74% 44%, rgba(255,255,255,.22), transparent 70%);
}
.xenon-review-page .rev-thumb.has-image::after {
  background:
    linear-gradient(180deg, rgba(5,16,22,.18), rgba(5,16,22,.02) 44%, rgba(5,16,22,.38)),
    linear-gradient(135deg, rgba(66,98,105,.2), rgba(66,98,105,.06));
}
.xenon-review-page .rev-meta .score-tag {
  background: var(--bf-accent-soft);
  color: var(--bf-accent-dark);
}
.xenon-review-page .rev-foot a {
  color: var(--bf-accent-dark);
}

/* === 21. Recommended cards ================================================ */
.rec-intro {
  display: grid;
  grid-template-columns: .9fr 1.4fr;
  gap: 28px;
  align-items: start;
  margin: 0 0 30px;
}
.rec-intro h2 {
  font-size: 26px;
  line-height: 1.3;
}
.rec-intro p {
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0;
}
.rec-intro > * { min-width: 0; }
.rec-list { display: grid; gap: 30px; }
.rec-card {
  background:
    linear-gradient(90deg, #fff 0 320px, var(--bf-accent-soft) 320px, rgba(255,255,255,.92) 78%),
    #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg); overflow: hidden;
  display: grid; grid-template-columns: 320px 1fr auto;
  align-items: stretch;
  box-shadow: 0 1px 2px rgba(31,39,51,.03), 0 10px 28px rgba(31,39,51,.045);
}
.rec-card .rec-image {
  background: #fff;
  display: grid; place-items: center;
  padding: 12px;
  min-height: 260px;
  position: relative;
}
.rec-card .rec-image img {
  width: 100%;
  max-height: 238px;
  object-fit: contain;
  filter: drop-shadow(0 12px 20px rgba(31,39,51,.14));
}
.rec-card .rec-slider { overflow: hidden; }
.rec-slides {
  display: grid;
  height: 100%;
  place-items: center;
  width: 100%;
}
.rec-slides img {
  grid-area: 1 / 1;
  opacity: 0;
  transform: translateX(8px) scale(.985);
  transition: opacity .22s ease, transform .22s ease;
}
.rec-slides img.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
}
.rec-slide-btn {
  align-items: center;
  background: rgba(255,255,255,.88);
  border: 1px solid var(--line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  color: var(--ink-2);
  cursor: pointer;
  display: inline-flex;
  height: 34px;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 34px;
  z-index: 2;
}
.rec-slide-btn:hover {
  background: #fff;
  color: var(--bf-accent);
}
.rec-slide-btn.prev { left: 12px; }
.rec-slide-btn.next { right: 12px; }
.rec-slider.is-single .rec-slide-btn,
.rec-slider.is-single .rec-slide-dots {
  display: none;
}
.rec-slide-dots {
  bottom: 12px;
  display: flex;
  gap: 6px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  z-index: 2;
}
.rec-slide-dots span {
  background: rgba(31,39,51,.22);
  border-radius: 999px;
  height: 6px;
  width: 6px;
}
.rec-slide-dots span.is-active {
  background: var(--bf-accent);
  width: 18px;
}
.rec-card .pick-badge {
  align-items: center;
  box-sizing: border-box;
  display: flex;
  gap: 12px;
  width: 100%;
  max-width: 100%;
  background: linear-gradient(90deg, var(--bf-accent-soft), rgba(255,255,255,.96));
  border: 1px solid var(--bf-accent-light);
  border-radius: var(--radius);
  color: var(--ink);
  padding: 11px 14px;
  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 12px;
}
.rec-card .pick-badge::before {
  background: var(--bf-accent);
  border-radius: var(--radius-pill);
  content: "";
  flex: 0 0 6px;
  height: 34px;
}
.rec-card .rec-body {
  padding: 30px;
  background: linear-gradient(115deg, rgba(255,255,255,.72), rgba(255,255,255,.94) 74%);
}
.rec-card .rec-body h3 {
  color: var(--ink-2);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 6px;
}
.rec-price {
  align-items: baseline;
  display: inline-flex;
  gap: 8px;
  margin-bottom: 10px;
  padding: 5px 10px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.7);
}
.rec-price span {
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.rec-price strong {
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
  white-space: nowrap;
}
.rec-card .rec-body h4 {
  font-size: 11px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--bf-accent);
  margin-bottom: 8px;
}
.rec-card .rec-body p { color: var(--ink-2); font-size: 14px; line-height: 1.6; margin-bottom: 14px; }
.rec-card .rec-specs {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px;
  font-size: 12.5px;
}
.rec-card .rec-specs .spec {
  background: var(--bf-accent-soft); padding: 10px;
  border-radius: var(--radius-sm); text-align: center;
}
.rec-card .rec-specs .spec b { display: block; font-size: 16px; color: var(--ink); margin-bottom: 2px; }
.rec-card .rec-specs .spec span { color: var(--ink-3); font-size: 11px; text-transform: uppercase; letter-spacing: .04em; }
.rec-notes {
  margin: 14px 0 0;
  padding-left: 18px;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.6;
}
.rec-notes li { margin-bottom: 4px; }
.rec-card .rec-cta {
  padding: 30px 24px;
  display: flex; flex-direction: column; gap: 10px;
  border-left: 1px solid var(--line);
  justify-content: center; min-width: 200px;
  background: rgba(255,255,255,.62);
}
.xenon-recommended-page .affiliate-note,
.xenon-recommended-page .rec-card {
  border-color: rgba(87,124,133,.22);
}
.xenon-recommended-page .affiliate-note,
.xenon-recommended-page .rec-intro {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(238,243,244,.58)),
    #fff;
}
.xenon-recommended-page .rec-intro {
  border: 1px solid rgba(87,124,133,.18);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}
.xenon-recommended-page .rec-card {
  box-shadow: 0 1px 2px rgba(31,39,51,.03), 0 12px 30px rgba(66,98,105,.08);
}
.xenon-recommended-page .rec-card .rec-image {
  background: #fff;
}
.xenon-recommended-page .rec-card .pick-badge {
  background:
    linear-gradient(90deg, rgba(238,243,244,.98), rgba(255,255,255,.96)),
    #fff;
  border-color: rgba(87,124,133,.34);
  color: var(--ink);
}
.xenon-recommended-page .rec-card .pick-badge::before {
  background: var(--bf-accent-dark);
}
.xenon-recommended-page .rec-card .rec-body h4,
.xenon-recommended-page .rec-card .rec-body h3 {
  color: var(--bf-accent-dark);
}
.xenon-recommended-page .rec-price {
  border-color: rgba(87,124,133,.24);
}
.xenon-recommended-page .rec-card .rec-specs .spec {
  background: rgba(238,243,244,.86);
}
.xenon-recommended-page .rec-card .rec-cta {
  background:
    linear-gradient(180deg, rgba(238,243,244,.48), rgba(255,255,255,.96)),
    #fff;
  border-left-color: rgba(87,124,133,.18);
}
.xenon-recommended-page .rec-proof-band {
  margin-top: -10px;
}
.hid-recommended-page .affiliate-note,
.hid-recommended-page .rec-card {
  border-color: rgba(47,87,138,.22);
}
.hid-recommended-page .affiliate-note,
.hid-recommended-page .rec-intro {
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(235,241,248,.62)),
    #fff;
}
.hid-recommended-page .rec-intro {
  border: 1px solid rgba(47,87,138,.18);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 24px 26px;
}
.hid-recommended-page .rec-card {
  box-shadow: 0 1px 2px rgba(31,39,51,.03), 0 12px 30px rgba(47,87,138,.08);
}
.hid-recommended-page .rec-card .rec-image {
  background: #fff;
}
.hid-recommended-page .rec-card .pick-badge {
  background:
    linear-gradient(90deg, rgba(235,241,248,.98), rgba(255,255,255,.96)),
    #fff;
  border-color: rgba(47,87,138,.34);
  color: var(--ink);
}
.hid-recommended-page .rec-card .pick-badge::before {
  background: var(--bf-accent-dark);
}
.hid-recommended-page .rec-card .rec-body h4,
.hid-recommended-page .rec-card .rec-body h3 {
  color: var(--bf-accent-dark);
}
.hid-recommended-page .rec-price {
  border-color: rgba(47,87,138,.24);
}
.hid-recommended-page .rec-card .rec-specs .spec {
  background: rgba(235,241,248,.9);
}
.hid-recommended-page .rec-card .rec-cta {
  background:
    linear-gradient(180deg, rgba(235,241,248,.54), rgba(255,255,255,.96)),
    #fff;
  border-left-color: rgba(47,87,138,.18);
}
.hid-recommended-page .historical-rec {
  border-style: dashed;
}
.hid-recommended-page .rec-proof-band {
  margin-top: -10px;
}

/* === 22. Individual review page =========================================== */
.review-article {
  background: #fff; border-radius: var(--radius-lg);
  padding: 40px 48px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
}
.review-article header.r-head { margin-bottom: 28px; }
.review-article header.r-head-with-media {
  display: grid;
  grid-template-columns: minmax(190px, 260px) minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}
.r-head-media {
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(135deg, rgba(255,255,255,.98), rgba(235,241,248,.82)),
    radial-gradient(240px 150px at 70% 42%, rgba(47,87,138,.16), transparent 72%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  padding: 18px;
}
.r-head-media img {
  display: block;
  width: 100%;
  max-height: 220px;
  object-fit: contain;
}
.r-head-copy {
  min-width: 0;
}
.compact-actions {
  margin: 0;
}
.review-product-intro {
  display: grid;
  grid-template-columns: minmax(260px, 340px) minmax(0, 1fr);
  column-gap: 34px;
  row-gap: 20px;
  align-items: center;
  margin-bottom: 28px;
}
.review-product-copy {
  display: contents;
  min-width: 0;
}
.review-product-intro .r-head {
  grid-column: 2;
  margin-bottom: 14px;
}
.review-product-intro .affiliate-note {
  grid-column: 1 / -1;
  margin: 0;
}
.review-product-photo {
  align-self: center;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  overflow: visible;
}
.review-product-photo img {
  display: block;
  height: auto;
  margin: 0;
  max-height: 330px;
  object-fit: contain;
  padding: 0;
  width: 100%;
}
.review-product-photo figcaption {
  display: none;
}
.review-article .r-crumb {
  color: var(--ink-3); font-size: 12px;
  text-transform: uppercase; letter-spacing: .05em;
  margin-bottom: 12px;
}
.review-article h1 {
  font-size: 32px; font-weight: 700; line-height: 1.2;
  margin-bottom: 12px;
}
.review-article .lede {
  color: var(--ink-2);
  font-size: 18px;
  line-height: 1.65;
  max-width: 860px;
  margin: 18px 0 0;
}
.review-article .r-meta {
  display: flex; gap: 16px; flex-wrap: wrap;
  font-size: 13px; color: var(--ink-2);
}
.review-article .r-meta .score-tag {
  background: var(--bf-accent-soft); color: var(--bf-accent);
  padding: 5px 12px; border-radius: var(--radius-pill);
  font-weight: 700;
}
.review-article .page-actions {
  justify-content: flex-start;
  margin: 0 0 28px;
}

.r-hero-img {
  aspect-ratio: 16/9; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--bf-accent-dark), var(--bf-accent));
  margin: 24px 0 32px; position: relative;
  display: grid; place-items: center; color: rgba(255,255,255,.5);
}

.review-video {
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: #05080d;
  aspect-ratio: 16 / 9;
  margin: 24px 0 28px;
}
.review-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}
.review-video-link {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  color: #fff;
  overflow: hidden;
}
.review-video-link img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .86;
  transform: scale(1.01);
}
.review-video-link::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,8,13,.12), rgba(5,8,13,.42));
}
.review-video-link .review-video-title {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 18px;
  font-weight: 800;
  text-shadow: 0 2px 12px rgba(0,0,0,.44);
}
.review-video-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 2;
  width: 78px;
  height: 54px;
  border-radius: 14px;
  background: #d63b2f;
  transform: translate(-50%, -50%);
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
}
.review-video-play::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-left: 17px solid #fff;
  margin-left: 4px;
}

.r-quick-take {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 0 0 32px;
}
.r-quick-take > div {
  background: var(--bf-accent-soft);
  border: 1px solid color-mix(in srgb, var(--bf-accent) 22%, transparent);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.r-quick-take h3 {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--bf-accent);
  margin: 0 0 8px;
}
.r-quick-take p,
.r-quick-take ul {
  margin: 0;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.6;
}
.r-quick-take ul { padding-left: 18px; }

.article-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--bf-accent-soft), #fff 68%);
  padding: 16px 18px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.65;
  margin: 0 0 28px;
}
.article-note strong { color: var(--ink); }

.r-body {
  font-size: 16px; line-height: 1.75; color: var(--ink);
  max-width: none;
}
.r-body h2 { font-size: 24px; margin: 36px 0 14px; }
.r-body h3 { font-size: 18px; margin: 26px 0 10px; }
.r-body p { margin: 0 0 16px; }
.r-body ul, .r-body ol { padding-left: 22px; margin: 0 0 16px; }
.r-body li { margin-bottom: 6px; }
.r-body img { border-radius: var(--radius); margin: 16px 0; }

.review-detail-section {
  width: 100%;
  max-width: none;
  margin: 34px 0;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.review-detail-section:first-of-type { margin-top: 26px; }
.review-detail-head {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.review-detail-head .eyebrow-text {
  margin: 0;
}
.review-detail-head h2 {
  margin: 0;
  font-size: 25px;
}
.review-detail-head p {
  max-width: 100%;
  margin: 0;
  color: var(--ink-2);
  line-height: 1.65;
}
.review-copy {
  max-width: none;
  margin: 0 0 20px;
  color: var(--ink-2);
}
.review-copy p {
  margin: 0 0 14px;
  line-height: 1.75;
}
.review-copy p:last-child { margin-bottom: 0; }
.review-copy::after {
  content: "";
  display: table;
  clear: both;
}
.review-copy h3 {
  color: var(--ink);
  font-size: 18px;
  margin: 22px 0 8px;
}
.review-inline-figure {
  float: right;
  width: min(38%, 340px);
  margin: 4px 0 18px 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--bf-accent-soft));
  overflow: hidden;
}
.review-inline-figure img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 12px;
  margin: 0;
}
.review-inline-figure figcaption {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.84);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  padding: 9px 11px;
}
.review-inline-figure.left {
  float: left;
  margin: 4px 28px 18px 0;
}
.review-clean-list {
  max-width: 780px;
  margin: 0;
  padding-left: 20px;
  color: var(--ink-2);
}
.review-clean-list li {
  margin-bottom: 10px;
  line-height: 1.65;
}
.review-media-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .7fr);
  gap: 24px;
  align-items: start;
}
.review-media-copy .review-copy {
  margin-bottom: 0;
}
.review-media-copy .review-image-strip {
  margin: 0;
}
.review-media-copy.review-wrap-media {
  display: flow-root;
}
.review-media-copy.review-wrap-media .review-copy {
  max-width: none;
}
.review-media-copy.review-wrap-media .review-image-strip {
  float: right;
  margin: 0 0 18px 28px;
  width: min(39%, 360px);
}
.review-media-copy .review-beam-strip {
  grid-template-columns: 1fr;
}
.review-media-copy .review-image-strip img {
  height: 185px;
  padding: 10px;
}
.review-result-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-result {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fff, #fafbfc);
  padding: 18px;
}
.review-result.featured {
  border-color: color-mix(in srgb, var(--bf-accent) 36%, var(--line));
  background: linear-gradient(135deg, var(--bf-accent-soft), #fff 70%);
}
.review-result .result-label {
  display: block;
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.review-result h3 {
  margin: 0 0 10px;
  font-size: 18px;
}
.review-result p {
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.6;
  margin: 0 0 12px;
}
.result-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.result-stats span {
  border-radius: var(--radius-pill);
  background: var(--bf-accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.review-note-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.review-note-list li {
  margin: 0;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line-2);
  color: var(--ink-2);
}
.review-note-list strong {
  display: block;
  color: var(--ink);
  margin-bottom: 4px;
}
.review-image-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 20px;
}
.review-image-strip figure {
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--bf-accent-soft));
  overflow: hidden;
}
.review-image-strip img {
  display: block;
  width: 100%;
  height: 150px;
  object-fit: contain;
  padding: 12px;
  margin: 0;
}
.review-lightbox-trigger {
  cursor: zoom-in;
}
.review-lightbox-trigger:focus-visible {
  outline: 3px solid var(--bf-accent);
  outline-offset: 4px;
}
.review-image-strip figcaption {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  padding: 9px 11px;
}
.review-hero-gallery {
  margin: 24px 0 28px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.review-hero-gallery img {
  height: 230px;
}
.review-beam-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.review-two-strip {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.bf-native-chart-strip {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 0 0 20px;
}
.bf-native-chart {
  display: grid;
  grid-template-rows: 1fr auto;
  min-height: 285px;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(135deg, #fff, var(--bf-accent-soft));
}
.bf-native-chart-body {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: 22px 22px 18px;
}
.native-chart-top {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  justify-content: space-between;
}
.native-chart-kicker {
  display: block;
  margin-bottom: 3px;
  color: var(--bf-accent);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.native-chart-title {
  margin: 0;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.25;
}
.native-chart-value {
  color: var(--ink);
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
}
.native-chart-value small {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.kelvin-scale {
  display: grid;
  gap: 9px;
}
.kelvin-ribbon {
  position: relative;
  height: 66px;
  padding-top: 18px;
}
.kelvin-gradient {
  height: 34px;
  border: 1px solid rgba(31,39,51,.16);
  border-radius: 999px;
  background: linear-gradient(90deg, #ffd34f 0%, #fff5bd 25%, #f8fbff 50%, #bfe8ff 75%, #53ace1 100%);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.8), inset 0 -10px 18px rgba(31,39,51,.08);
}
.kelvin-marker {
  position: absolute;
  left: var(--kelvin-position, 50%);
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  color: var(--ink);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  white-space: nowrap;
}
.kelvin-marker::after {
  content: "";
  display: block;
  width: 2px;
  height: 46px;
  margin: 3px auto 0;
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 0 4px rgba(255,255,255,.75);
}
.kelvin-labels,
.lumen-ticks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 6px;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
  text-transform: uppercase;
}
.kelvin-labels span,
.lumen-ticks span {
  min-width: 0;
}
.lumen-meter {
  display: grid;
  gap: 10px;
}
.lumen-bar {
  position: relative;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(31,39,51,.16);
  border-radius: 999px;
  background:
    repeating-linear-gradient(90deg, rgba(255,255,255,.24) 0 8px, rgba(255,255,255,0) 8px 14px),
    linear-gradient(90deg, #f26b2f 0%, #ffb545 42%, #26b6af 76%, #3488d8 100%);
  box-shadow: inset 0 1px 2px rgba(255,255,255,.85);
}
.lumen-bar-fill {
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: transparent;
  box-shadow: inset 0 -10px 18px rgba(31,39,51,.08);
}
.lumen-marker {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--marker-position, 50%);
  width: 2px;
  background: var(--ink);
  box-shadow: 0 0 0 3px rgba(255,255,255,.76);
}
.lumen-marker span {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  padding: 3px 7px;
  color: var(--ink);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.native-chart-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}
.native-chart-stat {
  min-width: 0;
  border: 1px solid rgba(31,39,51,.08);
  border-radius: 8px;
  background: rgba(255,255,255,.72);
  padding: 9px 10px;
}
.native-chart-stat b {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.2;
}
.native-chart-stat span {
  display: block;
  margin-top: 3px;
  color: var(--ink-3);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}
.bf-native-chart figcaption {
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,.82);
  color: var(--ink-2);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  padding: 9px 11px;
}
.review-spec-list {
  max-width: 860px;
  margin: 18px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.review-spec-list div {
  display: grid;
  grid-template-columns: minmax(170px, .55fr) minmax(0, 1fr);
  gap: 18px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.review-spec-list div:last-child { border-bottom: 0; }
.review-spec-list dt {
  color: var(--ink-3);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.review-spec-list dd {
  margin: 0;
  color: var(--ink);
}

.review-facts-panel {
  border: 1px solid color-mix(in srgb, var(--bf-accent) 24%, var(--line));
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--bf-accent-soft), #fff 58%);
  margin-top: 28px;
  padding: 24px;
}
.review-facts-head {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}
.review-facts-head h3 {
  color: var(--ink);
  font-size: 22px;
  margin: 0;
}
.review-facts-head p {
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
  margin: 0;
}
.review-facts-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.review-facts-group {
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.review-facts-group h4 {
  background: #fff;
  border-bottom: 1px solid var(--line);
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  margin: 0;
  padding: 11px 14px;
  text-transform: uppercase;
}
.review-facts-group dl {
  margin: 0;
}
.review-facts-group div {
  display: grid;
  grid-template-columns: minmax(150px, .9fr) minmax(0, 1fr);
  gap: 12px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(227,231,237,.76);
}
.review-facts-group div:last-child {
  border-bottom: 0;
}
.review-facts-group dt {
  color: var(--ink-3);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .035em;
  line-height: 1.35;
  text-transform: uppercase;
}
.review-facts-group dd {
  color: var(--ink);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}
.review-facts-panel .review-facts-note {
  border-left: 4px solid var(--bf-accent);
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.65;
  margin: 28px 0 0;
  padding: 12px 14px 12px 16px;
  background: rgba(255,255,255,.72);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.review-support-cta {
  align-items: center;
  background: linear-gradient(135deg, var(--bf-accent-soft), #fff 72%);
  border: 1px solid color-mix(in srgb, var(--bf-accent) 28%, var(--line));
  border-radius: var(--radius);
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 22px 0;
  padding: 18px;
}
.review-support-cta strong {
  color: var(--ink);
  display: block;
  font-size: 14px;
  margin-bottom: 4px;
}
.review-support-cta p {
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
  margin: 0;
}
.review-support-cta .review-buy {
  white-space: nowrap;
}
.review-top-support {
  margin: 0 0 18px;
  padding: 14px 16px;
}
.review-top-support p {
  max-width: none;
}
.review-top-support + .page-actions {
  margin-top: 0;
}

.has-review-lightbox {
  overflow: hidden;
}
.review-lightbox {
  align-items: center;
  display: none;
  inset: 0;
  justify-content: center;
  padding: 28px;
  position: fixed;
  z-index: 9999;
}
.review-lightbox.is-open {
  display: flex;
}
.review-lightbox-backdrop {
  background: rgba(10, 14, 20, .88);
  inset: 0;
  position: absolute;
}
.review-lightbox-dialog {
  align-items: center;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  max-height: calc(100vh - 56px);
  max-width: min(1120px, calc(100vw - 56px));
  position: relative;
  width: 100%;
  z-index: 1;
}
.review-lightbox figure {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  grid-column: 2;
  margin: 0;
  overflow: hidden;
}
.review-lightbox img {
  background: #f6f7fa;
  display: block;
  height: auto;
  max-height: calc(100vh - 160px);
  object-fit: contain;
  width: 100%;
}
.review-lightbox figcaption {
  border-top: 1px solid var(--line);
  color: var(--ink-2);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  padding: 12px 16px;
}
.review-lightbox-close,
.review-lightbox-nav {
  align-items: center;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.36);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  color: var(--ink);
  cursor: pointer;
  display: inline-flex;
  font: inherit;
  justify-content: center;
  transition: transform .15s ease, background .15s ease;
}
.review-lightbox-close:hover,
.review-lightbox-nav:hover {
  background: #fff;
  transform: translateY(-1px);
}
.review-lightbox-close {
  font-size: 30px;
  height: 42px;
  position: absolute;
  right: 6px;
  top: -52px;
  width: 42px;
}
.review-lightbox-nav {
  font-size: 42px;
  height: 46px;
  position: relative;
  width: 46px;
  z-index: 2;
}
.review-lightbox-nav.prev {
  grid-column: 1;
  justify-self: start;
}
.review-lightbox-nav.next {
  grid-column: 3;
  justify-self: end;
}
.review-lightbox.is-single .review-lightbox-nav {
  display: none;
}
.review-lightbox-count {
  color: rgba(255,255,255,.78);
  font-size: 12px;
  font-weight: 700;
  grid-column: 2;
  justify-self: center;
  letter-spacing: .06em;
  margin-top: 12px;
  text-transform: uppercase;
}

.review-pick-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 18px 0 30px;
  width: min(980px, calc(100vw - 96px));
  max-width: none;
}
.review-pick {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: #fff;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}
.review-pick-media {
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #fff, var(--bf-accent-soft));
  display: grid;
  place-items: center;
  overflow: hidden;
}
.review-pick-media img {
  width: 100%;
  height: 104px;
  object-fit: contain;
  padding: 8px;
  margin: 0;
}
.review-pick-content {
  min-width: 0;
}
.review-pick .pick-label {
  display: block;
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.review-pick h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--ink);
}
.review-pick p {
  margin-bottom: 12px;
  color: var(--ink-2);
  font-size: 14.5px;
  line-height: 1.55;
}
.review-pick .metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
}
.review-pick .metric-row span {
  border-radius: var(--radius-pill);
  background: var(--bf-accent-soft);
  color: var(--ink);
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 700;
}
.review-buy-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.review-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 8px 13px;
  border-radius: var(--radius-pill);
  background: var(--bf-accent);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.review-buy.secondary {
  background: #fff;
  color: var(--bf-accent);
  border: 1px solid color-mix(in srgb, var(--bf-accent) 38%, var(--line));
}
.review-buy:hover {
  color: #fff;
  background: var(--bf-accent-dark);
  text-decoration: none;
}
.review-buy.secondary:hover {
  color: var(--bf-accent-dark);
  background: var(--bf-accent-soft);
}

.r-spec-table {
  width: 100%; border-collapse: collapse;
  margin: 16px 0 24px; font-size: 14px;
}
.r-spec-table th, .r-spec-table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.r-spec-table th {
  background: var(--bf-accent-soft);
  color: var(--bf-accent);
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: 12px;
  font-weight: 700;
}

/* === 23. News list / article body ========================================= */
.news-featured {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  margin-bottom: 38px;
}
.news-featured > * {
  min-width: 0;
}
.news-featured-media {
  min-height: 320px;
  background: var(--line-2);
}
.news-featured-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.news-featured-body {
  padding: 34px 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.news-featured .date,
.news-article-head .date {
  color: var(--bf-accent);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.news-featured h2 {
  font-size: 29px;
  line-height: 1.18;
  margin: 10px 0 14px;
  overflow-wrap: anywhere;
}
.news-featured h2 a { color: var(--ink); }
.news-featured h2 a:hover { color: var(--bf-accent); text-decoration: none; }
.news-featured p {
  color: var(--ink-2);
  line-height: 1.7;
  margin-bottom: 18px;
}
.news-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.news-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: var(--radius-pill);
  background: var(--line-2);
  color: var(--ink-2);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.news-list { display: grid; gap: 24px; }
.news-item {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  overflow: hidden;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  transition: box-shadow .15s;
}
.news-item:hover { box-shadow: var(--shadow); }
.news-thumb {
  display: block;
  min-height: 100%;
  background: var(--line-2);
}
.news-thumb img {
  width: 100%;
  height: 100%;
  min-height: 190px;
  object-fit: cover;
}
.news-thumb[href]:hover {
  opacity: .92;
}
.news-copy {
  min-width: 0;
  padding: 24px 28px;
}
.news-item .date {
  color: var(--bf-accent); font-weight: 700;
  font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 6px;
}
.news-item h3 { font-size: 20px; margin-bottom: 10px; }
.news-item h3 a { color: var(--ink); }
.news-item h3 a:hover { color: var(--bf-accent); text-decoration: none; }
.news-item p { color: var(--ink-2); margin: 0 0 12px; }
.news-item .read-link {
  font-weight: 700; font-size: 12px;
  text-transform: uppercase; letter-spacing: .04em;
}
.news-article-prose { margin-top: 38px; }
.news-article-prose .r-crumb {
  color: var(--ink-3);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-bottom: 18px;
}
.news-article-head h1 {
  margin-top: 8px;
}
.article-hero-image {
  margin: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line-2);
}
.article-hero-image img {
  display: block;
  width: 100%;
  max-height: 430px;
  object-fit: cover;
}
.article-hero-image figcaption {
  padding: 12px 16px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.article-end-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.logo-redesign-panel {
  display: grid;
  gap: 22px;
  margin: 28px 0 34px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, var(--line-2));
  box-shadow: var(--shadow-sm);
}
.logo-redesign-copy h2 {
  margin-top: 6px;
}
.logo-redesign-copy p {
  color: var(--ink-2);
  margin-bottom: 0;
}
.logo-redesign-visual {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 14px;
}
.logo-redesign-visual figure {
  display: grid;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.logo-redesign-visual span {
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.logo-redesign-visual img {
  width: 100%;
  height: 86px;
  object-fit: contain;
}
.logo-redesign-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bf-accent);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
.guide-article {
  max-width: 1180px;
}
.prose.guide-article {
  max-width: 1180px;
}
.guide-decision {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 28px 0 26px;
}
.guide-decision section {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, #fff, var(--line-2));
  box-shadow: var(--shadow-sm);
}
.guide-decision span {
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.guide-decision h2 {
  margin: 7px 0 10px;
  font-size: 24px;
}
.guide-decision p {
  margin-bottom: 18px;
  color: var(--ink-2);
}
.guide-decision-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.guide-next-step {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  margin: 24px 0 30px;
  padding: 20px 22px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--bf-accent);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.guide-next-step p {
  margin: 6px 0 0;
  color: var(--ink-2);
  line-height: 1.65;
}
.guide-next-step strong {
  color: var(--ink);
}
.guide-next-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}
.guide-next-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  background: var(--line-2);
  color: var(--ink);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.guide-next-links a:hover {
  border-color: color-mix(in srgb, var(--bf-accent) 45%, var(--line));
  color: var(--bf-accent);
  text-decoration: none;
}
.guide-path span {
  color: var(--bf-accent);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.guide-check-grid,
.guide-tech-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 18px 0 28px;
}
.guide-check-grid div,
.guide-tech-grid section,
.guide-path {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.guide-check-grid div {
  padding: 18px;
}
.guide-check-grid strong {
  display: block;
  margin-bottom: 7px;
  color: var(--ink);
}
.guide-check-grid p,
.guide-tech-grid p,
.guide-path p {
  color: var(--ink-2);
}
.guide-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin: 22px 0 28px;
}
.guide-image-grid figure,
.article-hero-image {
  margin-left: 0;
  margin-right: 0;
}
.guide-image-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line-2);
}
.guide-image-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
.guide-image-grid figcaption {
  padding: 12px 14px;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.5;
}
.guide-tech-grid section {
  padding: 18px;
}
.guide-tech-grid img {
  width: 100%;
  height: 165px;
  object-fit: contain;
  border-radius: var(--radius);
  background: var(--line-2);
  margin-bottom: 14px;
}
.guide-tech-grid section:nth-child(2) img,
.guide-tech-grid section:nth-child(4) img {
  object-fit: cover;
}
.guide-tech-grid h3 {
  margin-top: 0;
}
.guide-tech-grid ul {
  padding-left: 18px;
  margin-bottom: 0;
}
.guide-tech-grid li {
  color: var(--ink-2);
}
.guide-path {
  padding: 24px;
  margin: 18px 0;
}
.guide-path > div {
  margin-bottom: 12px;
}
.guide-path h3 {
  margin-top: 5px;
  font-size: 22px;
}
.guide-path ol {
  margin-top: 12px;
}
.guide-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 34px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--line-2);
}
.kelvin-guide {
  display: grid;
  gap: 10px;
  margin: 18px 0 24px;
}
.kelvin-guide div {
  display: grid;
  grid-template-columns: 34px 130px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.kelvin-guide span {
  display: block;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: 50%;
}
.kelvin-guide strong {
  color: var(--ink);
}
.kelvin-guide em {
  color: var(--ink-2);
  font-size: 13px;
  font-style: normal;
  line-height: 1.45;
}

/* === 24. Static page prose ================================================ */
.prose {
  background: #fff; border-radius: var(--radius-lg);
  padding: 48px 56px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  max-width: 920px; margin: 0 auto;
  font-size: 16px; line-height: 1.75;
}
.prose h1 { font-size: 32px; font-weight: 700; margin-bottom: 8px; }
.prose .lede {
  color: var(--ink-2); font-size: 18px; font-weight: 400;
  margin: 0 0 28px; padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.prose h2 { font-size: 24px; margin: 36px 0 14px; }
.prose h3 { font-size: 18px; margin: 24px 0 10px; }
.prose p { margin: 0 0 16px; color: var(--ink); }
.prose ul, .prose ol { padding-left: 24px; margin: 0 0 16px; }
.prose li { margin-bottom: 6px; }
.prose a { font-weight: 600; }
.prose blockquote {
  border-left: 4px solid var(--bf-accent);
  padding: 6px 18px;
  margin: 18px 0;
  color: var(--ink-2);
  background: var(--bf-accent-soft);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.prose code {
  background: var(--line-2); padding: 2px 6px;
  border-radius: 4px; font-size: 14px;
}
.prose .toc {
  background: var(--bf-accent-soft);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin: 0 0 24px;
}
.prose .toc h4 {
  font-size: 12px; text-transform: uppercase;
  letter-spacing: .06em; color: var(--bf-accent);
  margin-bottom: 10px;
}
.prose .toc ul { list-style: none; padding: 0; columns: 2; column-gap: 24px; }
.prose .toc li { margin-bottom: 6px; }

.terms-prose {
  max-width: 1040px;
}
.terms-intro .date {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--bf-accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.terms-alert {
  margin: 4px 0 22px;
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  background: linear-gradient(90deg, var(--bf-accent-soft), #fff);
  color: var(--ink-2);
  line-height: 1.65;
}
.terms-alert strong {
  color: var(--ink);
}
.terms-alert.secondary {
  margin: 36px 0 0;
  background: var(--line-2);
  border-left-color: var(--ink-3);
}
.terms-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 30px;
}
.terms-summary-grid div {
  padding: 16px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.terms-summary-grid strong {
  display: block;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 6px;
}
.terms-summary-grid span {
  display: block;
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.55;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, .65fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 30px;
}
.about-story,
.about-support,
.about-promise {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.about-story {
  padding: 34px 38px;
}
.about-story h2,
.about-support h2,
.about-promise h2 {
  font-size: 28px;
  margin-bottom: 14px;
}
.about-story p,
.about-support p,
.about-promise p {
  color: var(--ink-2);
  line-height: 1.75;
  margin: 0 0 16px;
}
.about-story p:last-child,
.about-support p:last-child,
.about-promise p:last-child {
  margin-bottom: 0;
}
.about-principles {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.about-photo {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin: 0;
  overflow: hidden;
}
.about-photo img {
  aspect-ratio: 4 / 5;
  display: block;
  height: auto;
  object-fit: cover;
  object-position: center 30%;
  width: 100%;
}
.about-photo figcaption {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 11px 14px 13px;
}
.about-principles div {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  padding: 18px 20px;
  box-shadow: var(--shadow-sm);
}
.about-principles strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}
.about-principles span {
  display: block;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.about-support {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .75fr);
  gap: 28px;
  padding: 34px 38px;
  margin-bottom: 30px;
}
.about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.about-actions .page-action.primary {
  background: var(--bf-accent);
  color: #fff;
  box-shadow: none;
}
.about-actions .page-action.primary:hover {
  background: var(--bf-accent-dark);
  color: #fff;
}
.page-action.secondary.light {
  background: #fff;
  border: 1.5px solid var(--bf-accent);
  color: var(--bf-accent-dark);
}
.page-action.secondary.light:hover {
  background: var(--bf-accent-soft);
  color: var(--bf-accent-dark);
}
.about-no-list {
  background: var(--bf-accent-soft);
  border-radius: var(--radius);
  padding: 24px;
  align-self: start;
}
.about-no-list h3 {
  font-size: 18px;
  margin-bottom: 14px;
}
.about-no-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.about-no-list li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  font-size: 14px;
  line-height: 1.55;
}
.about-no-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bf-accent);
  background: #fff;
}
.about-promise {
  display: grid;
  grid-template-columns: minmax(240px, .7fr) minmax(0, 1.3fr);
  gap: 28px;
  align-items: start;
  padding: 30px 34px;
  margin-bottom: 30px;
  border-left: 4px solid var(--bf-accent);
}

/* === 25. Forms (contact) ================================================== */
.form-grid { display: grid; gap: 16px; margin-top: 16px; }
.form-grid .row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field label {
  display: block;
  font-size: 13px; font-weight: 600;
  color: var(--ink-2); margin-bottom: 6px;
  text-transform: uppercase; letter-spacing: .04em;
}
.field input, .field textarea, .field select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 15px;
  font-family: inherit;
  background: var(--surface);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0; border-color: var(--bf-accent);
  box-shadow: 0 0 0 3px var(--bf-accent-soft);
}
.field textarea { resize: vertical; min-height: 140px; }

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
  gap: 24px;
  align-items: stretch;
  margin-bottom: 28px;
}
.contact-panel,
.contact-side,
.contact-grid article,
.method-hero,
.score-explain,
.test-prose {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.contact-panel {
  padding: 34px 38px;
}
.contact-panel h2,
.method-hero h2,
.score-explain h2 {
  font-size: 28px;
  margin-bottom: 12px;
}
.contact-panel p,
.method-hero p,
.score-explain p,
.contact-grid p {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0 0 16px;
}
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}
.contact-actions .page-action.primary {
  background: var(--bf-accent);
  color: #fff;
}
.contact-actions .page-action.primary:hover {
  background: var(--bf-accent-dark);
  color: #fff;
}
.contact-note {
  font-size: 13px;
  margin-top: 14px !important;
}
.contact-side {
  display: grid;
  gap: 12px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.94), rgba(242,244,247,.92)),
    url("../img/home/testing-led-detail.jpg");
  background-size: cover;
  background-position: center;
}
.contact-form-shell {
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 26px;
}
.contact-form-intro {
  max-width: 820px;
  padding: 4px 4px 18px;
}
.contact-form-intro h2 {
  font-size: 28px;
  margin: 6px 0 12px;
}
.contact-form-intro p {
  color: var(--ink-2);
  line-height: 1.7;
  margin: 0;
}
.contact-form-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}
.contact-form-card iframe {
  display: block;
  width: 100%;
  height: 960px;
  border: 0;
  background: #fff;
}
.contact-side div {
  background: rgba(255,255,255,.9);
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  padding: 16px 18px;
}
.contact-side strong,
.score-scale strong,
.method-summary-grid strong {
  display: block;
  color: var(--ink);
  margin-bottom: 6px;
}
.contact-side span,
.score-scale span,
.method-summary-grid span {
  display: block;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 30px;
}
.contact-grid article {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 18px;
  overflow: hidden;
}
.contact-grid img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.contact-grid article > div {
  padding: 22px 22px 22px 0;
}
.contact-grid h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.request-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: 24px;
  align-items: start;
  margin-bottom: 28px;
}
.request-form,
.request-helper {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.request-form {
  padding: 28px;
}
.request-form-head {
  max-width: 820px;
  margin-bottom: 4px;
}
.request-form-head h2,
.request-helper h2 {
  font-size: 28px;
  margin: 6px 0 10px;
}
.request-form-head p,
.request-helper {
  color: var(--ink-2);
  line-height: 1.65;
}
.field.full {
  grid-column: 1 / -1;
}
.request-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
.request-actions {
  margin-top: 18px;
}
.request-status {
  color: var(--ink-2);
  font-size: 13px;
  line-height: 1.35;
}
.request-status.is-error {
  color: #b64040;
}
.request-helper {
  position: sticky;
  top: 112px;
  padding: 24px;
}
.request-checks {
  list-style: none;
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 18px 0 20px;
}
.request-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.55;
}
.request-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: 2px solid var(--bf-accent);
  background: #fff;
}
.request-helper-note {
  border: 1px solid var(--line);
  border-left: 4px solid var(--bf-accent);
  border-radius: var(--radius);
  background: var(--bf-accent-soft);
  padding: 15px 16px;
}
.request-helper-note strong,
.request-helper strong {
  display: block;
  color: var(--ink);
  margin-bottom: 5px;
}
.request-helper-note span,
.request-helper span {
  display: block;
  color: var(--ink-2);
  font-size: 13.5px;
  line-height: 1.55;
}

.method-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  align-items: center;
  padding: 34px 38px;
  margin-bottom: 28px;
}
.method-hero figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line-2);
}
.method-hero img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}
.method-hero figcaption {
  color: var(--ink-2);
  font-size: 12.5px;
  line-height: 1.45;
  padding: 10px 12px;
}
.method-checks {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
  padding: 0;
}
.method-checks li {
  position: relative;
  padding-left: 24px;
  color: var(--ink-2);
  line-height: 1.55;
}
.method-checks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid var(--bf-accent);
  background: #fff;
}
.score-explain {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: start;
  padding: 30px 34px;
  margin-bottom: 28px;
  border-left: 4px solid var(--bf-accent);
}
.score-scale,
.method-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.score-scale div,
.method-summary-grid div {
  background: var(--bf-accent-soft);
  border: 1px solid rgba(84,98,117,.13);
  border-radius: var(--radius);
  padding: 15px 16px;
}
.test-prose {
  padding: 34px 38px;
  max-width: none;
  width: 100%;
}
.test-prose h2 {
  padding-top: 10px;
}
.test-prose .terms-alert.secondary {
  margin-top: 28px;
}

/* === 26. Utility classes ================================================== */
.bf-cta-banner {
  background: linear-gradient(135deg, var(--bf-accent), var(--bf-accent-dark));
  color: #fff; border-radius: var(--radius-lg);
  padding: 28px 32px;
  margin-top: 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.bf-cta-banner h3 { color: #fff; margin-bottom: 4px; }
.bf-cta-banner p { margin: 0; opacity: .9; }
.bf-cta-banner .btn {
  background: #fff; color: var(--bf-accent-dark);
  padding: 12px 24px; border-radius: var(--radius-pill);
  border: 0; font-weight: 700; cursor: pointer;
  text-transform: uppercase; letter-spacing: .04em; font-size: 13px;
  text-decoration: none;
}
.bf-cta-banner .btn:hover { transform: translateY(-1px); color: var(--bf-accent-dark); }

/* === 27. Responsive ======================================================= */
@media (max-width: 1100px) {
  .with-rail { grid-template-columns: 1fr; }
  .mobile-filter-bar { display: block; margin: 0 0 14px; }
  .filter-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 13px 16px;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
    cursor: pointer;
  }
  .filter-toggle > span:first-child {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bf-accent);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
  }
  .filter-count {
    color: var(--ink-2);
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
  }
  .filter-rail {
    display: none;
    position: static;
    max-height: none;
    margin-bottom: 18px;
  }
  .filter-rail.is-open { display: block; }
  .filter-close {
    display: inline-flex;
    background: var(--bf-accent-soft);
    color: var(--bf-accent);
    border: 0;
    border-radius: var(--radius-pill);
    padding: 7px 12px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .04em;
    cursor: pointer;
  }
  .ref-row { grid-template-columns: auto minmax(0, 1fr); }
  .ref-row .ref-note {
    grid-column: 2;
    justify-self: start;
  }
  .news-featured {
    grid-template-columns: 1fr;
  }
  .news-featured-media {
    min-height: 240px;
  }
  .news-item {
    grid-template-columns: 170px minmax(0, 1fr);
  }
  .news-thumb img {
    min-height: 170px;
  }
  .guide-decision,
  .guide-tech-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .bulb-card { grid-template-columns: 1fr 1fr; gap: 18px; }
  .rev-list { grid-template-columns: 1fr; }
  .review-proof-band { grid-template-columns: 1fr; }
  .review-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .chart-proof-band { grid-template-columns: 1fr; }
  .chart-proof-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .bf-hero { grid-template-columns: 1fr; padding: 44px 32px; }
  .seo-intro { grid-template-columns: 1fr; gap: 14px; }
  .testing-proof { grid-template-columns: 1fr; }
  .scoring-proof { grid-template-columns: 1fr; }
  .home-picks-head { align-items: start; flex-direction: column; gap: 12px; }
  .home-pick-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cat-grid, .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .video-review-section .feat-grid { grid-template-columns: 1fr; }
  .video-review-section .feat-card-featured { grid-row: auto; }
  .video-review-section .feat-card:not(.feat-card-featured) {
    grid-template-columns: 168px minmax(0, 1fr);
  }
  .browse-types { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .rec-intro { grid-template-columns: 1fr; gap: 12px; }
  .rec-card { grid-template-columns: 1fr; }
  .rec-card .rec-cta { border-left: 0; border-top: 1px solid var(--line); }
  .tier-filter-panel { grid-template-columns: 1fr; }
  .category-hero-grid { grid-template-columns: 1fr; min-height: 0; }
  .route-grid { grid-template-columns: 1fr; }
  .landing-product-grid { grid-template-columns: 1fr; }
  .landing-feature { grid-template-columns: 1fr; }
  .about-layout,
  .about-support,
  .about-promise { grid-template-columns: 1fr; }
  .bf-footer .container {
    grid-template-columns: repeat(2, minmax(180px, 1fr));
    align-items: start;
    row-gap: 22px;
  }
  .bf-footer .container > div:not(.bottom-bar) {
    align-items: flex-start;
  }
  .bf-footer .container > div:nth-of-type(4):not(.bottom-bar) {
    grid-column: auto;
    justify-self: start;
  }
  .bf-footer .container:not(:has(> div:nth-of-type(4):not(.bottom-bar))) > div:nth-of-type(3):not(.bottom-bar) {
    grid-column: 2;
    justify-self: start;
  }
}
@media (min-width: 760px) and (max-width: 1100px) {
  .review-pick-grid {
    width: 100%;
    grid-template-columns: 1fr;
  }
  .rec-card {
    grid-template-columns: minmax(280px, 40%) minmax(0, 1fr);
  }
  .rec-card .rec-image {
    min-height: 100%;
    padding: 14px;
  }
  .rec-card .rec-image img {
    max-height: 300px;
  }
  .rec-card .rec-cta {
    grid-column: 1 / -1;
    flex-direction: row;
    padding: 18px 30px;
  }
  .rec-card .rec-cta a {
    flex: 1 1 0;
  }
  .rec-card .rec-specs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 1040px) {
  :root { --anchor-offset: 112px; }
  .bf-header .container { grid-template-columns: 1fr auto; gap: 12px; }
  .bf-nav { display: none; }
  .bf-search-mini { display: none; }
  .bf-header-search { display: none; }
  .bf-header-right { display: none; }
  .bf-burger { display: inline-flex; }
  .bf-nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; background: #fff; flex-direction: column; padding: 12px; gap: 4px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--line); align-items: stretch; }
  .bf-nav.open a, .bf-nav.open .bf-nav-link { text-align: left; width: 100%; }
  .bf-nav.open .bf-nav-item { display: grid; }
  .bf-nav.open .submenu,
  .bf-nav.open .submenu-products {
    display: grid;
    grid-template-columns: 1fr;
    min-width: 0;
    position: static;
    box-shadow: none;
    padding: 0 0 8px 12px;
    transform: none;
  }
}
@media (max-width: 720px) {
  :root { --anchor-offset: 96px; }
  html, body { overflow-x: hidden; }
  .container { padding-left: 16px; padding-right: 16px; }
  .news-featured-body {
    padding: 24px;
  }
  .news-featured h2 {
    font-size: 24px;
  }
  .news-item {
    grid-template-columns: 1fr;
  }
  .news-thumb img {
    height: 190px;
    min-height: 0;
  }
  .news-copy {
    padding: 20px;
  }
  .logo-redesign-panel {
    padding: 20px;
  }
  .logo-redesign-visual {
    grid-template-columns: 1fr;
  }
  .logo-redesign-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }
  .logo-redesign-visual img {
    height: 76px;
  }
  .guide-decision,
  .guide-check-grid,
  .guide-image-grid,
  .guide-tech-grid {
    grid-template-columns: 1fr;
  }
  .guide-next-step {
    grid-template-columns: 1fr;
    align-items: start;
    padding: 18px;
  }
  .guide-next-links {
    justify-content: flex-start;
  }
  .guide-decision section {
    padding: 20px;
  }
  .guide-decision h2 {
    font-size: 22px;
  }
  .guide-image-grid img {
    height: 210px;
  }
  .guide-tech-grid img {
    height: 145px;
  }
  .guide-path {
    padding: 20px;
  }
  .kelvin-guide div {
    grid-template-columns: 30px minmax(0, 1fr);
    align-items: start;
  }
  .kelvin-guide em {
    grid-column: 2;
  }
  html { font-size: 15px; }
  .bf-logo img { width: 160px; }
  .bf-header:not(.is-scrolled) .bf-logo img { width: 190px; }
  .chart-scroll-top { top: 74px; }
  .chart-sticky-head { top: 104px; }
  .bf-hero {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    padding: 24px 18px;
    margin-top: 18px;
  }
  .bf-hero { background-position: 36% center; }
  .bf-hero > * { min-width: 0; max-width: 100%; }
  .bf-hero .eyebrow {
    display: flex;
    align-items: flex-start;
    width: 100%;
    max-width: 100%;
    white-space: normal;
    line-height: 1.35;
  }
  .bf-hero h1 {
    max-width: 100%;
    font-size: 26px;
    overflow-wrap: break-word;
  }
  .bf-hero p.lede, .seo-intro p { max-width: 100%; overflow-wrap: break-word; }
  .bf-hero-actions .btn {
    box-sizing: border-box;
    max-width: 100%;
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }
  .bf-hero-stats { grid-template-columns: 1fr; }
  .stat-tile {
    padding: 15px;
  }
  .stat-tile .n {
    font-size: 26px;
    overflow-wrap: break-word;
  }
  .stat-tile .l {
    font-size: 11px;
  }
  .section-h {
    min-width: 0;
  }
  .section-h h2,
  .section-h .sub {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .home-direction-band {
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
  }
  .home-direction-band {
    margin-top: 34px;
    padding-top: 22px;
    padding-bottom: 22px;
  }
  main > .container.home-direction-band {
    padding-top: 22px;
    padding-bottom: 22px;
  }
  .home-direction-band::before {
    inset: 0 16px;
  }
  .home-lane-kicker {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 5px 8px;
    margin: 0 22px 16px;
    border-radius: var(--radius);
  }
  .home-lane-kicker em {
    grid-column: 2;
  }
  .direction-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 0 22px 22px;
  }
  .direction-header h2 {
    font-size: 25px;
  }
  .direction-header .page-action {
    width: 100%;
    justify-content: center;
  }
  .direction-facts {
    grid-template-columns: 1fr;
    margin: 20px 22px 24px;
  }
  .compact-direction-head {
    margin: 22px 22px 16px;
  }
  .home-direction-band .cat-grid {
    margin-left: 22px;
    margin-right: 22px;
  }
  .testing-proof { gap: 24px; margin-top: 34px; }
  .testing-proof-copy h2 { font-size: 26px; }
  .testing-proof-gallery { grid-template-columns: 1fr; grid-template-rows: none; }
  .testing-shot,
  .testing-shot.large { min-height: 210px; }
  .scoring-proof {
    margin-top: 34px;
    padding: 24px;
  }
  .scoring-proof-copy h2 { font-size: 24px; }
  .scoring-proof-grid { grid-template-columns: 1fr; }
  .home-picks { margin-top: 40px; padding-top: 32px; }
  .home-picks-head h2 { font-size: 24px; }
  .home-pick-grid { grid-template-columns: 1fr; }
  .home-pick {
    display: grid;
    grid-template-columns: 104px minmax(0, 1fr);
  }
  .home-pick-media {
    min-height: 0;
    aspect-ratio: auto;
    padding: 12px;
  }
  .home-pick-media img { max-height: 96px; }
  .home-pick-body {
    border-top: 0;
    border-left: 1px solid var(--line);
    padding: 15px 16px;
  }
  .video-review-section .section-h { align-items: start; }
  .video-review-section .section-h h2 { font-size: 26px; }
  .video-review-section .feat-card-featured .feat-body {
    padding: 18px;
  }
  .video-review-section .feat-card-featured .feat-body h3 {
    font-size: 18px;
  }
  .video-review-section .feat-card:not(.feat-card-featured) {
    display: flex;
    min-height: 0;
  }
  .video-review-section .feat-card:not(.feat-card-featured) .feat-thumb {
    aspect-ratio: 16 / 9;
    min-height: 0;
  }
  .video-review-section .feat-card:not(.feat-card-featured) .feat-body {
    padding: 18px;
  }
  .video-review-section .feat-card:not(.feat-card-featured) .feat-body h3 {
    font-size: 16px;
  }
  .video-review-section .feat-card:not(.feat-card-featured) .feat-body p {
    font-size: 13.5px;
    line-height: 1.55;
  }
  .cat-grid, .feat-grid { grid-template-columns: 1fr; }
  .browse-type-links { grid-template-columns: 1fr; }
  .bulb-card { grid-template-columns: 1fr; padding: 18px; }
  .b-id { grid-template-columns: 96px minmax(0, 1fr); }
  .b-thumb { width: 96px; height: 82px; }
  .pf-row { grid-template-columns: 44px minmax(92px, 1fr) 76px; gap: 8px; }
  .specs-mini { grid-template-columns: 1fr 1fr; }
  .compare-tray { align-items: flex-start; flex-direction: column; }
  .chart-toolbar { grid-template-columns: 1fr; }
  .beam-tabs { grid-template-columns: 1fr; }
  .tier-filter-controls { grid-template-columns: 1fr; }
  .ref-row { grid-template-columns: 1fr; }
  .chart-table { min-width: 2200px; }
  .chart-table-oe { min-width: 1500px; }
  .bf-footer { padding: 16px 0 12px; }
  .bf-footer .container {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 18px;
  }
  .bf-footer .container > div:not(.bottom-bar) {
    display: block;
  }
  .bf-footer .container > div:nth-of-type(4):not(.bottom-bar) {
    grid-column: auto;
    justify-self: start;
  }
  .bf-footer .container:not(:has(> div:nth-of-type(4):not(.bottom-bar))) > div:nth-of-type(3):not(.bottom-bar) {
    grid-column: auto;
    justify-self: start;
  }
  .bf-footer h4 { margin-bottom: 6px; }
  .bf-footer ul { gap: 6px; }
  .bf-footer .bottom-bar { gap: 8px 14px; }
  .bf-footer .disclaimer {
    font-size: 10px;
    line-height: 1.4;
  }
  .category-hero-grid { padding: 34px 24px 40px; gap: 24px; }
  .category-hero-grid > * { min-width: 0; }
  .category-hero .crumb {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .category-hero .eyebrow {
    display: inline-block;
    max-width: 100%;
    white-space: normal;
  }
  .category-hero h1 {
    font-size: 30px;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }
  .category-hero p {
    font-size: 15.5px;
    overflow-wrap: anywhere;
  }
  .category-hero h1,
  .category-hero p,
  .category-actions,
  .category-hero-panel {
    max-width: min(100%, 310px);
  }
  .category-actions .page-action { flex: 1 1 100%; }
  .category-hero-panel { padding: 16px; }
  .hero-product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .hero-product-row img { min-width: 0; padding: 10px; }
  .category-stat-grid { grid-template-columns: 1fr 1fr; }
  .landing-intro { grid-template-columns: 1fr; gap: 12px; margin-top: 30px; }
  .section-h { align-items: flex-start; flex-direction: column; }
  .landing-feature { padding: 24px; }
  .landing-checks { grid-template-columns: 1fr; }
  .about-story,
  .about-support,
  .about-promise { padding: 24px; }
  .about-principles { grid-template-columns: 1fr; }
  .about-actions .page-action { flex: 1 1 100%; }
  .page-head { grid-template-columns: 1fr; padding: 24px; }
  .page-head,
  .affiliate-note,
  .chart-proof-band,
  .rec-intro,
  .rec-card {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
  .page-head *,
  .affiliate-note *,
  .chart-proof-band *,
  .rec-intro * {
    max-width: 100%;
    overflow-wrap: anywhere;
  }
  .page-head h1 {
    font-size: 28px;
    line-height: 1.15;
  }
  .page-head-actions {
    flex-direction: column;
    width: 100%;
    justify-content: flex-start;
  }
  .page-head .type-pill {
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .review-proof-band { padding: 20px; }
  .review-proof-grid { grid-template-columns: 1fr; }
  .chart-proof-band { padding: 20px; }
  .chart-proof-band h2,
  .rec-intro h2 {
    font-size: 22px;
  }
  .chart-proof-grid { grid-template-columns: 1fr; }
  .page-actions { justify-content: flex-start; }
  .page-action { flex: 1 1 180px; }
  .terms-summary-grid { grid-template-columns: 1fr; }
  .contact-layout,
  .contact-form-shell,
  .request-layout,
  .method-hero,
  .score-explain {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .contact-layout,
  .contact-panel,
  .contact-side,
  .contact-grid,
  .contact-form-shell,
  .request-form,
  .request-helper,
  .contact-form-card,
  .contact-grid article,
  .method-hero,
  .method-hero figure,
  .score-explain,
  .test-prose {
    max-width: 100%;
    min-width: 0;
    width: 100%;
    overflow: hidden;
  }
  .contact-form-card {
    overflow: visible;
  }
  .contact-layout *,
  .contact-form-shell *,
  .request-layout *,
  .method-hero *,
  .score-explain *,
  .test-prose * {
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .contact-panel,
  .contact-form-shell,
  .request-form,
  .request-helper,
  .method-hero,
  .score-explain,
  .test-prose {
    padding: 24px;
  }
  .request-helper {
    position: static;
  }
  .request-actions {
    align-items: stretch;
    flex-direction: column;
  }
  .request-actions .page-action {
    width: 100%;
  }
  .contact-form-intro {
    position: static;
    padding: 0;
  }
  .contact-actions .page-action {
    flex: 1 1 100%;
  }
  .contact-side {
    grid-template-columns: 1fr;
    padding: 14px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
  }
  .contact-grid article {
    grid-template-columns: 1fr;
  }
  .contact-grid img {
    height: 190px;
    min-height: 0;
  }
  .contact-grid article > div {
    padding: 20px;
  }
  .method-hero figure {
    order: -1;
  }
  .method-hero img {
    aspect-ratio: 16 / 9;
  }
  .score-scale,
  .method-summary-grid {
    grid-template-columns: 1fr;
  }
  .review-article, .prose { padding: 24px; }
  .review-article {
    max-width: 100%;
    overflow: hidden;
    width: calc(100vw - 32px);
  }
  .review-article header.r-head-with-media {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .r-head-media {
    min-height: 180px;
  }
  .review-article *,
  .review-article *::before,
  .review-article *::after {
    min-width: 0;
  }
  .review-article .lede,
  .review-copy,
  .article-note,
  .review-video-title {
    overflow-wrap: anywhere;
  }
  .review-inline-figure,
  .review-inline-figure.left {
    float: none;
    margin: 0 0 18px;
    width: 100%;
  }
  .review-video {
    max-width: 100%;
  }
  .form-grid .row { grid-template-columns: 1fr; }
  .r-quick-take { grid-template-columns: 1fr; }
  .review-detail-section { width: 100%; padding: 20px; }
  .review-product-intro {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .review-product-intro .r-head,
  .review-product-intro .affiliate-note {
    grid-column: auto;
  }
  .review-product-photo img {
    max-height: 260px;
  }
  .review-media-copy.review-wrap-media .review-image-strip {
    float: none;
    margin: 0 0 18px;
    width: 100%;
  }
  .review-media-copy { grid-template-columns: 1fr; }
  .review-result-grid,
  .bf-native-chart-strip,
  .review-image-strip,
  .review-note-list { grid-template-columns: 1fr; }
  .bf-native-chart {
    min-height: 0;
  }
  .bf-native-chart-body {
    padding: 18px;
  }
  .native-chart-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .review-hero-gallery img { height: 180px; }
  .review-spec-list div { grid-template-columns: 1fr; gap: 4px; }
  .review-facts-panel { padding: 18px; }
  .review-facts-groups { grid-template-columns: 1fr; }
  .review-facts-group div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
  .review-support-cta {
    grid-template-columns: 1fr;
  }
  .review-support-cta .review-buy {
    width: 100%;
  }
  .review-lightbox {
    padding: 18px;
  }
  .review-lightbox-dialog {
    grid-template-columns: 1fr;
    max-height: calc(100vh - 36px);
    max-width: calc(100vw - 36px);
  }
  .review-lightbox figure,
  .review-lightbox-count {
    grid-column: 1;
  }
  .review-lightbox img {
    max-height: calc(100vh - 150px);
  }
  .review-lightbox-close {
    right: 0;
    top: -50px;
  }
  .review-lightbox-nav {
    bottom: 52px;
    position: absolute;
  }
  .review-lightbox-nav.prev {
    left: 10px;
  }
  .review-lightbox-nav.next {
    right: 10px;
  }
  .review-pick-grid { grid-template-columns: 1fr; }
  .review-pick {
    grid-template-columns: 1fr;
  }
  .review-pick-media {
    min-height: 150px;
  }
  .review-pick-media img {
    height: 150px;
  }
  .rec-list { gap: 24px; }
  .rec-card .rec-body { padding: 24px; }
  .rec-card .rec-cta { padding: 24px; }
  .rec-card .rec-specs { grid-template-columns: repeat(2, 1fr); }
  .note-band { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .page-action {
    flex-basis: 100%;
  }
}
