:root {
  --ink: #090a0c;
  --muted: #686b73;
  --blue: #194d82;
  --line: #e8e8eb;
  --white: #ffffff;
  --footer: #050507;
  --shadow: 0 24px 60px rgba(12, 22, 32, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.notice-bar {
  position: sticky;
  top: 0;
  z-index: 40;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  padding: 14px clamp(18px, 4vw, 64px);
  color: var(--white);
  background: #184a80;
  font-size: clamp(0.95rem, 1.7vw, 1.28rem);
  text-align: center;
}

.site-header {
  position: sticky;
  top: 58px;
  z-index: 35;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  background: rgba(255, 255, 255, 0.93);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  font-size: 1.02rem;
  font-weight: 850;
}

.brand-logo {
  width: min(300px, 44vw);
  height: 54px;
  background: transparent;
  object-fit: contain;
  object-position: left center;
}

.brand-icon {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--blue);
  font-size: 0.86rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  color: #25272c;
  font-size: 0.95rem;
  font-weight: 720;
}

.nav a:hover,
.footer a:hover {
  color: #8bc5ff;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: calc(100vh - 116px);
  overflow: hidden;
  display: grid;
  place-items: center;
  background: #12385e;
}

.hero img,
.hero .shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  width: min(680px, 58vw);
  height: 92%;
  inset: auto 50% 0 auto;
  object-fit: contain;
  transform: translateX(50%);
  mix-blend-mode: multiply;
}

.shade {
  background: rgba(5, 16, 26, 0.36);
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(1060px, calc(100% - 36px));
  padding: clamp(70px, 10vw, 128px) 0;
  color: var(--white);
  text-align: center;
}

.hero-copy p,
.banner-copy p,
.motion-copy p,
.catalog-heading p {
  margin: 0 0 18px;
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 760;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(4.2rem, 8vw, 7.4rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2.7rem, 5.2vw, 5.6rem);
  line-height: 1.13;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.18rem;
}

.hero-copy span,
.banner-copy span,
.motion-copy span {
  display: block;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
}

.pill-button {
  display: inline-flex;
  min-height: 62px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 17px 34px;
  font-weight: 850;
  cursor: pointer;
}

.pill-button.light {
  color: var(--ink);
  background: var(--white);
  box-shadow: var(--shadow);
}

.pill-button.dark {
  color: var(--white);
  background: var(--ink);
}

.pill-button.outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
}

.image-banner {
  position: relative;
  width: min(1720px, calc(100% - 72px));
  min-height: 720px;
  margin: 72px auto 0;
  overflow: hidden;
  border-radius: 24px;
  background: #f6f7f8;
}

.image-banner img {
  position: absolute;
  right: 3%;
  bottom: 0;
  width: min(620px, 45%);
  height: 88%;
  object-fit: contain;
}

.banner-copy {
  position: relative;
  z-index: 1;
  width: min(860px, 56%);
  margin: 0 auto 0 6%;
  padding: 88px 0;
  text-align: left;
}

.banner-copy h2 {
  font-size: clamp(3rem, 4.7vw, 5.25rem);
  line-height: 1.15;
}

.banner-copy span {
  color: var(--muted);
}

.featured-products {
  margin: 92px 0 0;
  padding: 82px 0 108px;
  background: #f6f6f7;
}

.featured-inner {
  width: min(1580px, calc(100% - 72px));
  margin: 0 auto;
}

.featured-inner h2 {
  margin-bottom: 36px;
  font-size: clamp(2.2rem, 3.2vw, 3.4rem);
}

.product-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(22px, 2.4vw, 36px);
  align-items: start;
}

.shop-card {
  min-height: 520px;
  padding: 0 0 20px;
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease, transform 180ms ease;
}

.shop-card:hover,
.shop-card:focus-within {
  padding: 20px;
  background: var(--white);
  box-shadow: 0 26px 64px rgba(22, 28, 36, 0.14);
  transform: translateY(-6px);
}

.shop-media {
  display: grid;
  min-height: 340px;
  place-items: center;
  margin-bottom: 24px;
  overflow: hidden;
  background: #d8d8d8;
}

.shop-media img {
  width: min(210px, 62%);
  max-height: 310px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(16, 24, 32, 0.2));
}

.shop-card p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

.shop-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.buy-button {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  border-radius: 6px;
  color: var(--white);
  background: #64a9d4;
  font-weight: 850;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 160ms ease, transform 160ms ease, background 160ms ease;
}

.shop-card:hover .buy-button,
.shop-card:focus-within .buy-button {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.buy-button:hover {
  background: #438fc0;
}

.why-section {
  position: relative;
  width: min(1720px, calc(100% - 72px));
  margin: 140px auto 70px;
  padding: 24px 0 10px;
  overflow: hidden;
  text-align: center;
}

.why-section::before,
.why-section::after {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  border: 2px solid rgba(25, 77, 130, 0.04);
  clip-path: polygon(25% 6%, 75% 6%, 100% 50%, 75% 94%, 25% 94%, 0 50%);
  pointer-events: none;
}

.why-section::before {
  left: -160px;
  bottom: -120px;
}

.why-section::after {
  right: -120px;
  top: 30px;
}

.why-heading {
  position: relative;
  z-index: 1;
  width: min(1320px, 100%);
  margin: 0 auto 40px;
}

.why-heading h2 {
  font-size: clamp(2.8rem, 4.3vw, 4.7rem);
}

.why-heading p {
  max-width: 1180px;
  margin: 0 auto;
  color: #24282f;
  font-size: clamp(1.05rem, 1.5vw, 1.36rem);
  line-height: 1.72;
}

.why-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(220px, 1fr) minmax(360px, 560px) minmax(220px, 1fr);
  grid-template-rows: auto auto;
  gap: 42px clamp(36px, 5vw, 90px);
  align-items: center;
  min-height: 700px;
}

.why-item {
  max-width: 420px;
  margin: 0 auto;
  text-align: center;
}

.top-left {
  grid-column: 1;
  grid-row: 1;
}

.top-right {
  grid-column: 3;
  grid-row: 1;
}

.bottom-left {
  grid-column: 1;
  grid-row: 2;
}

.bottom-right {
  grid-column: 3;
  grid-row: 2;
}

.why-icon {
  display: grid;
  width: 84px;
  height: 84px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  color: var(--white);
  background: #63a8d4;
  font-size: 2rem;
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(99, 168, 212, 0.28);
}

.why-item h3 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2vw, 1.9rem);
}

.why-item p {
  margin: 0;
  color: #22262c;
  font-size: clamp(1rem, 1.35vw, 1.28rem);
  line-height: 1.62;
}

.center-vial {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  display: grid;
  min-height: 600px;
  place-items: center;
}

.center-vial span {
  position: absolute;
  width: min(470px, 88vw);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 64% 28%, #e9efff, #b8dcfb 74%);
  box-shadow: 0 28px 70px rgba(70, 118, 170, 0.16);
}

.center-vial img {
  position: relative;
  z-index: 1;
  width: min(360px, 62vw);
  max-height: 590px;
  object-fit: contain;
  filter: drop-shadow(0 28px 28px rgba(24, 36, 48, 0.2));
}

.outline-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-width: 300px;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 26px;
  border: 1px solid #63a8d4;
  border-radius: 8px;
  color: #5f9fd0;
  font-weight: 850;
}

.outline-button:hover {
  color: var(--white);
  background: #63a8d4;
}

.research-intro {
  display: grid;
  grid-template-columns: 0.8fr 1fr;
  gap: 28px;
  width: min(1700px, calc(100% - 72px));
  margin: 0 auto 70px;
  align-items: end;
}

.research-intro h2 {
  margin: 0;
  font-size: clamp(4rem, 7.5vw, 8rem);
}

.research-intro p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.motion-panel {
  position: relative;
  width: min(1760px, calc(100% - 72px));
  min-height: 780px;
  margin: 0 auto 110px;
  overflow: hidden;
  border-radius: 26px;
  background: #24394b;
}

.motion-panel img,
.motion-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.motion-panel img {
  max-width: none;
  width: 108%;
  height: 108%;
  object-fit: cover;
  animation: labPan 12s ease-in-out infinite alternate;
}

@keyframes labPan {
  from {
    transform: translate3d(-2.5%, -2%, 0) scale(1.02);
  }
  to {
    transform: translate3d(0.5%, 0, 0) scale(1.09);
  }
}

.motion-shade {
  background: rgba(8, 18, 28, 0.5);
}

.motion-copy {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 780px;
  place-items: center;
  align-content: center;
  width: min(980px, calc(100% - 34px));
  margin: 0 auto;
  color: var(--white);
  text-align: center;
}

.motion-copy h2 {
  font-size: clamp(3.3rem, 6.4vw, 7rem);
}

.motion-copy span {
  max-width: 980px;
  margin: 0 auto;
  line-height: 1.55;
}

.catalog {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
  width: min(1540px, calc(100% - 72px));
  margin: 0 auto 100px;
  padding: clamp(42px, 5vw, 72px);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.catalog-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 28px;
  align-items: end;
}

.catalog-heading h2 {
  max-width: 1100px;
  margin-bottom: 0;
  font-size: clamp(2rem, 2.8vw, 3.35rem);
  line-height: 1.18;
}

.catalog-heading p {
  color: var(--blue);
}

.featured-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 30px);
}

.featured-product-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 18px;
  min-height: 100%;
  padding: clamp(18px, 2.1vw, 26px);
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fafafa;
}

.featured-product-media {
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
}

.featured-product-media img {
  width: min(220px, 84%);
  max-height: 300px;
  object-fit: contain;
}

.featured-product-copy h3 {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 2.55vw, 3rem);
  line-height: 1.04;
}

.featured-product-copy p {
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.64;
}

.featured-product-label {
  margin: 0 0 10px;
  color: var(--blue) !important;
  font-size: 0.9rem !important;
  font-weight: 900;
  text-transform: uppercase;
}

.featured-product-price {
  display: inline-flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 18px;
  border-radius: 12px;
  padding: 15px 18px;
  color: #8f96a3;
  background: #121820;
  font-size: clamp(1.05rem, 1.35vw, 1.32rem);
  line-height: 1;
}

.featured-product-price strong {
  color: #ffffff;
}

.featured-product-price i {
  color: #5e6673;
  font-style: normal;
}

.quote-form label,
.service-strip p,
.footer p,
.footer small {
  color: var(--muted);
}

.quote-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr 1.4fr auto;
  gap: 14px;
  align-items: end;
  margin-top: 20px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 760;
}

input {
  width: 100%;
  min-height: 54px;
  border: 1px solid #d7d9df;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
}

input:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(25, 77, 130, 0.16);
}

.quote-form .pill-button {
  min-height: 54px;
  margin-top: 0;
}

.quote-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.quote-form-status {
  grid-column: 1 / -1;
  min-height: 24px;
  margin: 4px 0 0;
  color: var(--muted);
  font-weight: 720;
}

.quote-form-status.is-success {
  color: #18733c;
}

.quote-form-status.is-error {
  color: #b42318;
}

.quote-form button[disabled] {
  cursor: wait;
  opacity: 0.62;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  width: min(1720px, calc(100% - 72px));
  margin: 0 auto;
  padding: 72px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
}

.service-strip > article > span {
  font-size: 1.8rem;
}

.service-strip p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.55;
}

.footer {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: -1px;
  padding: 110px clamp(24px, 6vw, 96px) 80px;
  color: var(--white);
  background: var(--footer);
  border-radius: 0 0 52px 52px;
}

.footer h2 {
  margin-bottom: 18px;
  font-size: clamp(1.8rem, 2.8vw, 2.7rem);
}

.footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.45;
  margin: 0 0 12px;
}

.footer .contact-line {
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.14rem;
  line-height: 1.5;
}

.footer .contact-line strong {
  color: rgba(255, 255, 255, 0.82);
}

.footer .contact-line a {
  color: #2f9bff;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer .disclaimer {
  margin-top: 46px;
  color: rgba(255, 255, 255, 0.58);
}

.footer small {
  grid-column: 1 / -1;
  color: rgba(255, 255, 255, 0.56);
}

.age-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.68);
}

.age-gate.is-accepted {
  display: none;
}

.age-panel {
  width: min(540px, 100%);
  padding: 34px;
  border-radius: 24px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.age-panel h2 {
  font-size: 2.4rem;
}

.age-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.age-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.policy-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: 76px 0 110px;
}

.policy-page a {
  color: var(--blue);
  font-weight: 850;
}

.policy-page h1 {
  margin: 34px 0 24px;
  color: var(--ink);
  font-size: clamp(3rem, 6vw, 5rem);
}

.policy-page p {
  color: #3d424a;
  font-size: 1.15rem;
  line-height: 1.75;
}

.product-catalog-page {
  width: min(1480px, calc(100% - 48px));
  margin: 0 auto;
  padding: 56px 0 110px;
}

.catalog-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
  color: #8a8d95;
  font-size: 0.95rem;
}

.catalog-breadcrumb strong {
  color: var(--ink);
}

.product-catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px;
}

.product-catalog-heading p,
.product-catalog-heading h1 {
  margin: 0;
}

.product-catalog-heading p {
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.product-catalog-heading h1 {
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1;
}

.product-catalog-heading > span {
  color: var(--muted);
  font-size: 1rem;
}

.product-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 58px 28px;
}

.directory-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  transition: transform 180ms ease;
}

.directory-card:hover,
.directory-card:focus-visible {
  transform: translateY(-6px);
}

.directory-card:focus-visible {
  outline: 3px solid rgba(25, 77, 130, 0.3);
  outline-offset: 6px;
}

.directory-media {
  display: grid;
  min-height: 390px;
  place-items: center;
  overflow: hidden;
  padding: 18px;
  background: #ffffff;
}

.directory-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.directory-copy {
  min-height: 154px;
  padding: 24px 26px 28px;
  background: #f5f5f6;
}

.directory-copy p {
  margin: 0 0 12px;
  color: #858891;
  font-size: 0.98rem;
  line-height: 1.35;
}

.directory-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.72rem);
  line-height: 1.25;
}

.about-hero {
  display: flex;
  min-height: 390px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 72px 24px 88px;
  border-bottom: 1px solid var(--line);
  background: #fafbfc;
  text-align: center;
}

.about-hero p,
.about-hero h1,
.about-hero span {
  margin: 0;
}

.about-hero p,
.section-label,
.about-products-heading > p {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-hero h1 {
  margin: 18px 0;
  font-size: clamp(3.6rem, 8vw, 7rem);
  line-height: 0.95;
}

.about-hero span {
  color: var(--muted);
  font-size: 1.15rem;
}

.about-intro {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  padding: 92px 0 74px;
}

.about-intro h2,
.about-intro > p {
  max-width: 1020px;
}

.about-intro h2 {
  margin: 40px 0 18px;
  font-size: clamp(2.4rem, 5vw, 4.6rem);
  line-height: 1.03;
}

.about-intro > p {
  color: #3d424a;
  font-size: 1.15rem;
  line-height: 1.75;
}

.about-intro .about-disclaimer {
  max-width: none;
  margin: 0;
  padding: 22px 26px;
  border-left: 4px solid var(--blue);
  background: #f4f7fa;
  color: #30343a;
  font-size: 1rem;
}

.about-mission {
  display: grid;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
  align-items: center;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 8vw, 110px);
  padding: 30px 0 110px;
}

.about-mission-media {
  display: grid;
  min-height: 650px;
  place-items: center;
  overflow: hidden;
  background: #fff;
}

.about-mission-media img {
  width: min(78%, 460px);
  height: auto;
  max-height: 650px;
  object-fit: contain;
}

.about-mission-copy h2 {
  margin: 12px 0 22px;
  font-size: clamp(2.8rem, 5vw, 5rem);
  line-height: 1;
}

.about-mission-copy > p:not(.section-label) {
  margin: 0 0 48px;
  color: #444952;
  font-size: 1.08rem;
  line-height: 1.75;
}

.about-mission-copy h3 {
  margin: 0 0 26px;
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.about-mission-copy ul + h3 {
  margin-top: 48px;
}

.about-mission-copy ul {
  display: grid;
  margin: 0;
  padding: 0;
  gap: 22px;
  list-style: none;
}

.about-mission-copy li {
  display: grid;
  grid-template-columns: 165px minmax(0, 1fr);
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.about-mission-copy li span {
  color: var(--muted);
  line-height: 1.55;
}

.about-products {
  padding: 96px 0 118px;
  background: #fafafa;
}

.about-products-heading,
.about-product-grid {
  width: min(1480px, calc(100% - 48px));
  margin-right: auto;
  margin-left: auto;
}

.about-products-heading {
  margin-bottom: 52px;
  text-align: center;
}

.about-products-heading p,
.about-products-heading h2 {
  margin: 0;
}

.about-products-heading h2 {
  margin: 14px 0 12px;
  font-size: clamp(2.7rem, 5vw, 5rem);
  line-height: 1;
}

.about-products-heading span {
  color: var(--muted);
  font-size: 1.05rem;
}

.about-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
}

.privacy-shell {
  min-height: 100vh;
  background: #fff;
}

.privacy-header {
  display: flex;
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.privacy-home-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border: 1px solid #1d2733;
  border-radius: 4px;
  color: #111820;
  font-weight: 800;
  transition: background 160ms ease, color 160ms ease;
}

.privacy-home-button:hover,
.privacy-home-button:focus-visible {
  color: #fff;
  background: #111820;
}

.privacy-main {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
  padding: 76px 0 120px;
}

.privacy-title {
  padding-bottom: 54px;
  border-bottom: 1px solid var(--line);
}

.privacy-title p,
.privacy-title h1,
.privacy-title span {
  margin: 0;
}

.privacy-title p {
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 850;
  text-transform: uppercase;
}

.privacy-title h1 {
  margin: 16px 0;
  font-size: clamp(3.4rem, 7vw, 6.5rem);
  line-height: 0.98;
}

.privacy-title span {
  color: var(--muted);
  font-size: 1rem;
}

.privacy-summary {
  margin: 54px 0 68px;
  padding: 34px 38px;
  border-left: 5px solid var(--blue);
  background: #f4f7fa;
}

.privacy-summary h2 {
  margin: 0 0 18px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.privacy-summary p {
  margin: 12px 0 0;
  color: #353a43;
  font-size: 1.02rem;
  line-height: 1.75;
}

.privacy-summary a,
.privacy-content a {
  color: var(--blue);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.privacy-layout {
  display: grid;
  align-items: start;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 112px);
}

.privacy-toc {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 0;
  border-top: 3px solid var(--ink);
}

.privacy-toc strong,
.privacy-toc a {
  padding: 15px 4px;
  border-bottom: 1px solid var(--line);
}

.privacy-toc a {
  color: #555b64;
  font-size: 0.88rem;
  line-height: 1.4;
}

.privacy-toc a:hover {
  color: var(--blue);
}

.privacy-content {
  min-width: 0;
}

.privacy-content section {
  padding: 0 0 58px;
  scroll-margin-top: 24px;
}

.privacy-content section + section {
  padding-top: 58px;
  border-top: 1px solid var(--line);
}

.privacy-content h2 {
  margin: 0 0 26px;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.1;
}

.privacy-content h3 {
  margin: 30px 0 10px;
  font-size: 1.18rem;
}

.privacy-content p,
.privacy-content li {
  color: #3f454e;
  font-size: 1.02rem;
  line-height: 1.8;
}

.privacy-content p {
  margin: 0 0 18px;
}

.privacy-content ul {
  margin: 0 0 22px;
  padding-left: 24px;
}

.privacy-contact-link {
  display: inline-block;
  margin-top: 10px;
  font-size: clamp(1.15rem, 2.5vw, 1.7rem);
}

.privacy-footer {
  display: flex;
  min-height: 130px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 34px clamp(20px, 5vw, 72px);
  color: #b7b8bd;
  background: #050507;
}

.privacy-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.privacy-footer a:hover {
  color: #fff;
}

@media (prefers-reduced-motion: reduce) {
  .motion-panel img {
    animation: none;
  }
}

@media (max-width: 980px) {
  .site-header {
    top: 58px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 16px 20px;
    border-bottom: 1px solid var(--line);
  }

  .nav a:last-child {
    border-bottom: 0;
  }

  h1 {
    font-size: clamp(3.2rem, 13vw, 5rem);
  }

  h2,
  .banner-copy h2,
  .why-heading h2,
  .motion-copy h2,
  .research-intro h2 {
    font-size: clamp(2.6rem, 10vw, 4.7rem);
  }

  .image-banner,
  .motion-panel {
    width: calc(100% - 28px);
    min-height: 620px;
    border-radius: 22px;
  }

  .banner-copy {
    width: calc(100% - 32px);
    margin: 0 auto;
    padding: 64px 0;
    text-align: center;
  }

  .image-banner img {
    right: 50%;
    width: min(520px, 82%);
    height: 72%;
    transform: translateX(50%);
    opacity: 0.42;
  }

  .research-intro,
  .catalog,
  .catalog-heading,
  .footer {
    grid-template-columns: 1fr;
  }

  .featured-inner {
    width: calc(100% - 28px);
  }

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

  .why-section,
  .research-intro,
  .catalog,
  .service-strip {
    width: calc(100% - 28px);
  }

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

  .why-layout {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 30px;
    min-height: auto;
  }

  .center-vial,
  .top-left,
  .top-right,
  .bottom-left,
  .bottom-right {
    grid-column: 1;
    grid-row: auto;
  }

  .center-vial {
    order: -1;
    min-height: 520px;
  }

  .catalog {
    padding: 36px 24px;
  }

  .quote-form,
  .featured-product-card,
  .service-strip {
    grid-template-columns: 1fr;
  }

  .featured-product-card {
    min-height: auto;
  }

  .featured-product-media {
    min-height: 360px;
  }

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

  .about-mission {
    grid-template-columns: 1fr;
  }

  .about-mission-media {
    min-height: 520px;
  }

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

  .privacy-layout {
    grid-template-columns: 1fr;
  }

  .privacy-toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .notice-bar {
    min-height: 74px;
  }

  .site-header {
    top: 74px;
    padding: 14px 16px;
  }

  .hero {
    min-height: 720px;
  }

  .hero img {
    width: 92vw;
    height: 80%;
  }

  .hero-copy {
    width: calc(100% - 28px);
  }

  .hero-copy span,
  .banner-copy span,
  .motion-copy span {
    font-size: 1.06rem;
  }

  .image-banner {
    margin-top: 36px;
  }

  .featured-products {
    margin-top: 52px;
    padding: 54px 0 74px;
  }

  .product-row {
    grid-template-columns: 1fr;
  }

  .shop-media {
    min-height: 300px;
  }

  .why-section {
    margin-top: 70px;
  }

  .center-vial {
    min-height: 430px;
  }

  .center-vial span {
    width: min(340px, 86vw);
  }

  .center-vial img {
    width: min(270px, 70vw);
  }

  .featured-product-media {
    min-height: 330px;
  }

  .featured-product-grid {
    grid-template-columns: 1fr;
  }

  .featured-product-media img {
    width: min(280px, 88%);
    max-height: 340px;
  }

  .featured-product-price {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    width: 100%;
    padding: 16px 18px;
  }

  .product-catalog-page {
    width: calc(100% - 28px);
    padding-top: 38px;
  }

  .product-catalog-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-directory {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .directory-media {
    min-height: 360px;
  }

  .about-hero {
    min-height: 330px;
  }

  .about-intro,
  .about-mission,
  .about-products-heading,
  .about-product-grid {
    width: calc(100% - 28px);
  }

  .about-mission {
    gap: 36px;
    padding-bottom: 76px;
  }

  .about-mission-media {
    min-height: 420px;
  }

  .about-mission-copy li {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .about-product-grid {
    grid-template-columns: 1fr;
  }

  .privacy-header {
    align-items: stretch;
    flex-direction: column;
  }

  .privacy-home-button {
    width: 100%;
  }

  .privacy-main {
    width: calc(100% - 28px);
    padding-top: 52px;
  }

  .privacy-summary {
    padding: 26px 22px;
  }

  .privacy-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}
