.bnc-content {
  --bnc-accent: var(--color-secondary, #6fb749);
  --bnc-accent-hover: var(--color-secondary-hover, #47752f);
  --bnc-gold: var(--color-tertiary, #ae8f3c);
  --bnc-ink: #17201a;
  --bnc-muted: #667069;
  --bnc-soft: #f5f8f3;
  --bnc-soft-2: #edf4e8;
  --bnc-line: #dde6da;
  --bnc-white: #ffffff;
  --bnc-dark: #18231b;
  --bnc-radius-sm: 14px;
  --bnc-radius: 22px;
  --bnc-radius-lg: 30px;
  --bnc-shadow-sm: 0 8px 24px rgb(23 32 26 / 0.07);
  --bnc-shadow: 0 18px 48px rgb(23 32 26 / 0.10);
  --bnc-space: clamp(38px, 5vw, 76px);
  --bnc-gap: clamp(22px, 3.4vw, 52px);
  width: 100%;
  max-width: none;
  margin: 0;
  color: inherit;
  font: inherit;
  line-height: 1.65;
}

.bnc-content,
.bnc-content *,
.bnc-content *::before,
.bnc-content *::after {
  box-sizing: border-box;
}

.bnc-content img,
.bnc-content video,
.bnc-content iframe {
  max-width: 100%;
}

.bnc-content figure {
  margin: 0;
}

.bnc-content .bnc-section {
  width: 100%;
  max-width: none;
  margin: var(--bnc-space) 0;
}

.bnc-content .bnc-section:first-child {
  margin-top: 0;
}

.bnc-content .bnc-section:last-child {
  margin-bottom: 0;
}

.bnc-content .bnc-section h2,
.bnc-content .bnc-section h3,
.bnc-content .bnc-section h4 {
  color: var(--bnc-ink);
  line-height: 1.12;
  letter-spacing: -0.025em;
}

.bnc-content .bnc-section h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 44px);
}

.bnc-content .bnc-section h3 {
  margin: 0 0 12px;
  font-size: clamp(21px, 2vw, 28px);
}

.bnc-content .bnc-section h4 {
  margin: 0 0 8px;
  font-size: 18px;
}

.bnc-content p,
.bnc-content ul,
.bnc-content ol {
  margin-top: 0;
}

.bnc-content p:last-child,
.bnc-content ul:last-child,
.bnc-content ol:last-child {
  margin-bottom: 0;
}

.bnc-content a {
  color: var(--bnc-accent-hover);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.bnc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  color: var(--bnc-accent-hover);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bnc-kicker--dot::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--bnc-accent);
  box-shadow: 0 0 0 6px rgb(111 183 73 / 0.13);
}

.bnc-lead {
  max-width: 760px;
  color: #344038;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.65;
}

.bnc-spec-note {
  margin-top: 10px;
  color: #4b564e;
  font-size: 14px;
  line-height: 1.65;
}

.bnc-spec-note strong {
  color: #1b211d;
}

.bnc-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  min-height: 520px;
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius-lg);
  background:
    radial-gradient(circle at 12% 12%, rgb(111 183 73 / 0.18), transparent 34%),
    linear-gradient(135deg, #f8fbf6 0%, #eff6ea 100%);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(34px, 5vw, 74px);
}

.bnc-content .bnc-hero__content h2 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(34px, 4.2vw, 58px);
}

.bnc-hero__media {
  position: relative;
  min-width: 0;
  min-height: 520px;
  overflow: hidden;
  background: #e7efe2;
}

.bnc-hero__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnc-hero__badge {
  position: absolute;
  right: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  display: grid;
  grid-template-columns: auto auto;
  gap: 2px 10px;
  align-items: end;
  min-width: 148px;
  padding: 16px 20px;
  border: 1px solid rgb(255 255 255 / 0.74);
  border-radius: 18px;
  background: rgb(255 255 255 / 0.88);
  box-shadow: 0 10px 30px rgb(23 32 26 / 0.12);
  backdrop-filter: blur(12px);
}

.bnc-hero__badge strong {
  grid-row: 1 / 3;
  color: var(--bnc-accent-hover);
  font-size: 35px;
  line-height: 1;
  transition: opacity 180ms ease;
}

.bnc-hero__badge span {
  color: var(--bnc-ink);
  font-weight: 800;
  line-height: 1.1;
}

.bnc-hero__badge small {
  color: var(--bnc-muted);
  font-size: 12px;
}

.bnc-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.bnc-chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border: 1px solid rgb(71 117 47 / 0.16);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.70);
  color: var(--bnc-ink);
  font-size: 14px;
  font-weight: 800;
}

.bnc-quicknav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.bnc-content .bnc-quicknav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid var(--bnc-line);
  border-radius: 999px;
  background: var(--bnc-white);
  color: var(--bnc-ink);
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.bnc-content .bnc-quicknav a:hover {
  transform: translateY(-2px);
  border-color: rgb(111 183 73 / 0.55);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.bnc-stat-card {
  min-width: 0;
  padding: clamp(20px, 2.5vw, 30px);
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-stat-card__value {
  display: block;
  margin-bottom: 6px;
  color: var(--bnc-ink);
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 900;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.045em;
  line-height: 1;
}

.bnc-stat-card__value,
.bnc-chart-row__value {
  font-variant-numeric: tabular-nums;
}

.bnc-stat-card__label {
  color: var(--bnc-muted);
  font-size: 14px;
  font-weight: 700;
}

.bnc-section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: var(--bnc-gap);
  align-items: end;
  margin-bottom: 28px;
}

.bnc-section-head p {
  max-width: 720px;
  margin-left: auto;
  color: var(--bnc-muted);
  font-size: 16px;
}

.bnc-story {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  gap: var(--bnc-gap);
  align-items: start;
}

.bnc-story__media {
  position: sticky;
  top: 110px;
  min-height: 560px;
  overflow: hidden;
  border-radius: var(--bnc-radius-lg);
  background: var(--bnc-soft);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-story__media img {
  display: block;
  width: 100%;
  height: 560px;
  object-fit: cover;
}

.bnc-story__steps {
  display: grid;
  gap: 18px;
}

.bnc-story-card {
  min-height: 180px;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-story-card--accent {
  background:
    linear-gradient(135deg, rgb(111 183 73 / 0.12), transparent 72%),
    var(--bnc-white);
}

.bnc-story-card__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--bnc-dark);
  color: var(--bnc-white);
  font-size: 13px;
  font-weight: 900;
}

.bnc-bento {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: minmax(145px, auto);
  gap: 14px;
}

.bnc-bento-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  overflow: hidden;
  padding: clamp(22px, 3vw, 38px);
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-bento-card--wide {
  grid-column: span 7;
  grid-row: span 2;
  min-height: 330px;
  background:
    radial-gradient(circle at 88% 18%, rgb(111 183 73 / 0.26), transparent 25%),
    linear-gradient(145deg, #1c2a20 0%, #25372a 100%);
}

.bnc-content .bnc-bento-card--wide h3,
.bnc-bento-card--wide p,
.bnc-bento-card--wide .bnc-bento-card__eyebrow {
  color: var(--bnc-white);
}

.bnc-bento-card--medium {
  grid-column: span 5;
}

.bnc-bento-card--small {
  grid-column: span 5;
}

.bnc-bento-card__eyebrow {
  color: var(--bnc-accent-hover);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bnc-bento-card__big {
  display: block;
  margin: 18px 0 6px;
  color: inherit;
  font-size: clamp(36px, 4.6vw, 64px);
  font-weight: 900;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.bnc-split-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius-lg);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-split-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: clamp(30px, 5vw, 68px);
}

.bnc-split-card__media {
  min-width: 0;
  min-height: 430px;
  overflow: hidden;
  background: var(--bnc-soft);
}

.bnc-split-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bnc-split-card--reverse .bnc-split-card__media {
  order: -1;
}

.bnc-checklist {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 22px 0 0;
  list-style: none;
}

.bnc-checklist li {
  position: relative;
  min-height: 27px;
  margin: 0;
  padding-left: 38px;
}

.bnc-checklist li::before {
  content: "";
  position: absolute;
  top: 0.15em;
  left: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bnc-accent);
}

.bnc-checklist li::after {
  content: "✓";
  position: absolute;
  top: 0.02em;
  left: 6px;
  color: var(--bnc-white);
  font-size: 15px;
  font-weight: 900;
  line-height: 24px;
}

.bnc-compare {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.22fr);
  gap: var(--bnc-gap);
  align-items: stretch;
  padding: clamp(28px, 4.8vw, 66px);
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius-lg);
  background:
    linear-gradient(135deg, rgb(111 183 73 / 0.10), transparent 52%),
    var(--bnc-soft);
}

.bnc-compare__intro {
  align-self: center;
}

.bnc-chart-card {
  display: grid;
  gap: 22px;
  align-content: center;
  min-width: 0;
  padding: clamp(24px, 3.5vw, 42px);
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-chart-row {
  display: grid;
  grid-template-columns: minmax(120px, 0.65fr) minmax(180px, 1.35fr) auto;
  gap: 14px;
  align-items: center;
}

.bnc-chart-row__label {
  color: var(--bnc-ink);
  font-weight: 800;
}

.bnc-chart-row__value {
  min-width: 48px;
  color: var(--bnc-ink);
  font-size: 19px;
  font-variant-numeric: tabular-nums;
  font-weight: 900;
  text-align: right;
}

.bnc-progress {
  display: block;
  width: 100%;
  height: 14px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: #e7ece5;
  appearance: none;
  -webkit-appearance: none;
}

.bnc-progress::-webkit-progress-bar {
  border-radius: 999px;
  background: #e7ece5;
}

.bnc-progress::-webkit-progress-value {
  border-radius: 999px;
  background: var(--bnc-accent);
}

.bnc-progress::-moz-progress-bar {
  border-radius: 999px;
  background: var(--bnc-accent);
}

.bnc-progress--muted::-webkit-progress-value {
  background: #aab5ac;
}

.bnc-progress--muted::-moz-progress-bar {
  background: #aab5ac;
}

.bnc-chart-note {
  margin-top: 4px;
  color: var(--bnc-muted);
  font-size: 13px;
}

.bnc-table-card {
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-table-head {
  padding: clamp(24px, 3.5vw, 40px);
  border-bottom: 1px solid var(--bnc-line);
  background: var(--bnc-soft);
}

.bnc-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.bnc-table {
  width: 100%;
  min-width: 680px;
  margin: 0;
  border: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.bnc-content .bnc-table th,
.bnc-content .bnc-table td {
  padding: 16px 20px;
  border: 0;
  border-bottom: 1px solid var(--bnc-line);
  text-align: left;
  vertical-align: top;
}

.bnc-content .bnc-table th {
  background: #f9fbf8;
  color: var(--bnc-ink);
  font-weight: 900;
}

.bnc-content .bnc-table tbody tr:last-child td {
  border-bottom: 0;
}

.bnc-table-foot {
  padding: 16px 20px 20px;
  border-top: 1px solid var(--bnc-line);
  color: var(--bnc-muted);
  font-size: 13px;
}

.bnc-video-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: var(--bnc-gap);
  align-items: center;
}

.bnc-video {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--bnc-radius);
  background: #111;
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-video iframe,
.bnc-video video {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.bnc-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.bnc-media-strip {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 0.65fr);
  gap: 16px;
}

.bnc-media-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--bnc-radius);
  background: var(--bnc-soft);
  box-shadow: var(--bnc-shadow-sm);
}

.bnc-media-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.bnc-media-card__caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  padding: 16px 18px;
  border: 1px solid rgb(255 255 255 / 0.68);
  border-radius: 15px;
  background: rgb(255 255 255 / 0.86);
  color: var(--bnc-ink);
  font-weight: 800;
  backdrop-filter: blur(10px);
}


.bnc-media-spec {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  align-items: baseline;
  margin: -8px 0 24px;
  padding: 13px 16px;
  border: 1px solid rgb(111 183 73 / 0.22);
  border-radius: 14px;
  background: rgb(111 183 73 / 0.07);
  color: var(--bnc-muted);
  font-size: 13px;
  line-height: 1.5;
}

.bnc-media-spec strong {
  color: var(--bnc-accent-hover);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


.bnc-lab-report {
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius-lg);
  background: var(--bnc-white);
  box-shadow: var(--bnc-shadow);
}

.bnc-lab-report__hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: clamp(26px, 4vw, 58px);
  align-items: stretch;
  padding: clamp(30px, 4.6vw, 62px);
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgb(111 183 73 / 0.18), transparent 30%),
    radial-gradient(circle at 88% 12%, rgb(174 143 60 / 0.10), transparent 28%),
    linear-gradient(135deg, #f8fbf6 0%, #eef6e9 100%);
}

.bnc-lab-report__hero::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -92px;
  width: 280px;
  height: 280px;
  border: 1px solid rgb(111 183 73 / 0.14);
  border-radius: 50%;
  box-shadow:
    0 0 0 34px rgb(111 183 73 / 0.05),
    0 0 0 70px rgb(111 183 73 / 0.035);
  pointer-events: none;
}

.bnc-lab-report__intro,
.bnc-lab-proof {
  position: relative;
  z-index: 1;
}

.bnc-content .bnc-lab-report__intro h2 {
  max-width: 760px;
  margin-bottom: 16px;
  font-size: clamp(32px, 3.8vw, 54px);
}

.bnc-lab-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 24px 0 26px;
}

.bnc-lab-tag {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  border: 1px solid rgb(71 117 47 / 0.18);
  border-radius: 999px;
  background: rgb(255 255 255 / 0.72);
  color: var(--bnc-accent-hover);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.bnc-lab-tag::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--bnc-accent);
}

.bnc-content .bnc-lab-pdf {
  display: inline-grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  width: min(100%, 470px);
  padding: 12px 14px;
  border: 1px solid #101510;
  border-radius: 15px;
  background: #121813;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 12px 28px rgb(18 24 19 / 0.14);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.bnc-content .bnc-lab-pdf:hover {
  transform: translateY(-2px);
  background: #202a22;
  color: #fff;
  box-shadow: 0 16px 34px rgb(18 24 19 / 0.18);
}

.bnc-lab-pdf__icon {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--bnc-accent);
  color: #10200f;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.04em;
}

.bnc-lab-pdf__text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.bnc-lab-pdf__text strong {
  color: #fff;
  font-size: 14px;
  line-height: 1.25;
}

.bnc-lab-pdf__text small {
  color: rgb(255 255 255 / 0.68);
  font-size: 12px;
}

.bnc-lab-pdf__arrow {
  font-size: 22px;
  line-height: 1;
}

.bnc-lab-proof {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 330px;
  padding: clamp(28px, 3vw, 42px);
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 26px;
  background:
    radial-gradient(circle at 82% 16%, rgb(111 183 73 / 0.23), transparent 32%),
    linear-gradient(145deg, #17201a 0%, #0f1511 100%);
  color: #fff;
  box-shadow: 0 22px 50px rgb(17 26 19 / 0.18);
}

.bnc-lab-proof__eyebrow {
  margin-bottom: 18px;
  color: #a9dc8e;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bnc-lab-proof__score {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin-bottom: 12px;
  line-height: 0.9;
}

.bnc-lab-proof__score strong {
  color: #fff;
  font-size: clamp(66px, 7vw, 94px);
  font-weight: 950;
  letter-spacing: -0.07em;
}

.bnc-lab-proof__score span {
  color: #a9dc8e;
  font-size: 28px;
  font-weight: 900;
}

.bnc-lab-proof__title {
  max-width: 330px;
  margin-bottom: 16px;
  color: #fff;
  font-size: clamp(20px, 2vw, 27px);
  font-weight: 900;
  line-height: 1.18;
}

.bnc-lab-proof__meta {
  margin: 0;
  color: rgb(255 255 255 / 0.68);
  font-size: 13px;
}

.bnc-lab-proof__seal {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  gap: 9px;
  margin-top: 26px;
  padding: 9px 12px;
  border: 1px solid rgb(169 220 142 / 0.28);
  border-radius: 999px;
  background: rgb(169 220 142 / 0.08);
  color: #d8f0cc;
  font-size: 12px;
  font-weight: 800;
}

.bnc-lab-proof__seal::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--bnc-accent);
  color: #10200f;
  font-size: 12px;
  font-weight: 950;
}

.bnc-lab-groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: 18px;
  background: #f7f9f6;
}

.bnc-lab-group {
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: 20px;
  background: var(--bnc-white);
  box-shadow: 0 8px 24px rgb(23 32 26 / 0.05);
}

.bnc-lab-group__head {
  display: flex;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px;
  border-bottom: 1px solid var(--bnc-line);
  background: linear-gradient(180deg, #fbfdf9 0%, #f5f9f2 100%);
}

.bnc-lab-group__title {
  display: grid;
  gap: 3px;
}

.bnc-content .bnc-lab-group__title h3 {
  margin: 0;
  font-size: 22px;
}

.bnc-lab-group__title span {
  color: var(--bnc-muted);
  font-size: 12px;
}

.bnc-lab-group__count {
  display: grid;
  place-items: center;
  min-width: 48px;
  height: 48px;
  padding: 0 10px;
  border-radius: 14px;
  background: var(--bnc-soft-2);
  color: var(--bnc-accent-hover);
  font-size: 18px;
  font-weight: 950;
}

.bnc-lab-results {
  display: grid;
  flex: 1;
}

.bnc-lab-result {
  display: grid;
  grid-template-areas: "info measured status";
  grid-template-columns: minmax(0, 1.35fr) minmax(115px, 0.8fr) auto;
  gap: 16px;
  align-items: center;
  padding: 15px 22px;
  border-bottom: 1px solid #edf1ec;
}

.bnc-lab-result:last-child {
  border-bottom: 0;
}

.bnc-lab-result__info {
  grid-area: info;
  display: grid;
  gap: 3px;
  min-width: 0;
}

.bnc-lab-result__info strong {
  color: var(--bnc-ink);
  font-size: 14px;
  line-height: 1.35;
}

.bnc-lab-result__info small,
.bnc-lab-result__measured small {
  color: var(--bnc-muted);
  font-size: 11px;
  line-height: 1.35;
}

.bnc-lab-result__measured {
  grid-area: measured;
  display: grid;
  gap: 2px;
}

.bnc-lab-result__measured strong {
  color: var(--bnc-ink);
  font-size: 14px;
  font-variant-numeric: tabular-nums;
  line-height: 1.25;
}

.bnc-lab-status {
  grid-area: status;
  display: inline-flex;
  gap: 6px;
  align-items: center;
  justify-self: end;
  padding: 7px 9px;
  border-radius: 999px;
  background: #edf8e8;
  color: #356b20;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}

.bnc-lab-status::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--bnc-accent);
  color: #fff;
  font-size: 10px;
  line-height: 1;
}

.bnc-lab-status--neutral {
  background: #f0f2ef;
  color: #566059;
}

.bnc-lab-status--neutral::before {
  content: "i";
  background: #8b958d;
}

.bnc-lab-group__foot {
  margin-top: auto;
  padding: 14px 22px;
  border-top: 1px solid var(--bnc-line);
  background: #fbfcfa;
  color: var(--bnc-muted);
  font-size: 12px;
}

.bnc-lab-report__note {
  display: flex;
  gap: 11px;
  align-items: flex-start;
  padding: 17px 20px;
  border-top: 1px solid var(--bnc-line);
  background: #fff;
  color: var(--bnc-muted);
  font-size: 12px;
  line-height: 1.55;
}

.bnc-lab-report__note::before {
  content: "i";
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--bnc-soft-2);
  color: var(--bnc-accent-hover);
  font-weight: 950;
}

.bnc-faq {
  display: grid;
  gap: 10px;
}

.bnc-faq details {
  overflow: hidden;
  border: 1px solid var(--bnc-line);
  border-radius: var(--bnc-radius-sm);
  background: var(--bnc-white);
  box-shadow: 0 5px 16px rgb(23 32 26 / 0.04);
}

.bnc-faq summary {
  position: relative;
  padding: 19px 58px 19px 22px;
  color: var(--bnc-ink);
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}

.bnc-faq summary::-webkit-details-marker {
  display: none;
}

.bnc-faq summary::before,
.bnc-faq summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 23px;
  width: 15px;
  height: 2px;
  border-radius: 999px;
  background: var(--bnc-accent-hover);
  transform: translateY(-50%);
  transform-origin: center;
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
}

.bnc-faq summary::after {
  transform: translateY(-50%) rotate(90deg);
}

.bnc-faq details[open] summary::after {
  opacity: 0;
  transform: translateY(-50%) rotate(0deg);
}

.bnc-faq summary:focus-visible {
  outline: 3px solid rgb(111 183 73 / 0.30);
  outline-offset: -3px;
}

.bnc-faq__panel {
  display: block;
}

.bnc-faq__answer {
  box-sizing: border-box;
  min-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #3d473f;
}

.bnc-faq__answer-inner {
  padding: 0 0 20px;
}

.bnc-motion-ready .bnc-animate {
  opacity: 0;
  transform: translate3d(0, 34px, 0);
  transition: opacity 680ms cubic-bezier(0.22, 1, 0.36, 1), transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.bnc-motion-ready .bnc-animate--left {
  transform: translate3d(-52px, 0, 0);
}

.bnc-motion-ready .bnc-animate--right {
  transform: translate3d(52px, 0, 0);
}

.bnc-motion-ready .bnc-animate--scale {
  transform: scale(0.96);
}

.bnc-motion-ready .bnc-animate.is-inview {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.bnc-motion-ready .bnc-delay-1 {
  transition-delay: 70ms;
}

.bnc-motion-ready .bnc-delay-2 {
  transition-delay: 140ms;
}

.bnc-motion-ready .bnc-delay-3 {
  transition-delay: 210ms;
}

@media (prefers-reduced-motion: reduce) {
  .bnc-motion-ready .bnc-animate,
  .bnc-motion-ready .bnc-animate--left,
  .bnc-motion-ready .bnc-animate--right,
  .bnc-motion-ready .bnc-animate--scale {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 991px) {
  .bnc-hero {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .bnc-hero__media {
    min-height: 440px;
  }

  .bnc-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bnc-section-head,
  .bnc-story,
  .bnc-compare,
  .bnc-video-feature {
    grid-template-columns: 1fr;
  }

  .bnc-section-head p {
    margin-left: 0;
  }

  .bnc-story__media {
    position: relative;
    top: auto;
    min-height: 420px;
  }

  .bnc-story__media img {
    height: 420px;
  }

  .bnc-bento-card--wide,
  .bnc-bento-card--medium,
  .bnc-bento-card--small {
    grid-column: span 6;
    grid-row: auto;
  }

  .bnc-bento-card--wide {
    min-height: 260px;
  }

  .bnc-split-card {
    grid-template-columns: 1fr;
  }

  .bnc-split-card--reverse .bnc-split-card__media {
    order: 0;
  }

  .bnc-split-card__media {
    min-height: 420px;
  }

  .bnc-media-strip {
    grid-template-columns: 1fr 1fr;
  }

  .bnc-lab-report__hero {
    grid-template-columns: 1fr;
  }

  .bnc-lab-proof {
    min-height: 0;
  }

  .bnc-lab-groups {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .bnc-content {
    --bnc-space: 42px;
    --bnc-gap: 24px;
  }

  .bnc-content .bnc-section h2 {
    font-size: clamp(27px, 8vw, 36px);
  }

  .bnc-content .bnc-hero__content h2 {
    font-size: clamp(34px, 10vw, 44px);
  }

  .bnc-hero,
  .bnc-story__media,
  .bnc-split-card,
  .bnc-compare {
    border-radius: 22px;
  }

  .bnc-hero__content {
    padding: 28px 22px 30px;
  }

  .bnc-hero__media {
    min-height: 340px;
  }

  .bnc-hero__badge {
    right: 14px;
    bottom: 14px;
    min-width: 132px;
    padding: 13px 16px;
  }

  .bnc-hero__badge strong {
    font-size: 30px;
  }

  .bnc-chip-row {
    gap: 8px;
  }

  .bnc-chip {
    min-height: 34px;
    padding: 7px 11px;
    font-size: 13px;
  }

  .bnc-stat-grid {
    gap: 10px;
  }

  .bnc-stat-card {
    padding: 18px;
    border-radius: 18px;
  }

  .bnc-stat-card__value {
    font-size: 30px;
  }

  .bnc-story__media,
  .bnc-story__media img {
    min-height: 0;
    height: auto;
  }

  .bnc-story-card {
    min-height: 0;
    padding: 24px 20px;
  }

  .bnc-bento {
    grid-template-columns: 1fr;
  }

  .bnc-bento-card--wide,
  .bnc-bento-card--medium,
  .bnc-bento-card--small {
    grid-column: 1;
  }

  .bnc-bento-card--wide {
    min-height: 250px;
  }

  .bnc-split-card__content {
    padding: 28px 22px;
  }

  .bnc-split-card__media {
    min-height: 0;
  }

  .bnc-split-card__media img {
    height: auto;
  }

  .bnc-compare {
    padding: 26px 20px;
  }

  .bnc-chart-card {
    padding: 22px 18px;
  }

  .bnc-chart-row {
    grid-template-columns: 1fr auto;
    gap: 7px 12px;
  }

  .bnc-chart-row .bnc-progress {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .bnc-video-grid,
  .bnc-media-strip {
    grid-template-columns: 1fr;
  }

  .bnc-media-card,
  .bnc-media-card img {
    min-height: 300px;
  }

  .bnc-table-head {
    padding: 22px 18px;
  }

  .bnc-content .bnc-table th,
  .bnc-content .bnc-table td {
    padding: 14px 16px;
  }

  .bnc-lab-report {
    border-radius: 22px;
  }

  .bnc-lab-report__hero {
    padding: 26px 20px;
  }

  .bnc-content .bnc-lab-report__intro h2 {
    font-size: clamp(30px, 9vw, 40px);
  }

  .bnc-lab-proof {
    padding: 26px 22px;
    border-radius: 20px;
  }

  .bnc-lab-proof__score strong {
    font-size: 64px;
  }

  .bnc-lab-groups {
    gap: 12px;
    padding: 12px;
  }

  .bnc-lab-group__head {
    padding: 18px;
  }

  .bnc-lab-result {
    grid-template-areas:
      "info status"
      "measured measured";
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 8px 12px;
    padding: 14px 18px;
  }

  .bnc-lab-result__measured {
    display: flex;
    gap: 7px;
    align-items: baseline;
  }

  .bnc-lab-group__foot {
    padding: 13px 18px;
  }

  .bnc-lab-report__note {
    padding: 15px 17px;
  }

  .bnc-motion-ready .bnc-animate--left,
  .bnc-motion-ready .bnc-animate--right {
    transform: translate3d(0, 28px, 0);
  }
}
