@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600&family=Playfair+Display:ital,wght@0,500;1,500&display=swap');

:root {
  --ink: #17221c;
  --muted: #66716b;
  --green: #0d3b2a;
  --green-2: #285743;
  --sage: #edf2ed;
  --paper: #fbfcfa;
  --line: #dde4dd;
  --white: #fff;
  --shadow: 0 18px 50px rgba(27, 46, 36, .08);
  --radius: 18px;
  --container: 1440px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  background: #f7f8f5;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; text-decoration: none; }
p, h1, h2, h3, h4 { margin-top: 0; }
.skip-link { position: fixed; z-index: 999; top: 12px; left: 12px; padding: 10px 14px; border-radius: 8px; color: #fff; background: var(--green); transform: translateY(-150%); }
.skip-link:focus { transform: none; }
:focus-visible { outline: 3px solid rgba(13,59,42,.32); outline-offset: 3px; }
.container { width: min(calc(100% - 48px), var(--container)); margin-inline: auto; }
.page-shell { width: min(calc(100% - 32px), 1560px); margin: 16px auto 32px; overflow: hidden; background: var(--paper); border: 1px solid rgba(24,57,39,.08); border-radius: 20px; box-shadow: var(--shadow); }
.section { padding: clamp(30px, 3vw, 44px) 0; }
.section-compact { padding: clamp(12px, 1.4vw, 18px) 0; }
.eyebrow { margin-bottom: 10px; color: var(--green-2); font-size: 11px; font-weight: 600; letter-spacing: .19em; text-transform: uppercase; }
.display, .section-title { font-family: "Playfair Display", Georgia, serif; font-weight: 500; line-height: 1.08; letter-spacing: -.025em; }
.display { max-width: 780px; margin-bottom: 20px; font-size: clamp(3rem, 3.65vw, 4.05rem); }
.display em, .section-title em { color: var(--green-2); font-weight: 500; }
.section-title { margin-bottom: 16px; font-size: clamp(2rem, 3vw, 3.1rem); }
.lede { max-width: 590px; color: var(--muted); font-size: 1rem; }
.muted { color: var(--muted); }
.small { font-size: 12px; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* Header */
.site-header { position: relative; z-index: 20; height: 78px; background: rgba(255,255,255,.94); border-bottom: 1px solid rgba(20,47,34,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 100%; gap: 26px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; gap: 11px; }
.brand-mark { position: relative; width: 28px; height: 28px; }
.brand-mark i { position: absolute; width: 7px; height: 7px; border-radius: 50%; background: var(--green); }
.brand-mark i:nth-child(1) { top: 1px; left: 10px; }
.brand-mark i:nth-child(2) { top: 7px; left: 1px; }
.brand-mark i:nth-child(3) { top: 7px; right: 1px; }
.brand-mark i:nth-child(4) { top: 12px; left: 10px; }
.brand-mark i:nth-child(5) { bottom: 1px; left: 4px; }
.brand-mark i:nth-child(6) { right: 4px; bottom: 1px; }
.brand-copy { display: grid; line-height: 1; }
.brand-copy strong { font-size: 17px; font-weight: 600; letter-spacing: -.04em; }
.brand-copy small { margin-top: 4px; color: #758078; font-size: 6px; letter-spacing: .18em; text-transform: uppercase; }
.site-nav { display: flex; align-items: center; gap: clamp(16px, 2.2vw, 34px); margin-left: auto; }
.site-nav a { position: relative; padding: 28px 0 25px; color: #354039; font-size: 12px; }
.site-nav a::after { position: absolute; right: 0; bottom: 19px; left: 0; height: 1px; content: ""; background: var(--green); transform: scaleX(0); transition: transform .2s ease; }
.site-nav a:hover::after, .site-nav a[aria-current="page"]::after { transform: scaleX(1); }
.shop-btn, .button { display: inline-flex; min-height: 44px; align-items: center; justify-content: center; gap: 10px; padding: 11px 17px; border: 1px solid transparent; border-radius: 9px; cursor: pointer; transition: transform .2s ease, background .2s ease, border-color .2s ease; }
.shop-btn { flex: 0 0 auto; color: #fff; background: var(--green); font-size: 12px; }
.shop-btn:hover, .button-primary:hover { background: #16533c; transform: translateY(-2px); }
.nav-toggle { display: none; width: 44px; height: 44px; padding: 10px; border: 0; background: transparent; cursor: pointer; }
.nav-toggle span { display: block; width: 23px; height: 2px; margin: 5px auto; background: var(--green); transition: .2s ease; }
.nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Buttons and icon tokens */
.button { padding-inline: 20px; font-size: 13px; font-weight: 600; }
.button-primary { color: #fff; background: var(--green); }
.button-ghost { border-color: var(--line); color: var(--green); background: rgba(255,255,255,.72); }
.button-ghost:hover { border-color: #a9b8ad; background: #fff; transform: translateY(-2px); }
.arrow-circle { display: inline-grid; width: 22px; height: 22px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: 12px; }
.icon-disc { display: grid; width: 40px; height: 40px; flex: 0 0 auto; place-items: center; color: var(--green); background: #f1f5f1; border: 1px solid #dfe7e0; border-radius: 50%; font-size: 18px; }

/* Home hero */
.hero { position: relative; min-height: 0; overflow: hidden; isolation: isolate; background: #f7faf6; }
.hero::before, .image-panel::before { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg, rgba(251,252,249,.97) 0%, rgba(251,252,249,.92) 24%, rgba(251,252,249,.68) 47%, rgba(251,252,249,.18) 73%, rgba(251,252,249,.04) 100%), url('../images/lab-molecules.png') center 58% / cover no-repeat; }
.hero::after { position: absolute; z-index: -1; right: 0; bottom: 0; left: 0; height: 38%; content: ""; background: linear-gradient(to top, rgba(251,252,249,.98), rgba(251,252,249,.48) 46%, transparent); pointer-events: none; }
.hero-grid { display: grid; min-height: 440px; align-items: center; grid-template-columns: 1.08fr .92fr; }
.hero-copy { position: relative; z-index: 2; max-width: 810px; padding: 44px 0 22px 8px; }
.hero-copy .display { color: #14221b; text-shadow: 0 1px 0 rgba(255,255,255,.95), 0 0 30px rgba(255,255,255,.78); }
.hero-copy .lede { max-width: 570px; color: #4b5951; font-weight: 500; text-shadow: 0 1px 18px rgba(255,255,255,.95); }
.hero .button-ghost { background: rgba(255,255,255,.86); backdrop-filter: blur(8px); }
.actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero-product { position: relative; align-self: stretch; min-height: 440px; }
.hero-product img { position: absolute; z-index: 1; right: 12%; bottom: 3px; width: min(70%, 360px); height: 432px; object-fit: contain; object-position: center bottom; mix-blend-mode: normal; filter: none; opacity: 1; }
.trust-strip { position: relative; z-index: 3; display: grid; margin-bottom: 0; overflow: hidden; border: 1px solid rgba(211,222,214,.9); border-radius: 15px; background: rgba(255,255,255,.9); grid-template-columns: repeat(5, 1fr); box-shadow: 0 12px 30px rgba(20,50,35,.07); backdrop-filter: blur(12px); }
.trust-item { display: flex; min-height: 72px; align-items: center; gap: 10px; padding: 11px 14px; border-right: 1px solid var(--line); }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; font-size: 12px; }
.trust-item small { display: block; color: var(--muted); font-size: 10px; line-height: 1.35; }

/* Shared cards and feature sections */
.surface { border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.82); box-shadow: 0 12px 30px rgba(31,55,42,.035); }
.science-card { display: grid; align-items: center; padding: 26px; grid-template-columns: 1fr 1.4fr; gap: 24px; }
.science-card h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.75rem, 2.5vw, 2.4rem); font-weight: 500; line-height: 1.1; }
.benefit-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.benefit { padding: 10px; text-align: center; }
.benefit .icon-disc { margin: 0 auto 10px; }
.benefit strong { display: block; font-size: 11px; }
.benefit small { color: var(--muted); font-size: 9px; }
.section-head { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 14px; gap: 20px; }
.section-head h2 { margin: 0; font-family: "Playfair Display", Georgia, serif; font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 500; }
.text-link { color: var(--green); font-size: 12px; font-weight: 600; }
.text-link:hover { text-decoration: underline; text-underline-offset: 4px; }
.products-row, .product-grid { display: grid; gap: 14px; }
.products-row { align-items: stretch; grid-template-columns: repeat(6, minmax(0, 1fr)); }
.product-card { position: relative; overflow: hidden; min-width: 0; padding: 12px; border: 1px solid var(--line); border-radius: 14px; background: rgba(255,255,255,.78); transition: transform .2s ease, box-shadow .2s ease; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 14px 30px rgba(23,52,36,.09); }
.product-visual { display: grid; height: clamp(170px, 14vw, 210px); place-items: center; overflow: hidden; background: radial-gradient(circle, #fff 30%, #f1f4f0 100%); border-radius: 10px; }
.products-row .product-card { display: grid; height: 100%; align-content: start; grid-template-rows: auto auto; }
.products-row .product-visual { width: 100%; height: auto; aspect-ratio: 1 / 1; }
.product-card-mockup { width: 100%; height: 100%; max-width: 100%; object-fit: contain; object-position: center; mix-blend-mode: multiply; transition: transform .28s ease; }
.product-card:hover .product-card-mockup { transform: scale(1.025); }
.mini-vial { position: relative; width: 66px; height: 132px; filter: drop-shadow(0 10px 8px rgba(24,48,35,.12)); }
.mini-vial::before { position: absolute; top: 0; left: 7px; width: 52px; height: 18px; content: ""; border: 1px solid #949a96; border-radius: 5px 5px 3px 3px; background: linear-gradient(90deg,#acb0ae,#f4f5f4 28%,#a9aeab 67%,#eceeed); box-shadow: inset 0 -3px 4px rgba(0,0,0,.12); }
.mini-vial::after { position: absolute; top: 17px; right: 3px; bottom: 0; left: 3px; content: ""; border: 1px solid #b9c2bc; border-radius: 7px 7px 13px 13px; background: linear-gradient(90deg,rgba(213,224,217,.45),rgba(255,255,255,.96) 26%,rgba(255,255,255,.72) 68%,rgba(201,215,207,.5)), linear-gradient(to top,#f2f0e8 0 17%,transparent 17%); box-shadow: inset 5px 0 7px rgba(156,177,165,.18), inset -4px 0 6px rgba(156,177,165,.12); }
.vial-label { position: absolute; z-index: 2; top: 49px; left: 6px; width: 54px; height: 48px; padding: 6px 4px; color: #fff; background: linear-gradient(135deg,#0d3b2a,#315b49); font-size: 8px; line-height: 1.1; text-align: left; box-shadow: 0 1px 3px rgba(0,0,0,.08); }
.vial-label b { display: block; margin-bottom: 4px; font-size: 11px; }
.product-meta { display: flex; align-items: flex-end; justify-content: space-between; gap: 8px; padding-top: 13px; }
.product-meta strong { display: block; font-size: 13px; }
.product-meta small { color: var(--muted); font-size: 10px; }
.round-link { display: grid; width: 28px; height: 28px; flex: 0 0 auto; place-items: center; border: 1px solid var(--line); border-radius: 50%; background: #fff; cursor: pointer; }
.round-link:hover { color: #fff; background: var(--green); }
.newsletter { position: relative; display: grid; min-height: 130px; align-items: center; margin: 18px auto; overflow: hidden; padding: 24px; border-radius: 18px; background: linear-gradient(95deg,#edf2ed 0%,#f5f7f4 58%,rgba(237,242,237,.45)), url('../images/lab-molecules.png') right 64% / 54% auto no-repeat; grid-template-columns: 1.2fr .8fr; }
.newsletter h2 { margin-bottom: 5px; font-family: "Playfair Display", Georgia, serif; font-size: 1.8rem; font-weight: 500; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { min-width: 0; flex: 1; padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: rgba(255,255,255,.9); }

/* Footer */
.site-footer { padding: 30px 0 20px; border-top: 1px solid var(--line); background: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.35fr repeat(5, 1fr); gap: 22px; }
.footer-brand p { max-width: 245px; margin-top: 12px; color: var(--muted); font-size: 11px; }
.footer-col strong { display: block; margin-bottom: 8px; font-size: 12px; }
.footer-col a { display: block; margin: 4px 0; color: var(--muted); font-size: 10px; }
.footer-col a:hover { color: var(--green); }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 22px; padding-top: 14px; border-top: 1px solid var(--line); color: #7b857e; font-size: 9px; }

/* Inner page hero */
.inner-hero { position: relative; min-height: 0; overflow: hidden; padding: 32px 0 26px; background: #fafbf9; }
.inner-hero.has-art::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg,#fafbf9 0%,rgba(250,251,249,.91) 48%,rgba(250,251,249,.16) 80%), url('../images/lab-molecules.png') right center / 58% auto no-repeat; }
.inner-hero .container { position: relative; z-index: 1; }
.inner-hero .section-title { max-width: 670px; }
.inner-hero .lede { max-width: 540px; font-size: 14px; }

/* Products page */
.products-page { --container: 1680px; background: #fbfcfa; }
.product-showcase-hero { position: relative; min-height: 500px; overflow: hidden; isolation: isolate; background: #f8faf7; }
.product-showcase-hero::before { position: absolute; z-index: -2; inset: 0; content: ""; background: linear-gradient(90deg,rgba(251,252,249,.99) 0%,rgba(251,252,249,.96) 32%,rgba(251,252,249,.62) 52%,rgba(251,252,249,.12) 78%,rgba(251,252,249,.02) 100%), url('../images/lab-molecules.png') right 56% / cover no-repeat; }
.product-showcase-hero::after { position: absolute; z-index: -1; right: 0; bottom: 0; left: 0; height: 24%; content: ""; background: linear-gradient(to top,#fbfcfa,rgba(251,252,250,.48),transparent); pointer-events: none; }
.product-hero-grid { display: grid; min-height: 500px; align-items: center; grid-template-columns: 1.04fr .96fr; gap: 24px; }
.product-hero-copy { position: relative; z-index: 3; padding: 38px 0 25px; }
.product-hero-title { max-width: 720px; margin: 0 0 17px; color: #12221a; font-family: "DM Sans", Arial, sans-serif; font-size: clamp(3rem,4vw,4.5rem); font-weight: 500; line-height: 1.04; letter-spacing: -.05em; }
.product-hero-title em { color: var(--green-2); font-family: "Playfair Display", Georgia, serif; font-weight: 500; }
.product-hero-copy .lede { max-width: 535px; margin-bottom: 0; color: #4e5b54; font-size: 15px; line-height: 1.72; }
.product-hero-copy > .button { margin-top: 22px; }
.product-hero-standards { display: grid; max-width: 720px; margin-top: 31px; grid-template-columns: repeat(4,minmax(0,1fr)); }
.hero-standard { display: grid; min-width: 0; align-content: start; padding: 0 17px; border-right: 1px solid var(--line); gap: 8px; }
.hero-standard:first-child { padding-left: 0; }
.hero-standard:last-child { padding-right: 0; border-right: 0; }
.hero-standard > span { color: var(--green); font-size: 25px; line-height: 1; }
.hero-standard strong { display: block; color: #28342d; font-size: 11px; font-weight: 600; white-space: nowrap; }
.hero-standard small { display: block; margin-top: 2px; color: var(--muted); font-size: 9px; line-height: 1.4; }
.product-hero-art { position: relative; align-self: stretch; min-height: 500px; }
.product-hero-vial { position: absolute; z-index: 2; right: 65%; bottom: 82px; transform: scale(1.42); transform-origin: bottom center; }
.product-hero-vial-image { position: absolute; z-index: 2; right: 6%; bottom: 3px; width: min(57%,420px); height: 475px; object-fit: contain; object-position: center bottom; mix-blend-mode: multiply; filter: drop-shadow(0 24px 18px rgba(18,42,30,.13)); }
.product-hero-vial-image.is-processed { mix-blend-mode: normal; }
.product-hero-vial-image.is-fallback { filter: brightness(1.05) contrast(1.04) drop-shadow(0 24px 18px rgba(18,42,30,.13)); }
.catalog-section { padding-top: 14px; padding-bottom: 18px; }
.catalog-controls { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; padding: 10px 12px; background: rgba(255,255,255,.88); }
.filter-bar { display: flex; min-width: 0; flex: 1; align-items: center; gap: 8px; overflow-x: auto; scrollbar-width: none; }
.filter-bar::-webkit-scrollbar { display: none; }
.filter-button { min-height: 36px; flex: 0 0 auto; padding: 8px 16px; border: 1px solid transparent; border-radius: 9px; color: #48544c; background: transparent; cursor: pointer; font-size: 11px; }
.filter-button:hover, .filter-button.active { color: #fff; background: var(--green); }
.sort-select { min-height: 36px; flex: 0 0 auto; padding: 7px 34px 7px 13px; border: 1px solid var(--line); border-radius: 18px; color: #58635c; background: #fff; font-size: 11px; }
.catalog-product-grid { grid-template-columns: repeat(5,minmax(0,1fr)); gap: 12px; }
.product-card[hidden] { display: none; }
.catalog-product-card { min-height: 275px; padding: 11px; border-radius: 16px; }
.catalog-product-card .product-visual { height: 198px; background: radial-gradient(circle at 50% 48%,#fff 20%,#f5f7f4 72%,#eef2ee 100%); }
.catalog-product-card .mini-vial { transform: scale(1.08); }
.catalog-product-card .product-meta { padding: 11px 2px 1px; }
.vial-label-compact b { font-size: 8px; letter-spacing: -.04em; }

.catalog-featured { display: grid; min-height: 285px; margin-top: 18px; overflow: hidden; background: linear-gradient(90deg,#fff 0%,rgba(255,255,255,.96) 35%,rgba(247,250,247,.78) 100%); grid-template-columns: 1.08fr .78fr 1fr; }
.catalog-featured-copy { position: relative; z-index: 2; padding: 27px 8px 26px 28px; }
.catalog-featured-copy .eyebrow { margin-bottom: 5px; }
.catalog-featured-copy h2 { margin: 0 0 7px; font-family: "Playfair Display", Georgia, serif; font-size: 2.25rem; font-weight: 500; line-height: 1.08; }
.catalog-featured-copy h2 span { color: var(--muted); font-size: .66em; }
.catalog-featured-copy > p:not(.eyebrow) { max-width: 430px; margin-bottom: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
.featured-benefits { display: grid; max-width: 430px; margin: 17px 0; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 8px; }
.featured-benefits div { display: flex; min-width: 0; align-items: center; gap: 7px; }
.featured-benefits div > span { flex: 0 0 auto; color: var(--green); font-size: 21px; }
.featured-benefits small { color: #47534b; font-size: 8px; line-height: 1.35; }
.catalog-featured-copy .button { min-height: 39px; padding: 8px 14px; font-size: 10px; }
.catalog-featured-copy .arrow-circle { width: 19px; height: 19px; font-size: 10px; }
.catalog-featured-art { position: relative; min-height: 285px; overflow: hidden; background: linear-gradient(90deg,rgba(251,252,250,.12),rgba(251,252,250,0)),url('../images/lab-molecules.png') 51% 54% / cover no-repeat; }
.catalog-featured-art::after { position: absolute; inset: 0; content: ""; background: radial-gradient(circle at center,transparent 20%,rgba(251,252,250,.26) 72%); pointer-events: none; }
.featured-vial { position: absolute; z-index: 2; bottom: 47px; left: 50%; transform: translateX(-50%) scale(1.8); transform-origin: bottom center; }
.featured-related { position: relative; z-index: 2; display: grid; align-content: center; padding: 22px 24px 22px 9px; gap: 7px; }
.featured-related-item { display: grid; min-height: 64px; align-items: center; padding: 6px 9px; border: 1px solid rgba(221,228,221,.82); border-radius: 12px; background: rgba(255,255,255,.82); grid-template-columns: 36px minmax(0,1fr) 28px; gap: 10px; transition: border-color .2s ease,transform .2s ease; }
.featured-related-item:hover { border-color: #a9b8ad; transform: translateX(2px); }
.featured-related-item > span:nth-child(2) { min-width: 0; }
.featured-related-item strong { display: block; color: #26332b; font-size: 10px; }
.featured-related-item small { display: block; overflow: hidden; color: var(--muted); font-size: 8px; line-height: 1.35; text-overflow: ellipsis; white-space: nowrap; }
.featured-related-thumb { position: relative; display: block; width: 28px; height: 50px; overflow: hidden; }
.featured-related-thumb .mini-vial { position: absolute; top: 0; left: 2px; transform: scale(.35); transform-origin: top left; }
.featured-related-item .round-link { width: 25px; height: 25px; font-size: 10px; }
.featured-dots { display: flex; justify-content: center; gap: 5px; padding-top: 2px; }
.featured-dots span { width: 4px; height: 4px; border-radius: 50%; background: #c7cec9; }
.featured-dots .active { background: var(--green); }

.certification-strip { display: grid; margin-top: 14px; overflow: hidden; grid-template-columns: 1.55fr repeat(5,.75fr); }
.certification-intro { padding: 17px 22px; }
.certification-intro .eyebrow { margin-bottom: 4px; }
.certification-intro p:last-child { max-width: 340px; margin-bottom: 0; color: var(--muted); font-size: 8px; line-height: 1.45; }
.certification-item { display: flex; min-width: 0; align-items: center; justify-content: center; gap: 8px; padding: 14px 9px; border-left: 1px solid var(--line); }
.certification-item > span { flex: 0 0 auto; color: var(--green); font-size: 20px; }
.certification-item strong { color: #344139; font-size: 8px; font-weight: 600; line-height: 1.35; }
.products-footer { padding-top: 23px; }
.products-footer .footer-col p { margin: 0; color: var(--muted); font-size: 10px; line-height: 1.55; }
/* Verification */
.verify-hero { position: relative; padding: 36px 0 18px; overflow: hidden; background: linear-gradient(90deg,#fbfcfa 0%,#fbfcfa 55%,#f1f4ef 100%); }
.verify-hero::after { position: absolute; inset: 0; content: ""; background: url('../images/lab-molecules.png') right center / 48% auto no-repeat; opacity: .45; pointer-events: none; }
.verify-grid { position: relative; z-index: 2; display: grid; align-items: center; grid-template-columns: 1fr 1fr; gap: 48px; }
.verify-form { max-width: 500px; margin-top: 16px; padding: 18px; }
.field-label { display: block; margin-bottom: 7px; font-size: 12px; font-weight: 600; }
.field-hint { display: block; margin-bottom: 12px; color: var(--muted); font-size: 10px; }
.input, .textarea, .select { width: 100%; padding: 12px 13px; border: 1px solid var(--line); border-radius: 8px; color: var(--ink); background: #fff; transition: border-color .2s, box-shadow .2s; }
.input:focus, .textarea:focus, .select:focus { border-color: var(--green-2); box-shadow: 0 0 0 4px rgba(13,59,42,.08); outline: 0; }
.input.invalid { border-color: #a44444; }
.full { width: 100%; }
.help-row { display: flex; justify-content: space-between; margin-top: 9px; color: var(--muted); font-size: 10px; }
.product-code-art { position: relative; min-height: 330px; }
.product-code-art img { position: absolute; bottom: 0; left: 3%; width: 280px; height: 325px; object-fit: contain; mix-blend-mode: multiply; opacity: 1; }
.product-code-art img.is-processed { opacity: 1; mix-blend-mode: normal; }
.product-code-art img.is-fallback { mix-blend-mode: multiply; filter: brightness(1.08) contrast(1.03); }
.code-line { position: absolute; z-index: 2; top: 50%; left: 47%; width: 90px; height: 1px; background: var(--green); }
.qr-card { position: absolute; z-index: 3; top: 30%; right: 3%; display: grid; width: 128px; height: 145px; place-items: center; padding: 12px; border: 1px solid #cfd8d1; border-radius: 14px; background: rgba(255,255,255,.88); box-shadow: 0 12px 28px rgba(20,52,34,.1); transform: rotate(2deg); }
.qr { display: grid; width: 80px; height: 80px; padding: 5px; background: #fff; grid-template-columns: repeat(9, 1fr); grid-template-rows: repeat(9, 1fr); gap: 1px; box-shadow: inset 0 0 0 1px #dce2dd; }
.qr i { background: transparent; }
.qr i.on { background: var(--green); }
.qr-card small { font-size: 8px; font-weight: 600; letter-spacing: .08em; }
.verify-content-grid { display: grid; grid-template-columns: 1.55fr .75fr; gap: 16px; }
.steps-card, .result-card { padding: 22px; }
.steps { display: grid; margin-top: 16px; grid-template-columns: repeat(3,1fr); }
.step { position: relative; padding: 0 16px; }
.step:not(:last-child)::after { position: absolute; top: 28px; right: -8px; content: "→"; color: #93a098; }
.step-number { display: grid; width: 22px; height: 22px; margin-bottom: 15px; place-items: center; border: 1px solid #abb8b0; border-radius: 50%; font-size: 10px; }
.step-art { display: grid; width: 64px; height: 64px; margin-bottom: 13px; place-items: center; border-radius: 12px; background: #f2f5f2; font-size: 28px; }
.step h3 { margin-bottom: 5px; font-size: 12px; }
.step p { margin: 0; color: var(--muted); font-size: 9px; }
.result-status { display: flex; gap: 12px; align-items: center; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.result-check { display: grid; width: 38px; height: 38px; place-items: center; color: #fff; background: var(--green); border-radius: 50%; }
.result-status strong, .result-status small { display: block; }
.result-status small { color: var(--muted); font-size: 9px; }
.result-product { display: grid; align-items: center; margin-top: 16px; grid-template-columns: 54px 1fr; gap: 13px; }
.result-product .mini-vial { transform: scale(.62); transform-origin: center; }
.result-table { display: grid; margin-top: 10px; grid-template-columns: 1fr 1fr; gap: 5px 12px; color: var(--muted); font-size: 9px; }
.result-table b { color: var(--ink); font-weight: 500; text-align: right; }
.security-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.security-item { display: flex; align-items: center; gap: 12px; padding: 18px; border-right: 1px solid var(--line); }
.security-item:last-child { border: 0; }
.security-item strong { display: block; font-size: 11px; }
.security-item small { color: var(--muted); font-size: 9px; }
.faq-wrap { position: relative; overflow: hidden; padding: 22px; background: linear-gradient(90deg,rgba(255,255,255,.97),rgba(255,255,255,.88) 70%,rgba(255,255,255,.15)), url('../images/lab-molecules.png') right bottom / 38% auto no-repeat; }
.faq-list { max-width: 760px; }
.faq-item { border-top: 1px solid var(--line); }
.faq-question { display: flex; width: 100%; align-items: center; justify-content: space-between; padding: 12px 2px; border: 0; color: var(--ink); background: transparent; cursor: pointer; font-size: 12px; text-align: left; }
.faq-question span:last-child { transition: transform .2s; }
.faq-question[aria-expanded="true"] span:last-child { transform: rotate(45deg); }
.faq-answer { padding: 0 25px 15px 2px; color: var(--muted); font-size: 11px; }

/* About */
.about-hero { min-height: 360px; }
.about-hero .container { display: grid; min-height: 280px; align-items: center; grid-template-columns: 1fr 1fr; }
.about-hero::after { background: linear-gradient(90deg,#fafbf9 0%,rgba(250,251,249,.94) 47%,rgba(250,251,249,.05) 82%), url('../images/lab-molecules.png') right 52% / cover no-repeat; }
.pillars { position: relative; z-index: 3; display: grid; margin-top: -28px; grid-template-columns: repeat(4,1fr); }
.pillar { min-height: 150px; padding: 20px; border-right: 1px solid var(--line); }
.pillar:last-child { border-right: 0; }
.pillar .icon-disc { margin-bottom: 12px; }
.pillar h3 { margin-bottom: 8px; font-size: 13px; }
.pillar p { margin: 0; color: var(--muted); font-size: 10px; }
.image-panel { position: relative; min-height: 240px; margin-top: 14px; overflow: hidden; border-radius: var(--radius); }
.image-panel::before { z-index: 0; background: url('../images/lab-molecules.png') center 62% / cover no-repeat; filter: saturate(.75); }
.journey { display: grid; grid-template-columns: repeat(5,1fr); }
.journey-item { position: relative; min-height: 105px; padding: 18px; border-right: 1px solid var(--line); }
.journey-item:last-child { border: 0; }
.journey-item::before { position: absolute; top: 34px; left: -4px; width: 8px; height: 8px; content: ""; border: 2px solid var(--green); border-radius: 50%; background: #fff; }
.journey-item:first-child::before { display: none; }
.journey-item strong { font-family: "Playfair Display", Georgia, serif; font-size: 1.4rem; font-weight: 500; }
.journey-item p { margin: 8px 0 0; color: var(--muted); font-size: 9px; }
.metric-grid { display: grid; margin-top: 12px; grid-template-columns: repeat(5,1fr); }
.metric { display: flex; align-items: center; gap: 12px; padding: 18px; border-right: 1px solid var(--line); }
.metric:last-child { border-right: 0; }
.metric b { display: block; font-family: "Playfair Display", Georgia, serif; font-size: 1.8rem; font-weight: 500; line-height: 1; }
.metric small { color: var(--muted); font-size: 9px; }
.commitment { display: grid; margin-top: 12px; padding: 24px; background: linear-gradient(120deg,#f3f5f1,#fff); grid-template-columns: 1.2fr repeat(4,.8fr); gap: 18px; }
.commitment-intro p { max-width: 320px; margin-bottom: 0; color: var(--muted); font-size: 11px; }
.value h3 { margin: 13px 0 5px; font-size: 12px; }
.value p { margin: 0; color: var(--muted); font-size: 9px; }

/* Contact */
.contact-layout { display: grid; align-items: start; grid-template-columns: minmax(0,1.05fr) minmax(360px,.95fr); gap: 24px; }
.support-copy { padding: 10px 0; }
.support-cards { display: grid; margin-top: 20px; grid-template-columns: 1fr 1fr; gap: 10px; }
.support-card { display: grid; min-height: 112px; align-items: center; padding: 14px; grid-template-columns: 40px minmax(0,1fr) 28px; grid-template-rows: auto auto; column-gap: 10px; }
.support-card .icon-disc { grid-row: 1 / 3; }
.support-card h3 { margin: 0 0 3px; font-size: 12px; }
.support-card p { margin: 0; color: var(--muted); font-size: 9px; }
.support-card .round-link { grid-column: 3; grid-row: 1 / 3; align-self: center; }
.contact-form-card { padding: 22px; }
.contact-form-card h2 { margin-bottom: 4px; font-family: "Playfair Display",Georgia,serif; font-size: 1.8rem; font-weight: 500; }
.form-grid { display: grid; gap: 10px; margin-top: 14px; }
.form-field label { display: block; margin-bottom: 5px; font-size: 10px; font-weight: 600; }
.form-field .input, .form-field .select, .form-field .textarea { padding: 10px 11px; font-size: 11px; }
.textarea { min-height: 96px; resize: vertical; }
.faq-links { display: grid; padding: 16px; grid-template-columns: repeat(3,1fr); }
.faq-link { display: flex; align-items: center; gap: 12px; padding: 8px 18px; border-right: 1px solid var(--line); }
.faq-link:last-child { border-right: 0; }
.faq-link strong { display: block; font-size: 11px; }
.faq-link small { color: var(--muted); font-size: 9px; }
.form-notice { display: none; margin-top: 12px; padding: 10px 12px; border-radius: 8px; color: var(--green); background: var(--sage); font-size: 11px; }
.form-notice.show { display: block; }

/* Toast */
.toast { position: fixed; z-index: 1000; right: 24px; bottom: 24px; max-width: min(360px, calc(100% - 36px)); padding: 14px 18px; color: #fff; background: var(--green); border-radius: 10px; box-shadow: 0 16px 40px rgba(12,42,29,.25); opacity: 0; transform: translateY(15px); transition: .25s ease; pointer-events: none; }
.toast.show { opacity: 1; transform: none; }

/* Desktop canvas: fills a 1920 x 1080 viewport without changing content alignment. */
@media (min-width: 1081px) {
  .page-shell {
    width: min(100%, 1920px);
    min-height: 1080px;
    margin: 0 auto;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }
}

@media (max-width: 900px) {
  .site-nav { gap: 16px; }
  .site-nav a { font-size: 11px; }
  .product-grid { grid-template-columns: repeat(4,1fr); }
  .products-row { grid-template-columns: repeat(4,1fr); }
  .trust-strip, .metric-grid { grid-template-columns: repeat(3,1fr); }
  .trust-item:nth-child(3), .metric:nth-child(3) { border-right: 0; }
  .contact-layout { grid-template-columns: 1fr 1fr; }
}

/* Mobile/tablet portrait also covers 1080 x 1920 screens explicitly. */
@media (max-width: 960px), (orientation: portrait) and (max-width: 1080px) {
  .page-shell { width: 100%; margin: 0; border: 0; border-radius: 0; }
  .site-header { height: 70px; }
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav { position: fixed; z-index: 30; top: 70px; right: 0; left: 0; display: grid; align-content: start; height: calc(100vh - 70px); height: calc(100dvh - 70px); overflow-y: auto; padding: 28px 24px; background: rgba(250,252,249,.98); transform: translateX(100%); transition: transform .25s ease; }
  .site-nav.open { transform: none; }
  .site-nav a { padding: 13px 5px; border-bottom: 1px solid var(--line); font-size: 15px; }
  .site-nav a::after { display: none; }
  .shop-btn { display: none; }
  .hero-grid, .products-intro, .verify-grid, .about-hero .container { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .hero-grid {
    min-height: 0;
    align-items: start;
    padding: 38px 0 26px;
    grid-template-areas:
      "eyebrow"
      "headline"
      "product"
      "lede"
      "actions";
  }
  .hero-copy { display: contents; }
  .hero-copy > .eyebrow { grid-area: eyebrow; }
  .hero-copy > .display { margin-bottom: 8px; grid-area: headline; }
  .hero-copy > .lede { margin: 8px 0 0; grid-area: lede; }
  .hero-copy > .actions { margin-top: 20px; grid-area: actions; }
  .hero-product { min-height: 380px; margin-top: -10px; grid-area: product; }
  .hero-product img { right: 50%; bottom: 0; width: min(58vw, 330px); height: 370px; object-fit: contain; object-position: center bottom; transform: translateX(50%); }
  .hero::before { background: linear-gradient(180deg, rgba(251,252,249,.98) 0%, rgba(251,252,249,.94) 32%, rgba(251,252,249,.56) 54%, rgba(251,252,249,.1) 76%, rgba(251,252,249,.72) 100%), url('../images/lab-molecules.png') 62% center / cover no-repeat; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2n) { border-right: 0; }
  .trust-item:nth-child(3) { border-right: 1px solid var(--line); }
  .trust-item:last-child { grid-column: 1 / -1; justify-content: center; border-right: 0; }
  .science-card { grid-template-columns: 1fr; }
  .products-row, .product-grid { grid-template-columns: repeat(2,1fr); }
  .benefit-grid, .why-grid, .security-grid, .pillars { grid-template-columns: repeat(2,1fr); }
  .newsletter { grid-template-columns: 1fr; gap: 18px; }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-brand { grid-row: span 2; }
  .verify-content-grid { grid-template-columns: 1fr; }
  .product-code-art { min-height: 330px; }
  .steps { gap: 15px; }
  .security-item:nth-child(2) { border-right: 0; }
  .security-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .pillars { margin-top: -20px; }
  .pillar:nth-child(2) { border-right: 0; }
  .pillar:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .journey { grid-template-columns: 1fr 1fr; }
  .journey-item { border-bottom: 1px solid var(--line); }
  .journey-item:nth-child(2n) { border-right: 0; }
  .metric-grid { grid-template-columns: 1fr 1fr; }
  .metric:nth-child(2n) { border-right: 0; }
  .metric:nth-child(3) { border-right: 1px solid var(--line); }
  .commitment { grid-template-columns: 1fr 1fr; }
  .commitment-intro { grid-column: 1 / -1; }
  .about-hero, .about-hero .container { min-height: 0; }
  .contact-layout { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  body { font-size: 14px; }
  .container { width: min(calc(100% - 24px), var(--container)); }
  .section { padding: 24px 0; }
  .section-compact { padding: 12px 0; }
  .display { max-width: 345px; font-size: clamp(2.05rem, 9.2vw, 2.3rem); line-height: 1.03; }
  .section-title { font-size: clamp(1.75rem, 7.6vw, 2.1rem); line-height: 1.07; }
  .hero-grid { padding: 24px 0 16px; }
  .hero-copy .display { margin-bottom: 4px; }
  .hero-copy .lede { margin-top: 4px; font-size: .9rem; line-height: 1.55; }
  .hero-copy .display, .hero-copy .lede { text-shadow: 0 1px 0 rgba(255,255,255,.98), 0 0 22px rgba(255,255,255,.92); }
  .actions { display: grid; grid-template-columns: 1fr; gap: 8px; margin-top: 14px; }
  .actions .button { width: 100%; }
  .hero-product { min-height: 255px; margin-top: -6px; }
  .hero-product img { width: min(54vw, 190px); height: 250px; }
  .trust-strip, .products-row, .product-grid, .benefit-grid, .why-grid, .pillars, .metric-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .security-grid, .support-cards, .faq-links { grid-template-columns: 1fr; }
  .trust-item { min-height: 74px; padding: 9px 10px; gap: 8px; }
  .trust-item:last-child, .why-item:last-child, .metric:last-child { grid-column: 1 / -1; }
  .trust-item, .benefit, .why-item, .security-item, .pillar, .metric, .faq-link { border-right: 0 !important; border-bottom: 1px solid var(--line); }
  .trust-item:last-child, .why-item:last-child, .security-item:last-child, .pillar:last-child, .metric:last-child, .faq-link:last-child { border-bottom: 0; }
  .science-card { padding: 18px; gap: 14px; }
  .benefit { padding: 10px 5px; }
  .catalog-controls { align-items: stretch; flex-direction: column; gap: 10px; }
  .filter-bar { width: 100%; padding-bottom: 4px; }
  .sort-select { width: 100%; }
  .products-row, .product-grid { gap: 9px; }
  .product-card { padding: 9px; }
  .product-visual { height: 142px; }
  .product-meta strong { font-size: 11px; overflow-wrap: anywhere; }
  .product-meta small { font-size: 9px; }
  .newsletter { min-height: 0; margin: 16px auto 20px; padding: 18px; background-size: cover; }
  .newsletter h2 { font-size: 1.65rem; }
  .newsletter-form { flex-direction: column; }
  .input, .textarea, .select, .sort-select, .newsletter-form input,
  .form-field .input, .form-field .select, .form-field .textarea { font-size: 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; grid-row: auto; }
  .footer-bottom { flex-direction: column; gap: 7px; }
  .inner-hero { min-height: 0; padding: 28px 0 20px; }
  .products-intro { gap: 18px; }
  .molecule-art { min-height: 155px; }
  .featured-product { min-height: 0; padding: 22px; grid-template-columns: 1fr; }
  .featured-product img { width: 190px; height: 180px; grid-row: 1; }
  .verify-grid { gap: 20px; }
  .verify-hero { padding: 28px 0 18px; }
  .verify-form, .steps-card, .result-card, .faq-wrap { padding: 20px; }
  .product-code-art { min-height: 275px; }
  .product-code-art img { left: -20px; width: 225px; height: 285px; }
  .qr-card { top: 31%; width: 108px; height: 125px; padding: 9px; }
  .qr { width: 70px; height: 70px; }
  .qr-card { right: 0; }
  .steps { grid-template-columns: 1fr; }
  .step { display: grid; grid-template-columns: 28px 65px 1fr; gap: 10px; align-items: start; }
  .step:not(:last-child)::after { display: none; }
  .step-number, .step-art { margin: 0; }
  .step p { grid-column: 3; }
  .journey { grid-template-columns: 1fr; }
  .journey-item { border-right: 0; }
  .journey-item::before { display: none; }
  .commitment { grid-template-columns: 1fr; }
  .commitment-intro { grid-column: auto; }
  .image-panel { min-height: 190px; margin-top: 14px; }
  .contact-form-card { padding: 20px; }
  .support-card { min-height: 108px; padding: 12px; }
  .site-footer { padding: 26px 0 18px; }
  .footer-grid { gap: 20px 14px; }
  .footer-bottom { margin-top: 18px; }
}

@media (max-width: 960px), (orientation: portrait) and (max-width: 1080px) {
  .products-page { --container: 100%; }
  .product-showcase-hero { min-height: 0; }
  .product-showcase-hero::before { background: linear-gradient(180deg,rgba(251,252,249,.99) 0%,rgba(251,252,249,.97) 29%,rgba(251,252,249,.63) 49%,rgba(251,252,249,.11) 74%,rgba(251,252,249,.7) 100%),url('../images/lab-molecules.png') 62% 56% / cover no-repeat; }
  .product-hero-grid { min-height: 0; grid-template-columns: 1fr; gap: 0; }
  .product-hero-copy { padding: 38px 0 8px; }
  .product-hero-title { max-width: 720px; font-size: clamp(3rem,7vw,4.35rem); }
  .product-hero-copy .lede { max-width: 660px; }
  .product-hero-standards { max-width: none; grid-template-columns: repeat(2,minmax(0,1fr)); }
  .hero-standard { min-height: 94px; padding: 14px 20px; border-bottom: 1px solid var(--line); }
  .hero-standard:first-child { padding-left: 20px; }
  .hero-standard:nth-child(2) { border-right: 0; }
  .hero-standard:nth-child(n+3) { border-bottom: 0; }
  .product-hero-art { min-height: 360px; }
  .product-hero-vial { right: 62%; bottom: 72px; transform: scale(1.14); }
  .product-hero-vial-image { right: 21%; bottom: -5px; width: min(47%,380px); height: 355px; }
  .catalog-featured { grid-template-columns: 1fr 1fr; }
  .catalog-featured-copy { padding: 26px; grid-column: 1 / -1; }
  .catalog-featured-art { min-height: 260px; }
  .featured-related { padding: 18px; }
  .certification-strip { grid-template-columns: repeat(3,minmax(0,1fr)); }
  .certification-intro { grid-column: 1 / -1; }
}

@media (max-width: 560px) {
  .product-hero-copy { padding: 27px 0 4px; }
  .product-hero-title { margin-bottom: 13px; font-size: clamp(2.35rem,10.2vw,3rem); }
  .product-hero-copy .lede { font-size: .9rem; line-height: 1.62; }
  .product-hero-copy > .button { width: 100%; margin-top: 18px; }
  .product-hero-standards { margin-top: 22px; }
  .hero-standard { min-height: 105px; padding: 13px 11px; }
  .hero-standard:first-child { padding-left: 11px; }
  .hero-standard strong { white-space: normal; }
  .product-hero-art { min-height: 285px; }
  .product-hero-vial { right: 68%; bottom: 61px; transform: scale(.86); }
  .product-hero-vial-image { right: 14%; bottom: -8px; width: 60%; height: 285px; }
  .catalog-controls { padding: 9px; }
  .catalog-product-card { min-height: 0; padding: 8px; }
  .catalog-product-card .product-visual { height: 146px; }
  .catalog-product-card .mini-vial { transform: scale(.84); }
  .catalog-product-card .product-meta { padding-top: 9px; }
  .catalog-featured { grid-template-columns: 1fr; }
  .catalog-featured-copy { padding: 22px; }
  .catalog-featured-copy h2 { font-size: 2rem; }
  .featured-benefits { gap: 5px; }
  .featured-benefits div { align-items: flex-start; flex-direction: column; gap: 2px; }
  .catalog-featured-art { min-height: 220px; }
  .featured-vial { bottom: 42px; transform: translateX(-50%) scale(1.5); }
  .featured-related { padding: 15px; }
  .certification-strip { grid-template-columns: 1fr 1fr; }
  .certification-intro { grid-column: 1 / -1; }
  .certification-item { min-height: 72px; justify-content: flex-start; padding: 12px; }
}

@media (max-width: 360px) {
  .products-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-grid { grid-template-columns: 1fr; }
  .product-visual { height: 165px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* About page — wide 1920 canvas, scoped to avoid changing other pages. */
.about-page {
  --container: 1680px;
}

.about-page .about-hero {
  min-height: 438px;
  padding: 0;
  isolation: isolate;
  background: #fafbf9;
}

.about-page .about-hero::after {
  z-index: 0;
  background:
    linear-gradient(90deg, #fafbf9 0%, rgba(250,251,249,.97) 35%, rgba(250,251,249,.72) 53%, rgba(250,251,249,.14) 79%, rgba(250,251,249,.03) 100%),
    url('../images/lab-molecules.png') right 52% / cover no-repeat;
}

.about-page .about-hero .container {
  min-height: 438px;
  align-items: center;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: 24px;
}

.about-page .about-hero .container > div:first-child {
  min-width: 0;
  padding: 42px 0;
}

.about-page .about-hero-art {
  min-width: 0;
  align-self: stretch;
}

.about-page #standards > .container,
.about-page main > .section-compact > .container {
  width: min(calc(100% - 48px), var(--container));
}

.about-page .pillars {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.about-page .image-panel {
  min-height: clamp(240px, 15vw, 300px);
}

.about-page .journey,
.about-page .metric-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.about-page .commitment {
  grid-template-columns: minmax(280px, 1.2fr) repeat(4, minmax(0, .8fr));
}

.about-page .commitment-intro,
.about-page .value,
.about-page .pillar,
.about-page .journey-item,
.about-page .metric {
  min-width: 0;
}

@media (max-width: 960px), (orientation: portrait) and (max-width: 1080px) {
  .about-page {
    --container: 100%;
  }

  .about-page .about-hero,
  .about-page .about-hero .container {
    min-height: 0;
  }

  .about-page .about-hero .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
  }

  .about-page .about-hero .container > div:first-child {
    padding: 42px 0 8px;
  }

  .about-page .about-hero-art {
    min-height: clamp(250px, 36vw, 360px);
  }

  .about-page .about-hero::after {
    background:
      linear-gradient(180deg, #fafbf9 0%, rgba(250,251,249,.98) 39%, rgba(250,251,249,.7) 56%, rgba(250,251,249,.1) 78%, rgba(250,251,249,.38) 100%),
      url('../images/lab-molecules.png') 64% 76% / cover no-repeat;
  }

  .about-page .pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .journey,
  .about-page .metric-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .journey-item::before {
    display: none;
  }

  .about-page .journey-item:last-child,
  .about-page .metric:last-child {
    grid-column: 1 / -1;
  }

  .about-page .commitment {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-page .commitment-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .about-page #standards > .container,
  .about-page main > .section-compact > .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .about-page .about-hero .container > div:first-child {
    padding: 28px 0 4px;
  }

  .about-page .about-hero-art {
    min-height: 225px;
  }

  .about-page .about-hero::after {
    background:
      linear-gradient(180deg, #fafbf9 0%, rgba(250,251,249,.98) 43%, rgba(250,251,249,.62) 62%, rgba(250,251,249,.08) 83%, rgba(250,251,249,.32) 100%),
      url('../images/lab-molecules.png') 65% 82% / auto 64% no-repeat;
  }

  .about-page .journey {
    grid-template-columns: minmax(0, 1fr);
  }

  .about-page .journey-item:last-child,
  .about-page .metric:last-child {
    grid-column: auto;
  }

  .about-page .commitment {
    padding: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .about-page .commitment-intro {
    grid-column: 1 / -1;
  }
}
