:root {
  --ink: #18140d;
  --muted: #6c604b;
  --gold: #997315;
  --gold-dark: #4f3510;
  --gold-soft: #e8d7ae;
  --cream: #fbf7ee;
  --white: #ffffff;
  --line: rgba(24, 20, 13, 0.12);
  --shadow: 0 24px 70px rgba(79, 53, 16, 0.17);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: Lexend, Arial, sans-serif;
  color: var(--ink);
  background-color: #E6F7F9;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
.topbar {
  min-height: 42px;
  display: grid;
  place-items: center;
  padding: 8px 18px;
  color: var(--white);
  background: #000;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 5vw, 72px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 800; }
.brand img { width: auto; max-width: 230px; height: 56px; object-fit: contain; }
.brand-mark { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--gold); color: var(--ink); }
.nav-links { display: flex; align-items: center; gap: 28px; color: var(--muted); font-weight: 700; }
.nav-links a:hover, .nav-links .active { color: var(--gold-dark); }
.menu-button { display: none; width: 42px; height: 42px; flex-direction: column; justify-content: center; gap: 5px; border: 1px solid var(--line); border-radius: 50%; background: var(--white); }
.menu-button span { width: 18px; height: 2px; margin: 0 auto; background: var(--ink); }
.hero, .page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding: clamp(56px, 8vw, 110px) clamp(18px, 5vw, 72px);
}
.hero h1, .page-hero h1 { max-width: 760px; margin: 12px 0 18px; font-size: 36px; line-height: 1.12; }
.lead, .rich-text, .section-heading p, .product-card p, .gallery-card p { color: var(--muted); font-size: 17px; line-height: 1.75; }
.section-kicker, .eyebrow { color: var(--gold-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.button, button, input[type=submit] {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  background: linear-gradient(90deg, #38388C 0%, #1174BD 80%);
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.button.secondary { background: linear-gradient(90deg, #38388C 0%, #1174BD 80%);}
.button.light { background: var(--white); color: var(--gold-dark); }
.hero-actions, .inline-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 24px; }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px 24px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
}
.hero-points li {
  position: relative;
  padding-left: 26px;
  color: #031937;
  font-size: 15px;
  font-weight: 700;
}
.hero-points li::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--gold);
  content: "\2713";
  font-size: 12px;
  line-height: 1;
  transform: translateY(-50%);
}
.hero-visual, .page-visual {
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, .2) 48%, rgba(255, 255, 255, 0.3));
  box-shadow: var(--shadow);
}
.hero-visual img, .page-visual img { width: 100%; height: 100%; object-fit: cover; }
.mock-pack {
  width: min(360px, 80%);
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-radius: 24px;
  color: var(--white);
  background: linear-gradient(145deg, #22180b, var(--gold));
  transform: rotate(-7deg);
  box-shadow: 0 28px 60px rgba(79, 53, 16, 0.28);
}
.mock-pack span { width: max-content; padding: 8px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--ink); font-weight: 800; }
.mock-pack strong { font-size: 36px; line-height: 1.05; }
.stats, .grid-4, .product-grid, .gallery-grid, .resource-grid {
  display: grid;
  gap: 18px;
  padding: clamp(54px, 7vw, 90px) clamp(18px, 5vw, 72px);
}
.stats { grid-template-columns: repeat(4, 1fr); padding-top: 20px; }
.stats div, .card, .product-card, .gallery-card, .resource-card, .admin-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(24, 20, 13, 0.04);
}
.stats strong { display: block; color: var(--gold-dark); font-size: 38px; }
.purpose-section {
  padding: 12px clamp(18px, 5vw, 72px) clamp(46px, 6vw, 72px);
}
.purpose-heading {
  margin-bottom: 18px;
}
.purpose-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.purpose-card {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 18px;
  align-items: start;
  padding: clamp(22px, 3vw, 30px);
  border: 1px solid rgba(17, 16, 50, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 14px 34px rgba(17, 16, 50, 0.08);
}
.purpose-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  color: var(--white);
  background: linear-gradient(135deg, #38388c, #1174bd);
  font-weight: 800;
}
.purpose-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.purpose-card h2 {
  margin: 0 0 10px;
  color: #050b33;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.15;
}
.purpose-card p {
  margin: 0;
  color: #17243a;
  font-size: 14px;
  line-height: 1.65;
}
.video-section {
  padding: 0 clamp(18px, 5vw, 72px) clamp(54px, 7vw, 90px);
}
.video-frame {
  max-width: 960px;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--ink);
  box-shadow: var(--shadow);
}
.video-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.switching-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: clamp(32px, 5vw, 78px);
  align-items: center;
  padding: clamp(60px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.switching-copy h2 {
  margin: 0 0 28px;
  color: #050b33;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.1;
}
.switching-copy h3 {
  max-width: 560px;
  margin: 0 0 28px;
  color: #050b33;
  font-size: 18px;
  line-height: 1.35;
}
.switching-copy p {
  max-width: 600px;
  color: #18253a;
  font-size: 17px;
  line-height: 1.55;
}
.switching-list {
  display: grid;
  gap: 14px;
  margin: 28px 0;
  padding: 0;
  list-style: none;
}
.switching-list li {
  position: relative;
  padding-left: 34px;
  color: #071129;
  font-size: 15px;
  line-height: 1.55;
}
.switching-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #30307a;
  content: "\2713";
  font-size: 12px;
  font-weight: 800;
}
.switching-bottom {
  margin-top: 26px;
  font-size: 18px;
  font-weight: 600;
}
.switching-button {
  margin-top: 10px;
  border-radius: 8px;
      background: linear-gradient(90deg, #38388C 0%, #1174BD 80%);
}
.switching-media {
  min-height: 520px;
  overflow: hidden;
  border-radius: 0 0 18px 0;
  
}
.switching-media img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  mix-blend-mode: multiply;
  opacity: 0.82;
}
.switching-placeholder {
  min-height: 520px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.84);
  background:
    linear-gradient(rgba(18, 78, 190, 0.82), rgba(12, 62, 172, 0.88)),
    radial-gradient(circle at 55% 40%, rgba(255, 255, 255, 0.42), transparent 34%),
    linear-gradient(135deg, #d9eef0, #0c48a8);
  font-size: 34px;
  font-weight: 800;
}
.certification-band {
  margin: 24px clamp(14px, 2vw, 28px) 0;
  padding: clamp(54px, 7vw, 84px) clamp(18px, 5vw, 72px);
  color: var(--white);
      background-image: linear-gradient(90deg, #38388C 25%, #1174BD 100%);
  border-radius: 24px;
  text-align: center;
}
.certification-band p {
  display: inline-block;
  margin: 0 0 46px;
  font-size: clamp(18px, 2.1vw, 26px);
  font-weight: 800;
  line-height: 1.1;
}
.certification-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(36px, 8vw, 150px);
  flex-wrap: wrap;
}
.certification-row span {
  width: 116px;
  height: 116px;
  display: grid;
  align-content: center;
  place-items: center;
  border: 4px solid rgba(255, 255, 255, 0.88);
  border-radius: 50%;
  color: rgba(255, 255, 255, 0.96);
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.certification-row small {
  display: block;
  margin-top: 3px;
  font-size: 10px;
  letter-spacing: .08em;
  opacity: .86;
}
.launch-section {
  padding: clamp(56px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.section-split-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}
.section-split-heading h2 {
  max-width: 520px;
  margin: 0 0 10px;
  color: #030932;
  font-size: 30px;
  line-height: 1.1;
}
.section-split-heading p {
  max-width: 620px;
  margin: 0;
  color: #24304a;
  line-height: 1.55;
}
.arrow-link {
  color: #147ec4;
  font-size: 28px;
  white-space: nowrap;
}
.launch-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.launch-card {
  display: grid;
  gap: 10px;
  color: #24304a;
  font-size: 13px;
  font-weight: 700;
}
.launch-media {
  min-height: 230px;
  overflow: hidden;
  border-radius: 8px;
  background: #dbeefa;
}
.launch-media img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.launch-placeholder {
  min-height: 230px;
  display: grid;
  place-items: center;
  padding: 18px;
  color: var(--white);
  background: linear-gradient(145deg, #2442a4, #45a5d8);
  font-size: 18px;
  text-align: center;
}
.smarter-section {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(280px, 1fr);
  gap: 28px;
  align-items: center;
  padding: clamp(56px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.smarter-copy h2 {
  max-width: 360px;
  margin: 0 0 16px;
  color: #030932;
  font-size: 28px;
  line-height: 1.08;
}
.smarter-copy p {
  max-width: 560px;
  color: #24304a;
  line-height: 1.6;
}
.smarter-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.smarter-points div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #263d76;
  font-weight: 700;
}
.smarter-points span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid #3c6eb0;
  border-radius: 50%;
}
.choose-section {
  padding: clamp(70px, 8vw, 112px) clamp(18px, 5vw, 72px) 18px;
  color: var(--white);
  background: linear-gradient(to bottom, #111032 0 76%, var(--white) 76% 100%);
  border-radius: 18px 18px 0 0;
}
.choose-section .section-heading {
  max-width: 760px;
  margin-bottom: clamp(54px, 6vw, 76px);
}
.choose-section .section-heading h2,
.choose-section .section-heading p {
  color: var(--white);
}
.choose-section .section-heading h2 {
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(32px, 3.2vw, 46px);
  line-height: 1.18;
}
.choose-section .section-heading p {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 800;
  line-height: 1.35;
}
.choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  max-width: 1200px;
  margin: 0 auto;
}
.choose-grid article {
  min-height: 342px;
  padding: 28px 32px 32px;
  border-radius: 14px;
  color: #17224a;
  background: var(--white);
  text-align: center;
  box-shadow: 0 18px 28px rgba(17, 16, 50, 0.14);
}
.choose-grid span {
  width: 132px;
  height: 132px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  color: #245ba9;
  font-size: 86px;
  line-height: 1;
}
.choose-grid h3 {
  margin: 0 0 16px;
  color: #263048;
  font-size: 20px;
  line-height: 1.25;
}
.choose-grid p {
  margin: 0;
  color: #1c2440;
  font-size: 15px;
  line-height: 1.45;
}
.partner-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.partner-media {
  min-height: 430px;
  overflow: hidden;
  border-radius: 8px;
  background: #e9f6f6;
}
.partner-media img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.partner-placeholder {
  min-height: 430px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(145deg, #2442a4, #9ec7e8);
  font-size: 34px;
  font-weight: 800;
}
.partner-copy h2 {
  margin: 0 0 18px;
  color: #030932;
  font-size: 28px;
}
.partner-copy p {
  color: #24304a;
  line-height: 1.65;
}
.partner-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.partner-list li {
  position: relative;
  padding-left: 28px;
  color: #17224a;
  font-size: 15px;
  line-height: 1.55;
}
.partner-list li::before {
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 18px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #30307a;
  content: "\2713";
  font-size: 11px;
}
.packaging-section {
  padding: clamp(56px, 7vw, 84px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.carousel-controls {
  display: flex;
  gap: 12px;
}
.carousel-controls button {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
  border: 1px solid #147ec4;
  color: #147ec4;
  background: transparent;
}
.packaging-carousel {
  overflow: hidden;
}
.packaging-track {
  display: flex;
  transition: transform 420ms ease;
  will-change: transform;
}
.packaging-card {
  flex: 0 0 33.3333%;
  min-height: 420px;
  overflow: hidden;
  background: var(--gold-soft);
}
.packaging-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.packaging-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  color: var(--white);
  background-image: linear-gradient(90deg, #38388C 25%, #1174BD 100%);
  font-size: 24px;
  font-weight: 800;
}
.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(34px, 5vw, 78px);
  align-items: start;
  padding: clamp(42px, 6vw, 72px) clamp(18px, 5vw, 72px) 34px;
  background: var(--white);
}
.product-gallery {
  display: grid;
  gap: 14px;
}
.product-main-image {
  position: relative;
  min-height: 430px;
  overflow: hidden;
  border-radius: 18px;
  background: linear-gradient(145deg, #d98432, #f2b166);
}
.product-main-image img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}
.product-image-fallback {
  min-height: 430px;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 28px;
  font-weight: 800;
  background: linear-gradient(145deg, #c96a22, #efb15d);
}
.product-zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  font-weight: 800;
}
.product-thumbs {
  display: flex;
  gap: 12px;
}
.product-thumbs span {
  width: 68px;
  height: 68px;
  overflow: hidden;
  display: grid;
  place-items: center;
  border: 2px solid transparent;
  border-radius: 14px;
  background: #f2d6c1;
  color: var(--gold-dark);
  font-weight: 800;
}
.product-thumbs .active { border-color: var(--gold); }
.product-thumbs .muted { opacity: .58; }
.product-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-summary {
  padding-top: 8px;
}
.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #195db4;
  font-size: 13px;
  font-weight: 800;
}
.product-rating small {
  color: #1f2f45;
  font-size: 12px;
  font-weight: 700;
}
.product-category {
  margin: 14px 0 4px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.product-summary h1 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
}
.product-short {
  max-width: 640px;
  margin: 0 0 22px;
  color: #243146;
  font-size: 15px;
  line-height: 1.65;
}
.product-benefit-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 20px;
  margin: 0 0 28px;
}
.product-benefit-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #1e3048;
  font-size: 13px;
  font-weight: 700;
}
.product-benefit-grid span {
  width: 34px;
  height: 34px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid #1f77c9;
  border-radius: 50%;
  color: #1f77c9;
}
.product-flavors strong {
  display: block;
  margin-bottom: 7px;
  color: #050b33;
  font-size: 14px;
}
.product-flavors p {
  margin: 0 0 8px;
  color: #1f2f45;
  font-size: 12px;
  font-weight: 800;
}
.product-flavors div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.product-flavors span {
  min-width: 76px;
  padding: 9px 14px;
  border-radius: 999px;
  background: #edf6ff;
  color: #0c2140;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
}
.product-cta {
  display: flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 22px;
  border: 2px solid #050b33;
  border-radius: 5px;
  color: #050b33;
  background: var(--white);
  font-weight: 800;
}
.product-trust {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 12px;
  color: #25446d;
  font-size: 12px;
  font-weight: 700;
}
.product-info-accordions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 22px;
  padding: 34px clamp(18px, 5vw, 72px) 42px;
  background: var(--white);
}
.product-info-accordions details {
  overflow: hidden;
  border-radius: 8px;
  background: #f2e5c7;
}
.product-info-accordions details:nth-child(3) {
  grid-column: 1 / 2;
}
.product-info-accordions summary {
  position: relative;
  min-height: 44px;
  display: flex;
  align-items: center;
  padding: 12px 44px 12px 18px;
  color: #06345c;
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}
.product-info-accordions summary::after {
  position: absolute;
  right: 16px;
  content: "+";
  color: #1376bd;
  font-size: 18px;
}
.product-info-accordions details[open] summary::after { content: "-"; }
.product-info-accordions p {
  margin: 0;
  padding: 0 18px 18px;
  color: #1f2f45;
  font-size: 14px;
  line-height: 1.65;
}
.product-certification {
  margin: 0;
  border-radius: 0;
}
.related-products {
  padding: clamp(54px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.related-card p {
  margin: 12px 0 4px;
  color: #1f77c9;
  font-size: 11px;
  font-weight: 700;
}
.related-card h3 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: 14px;
}
.related-media {
  min-height: 220px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 10px;
  color: var(--white);
  background: linear-gradient(145deg, #d7618d, #963272);
  font-weight: 800;
}
.related-media img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}
.related-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 2px solid #1c72c5;
  color: #1c72c5;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.product-technology {
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(320px, 1fr);
  gap: clamp(42px, 7vw, 92px);
  align-items: center;
  padding: clamp(58px, 8vw, 92px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.product-technology-media {
  overflow: hidden;
  border-radius: 28px;
  background: #f8e7eb;
}
.product-technology-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}
.product-technology-copy h2 {
  max-width: 720px;
  margin: 0 0 28px;
  color: #050b33;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}
.product-technology-copy h3 {
  max-width: 760px;
  margin: 0 0 28px;
  color: #050b33;
  font-size: clamp(19px, 2vw, 25px);
  line-height: 1.25;
}
.product-technology-copy p {
  max-width: 780px;
  margin: 0;
  color: #050b33;
  font-size: clamp(16px, 1.5vw, 19px);
  line-height: 1.55;
}
.section-heading { max-width: 780px; margin: 0 auto 34px; text-align: center; }
.content-section { padding: clamp(60px, 8vw, 100px) clamp(18px, 5vw, 72px); }
.gold-band { background: #f4ecd8; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.product-grid { grid-template-columns: repeat(3, 1fr); }
.gallery-grid { grid-template-columns: repeat(3, 1fr); }
.resource-grid { grid-template-columns: repeat(3, 1fr); }
.product-media, .gallery-media { height: 230px; margin: -26px -26px 22px; overflow: hidden; border-radius: 8px 8px 0 0; background: var(--gold-soft); }
.product-media img, .gallery-media img { width: 100%; height: 100%; object-fit: cover; }
.pill { display: inline-flex; width: max-content; padding: 7px 12px; border-radius: 999px; background: var(--gold-soft); color: var(--gold-dark); font-size: 13px; font-weight: 800; }
.products-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.8fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: center;
  padding: clamp(52px, 8vw, 88px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #111032;
}
.products-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}
.products-rating span {
  color: #1d71c8;
  letter-spacing: 1px;
}
.products-rating p {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
}
.products-hero h1 {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
}
.products-hero p {
  max-width: 820px;
  margin: 0;
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}
.products-hero-media {
  min-height: 250px;
  display: grid;
  overflow: hidden;
  place-items: center;
  background: radial-gradient(circle at center, #244aa5, #101742 72%);
}
.products-hero-media img {
  width: 100%;
  height: 280px;
  object-fit: cover;
}
.products-hero-placeholder {
  width: 100%;
  min-height: 280px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, #1c2b79, #1174bd);
  font-size: 28px;
  font-weight: 800;
}
.products-library {
  padding: 40px clamp(18px, 5vw, 72px) 64px;
  background: var(--white);
}
.products-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.products-filters .button {
  min-height: 36px;
  border-radius: 4px;
  padding: 8px 14px;
  font-size: 12px;
}
.products-library-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
}
.library-media {
  min-height: 290px;
  display: grid;
  overflow: hidden;
  place-items: center;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(145deg, #cd6825, #eaa24d);
  font-size: 22px;
  font-weight: 800;
}
.library-media img {
  width: 100%;
  height: 290px;
  object-fit: cover;
}
.library-card p {
  margin: 10px 0 4px;
  color: #050b33;
  font-size: 12px;
  font-weight: 800;
}
.library-card h3 {
  min-height: 24px;
  margin: 0 0 10px;
  color: #050b33;
  font-size: 13px;
  line-height: 1.25;
}
.library-button {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 2px solid #1174bd;
  color: #1174bd;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
}
.products-choose {
  margin-top: 0;
}
.resource-hero {
  display: flex;
  align-items: center;
  min-height: clamp(500px, 32vw, 620px);
  padding: clamp(58px, 6vw, 88px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background-color: #2aa9cb;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
}
.resource-hero-copy {
  max-width: 620px;
  margin-left: clamp(42px, 11vw, 260px);
}
.resource-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-bottom: 22px;
}
.resource-rating span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: #245ba9;
  font-size: 18px;
  line-height: 1;
}
.resource-rating p {
  margin: 0 0 0 14px;
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}
.resource-hero h1 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(34px, 3vw, 56px);
  line-height: 1.12;
}
.resource-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 700;
  line-height: 1.45;
}
.resource-hero-button {
  margin-top: 28px;
  border-radius: 8px;
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.resource-ticker {
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: 0;
  border-radius: 0;
  color: var(--white);
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.resource-ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 58px;
  padding: 22px 0;
  animation: resourceTicker 30s linear infinite;
}
.resource-ticker span {
  white-space: nowrap;
  font-size: clamp(17px, 1.45vw, 22px);
  font-weight: 800;
}
.resource-ticker span::before {
  content: "\2695";
  margin-right: 8px;
}
@keyframes resourceTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.resource-support {
  display: grid;
  gap: 34px;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.resource-support-top {
  display: grid;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 46px);
  align-items: center;
  max-width: 840px;
  width: 100%;
  margin: 0 auto;
}
.resource-support-image {
  overflow: hidden;
  border-radius: 10px;
  background: #cce3e6;
}
.resource-support-image img {
  width: 100%;
  height: 230px;
  object-fit: cover;
}
.resource-support-copy h2 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}
.resource-support-copy h3 {
  margin: 20px 0 10px;
  color: #050b33;
  font-size: 16px;
}
.resource-support-copy p {
  margin: 0 0 12px;
  color: #17243a;
  font-size: 13px;
  line-height: 1.55;
}
.resource-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}
.resource-tabs button {
  min-height: 44px;
  border: 2px solid #0f4ea8;
  border-radius: 999px;
  padding: 10px 24px;
  color: #050b33;
  background: var(--white);
  font-size: 13px;
}
.resource-tabs button::after {
  content: "\25BE";
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  margin-left: 8px;
  border-radius: 50%;
  color: var(--white);
  background: #0f4ea8;
  font-size: 10px;
}
.resource-tabs button:first-child {
  color: var(--white);
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.resource-template-panel {
  max-width: 790px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(28px, 4vw, 46px);
  border-radius: 12px;
  background: var(--white);
}
.template-pill {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 8px 20px;
  border-radius: 999px;
  color: #ad347f;
  background: #f8dff0;
  font-weight: 800;
}
.template-preview {
  display: flex;
  align-items: end;
  gap: 28px;
  min-height: 240px;
  margin-bottom: 28px;
}
.template-box {
  position: relative;
  display: grid;
  place-items: center;
  border: 2px dashed #737980;
  background: #f8f8f8;
}
.template-box::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 8px solid #c6c7c9;
}
.template-box span {
  position: relative;
  width: 42%;
  height: 46%;
  display: block;
  background: #2b4aa6;
}
.template-box.large {
  width: 250px;
  height: 260px;
}
.template-box.small {
  width: 180px;
  height: 205px;
}
.template-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.template-options article {
  padding: 18px;
  border: 2px solid #0f4ea8;
  border-radius: 8px;
}
.template-options h3 {
  margin: 0 0 10px;
  color: #050b33;
  font-size: 16px;
}
.template-options p,
.template-options small {
  display: block;
  margin: 0 0 12px;
  color: #17243a;
  font-size: 13px;
  line-height: 1.45;
}
.template-options a {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 3px;
  color: var(--white);
  background: #1174bd;
  font-size: 12px;
  font-weight: 800;
}
.resource-premium-band {
  margin-top: 0;
}
.resource-premium-band .science-ingredient-marquee article {
  width: min(310px, 32vw);
  min-width: 260px;
}
.resource-overview {
  display: grid;
  gap: clamp(28px, 4vw, 46px);
  padding: clamp(34px, 5vw, 58px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.resource-video {
  max-width: 760px;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 10px;
  background: #dce8e8;
}
.resource-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.resource-stats {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}
.resource-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #050b33;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.05;
}
.resource-stats span {
  color: #17243a;
  font-size: 13px;
  line-height: 1.45;
}
.resource-categories {
  max-width: 960px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}
.resource-categories h2 {
  margin: 0 0 24px;
  color: #050b33;
  font-size: clamp(26px, 3vw, 38px);
}
.resource-categories > div:first-of-type {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.resource-categories a:not(.button) {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 2px solid #050b33;
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  color: #050b33;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.resource-categories a:not(.button) span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #245ba9;
  font-size: 11px;
}
.resource-categories .inline-actions {
  justify-content: center;
}
.resource-categories .button {
  min-height: 40px;
  border-radius: 4px;
  font-size: 12px;
}
.resource-faq {
  padding: clamp(56px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.resource-faq .section-heading h2 {
  color: #050b33;
  font-size: clamp(28px, 3vw, 38px);
}
.resource-faq-list {
  max-width: 720px;
  display: grid;
  gap: 16px;
  margin: 0 auto;
}
.resource-faq-list details {
  overflow: hidden;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 20px rgba(17, 16, 50, 0.13);
}
.resource-faq-list summary {
  position: relative;
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 12px 48px 12px 18px;
  color: #050b33;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}
.resource-faq-list summary::after {
  position: absolute;
  right: 18px;
  content: "\203A";
  color: #245ba9;
  font-size: 24px;
}
.resource-faq-list details[open] summary::after {
  transform: rotate(90deg);
}
.resource-faq-list p {
  margin: 0;
  padding: 0 18px 18px;
  color: #17243a;
  font-size: 14px;
  line-height: 1.55;
}
.resource-team {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  padding: clamp(62px, 8vw, 92px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #111032;
}
.resource-team-image {
  overflow: hidden;
  border-radius: 10px;
}
.resource-team-image img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}
.resource-team-copy h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--white);
  font-size: clamp(30px, 3.5vw, 46px);
  line-height: 1.08;
}
.resource-team-copy p {
  max-width: 680px;
  margin: 0 0 24px;
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}
.resource-team .science-list li {
  color: var(--white);
}
.resource-team .button {
  margin-top: 18px;
  border-color: var(--white);
  color: var(--white);
  background: transparent;
}
.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(340px, 0.82fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  max-width: var(--about-intro-width, none);
  min-height: 430px;
  margin: 0 auto;
  padding: var(--about-intro-pt, clamp(54px, 7vw, 92px)) clamp(18px, 5vw, 72px) var(--about-intro-pb, clamp(54px, 7vw, 92px));
  overflow: hidden;
  background:
    radial-gradient(circle at 92% 12%, rgba(153, 115, 21, 0.13), transparent 28%),
    linear-gradient(135deg, var(--about-intro-bg, #eefafa) 0%, #e4f5f3 58%, #fbf7ee 100%);
}
.about-intro-align-center .about-intro-copy {
  text-align: center;
}
.about-intro-align-center .button {
  margin-left: auto;
  margin-right: auto;
}
.about-intro-copy {
  max-width: 650px;
}
.about-intro h1 {
  margin: 12px 0 18px;
  color: #050b33;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}
.about-intro h2 {
  max-width: 620px;
  margin: 0 0 18px;
  color: var(--gold-dark);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.35;
}
.about-intro p {
  margin: 0 0 16px;
  color: #17243a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}
.about-intro .button {
  min-height: 42px;
  margin-top: 14px;
  border-radius: 6px;
  background: linear-gradient(90deg, #997315 0%, #d8bb68 100%);
  color: #050b33;
  font-size: 14px;
  box-shadow: 0 14px 34px rgba(153, 115, 21, 0.22);
}
.about-intro .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 42px rgba(153, 115, 21, 0.28);
}
.about-intro-media {
  position: relative;
  width: 100%;
  max-width: 560px;
  justify-self: end;
}
.about-intro-media::before {
  content: "";
  position: absolute;
  inset: 18px -14px -14px 18px;
  border: 1px solid rgba(153, 115, 21, 0.18);
  border-radius: 18px;
  pointer-events: none;
}
.about-intro-media img,
.about-intro-placeholder {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 7;
  min-height: 300px;
  border: 1px solid rgba(153, 115, 21, 0.18);
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.about-intro-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  padding: 28px;
  color: #050b33;
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(232,215,174,0.32)),
    radial-gradient(circle at 30% 22%, rgba(153,115,21,0.18), transparent 28%);
  text-align: center;
}
.about-intro-placeholder span {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.about-intro-placeholder strong {
  max-width: 260px;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}
.about-product-showcase {
  padding: clamp(52px, 7vw, 76px) clamp(18px, 5vw, 72px);
  background: var(--white);
}
.about-product-showcase img {
  width: min(1180px, 100%);
  max-height: 620px;
  margin: 0 auto;
  border-radius: 8px;
  object-fit: cover;
}
.about-formulation {
  padding: clamp(56px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #285aa4;
  text-align: center;
}
.about-formulation .section-heading h2,
.about-formulation .section-heading p {
  color: var(--white);
}
.about-formulation .section-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.about-formulation-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(22px, 5vw, 74px);
  max-width: 1180px;
  margin: 44px auto 0;
}
.about-formulation-grid article {
  display: grid;
  gap: 14px;
  justify-items: center;
}
.about-formulation-grid span {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: rgba(255, 255, 255, 0.18);
  font-size: 28px;
}
.about-formulation-grid p {
  margin: 0;
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
}
.about-production {
  padding: clamp(56px, 7vw, 82px) clamp(18px, 5vw, 72px);
  background: var(--white);
  text-align: center;
}
.about-production .section-heading h2 {
  color: #050b33;
  font-size: clamp(30px, 3vw, 42px);
}
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 980px;
  margin: 42px auto 0;
}
.about-stats strong {
  display: block;
  margin-bottom: 8px;
  color: #245ba9;
  font-size: clamp(30px, 3vw, 42px);
}
.about-stats span {
  color: #17243a;
  font-size: 14px;
}
.about-facility-image {
  max-width: 1120px;
  margin: 38px auto 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 16px 28px rgba(17, 16, 50, 0.16);
}
.about-facility-image img {
  width: 100%;
  height: 310px;
  object-fit: cover;
}
.about-functional {
  max-width: 1040px;
  margin: clamp(52px, 6vw, 72px) auto 0;
  text-align: center;
}
.about-functional h2 {
  margin: 0 0 28px;
  color: #050b33;
  font-size: clamp(28px, 3vw, 38px);
}
.about-category-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 34px;
}
.about-category-pills a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 8px;
  border: 2px solid #050b33;
  border-radius: 999px;
  padding: 6px 14px 6px 7px;
  color: #050b33;
  background: var(--white);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.about-category-pills span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #245ba9;
  font-size: 11px;
}
.about-functional .button {
  min-height: 40px;
  border-radius: 4px;
  background: linear-gradient(90deg, #38388c, #1174bd);
  font-size: 12px;
}
.about-leadership {
  padding: clamp(58px, 7vw, 88px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.about-leadership .section-heading {
  max-width: 860px;
}
.about-leadership .section-heading h2 {
  color: #050b33;
  font-size: clamp(30px, 3.2vw, 44px);
}
.about-leadership .section-heading p {
  color: #17243a;
}
.leadership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(24px, 3vw, 36px);
  max-width: 1120px;
  margin: 0 auto;
}
.leadership-card {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 38px);
  align-items: start;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(17, 16, 50, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 40px rgba(17, 16, 50, 0.1);
}
.leadership-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 14px;
  color: var(--white);
  background: linear-gradient(135deg, #38388c, #1174bd);
  font-size: 56px;
  font-weight: 800;
}
.leadership-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.leadership-copy {
  min-width: 0;
  align-self: start;
}
.leadership-copy h3 {
  margin: 0 0 8px;
  color: #050b33;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.12;
}
.leadership-designation {
  margin: 0 0 16px;
  color: #245ba9;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
}
.leadership-intro {
  margin: 0 0 14px;
  padding-left: 14px;
  border-left: 3px solid var(--gold);
  color: #050b33;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.55;
}
.leadership-copy p:last-child {
  margin: 0;
  color: #17243a;
  font-size: 15px;
  line-height: 1.75;
  overflow-wrap: anywhere;
}
.about-supplement {
  display: grid;
  gap: clamp(52px, 7vw, 86px);
  padding: clamp(56px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
}
.about-supplement .section-heading h2 {
  color: #050b33;
  font-size: clamp(30px, 3vw, 42px);
}
.about-supplement-row {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: clamp(46px, 7vw, 96px);
  align-items: center;
  max-width: 1180px;
  width: 100%;
  margin: 0 auto;
}
.about-supplement-row.reverse {
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.82fr);
}
.about-supplement-image {
  overflow: hidden;
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 12px 24px rgba(17, 16, 50, 0.12);
}
.about-supplement-image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.about-supplement-copy h2 {
  margin: 0 0 16px;
  color: #050b33;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
}
.about-supplement-copy p {
  margin: 0;
  color: #17243a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.about-why-strips {
  padding: clamp(56px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #285aa4;
}
.about-why-strips .section-heading h2,
.about-why-strips .section-heading p {
  color: var(--white);
}
.about-why-strips .section-heading h2 {
  font-size: clamp(30px, 3vw, 42px);
}
.about-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  max-width: 1180px;
  margin: 38px auto 0;
}
.about-why-grid article {
  padding: clamp(22px, 3vw, 34px);
  border-radius: 8px;
  color: #17243a;
  background: var(--white);
}
.about-why-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: #245ba9;
  font-size: 17px;
}
.about-why-grid h3 {
  margin: 0 0 12px;
  color: #245ba9;
  font-size: 16px;
}
.about-why-grid p {
  margin: 0;
  color: #17243a;
  font-size: 14px;
  line-height: 1.55;
}
.about-ready {
  padding: clamp(52px, 7vw, 78px) clamp(18px, 5vw, 72px);
  background: var(--white);
  text-align: center;
}
.about-ready h2 {
  margin: 0 0 14px;
  color: #050b33;
  font-size: clamp(28px, 3vw, 38px);
}
.about-ready p {
  max-width: 720px;
  margin: 0 auto;
  color: #17243a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}
.about-ready .inline-actions {
  justify-content: center;
}
.about-ready .button {
  min-height: 40px;
  border-radius: 4px;
  font-size: 12px;
}
.about-ready .button:not(.secondary) {
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.contact-title-band {
  padding: clamp(38px, 6vw, 72px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: linear-gradient(90deg, #285aa4, #1174bd);
  text-align: center;
}
.contact-title-band h1 {
  margin: 0;
  color: var(--white);
  font-size: clamp(32px, 4vw, 46px);
}
.contact-page {
  display: grid;
  gap: clamp(46px, 7vw, 78px);
  padding: clamp(48px, 7vw, 84px) clamp(18px, 5vw, 72px) clamp(70px, 9vw, 112px);
  background: #e9f6f6;
}
.contact-intro {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}
.contact-intro p {
  margin: 0;
  color: #050b33;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.55;
}
.contact-form-card {
  width: min(640px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 56px);
  border: 1px solid rgba(17, 16, 50, 0.12);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(17, 16, 50, 0.16);
}
.contact-lead-form {
  width: min(1080px, 100%);
}
.contact-form-card h2 {
  margin: 0 0 16px;
  color: #050b33;
  font-size: 16px;
}
.contact-form-card p {
  margin: 0 0 12px;
  color: #17243a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.contact-form-card label {
  display: grid;
  gap: 8px;
  margin-top: 30px;
  color: #050b33;
  font-size: 12px;
  font-weight: 800;
}
.contact-form-card input {
  min-height: 38px;
  border-radius: 999px;
  background: #edf2f5;
}
.contact-step {
  display: none;
}
.contact-step.is-active {
  display: block;
}
.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px clamp(34px, 7vw, 70px);
}
.contact-grid label,
.contact-fieldset {
  margin-top: 0;
}
.contact-lead-form label,
.contact-fieldset legend {
  color: #141434;
  font-size: clamp(15px, 1.5vw, 18px);
  font-weight: 800;
}
.contact-lead-form input {
  min-height: 62px;
  border: 2px solid #d7e2eb;
  padding: 15px 18px;
  color: #3b3c5c;
  background: #edf4f9;
  box-shadow: inset 0 1px 4px rgba(17, 16, 50, 0.08);
}
.phone-input {
  display: grid;
  grid-template-columns: 104px 1fr;
  overflow: hidden;
  border: 2px solid #d7e2eb;
  border-radius: 999px;
  background: #edf4f9;
  box-shadow: inset 0 1px 4px rgba(17, 16, 50, 0.08);
}
.phone-input input {
  border: 0;
  border-left: 1px solid #d7e2eb;
  border-radius: 0;
  box-shadow: none;
}
.country-code {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 62px;
  color: #141434;
  font-weight: 800;
}
.country-code::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 7px solid #141434;
}
.country-code strong {
  color: #53536f;
  font-weight: 800;
}
.contact-fieldset {
  display: grid;
  gap: 12px;
  margin: 30px 0 0;
  padding: 0;
  border: 0;
}
.contact-fieldset legend {
  margin-bottom: 10px;
  padding: 0;
}
.contact-hint {
  margin: -4px 0 4px;
  color: #8290ad;
  font-style: italic;
}
.contact-form-card .choice-line {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 12px;
  margin: 0;
  color: #4d4e69;
  font-size: 18px;
  font-weight: 700;
}
.contact-form-card .choice-line input {
  width: 27px;
  min-width: 27px;
  height: 27px;
  min-height: 27px;
  margin: 0;
  padding: 0;
  accent-color: #17246a;
  box-shadow: none;
}
.contact-progress {
  height: 12px;
  margin-top: 30px;
  overflow: hidden;
  border-radius: 999px;
  background: #d1d1d4;
}
.contact-progress span {
  display: block;
  width: 50%;
  height: 100%;
  background: #17184e;
}
.contact-step-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
}
.contact-step-footer small {
  color: #17243a;
  font-size: 17px;
  font-weight: 700;
}
.contact-step-footer span {
  display: flex;
  gap: 12px;
}
.contact-step-footer button {
  min-height: 38px;
  border-radius: 999px;
  padding: 9px 24px;
  background: #17184e;
  font-size: 12px;
}
.contact-step-footer .button-secondary {
  border: 1px solid #17184e;
  color: #17184e;
  background: transparent;
}
.contact-thank-you {
  text-align: center;
}
.contact-thank-you .btn {
  margin-top: 10px;
}
.contact-office-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  max-width: 1160px;
  width: 100%;
  margin: 0 auto;
}
.contact-office-grid article {
  padding: clamp(28px, 4vw, 42px);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(17, 16, 50, 0.12);
}
.contact-office-grid h2 {
  position: relative;
  margin: 0 0 28px;
  padding-left: 42px;
  color: #050b33;
  font-size: 15px;
  line-height: 1.2;
}
.contact-office-grid h2::before {
  position: absolute;
  left: 0;
  top: 8px;
  width: 32px;
  height: 2px;
  background: #050b33;
  content: "";
}
.contact-office-grid div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-top: 22px;
}
.contact-office-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: #1174bd;
  background: #e8f2fb;
}
.contact-office-grid p {
  margin: 0;
  color: #17243a;
  font-size: 13px;
  line-height: 1.5;
}
.contact-office-grid strong {
  display: block;
  margin-bottom: 5px;
  color: #050b33;
}
.contact-office-grid a {
  color: #1174bd;
  font-weight: 700;
}
.science-hero {
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: clamp(68px, 9vw, 110px) clamp(18px, 5vw, 72px);
  background-color: #e9f6f6;
  background-position: center, right center;
  background-repeat: no-repeat;
  background-size: cover, auto 100%;
}
.science-hero-copy {
  width: min(760px, 100%);
  margin-left: clamp(0px, 17vw, 320px);
}
.science-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-bottom: 22px;
}
.science-rating span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: #245ba9;
  font-size: 18px;
  line-height: 1;
}
.science-rating p {
  margin: 0 0 0 14px;
  color: #17243a;
  font-size: 16px;
}
.science-hero h1 {
  max-width: 620px;
  margin: 0 0 22px;
  color: #050b33;
  font-size: clamp(40px, 5vw, 58px);
  line-height: 1.08;
}
.science-hero p,
.science-hero h3,
.science-hero li {
  color: #152338;
}
.science-hero p {
  max-width: 700px;
  margin: 0 0 22px;
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 600;
  line-height: 1.35;
}
.science-hero h3 {
  margin: 0 0 20px;
  font-size: clamp(17px, 1.45vw, 21px);
}
.science-hero ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.science-hero li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(17px, 1.5vw, 21px);
  font-weight: 700;
}
.science-hero-button {
  margin-top: 34px;
  border-radius: 8px;
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.science-ticker {
  overflow: hidden;
  margin-top: -1px;
  border-radius: 8px 8px 0 0;
  color: var(--white);
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.science-ticker div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 54px;
  padding: 20px 0;
  animation: scienceTicker 28s linear infinite;
}
.science-ticker span {
  white-space: nowrap;
  font-size: clamp(16px, 1.4vw, 19px);
  font-weight: 800;
}
.science-ticker span::before {
  content: "\2695";
  margin-right: 8px;
}
@keyframes scienceTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.science-content {
  display: grid;
  gap: clamp(54px, 7vw, 88px);
  padding: clamp(54px, 7vw, 84px) 0 clamp(64px, 8vw, 96px);
  background: #e9f6f6;
}
.permeation-study-row {
  margin-bottom: calc(clamp(54px, 7vw, 88px) * -1);
  padding-bottom: clamp(42px, 6vw, 64px);
}
.science-hand-image img {
  min-height: 420px;
}
.science-premium-band {
  overflow: hidden;
  padding: clamp(42px, 6vw, 58px) 0 34px;
  color: var(--white);
  background: #285aa4;
  text-align: center;
}
.science-premium-band h2 {
  max-width: 720px;
  margin: 0 auto 16px;
  padding: 0 18px;
  color: var(--white);
  font-size: clamp(30px, 3vw, 40px);
  line-height: 1.05;
}
.science-premium-band > p {
  max-width: 780px;
  margin: 0;
  padding: 0 18px;
  color: var(--white);
  font-size: 14px;
  line-height: 1.45;
}
.science-ingredient-marquee {
  overflow: hidden;
  margin: 28px 0 28px;
}
.science-ingredient-marquee > div {
  width: max-content;
  display: flex;
  gap: 18px;
  animation: ingredientTicker 24s linear infinite;
}
.science-ingredient-marquee article {
  width: min(420px, 44vw);
  min-width: 310px;
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 8px;
  padding: 20px;
  border-radius: 6px;
  color: #285aa4;
  background: var(--white);
}
.science-ingredient-marquee span {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 2px solid #285aa4;
  border-radius: 50%;
  font-size: 26px;
}
.science-ingredient-marquee strong {
  color: #050b33;
  font-size: 13px;
}
.science-testing-note {
  display: flex;
  max-width: 820px;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 18px;
  margin: 0 auto;
  font-size: 13px;
}
.science-testing-note strong::before {
  content: "\2713";
  margin-right: 6px;
}
@keyframes ingredientTicker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.science-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 1fr);
  gap: clamp(40px, 6vw, 84px);
  align-items: center;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
}
.science-row-image-left {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.12fr);
}
.science-image {
  overflow: hidden;
  border-radius: 12px;
  background: #d9eef0;
}
.science-image img {
  width: 100%;
  min-height: 310px;
  height: 100%;
  object-fit: cover;
}
.science-copy h2 {
  max-width: 760px;
  margin: 0 0 16px;
  color: #050b33;
  font-size: clamp(27px, 3vw, 38px);
  line-height: 1.08;
}
.science-copy h3 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: 16px;
  line-height: 1.3;
}
.science-copy p {
  margin: 0 0 18px;
  color: #17243a;
  font-size: 15px;
  line-height: 1.55;
}
.science-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 28px;
  margin: 18px 0 22px;
}
.science-feature-grid article {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 4px 12px;
  align-items: start;
}
.science-feature-grid span {
  grid-row: span 2;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #245ba9;
  font-size: 15px;
}
.science-feature-grid strong {
  color: #050b33;
  font-size: 15px;
}
.science-feature-grid p {
  margin: 0;
  font-size: 13px;
}
.science-list {
  display: grid;
  gap: 9px;
  margin: 0 0 18px;
  padding: 0;
  list-style: none;
}
.science-list li {
  position: relative;
  padding-left: 24px;
  color: #17243a;
  font-size: 14px;
  line-height: 1.35;
}
.science-list li::before {
  position: absolute;
  left: 0;
  top: 2px;
  width: 14px;
  height: 14px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: #245ba9;
  content: "\2713";
  font-size: 9px;
  font-weight: 800;
}
.odf-challenge-row {
  margin-top: clamp(18px, 5vw, 42px);
}
.odf-change-section {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 clamp(18px, 5vw, 72px);
}
.odf-change-section .section-heading {
  max-width: 820px;
  margin-bottom: 36px;
}
.odf-change-section .section-heading h2 {
  margin-bottom: 14px;
  color: #050b33;
  font-size: clamp(30px, 3.2vw, 42px);
}
.odf-change-section .section-heading p {
  color: #17243a;
  font-size: 14px;
  line-height: 1.55;
}
.odf-change-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.odf-change-grid article {
  padding: clamp(24px, 3vw, 34px);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17, 16, 50, 0.12);
}
.odf-change-grid h3 {
  margin: 0 0 18px;
  color: #050b33;
  font-size: 17px;
}
.odf-change-grid p {
  margin: 0 0 16px;
  color: #17243a;
  font-size: 14px;
  line-height: 1.55;
}
.science-hero-compact {
  min-height: 430px;
  align-items: flex-start;
  padding: clamp(46px, 6vw, 72px) clamp(18px, 5vw, 72px) clamp(52px, 7vw, 82px);
  background: #e9f6f6;
}
.science-hero-compact .science-hero-copy {
  width: min(620px, 100%);
  margin-left: 0;
}
.science-hero-compact h1 {
  max-width: 520px;
  margin-bottom: 14px;
  font-size: clamp(30px, 3.1vw, 44px);
  line-height: 1.02;
}
.science-hero-compact p {
  max-width: 620px;
  margin-bottom: 16px;
  font-size: 15px;
  line-height: 1.55;
}
.science-hero-compact h3,
.science-hero-compact li {
  font-size: 14px;
}
.science-hero-compact .science-hero-button {
  min-height: 42px;
  margin-top: 22px;
  padding: 10px 22px;
  font-size: 13px;
}
.science-redesign {
  gap: clamp(42px, 6vw, 72px);
  padding-top: 34px;
}
.science-intro-heading {
  max-width: 760px;
  margin: 0 auto -12px;
  padding: 0 clamp(18px, 5vw, 72px);
  text-align: center;
}
.science-intro-heading h2 {
  margin: 0 0 10px;
  color: #050b33;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.1;
}
.science-intro-heading p {
  margin: 0;
  color: #17243a;
  font-size: 13px;
  line-height: 1.5;
}
.science-redesign .science-row {
  max-width: 1180px;
  gap: clamp(34px, 5vw, 70px);
}
.science-redesign .science-image img {
  min-height: 260px;
}
.science-about-band {
  padding: clamp(52px, 7vw, 82px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: #111032;
}
.science-about-band .section-heading h2,
.science-about-band .section-heading p,
.science-about-band .science-copy h2,
.science-about-band .science-copy h3,
.science-about-band .science-copy p,
.science-about-band .science-list li {
  color: var(--white);
}
.science-about-band .science-row {
  padding-left: 0;
  padding-right: 0;
}
.science-about-band .science-image {
  background: rgba(255, 255, 255, 0.08);
}
.science-crafted-section {
  display: grid;
  gap: 28px;
  padding: clamp(48px, 6vw, 72px) clamp(18px, 5vw, 72px) 0;
  color: var(--white);
  background: linear-gradient(to bottom, #111032 0 70%, #e9f6f6 70% 100%);
}
.science-crafted-section > div:first-child {
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.science-crafted-section h2 {
  margin: 0 0 10px;
  color: var(--white);
  font-size: clamp(28px, 3vw, 40px);
}
.science-crafted-section > div:first-child p {
  max-width: 740px;
  margin: 0;
  color: var(--white);
  font-size: 14px;
  line-height: 1.55;
}
.science-crafted-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  max-width: 980px;
  width: 100%;
  margin: 0 auto;
}
.science-crafted-grid article {
  padding: 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 30px rgba(17, 16, 50, 0.12);
}
.science-crafted-grid img {
  width: 100%;
  height: 170px;
  border-radius: 7px;
  object-fit: cover;
}
.science-crafted-grid h3 {
  margin: 14px 0 8px;
  color: #050b33;
  font-size: 15px;
}
.science-crafted-grid p {
  margin: 0;
  color: #17243a;
  font-size: 12px;
  line-height: 1.5;
}
.science-resource-overview {
  padding-top: clamp(42px, 6vw, 70px);
}
.science-resource-overview .resource-video {
  max-width: 820px;
}
.cta-section {
  min-height: 520px;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 72px);
  background: #e9f6f6;
  background-position: center right;
  background-repeat: no-repeat;
  background-size: cover;
  color: #050b33;
}
.cta-section.has-cta-bg {
  background-position: center, right center;
  background-size: cover, auto 100%;
}
.cta-section > div {
  max-width: 720px;
}
.cta-section h2 {
  max-width: 660px;
  margin: 18px 0;
  color: #050b33;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.18;
}
.cta-section p {
  max-width: 680px;
  color: #18253a;
  font-size: 17px;
  line-height: 1.55;
}
.cta-rating {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
}
.cta-rating span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  color: var(--white);
  background: #997315;
  font-size: 18px;
  line-height: 1;
}
.cta-rating p {
  margin: 0 0 0 18px;
  font-size: 15px;
}
.cta-primary {
  border-radius: 8px;
  background: linear-gradient(90deg, #38388C 0%, #1174BD 80%);
}
.cta-secondary {
  border: 1px solid #30307a;
  border-radius: 8px;
  color: #050b33;
  background: transparent;
}
.cta-section:not(.has-cta-bg) {
  background:
    linear-gradient(90deg, #e9f6f6 0%, rgba(233, 246, 246, 0.9) 20%, rgba(233, 246, 246, 0.18) 52%, rgba(233, 246, 246, 0) 100%),
    radial-gradient(circle at 78% 32%, #f1b991 0 12%, transparent 13%),
    linear-gradient(145deg, #d9f3f4, #eefbfb 42%, #f5d5bd);
}
.site-footer {
  padding: 48px clamp(18px, 5vw, 72px) 36px;
  background: #111032;
  color: var(--white);
}
.footer-newsletter {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 440px);
  gap: 34px;
  align-items: center;
}
.footer-newsletter h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.1;
}
.footer-newsletter p {
  max-width: 720px;
  margin: 0;
  font-size: 17px;
  line-height: 1.55;
}
.newsletter-form {
  display: flex;
  overflow: hidden;
  border: 6px solid var(--white);
  border-radius: 10px;
  background: var(--white);
}
.newsletter-form input {
  min-width: 0;
  border: 0;
  border-radius: 0;
  color: var(--ink);
}
.newsletter-form button {
  border-radius: 8px;
      background: linear-gradient(90deg, #38388C 0%, #1174BD 80%);
}
.footer-menu {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 56px 0 48px;
  font-weight: 700;
}
.footer-office {
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding: 28px 0;
}
.office-label {
  position: absolute;
  top: -14px;
  left: 50%;
  padding: 7px 14px;
  border-radius: 4px;
  background: #1174bd;
  transform: translateX(-50%);
  font-size: 13px;
}
.office-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 1.3fr;
  gap: 24px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.footer-disclaimer {
  border-top: 1px solid var(--white);
  margin-top: 28px;
  padding-top: 46px;
  text-align: center;
  font-size: 13px;
  text-transform: uppercase;
}
.footer-disclaimer p {
  margin: 0 0 8px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  font-size: 14px;
}
.footer-bottom p {
  margin: 0;
}
.footer-bottom div {
  display: flex;
  gap: 34px;
}
input, textarea, select {
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  font: inherit;
}
textarea { min-height: 140px; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.form-grid .full { grid-column: 1 / -1; }
.admin-shell { display: grid; grid-template-columns: 296px minmax(0, 1fr); min-height: 100vh; background: #f6f8fb; }
.admin-sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 22px 18px;
  color: var(--white);
  background: #070c2b;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.admin-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 8px 22px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.admin-brand span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: #070c2b;
  background: linear-gradient(135deg, #d8bb68, #997315);
  font-weight: 900;
}
.admin-brand strong,
.admin-brand small {
  display: block;
}
.admin-brand strong {
  font-size: 18px;
}
.admin-brand small {
  color: rgba(255,255,255,0.62);
  font-size: 12px;
  font-weight: 700;
}
.admin-nav {
  display: grid;
  gap: 20px;
  padding-top: 20px;
}
.admin-nav-group p {
  margin: 0 0 8px;
  padding: 0 10px;
  color: rgba(255,255,255,0.42);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.admin-sidebar a {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  border-radius: 10px;
  padding: 10px 12px;
  color: rgba(255,255,255,0.74);
  font-size: 13px;
  font-weight: 800;
}
.admin-sidebar a span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  color: #d8bb68;
  background: rgba(255,255,255,0.07);
  font-size: 12px;
}
.admin-sidebar a:hover,
.admin-sidebar .active {
  color: #070c2b;
  background: #d8bb68;
}
.admin-sidebar a:hover span,
.admin-sidebar .active span {
  color: #070c2b;
  background: rgba(255,255,255,0.45);
}
.admin-main { min-width: 0; padding: 0; }
.admin-main > h1 {
  margin-top: 0;
}
.admin-topbar {
  position: sticky;
  top: 0;
  z-index: 12;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
  padding: 18px 28px;
  border-bottom: 1px solid #e2e8f0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(12px);
}
.admin-topbar h1 {
  margin: 2px 0 0;
  color: #070c2b;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.1;
}
.admin-topbar span {
  color: #997315;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.admin-menu-toggle {
  width: 42px;
  min-height: 42px;
  border-radius: 10px;
  color: #070c2b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}
.admin-topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.admin-view-button,
.admin-preview-button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 10px 14px;
  color: #070c2b;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 13px;
  font-weight: 900;
}
.admin-preview-button,
.settings-heading-actions button {
  color: #070c2b;
  background: linear-gradient(135deg, #d8bb68, #997315);
  border: 0;
}
.admin-profile-menu {
  position: relative;
}
.admin-profile-menu button {
  min-height: 44px;
  border-radius: 12px;
  gap: 8px;
  padding: 8px 12px;
  color: #070c2b;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: none;
}
.admin-profile-menu button span {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #070c2b;
  background: #d8bb68;
}
.admin-profile-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  min-width: 210px;
  padding: 8px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 42px rgba(7, 12, 43, 0.14);
}
.admin-profile-dropdown.is-open {
  display: grid;
}
.admin-profile-dropdown a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #17243a;
  font-size: 13px;
  font-weight: 800;
}
.admin-profile-dropdown a:hover {
  background: #f6f8fb;
}
.admin-content {
  padding: 28px;
}
.admin-sidebar-collapsed .admin-shell {
  grid-template-columns: 86px minmax(0, 1fr);
}
.admin-sidebar-collapsed .admin-brand div,
.admin-sidebar-collapsed .admin-nav-group p,
.admin-sidebar-collapsed .admin-sidebar a {
  font-size: 0;
}
.admin-sidebar-collapsed .admin-sidebar a span {
  margin: 0 auto;
}
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); }
.admin-table th, .admin-table td { padding: 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.admin-actions { display: flex; gap: 10px; flex-wrap: wrap; }
.admin-image-preview {
  margin: 18px 0;
}
.admin-image-preview strong {
  display: block;
  margin-bottom: 8px;
}
.admin-image-preview img {
  width: 180px;
  height: 180px;
  border-radius: 8px;
  object-fit: cover;
}
.admin-card:has(.settings-admin-layout) {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}
.settings-admin-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}
.settings-submenu {
  position: sticky;
  top: 24px;
  display: grid;
  gap: 8px;
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(24, 20, 13, 0.06);
}
.settings-submenu strong {
  margin-bottom: 8px;
  color: #050b33;
  font-size: 14px;
}
.settings-submenu a {
  border-radius: 8px;
  padding: 10px 12px;
  color: #342a18;
  background: #fbf7ee;
  font-size: 13px;
  font-weight: 800;
}
.settings-submenu a:hover {
  color: var(--white);
  background: linear-gradient(90deg, #38388c, #1174bd);
}
.settings-card-stack {
  display: grid;
  gap: 20px;
}
.settings-page-tabs,
.content-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 18px;
}
.settings-page-tabs a,
.content-tabs a {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 10px 14px;
  color: #17243a;
  background: #fff;
  font-size: 13px;
  font-weight: 900;
}
.settings-page-tabs a.active,
.content-tabs a:hover,
.settings-page-tabs a:hover {
  color: #070c2b;
  background: #d8bb68;
  border-color: #d8bb68;
}
.settings-card {
  scroll-margin-top: 20px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(24, 20, 13, 0.06);
}
.settings-card-heading.with-actions {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
}
.settings-card-heading.with-actions p {
  grid-column: 1 / 2;
}
.settings-heading-actions {
  grid-row: 1 / span 2;
  grid-column: 2 / 3;
  display: flex;
  align-items: center;
  gap: 10px;
}
.settings-heading-actions button {
  min-height: 42px;
  border-radius: 10px;
  padding: 10px 16px;
}
.settings-tab-panel {
  display: grid;
  gap: 18px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
}
.settings-two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 18px;
  align-items: start;
}
.settings-three-column {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.settings-inner-card {
  display: grid;
  gap: 14px;
  padding: 20px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(7, 12, 43, 0.04);
}
.settings-inner-card h3 {
  margin: 0;
  color: #070c2b;
  font-size: 18px;
}
.settings-inner-card label,
.settings-card label {
  color: #17243a;
  font-size: 13px;
  font-weight: 900;
}
.settings-inner-card label span,
.settings-card label > span {
  display: block;
  margin-bottom: 8px;
}
.settings-inner-card input,
.settings-inner-card textarea,
.settings-inner-card select,
.settings-card input,
.settings-card textarea,
.settings-card select {
  border-color: #d9e2ec;
  background: #fbfdff;
}
.character-count {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: right;
}
.settings-card-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.settings-card-heading > div {
  display: flex;
  align-items: center;
  gap: 12px;
}
.settings-card-heading span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--white);
  background: linear-gradient(135deg, #38388c, #1174bd);
  font-size: 12px;
  font-weight: 900;
}
.settings-card-heading h2 {
  margin: 0;
  color: #050b33;
  font-size: 22px;
}
.settings-card-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.settings-card .form-grid {
  align-items: start;
}
.settings-card textarea {
  min-height: 90px;
}
.settings-card .full textarea {
  min-height: 132px;
}
.image-upload-control {
  display: grid;
  gap: 10px;
  padding: 16px;
  border: 1px dashed rgba(153, 115, 21, 0.34);
  border-radius: 10px;
  background: #fffdf8;
}
.selected-file-name {
  width: max-content;
  max-width: 100%;
  border-radius: 999px;
  padding: 7px 12px;
  color: #050b33;
  background: #eef6fb;
  font-size: 12px;
  font-weight: 800;
  overflow-wrap: anywhere;
}
.empty-image-preview {
  width: 180px;
  height: 130px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  color: var(--muted);
  background: #f4efe3;
  font-size: 12px;
  font-weight: 800;
}
.admin-wide-preview img {
  width: min(420px, 100%);
  height: 260px;
}
.admin-wide-preview .empty-image-preview {
  width: min(420px, 100%);
  height: 190px;
}
.admin-wide-preview .toggle-field {
  margin-top: 12px;
}
.field-help {
  display: block;
  margin: 6px 0 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}
.admin-thumb {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  object-fit: cover;
  color: var(--white);
  background: linear-gradient(135deg, #38388c, #1174bd);
  font-weight: 800;
}
.login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 24px; background: var(--cream); }
.login-card { width: min(420px, 100%); padding: 30px; border-radius: 8px; background: var(--white); box-shadow: var(--shadow); }
.notice { padding: 12px 14px; border-radius: 8px; background: var(--gold-soft); color: var(--gold-dark); }
.error-notice {
  margin-bottom: 18px;
  background: #ffe5e5;
  color: #8a1f1f;
}
.error-notice p {
  margin: 0 0 6px;
}
.error-notice p:last-child {
  margin-bottom: 0;
}
.admin-section-block {
  grid-column: 1 / -1;
  margin-bottom: 22px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fbf7ee;
}
.admin-section-block.compact {
  margin: 0 0 18px;
}
.admin-section-block h3 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: 18px;
}
.admin-section-block h2 {
  margin: 0 0 12px;
  color: #050b33;
  font-size: 20px;
}
.admin-section-block p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 13px;
}
.toggle-field {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}
.toggle-field input {
  width: 20px;
  min-height: 20px;
  accent-color: #1174bd;
}
.remove-image-field {
  width: max-content;
}
.settings-savebar {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  justify-content: flex-end;
  margin-top: 20px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  box-shadow: 0 -12px 30px rgba(24, 20, 13, 0.08);
}
@media (max-width: 960px) {
  .hero, .page-hero, .purpose-grid, .switching-section, .smarter-section, .partner-section, .footer-newsletter, .admin-shell, .product-detail, .product-technology, .products-hero, .science-row, .science-row-image-left, .resource-support-top, .resource-stats, .resource-team, .about-intro, .about-supplement-row, .about-supplement-row.reverse, .leadership-grid, .contact-office-grid { grid-template-columns: 1fr; }
  .settings-admin-layout {
    grid-template-columns: 1fr;
  }
  .settings-two-column,
  .settings-three-column,
  .settings-card-heading.with-actions {
    grid-template-columns: 1fr;
  }
  .settings-heading-actions {
    grid-row: auto;
    grid-column: auto;
    flex-wrap: wrap;
  }
  .admin-shell {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    position: static;
    height: auto;
    max-height: 60vh;
  }
  .admin-topbar {
    align-items: flex-start;
    flex-direction: column;
  }
  .admin-topbar-actions {
    flex-wrap: wrap;
  }
  .settings-submenu {
    position: static;
    display: flex;
    flex-wrap: wrap;
    max-height: none;
  }
  .settings-submenu strong {
    width: 100%;
  }
  .about-intro-media {
    max-width: 680px;
    justify-self: start;
  }
  .office-grid { grid-template-columns: 1fr; text-align: center; }
  .stats, .grid-4, .launch-grid, .choose-grid, .product-grid, .gallery-grid, .resource-grid, .related-grid, .products-library-grid, .about-formulation-grid, .science-crafted-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-section.has-cta-bg {
    background-position: center, center bottom;
    background-size: cover, auto 320px;
  }
  .science-hero {
    min-height: auto;
    padding-bottom: 340px;
    background-position: center, center bottom;
    background-size: cover, auto 330px;
  }
  .resource-hero {
    padding-bottom: clamp(52px, 8vw, 88px);
    background-position: center bottom;
    background-size: cover;
  }
  .resource-hero-copy { margin-left: 0; }
  .science-hero-copy { margin-left: 0; }
}
@media (max-width: 680px) {
  .menu-button { display: flex; }
  .nav-links { position: absolute; top: 82px; left: 18px; right: 18px; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 12px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--shadow); }
  .nav-links.is-open { display: flex; }
  .packaging-card { flex-basis: 100%; }
  .stats, .grid-4, .launch-grid, .smarter-points, .choose-grid, .product-grid, .gallery-grid, .resource-grid, .form-grid, .contact-grid, .product-benefit-grid, .product-info-accordions, .related-grid, .products-library-grid, .about-formulation-grid, .about-stats, .about-why-grid, .science-crafted-grid { grid-template-columns: 1fr; }
  .products-hero-media img, .products-hero-placeholder { height: auto; min-height: 220px; }
  .library-media, .library-media img { min-height: 240px; height: 240px; }
  .science-rating p { width: 100%; margin-left: 0; }
  .resource-rating p { width: 100%; margin-left: 0; }
  .resource-hero {
    padding-bottom: clamp(52px, 8vw, 88px);
    background-size: cover;
  }
  .resource-ticker div {
    gap: 34px;
    animation-duration: 21s;
  }
  .science-hero {
    padding-bottom: 260px;
    background-size: cover, auto 260px;
  }
  .science-ticker div {
    gap: 34px;
    animation-duration: 20s;
  }
  .science-feature-grid { grid-template-columns: 1fr; }
  .science-row-image-left .science-image { order: -1; }
  .science-ingredient-marquee article {
    width: 76vw;
    min-width: 260px;
  }
  .odf-change-grid { grid-template-columns: 1fr; }
  .template-options { grid-template-columns: 1fr; }
  .template-preview {
    align-items: flex-start;
    flex-direction: column;
  }
  .template-box.large {
    width: min(250px, 100%);
  }
  .template-box.small {
    width: min(180px, 100%);
  }
  .resource-video {
    aspect-ratio: 4 / 3;
  }
  .resource-team-image img {
    height: 320px;
  }
  .about-supplement-row.reverse .about-supplement-image {
    order: -1;
  }
  .about-supplement-image img {
    height: 260px;
  }
  .about-intro {
    min-height: 0;
    padding-top: 46px;
  }
  .about-intro h1 {
    font-size: 36px;
  }
  .about-intro-media img,
  .about-intro-placeholder {
    min-height: 230px;
  }
  .leadership-card {
    grid-template-columns: 1fr;
  }
  .leadership-photo {
    width: min(260px, 100%);
  }
  .product-info-accordions details:nth-child(3) { grid-column: auto; }
  .product-trust { flex-direction: column; gap: 8px; align-items: center; }
  .footer-menu, .footer-bottom, .footer-bottom div, .newsletter-form { flex-direction: column; }
  .hero h1, .page-hero h1 { font-size: 36px; }
  .certification-row span { width: 88px; height: 88px; font-size: 13px; }
  .cta-section { padding-bottom: 240px; }
  .cta-section.has-cta-bg { background-size: cover, auto 250px; }
  .form-grid .full { grid-column: auto; }
  .settings-card {
    padding: 18px;
  }
  .settings-savebar {
    justify-content: stretch;
  }
  .settings-savebar button {
    width: 100%;
  }
  .contact-lead-form input,
  .country-code {
    min-height: 54px;
  }
  .phone-input {
    grid-template-columns: 86px 1fr;
  }
  .contact-step-footer,
  .contact-step-footer span {
    align-items: stretch;
    flex-direction: column;
  }
}
