@font-face {
  font-family: "Nimbus Sans";
  src: url("/assets/fonts/nimbus-sans-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Sans";
  src: url("/assets/fonts/nimbus-sans-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Sans Narrow";
  src: url("/assets/fonts/nimbus-sans-narrow.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Roman";
  src: url("/assets/fonts/nimbus-roman-regular.otf") format("opentype");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Nimbus Roman";
  src: url("/assets/fonts/nimbus-roman-bold.otf") format("opentype");
  font-style: normal;
  font-weight: 700;
  font-display: swap;
}

:root {
  --ink: #090b0c;
  --paper: #f1efe9;
  --paper-soft: #f6f4ef;
  --stone: #d9d6ce;
  --muted: #6c6d68;
  --line: rgba(9, 11, 12, 0.25);
  --night-line: rgba(255, 255, 255, 0.23);
  --lime: #a6e600;
  --page-max: 1600px;
  --gutter: clamp(38px, 3.75vw, 60px);
  --sans: "Nimbus Sans", Helvetica, Arial, sans-serif;
  --sans-narrow: "Nimbus Sans Narrow", "Arial Narrow", sans-serif;
  --serif: "Nimbus Roman", "Times New Roman", serif;
}

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

html {
  scroll-behavior: smooth;
  background: #0a0d0e;
}

body {
  margin: 0;
  color: var(--ink);
  background: #0a0d0e;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.45;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: #fff;
  background: var(--ink);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-shell {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  background: var(--paper);
}

.site-header {
  position: absolute;
  z-index: 50;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  height: clamp(72px, 6.2vw, 92px);
  padding: 0 var(--gutter);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--ink);
}

.brand,
.footer-brand {
  width: max-content;
  color: inherit;
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0.24em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.brand sup,
.footer-brand sup,
.eyebrow sup,
.product-copy sup {
  position: relative;
  top: -0.2em;
  margin-left: 0.08em;
  font-size: 0.52em;
}

.primary-nav {
  display: flex;
  gap: clamp(25px, 2.5vw, 44px);
  align-items: center;
  justify-content: center;
}

.primary-nav a,
.language-switch,
.buy-button {
  font-size: clamp(11px, 0.82vw, 13px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.primary-nav a,
.language-switch a {
  position: relative;
  text-decoration: none;
}

.primary-nav a::after,
.language-switch a::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.language-switch a:hover::after,
.language-switch a:focus-visible::after,
.language-switch a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  gap: clamp(18px, 1.9vw, 30px);
  align-items: center;
  justify-content: flex-end;
  color: #fff;
}

.language-switch {
  display: flex;
  gap: 8px;
  align-items: center;
}

.buy-button {
  display: inline-flex;
  min-height: 38px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.buy-button:hover,
.buy-button:focus-visible {
  color: #fff;
  background: var(--ink);
}

.header-actions .buy-button:hover,
.header-actions .buy-button:focus-visible {
  color: var(--ink);
  background: #fff;
}

.header-actions .buy-button {
  gap: 10px;
  border-color: rgba(255, 255, 255, 0.86);
  background: rgba(7, 11, 13, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(8px);
}

.header-actions .buy-button::before {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--lime);
  content: "";
}

.menu-toggle {
  display: none;
}

.hero {
  position: relative;
  height: clamp(520px, 50vw, 760px);
  overflow: hidden;
  background: #d9d4ca;
  isolation: isolate;
}

.hero-background,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-background {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}

.hero-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, 0.36) 0%, rgba(247, 244, 237, 0.10) 43%, rgba(4, 6, 7, 0.02) 62%, rgba(4, 6, 7, 0.18) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, transparent 55%, rgba(0, 0, 0, 0.18) 100%);
}

.hero-copy {
  position: absolute;
  z-index: 4;
  top: 20.3%;
  left: var(--gutter);
  width: 42%;
  max-width: 630px;
}

.eyebrow {
  margin: 0 0 clamp(11px, 1vw, 16px);
  font-size: clamp(12px, 0.98vw, 15px);
  letter-spacing: 0.07em;
  line-height: 1;
  text-transform: uppercase;
}

.hero h1,
.study-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(50px, 4.55vw, 70px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.hero-intro {
  width: 82%;
  max-width: 480px;
  margin: clamp(13px, 1.35vw, 22px) 0 0;
  font-size: clamp(15px, 1.12vw, 18px);
  line-height: 1.35;
}

.study-areas {
  margin-top: clamp(24px, 2.35vw, 37px);
}

.study-areas > p {
  margin: 0 0 12px;
  font-size: clamp(10px, 0.73vw, 12px);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.study-areas ul {
  display: grid;
  width: min(100%, 510px);
  margin: 0;
  padding: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  list-style: none;
}

.study-areas li {
  min-height: 34px;
  padding: 2px 13px;
  border-left: 1px solid rgba(9, 11, 12, 0.36);
  font-size: clamp(9px, 0.7vw, 11px);
  letter-spacing: 0.05em;
  line-height: 1.18;
  text-transform: uppercase;
}

.hero-ctas {
  display: flex;
  gap: clamp(22px, 2.2vw, 35px);
  margin-top: clamp(24px, 2.25vw, 36px);
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: clamp(42px, 3.7vw, 56px);
  padding: 0 clamp(22px, 2vw, 32px);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 20px;
  font-size: clamp(10px, 0.74vw, 12px);
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.button-dark {
  color: #fff;
  background: var(--ink);
}

.button:hover,
.button:focus-visible {
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-2px);
}

.text-link {
  position: relative;
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 14px;
  font-size: clamp(10px, 0.8vw, 13px);
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
  transform-origin: left;
}

.text-link:hover::after,
.text-link:focus-visible::after {
  transform: scaleX(0.62);
}

.hero-routines {
  position: absolute;
  z-index: 4;
  top: 53%;
  right: clamp(105px, 13.7vw, 215px);
  display: grid;
  color: #fff;
  grid-template-columns: repeat(2, auto);
}

.hero-routine {
  display: grid;
  min-width: clamp(60px, 6.3vw, 94px);
  justify-items: center;
}

.hero-routine + .hero-routine {
  border-left: 1px solid rgba(255, 255, 255, 0.48);
}

.hero-routine strong,
.routine-heading strong {
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(48px, 4.6vw, 70px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.hero-routine span {
  margin-top: 12px;
  font-size: clamp(10px, 0.75vw, 12px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-signoff {
  position: absolute;
  right: var(--gutter);
  bottom: 6.8%;
  margin: 0;
  color: #fff;
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 0.08em;
  line-height: 1.65;
  text-align: right;
  text-transform: uppercase;
}

.lifestyle-grid {
  display: grid;
  height: clamp(190px, 19vw, 290px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #111;
}

.lifestyle-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background: #151719;
}

.lifestyle-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 3, 4, 0.02) 30%, rgba(2, 3, 4, 0.46) 100%);
  content: "";
}

.lifestyle-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.03);
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.lifestyle-card:nth-child(1) img { object-position: 56% 48%; }
.lifestyle-card:nth-child(2) img { object-position: 55% 46%; }
.lifestyle-card:nth-child(3) img { object-position: 53% 47%; }
.lifestyle-card:nth-child(4) img { object-position: 55% 34%; }
.lifestyle-card:nth-child(5) img { object-position: 50% 51%; }

.lifestyle-card:hover img {
  filter: saturate(0.92) contrast(1.05);
  transform: scale(1.035);
}

.lifestyle-card span {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 19%;
  left: 0;
  color: #fff;
  font-size: clamp(14px, 1.2vw, 19px);
  letter-spacing: -0.01em;
  text-align: center;
  text-transform: uppercase;
}

.product-section {
  position: relative;
  display: grid;
  height: clamp(540px, 45vw, 700px);
  padding: 0 var(--gutter);
  overflow: hidden;
  grid-template-columns: 34% 32% 34%;
  align-items: center;
  background: #efede7 url("/assets/images/product-section-full-bleed-v4.png") center / cover no-repeat;
  isolation: isolate;
}

.product-section-background,
.product-section-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-section-background {
  z-index: -3;
  object-fit: cover;
  object-position: center;
  transform: translateX(1cm);
}

.product-section-wash {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(246, 244, 239, 0.88) 0%, rgba(246, 244, 239, 0.66) 28%, rgba(246, 244, 239, 0.02) 45%, rgba(246, 244, 239, 0.04) 56%, rgba(246, 244, 239, 0.66) 74%, rgba(246, 244, 239, 0.9) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(218, 213, 203, 0.1));
}

.product-copy,
.routines-panel {
  position: relative;
  z-index: 3;
}

.product-copy {
  align-self: stretch;
  display: flex;
  padding: 12% 9% 9% 0;
  flex-direction: column;
  justify-content: space-between;
}

.product-copy h2,
.routines-panel h2 {
  margin: 0;
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: 0.015em;
  line-height: 1.12;
  text-transform: uppercase;
}

.product-copy p {
  max-width: 470px;
  margin: 0;
  font-size: clamp(13px, 0.98vw, 16px);
  line-height: 1.55;
}

.product-copy p + p {
  margin-top: 3%;
}

.product-copy .text-link {
  margin-top: 4%;
}

.product-stage {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  align-self: center;
}

.routines-panel {
  align-self: stretch;
  padding: 12% 0 8% 10%;
}

.routine-columns {
  display: grid;
  margin-top: 8%;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.routine-card {
  min-width: 0;
  padding-right: 8%;
}

.routine-card + .routine-card {
  padding-right: 0;
  padding-left: 10%;
  border-left: 1px solid rgba(9, 11, 12, 0.34);
}

.routine-heading {
  display: flex;
  gap: 13px;
  align-items: center;
}

.routine-heading strong {
  font-size: clamp(48px, 5vw, 76px);
}

.routine-heading span {
  font-size: clamp(17px, 1.45vw, 23px);
  text-transform: uppercase;
}

.routine-card p {
  margin: 0;
  font-size: clamp(11px, 0.82vw, 13px);
  line-height: 1.55;
}

.routine-dose {
  margin: 3% 0 8% !important;
}

.klarna-note {
  display: grid;
  gap: 6px;
  margin-top: 8%;
  padding-top: 6%;
  border-top: 1px solid rgba(9, 11, 12, 0.24);
}

.klarna-note span {
  font-size: clamp(11px, 0.8vw, 13px);
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.klarna-note p {
  max-width: 410px;
  margin: 0;
  color: rgba(9, 11, 12, 0.72);
  font-size: clamp(12px, 0.86vw, 14px);
  line-height: 1.45;
}

.routine-button {
  width: min(100%, 360px);
  margin-top: 6%;
  box-shadow: 0 13px 28px rgba(9, 11, 12, 0.16);
}

.routine-button sup {
  position: relative;
  top: -0.25em;
  font-size: 0.55em;
}

.formula-section {
  color: #fff;
  background: #0a0d0e;
}

.formula-intro {
  display: grid;
  min-height: clamp(185px, 18vw, 275px);
  padding: clamp(42px, 4.7vw, 74px) var(--gutter);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
}

.formula-intro h2,
.faq-intro h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 3.7vw, 58px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.98;
  text-transform: uppercase;
}

.formula-intro > p {
  max-width: 560px;
  margin: 0 0 0 auto;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.55;
}

.ingredient-grid {
  display: grid;
  height: clamp(310px, 29vw, 445px);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ingredient-card {
  position: relative;
  min-width: 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.19);
  background: #151719;
}

.ingredient-card + .ingredient-card {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

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

.ingredient-card img {
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.ingredient-card:hover img {
  transform: scale(1.035);
}

.ingredient-shade {
  background: linear-gradient(90deg, rgba(6, 8, 8, 0.82) 0%, rgba(6, 8, 8, 0.47) 46%, rgba(6, 8, 8, 0.08) 82%), linear-gradient(180deg, rgba(6, 8, 8, 0.1), rgba(6, 8, 8, 0.57));
}

.ingredient-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  padding: clamp(26px, 2.8vw, 44px) clamp(22px, 2.2vw, 35px);
  flex-direction: column;
}

.ingredient-content h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(19px, 1.65vw, 26px);
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 0.98;
  text-transform: uppercase;
}

.ingredient-content h3::after {
  display: block;
  width: 24px;
  height: 1px;
  margin-top: 17px;
  background: rgba(255, 255, 255, 0.8);
  content: "";
}

.ingredient-content > div {
  display: grid;
  gap: 2px;
  margin-top: 10px;
}

.ingredient-content strong {
  font-size: clamp(25px, 2vw, 32px);
  font-weight: 700;
  line-height: 1;
}

.ingredient-content span {
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ingredient-content a {
  width: max-content;
  margin-top: auto;
  padding-bottom: 5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  font-size: clamp(11px, 0.78vw, 13px);
  letter-spacing: 0.11em;
  text-decoration: none;
  text-transform: uppercase;
}

.ingredient-content a span {
  margin-left: 12px;
  font-size: 1.1em;
}

.approach-section {
  position: relative;
  display: grid;
  min-height: clamp(520px, 43vw, 660px);
  padding: clamp(66px, 6.4vw, 102px) var(--gutter);
  overflow: hidden;
  border-top: 1px solid rgba(9, 11, 12, 0.14);
  border-bottom: 1px solid rgba(9, 11, 12, 0.16);
  grid-template-columns: 37% 63%;
  background:
    radial-gradient(circle at 86% 4%, rgba(255, 255, 255, 0.98), transparent 31%),
    linear-gradient(112deg, #f4f2ec 0%, #ebe8df 62%, #e6e7dd 100%);
}

.approach-section::before {
  position: absolute;
  right: -9vw;
  bottom: -14vw;
  width: 46vw;
  height: 46vw;
  border: 1px solid rgba(9, 11, 12, 0.08);
  border-radius: 50%;
  content: "";
}

.approach-lead,
.approach-body {
  position: relative;
  z-index: 1;
}

.approach-lead {
  display: flex;
  padding-right: clamp(38px, 5vw, 80px);
  flex-direction: column;
}

.approach-lead h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 4.8vw, 74px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.approach-intro {
  max-width: 500px;
  margin: clamp(27px, 2.8vw, 44px) 0 0;
  color: rgba(9, 11, 12, 0.76);
  font-size: clamp(15px, 1.06vw, 17px);
  line-height: 1.58;
}

.approach-lead .text-link {
  margin-top: auto;
}

.approach-body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.approach-metrics {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.3);
  border-bottom: 1px solid rgba(9, 11, 12, 0.3);
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.approach-metrics > div {
  min-width: 0;
  padding: clamp(26px, 2.5vw, 40px) clamp(14px, 1.7vw, 27px);
}

.approach-metrics > div:first-child {
  padding-left: 0;
}

.approach-metrics > div + div {
  border-left: 1px solid rgba(9, 11, 12, 0.22);
}

.approach-metrics dt {
  color: #78aa00;
  font-family: var(--sans-narrow);
  font-size: clamp(54px, 5vw, 78px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.86;
}

.approach-metrics dd {
  margin: 16px 0 0;
  font-size: clamp(9px, 0.72vw, 12px);
  letter-spacing: 0.08em;
  line-height: 1.35;
  text-transform: uppercase;
}

.approach-metric-system {
  background: rgba(120, 170, 0, 0.08);
}

.systems-statement {
  display: grid;
  gap: clamp(17px, 2vw, 32px);
  padding-top: clamp(30px, 3vw, 48px);
  grid-template-columns: 0.55fr 1.25fr 1fr;
  align-items: start;
}

.systems-statement .eyebrow {
  margin: 8px 0 0;
  letter-spacing: 0.14em;
}

.systems-statement h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 2.45vw, 38px);
  font-weight: 400;
  letter-spacing: -0.03em;
  line-height: 1.03;
  text-transform: uppercase;
}

.systems-statement > p:last-child {
  margin: 2px 0 0;
  color: rgba(9, 11, 12, 0.68);
  font-size: clamp(12px, 0.91vw, 15px);
  line-height: 1.58;
}

.study-section {
  position: relative;
  display: grid;
  height: clamp(360px, 34.7vw, 530px);
  padding: 0 var(--gutter);
  overflow: hidden;
  color: #fff;
  grid-template-columns: 39% 61%;
  isolation: isolate;
}

.study-background,
.study-overlay {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
}

.study-background {
  object-fit: cover;
}

.study-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.97) 0%, rgba(3, 6, 7, 0.77) 41%, rgba(3, 6, 7, 0.44) 68%, rgba(3, 6, 7, 0.66) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.34));
}

.study-copy {
  display: flex;
  padding: 11% 12% 9% 0;
  flex-direction: column;
  justify-content: space-between;
}

.eyebrow-light {
  letter-spacing: 0.16em;
}

.study-copy h2 {
  font-size: clamp(40px, 3.65vw, 56px);
  line-height: 1.04;
}

.study-copy > p:not(.eyebrow) {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(12px, 0.93vw, 15px);
  line-height: 1.5;
}

.text-link-light {
  color: #fff;
}

.study-data {
  display: flex;
  padding: 12% 0 8% 5%;
  flex-direction: column;
  justify-content: space-between;
}

.study-metrics {
  display: grid;
  margin: 0;
  grid-template-columns: 0.78fr 0.98fr 1.42fr 1.18fr;
}

.study-metrics > div {
  display: flex;
  min-height: 76px;
  padding: 0 clamp(14px, 2vw, 31px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.study-metrics > div:first-child {
  padding-left: 0;
}

.study-metrics > div + div {
  border-left: 1px solid var(--night-line);
}

.study-metrics dt {
  font-size: clamp(28px, 3vw, 47px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1;
}

.study-metrics dd {
  margin: 8px 0 0;
  font-size: clamp(9px, 0.74vw, 12px);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.study-metrics .metric-word dt {
  font-size: clamp(12px, 1.05vw, 17px);
  letter-spacing: 0.01em;
  line-height: 1.35;
  text-transform: uppercase;
}

.profile-label {
  margin: 0;
  font-size: clamp(11px, 0.95vw, 15px);
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

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

.profile-card {
  position: relative;
  display: grid;
  min-height: clamp(72px, 6.8vw, 104px);
  padding: clamp(14px, 1.3vw, 21px) clamp(42px, 4vw, 62px) clamp(14px, 1.3vw, 21px) clamp(14px, 1.4vw, 22px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 5px;
  align-content: center;
  text-decoration: none;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.profile-card:hover,
.profile-card:focus-visible {
  border-color: var(--lime);
  background: rgba(166, 230, 0, 0.06);
}

.profile-card span {
  font-size: clamp(10px, 0.83vw, 13px);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-card small {
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(9px, 0.73vw, 12px);
}

.profile-card b {
  position: absolute;
  top: 50%;
  right: clamp(14px, 1.4vw, 22px);
  font-size: 24px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-section {
  display: grid;
  padding: clamp(68px, 7vw, 110px) var(--gutter);
  grid-template-columns: 38% 62%;
  background:
    radial-gradient(circle at 16% 17%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(105deg, #f3f1eb 0%, #e9e6de 100%);
}

.faq-intro {
  padding-right: clamp(38px, 5vw, 78px);
}

.faq-intro > p:not(.eyebrow) {
  max-width: 390px;
  margin: 25px 0 0;
  color: rgba(9, 11, 12, 0.68);
  font-size: 16px;
  line-height: 1.55;
}

.faq-buy-card {
  position: relative;
  display: grid;
  max-width: 390px;
  min-height: 440px;
  margin-top: clamp(36px, 4.1vw, 64px);
  padding: clamp(25px, 2.5vw, 39px);
  overflow: hidden;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #090d0e url("/assets/images/hero-product-integrated-v2.png") 62% center / cover no-repeat;
  box-shadow: 0 26px 58px rgba(9, 11, 12, 0.22);
  isolation: isolate;
}

.faq-buy-card::before {
  position: absolute;
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 6, 7, 0.42) 0%, rgba(3, 6, 7, 0.19) 34%, rgba(3, 6, 7, 0.92) 72%, rgba(3, 6, 7, 0.98) 100%),
    linear-gradient(90deg, rgba(3, 6, 7, 0.35), rgba(3, 6, 7, 0.1));
  content: "";
}

.faq-buy-card > span {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq-buy-card > span sup {
  position: relative;
  top: -0.25em;
  font-size: 0.55em;
}

.faq-buy-card > strong {
  margin-top: auto;
  font-family: var(--serif);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 1;
}

.faq-buy-card > p {
  margin: 16px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  line-height: 1.5;
}

.button-lime {
  color: var(--ink);
  background: var(--lime);
}

.button-lime:hover,
.button-lime:focus-visible {
  color: var(--ink);
  background: #fff;
}

.faq-list {
  border-top: 1px solid rgba(9, 11, 12, 0.28);
}

.faq-list details {
  border-bottom: 1px solid rgba(9, 11, 12, 0.28);
}

.faq-list summary {
  position: relative;
  padding: clamp(22px, 2vw, 31px) 52px clamp(22px, 2vw, 31px) 0;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(20px, 1.75vw, 27px);
  line-height: 1.18;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 4px;
  color: var(--lime);
  content: "+";
  font-family: var(--sans);
  font-size: 29px;
  font-weight: 400;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details > p {
  max-width: 760px;
  margin: -3px 52px 0 0;
  padding: 0 0 clamp(24px, 2.4vw, 38px);
  color: rgba(9, 11, 12, 0.67);
  font-size: 16px;
  line-height: 1.58;
}

.site-footer {
  padding: 0 var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
  background: #070b0d;
}

.footer-main {
  display: grid;
  min-height: clamp(82px, 7.7vw, 118px);
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.site-footer .footer-brand {
  font-size: clamp(15px, 1.35vw, 21px);
}

.footer-main p {
  margin: 0 0 0 24px;
  color: rgba(255, 255, 255, 0.73);
  font-size: clamp(8px, 0.67vw, 11px);
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.footer-company {
  font-size: clamp(10px, 0.85vw, 13px);
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.footer-legal {
  display: flex;
  gap: 14px 28px;
  padding: 17px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  flex-wrap: wrap;
  align-items: center;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease;
}

.footer-legal a:hover,
.footer-legal a:focus-visible {
  color: #fff;
}

/* Legal centre */

.legal-page .site-shell {
  overflow: visible;
}

.legal-page .site-header {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.legal-page .header-actions {
  color: var(--ink);
}

.legal-page .header-actions .buy-button {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.legal-page .header-actions .buy-button:hover,
.legal-page .header-actions .buy-button:focus-visible {
  color: var(--ink);
  background: transparent;
}

.legal-hero {
  padding: clamp(72px, 8vw, 130px) var(--gutter) clamp(58px, 6.5vw, 100px);
  border-bottom: 1px solid var(--line);
  background: var(--paper-soft);
}

.legal-hero h1 {
  max-width: 900px;
  margin: 12px 0 24px;
  font-family: var(--serif);
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.94;
  text-transform: uppercase;
}

.legal-hero > p:last-child {
  max-width: 720px;
  margin: 0;
  color: rgba(9, 11, 12, 0.65);
  font-size: 17px;
}

.legal-content {
  padding: 0 var(--gutter) clamp(80px, 9vw, 145px);
  background: var(--paper);
}

.legal-section {
  display: grid;
  gap: clamp(34px, 5vw, 92px);
  padding: clamp(58px, 7vw, 112px) 0;
  border-bottom: 1px solid var(--line);
  grid-template-columns: minmax(250px, 0.75fr) minmax(0, 1.8fr);
  scroll-margin-top: 24px;
}

.legal-section:last-child {
  border-bottom: 0;
}

.legal-section h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4vw, 62px);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.legal-copy {
  max-width: 860px;
}

.legal-copy h3 {
  margin: 34px 0 10px;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.legal-copy h3:first-child {
  margin-top: 0;
}

.legal-copy p,
.legal-copy li {
  color: rgba(9, 11, 12, 0.72);
  font-size: 16px;
  line-height: 1.68;
}

.legal-copy ul {
  margin: 12px 0 24px;
  padding-left: 20px;
}

.legal-copy a {
  text-underline-offset: 3px;
}

.legal-meta {
  margin-top: 22px !important;
  font-size: 13px !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Science Hub */

.science-page .site-shell {
  overflow: hidden;
  background: var(--paper-soft);
}

.science-page .site-header {
  color: #fff;
}

.science-page .primary-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.science-page section[id] {
  scroll-margin-top: 24px;
}

.science-hero {
  position: relative;
  display: grid;
  min-height: clamp(700px, 55vw, 860px);
  padding: clamp(150px, 13vw, 205px) var(--gutter) clamp(48px, 4.5vw, 70px);
  overflow: hidden;
  color: #fff;
  grid-template-columns: minmax(0, 1.25fr) minmax(380px, 0.75fr);
  grid-template-rows: 1fr auto;
  gap: clamp(44px, 5vw, 84px);
  background: #050809;
  isolation: isolate;
}

.science-hero-background,
.science-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.science-hero-background {
  z-index: -4;
  object-fit: cover;
  object-position: 50% 45%;
  filter: contrast(1.08) saturate(0.72);
}

.science-hero-overlay {
  z-index: -3;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.98) 0%, rgba(3, 6, 7, 0.86) 44%, rgba(3, 6, 7, 0.55) 74%, rgba(3, 6, 7, 0.83) 100%),
    linear-gradient(180deg, rgba(3, 6, 7, 0.3), rgba(3, 6, 7, 0.9));
}

.science-orbit {
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(166, 230, 0, 0.24);
  border-radius: 50%;
  pointer-events: none;
}

.science-orbit::after {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 26px rgba(166, 230, 0, 0.75);
  content: "";
}

.science-orbit-one {
  top: 17%;
  right: -5%;
  width: clamp(420px, 44vw, 700px);
  height: clamp(420px, 44vw, 700px);
}

.science-orbit-one::after {
  top: 17%;
  left: 9%;
}

.science-orbit-two {
  right: 9%;
  bottom: -28%;
  width: clamp(330px, 34vw, 540px);
  height: clamp(330px, 34vw, 540px);
}

.science-orbit-two::after {
  top: 8%;
  right: 21%;
}

.science-hero-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 880px;
}

.science-hero-copy h1 {
  max-width: 850px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(62px, 6.6vw, 104px);
  font-weight: 400;
  letter-spacing: -0.055em;
  line-height: 0.9;
  text-transform: uppercase;
}

.science-hero-intro {
  max-width: 675px;
  margin: clamp(27px, 2.6vw, 42px) 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(16px, 1.2vw, 19px);
  line-height: 1.55;
}

.science-hero-actions {
  display: flex;
  gap: clamp(24px, 2.8vw, 45px);
  margin-top: clamp(34px, 3.5vw, 55px);
  align-items: center;
}

.science-hero-facts {
  position: relative;
  z-index: 2;
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  align-self: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-hero-facts > div {
  min-width: 0;
  min-height: clamp(128px, 11vw, 170px);
  padding: clamp(24px, 2.4vw, 38px);
}

.science-hero-facts > div:nth-child(even) {
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.science-hero-facts > div:nth-child(n+3) {
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.science-hero-facts dt {
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(48px, 4.2vw, 66px);
  line-height: 0.86;
}

.science-hero-facts dd {
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(10px, 0.76vw, 12px);
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.science-hero-edition {
  position: relative;
  z-index: 2;
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.science-chapters {
  display: grid;
  min-height: 96px;
  border-bottom: 1px solid rgba(9, 11, 12, 0.2);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: var(--paper-soft);
}

.science-chapters a {
  display: flex;
  min-width: 0;
  padding: 20px clamp(18px, 2.5vw, 40px);
  align-items: center;
  gap: 18px;
  font-size: clamp(10px, 0.78vw, 13px);
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 180ms ease, background-color 180ms ease;
}

.science-chapters a + a {
  border-left: 1px solid rgba(9, 11, 12, 0.16);
}

.science-chapters a:hover,
.science-chapters a:focus-visible {
  background: var(--lime);
}

.science-chapters span {
  color: #6f9c00;
  font-family: var(--sans-narrow);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.science-manifesto {
  display: grid;
  gap: clamp(42px, 5vw, 82px);
  padding: clamp(82px, 8vw, 128px) var(--gutter);
  border-bottom: 1px solid rgba(9, 11, 12, 0.18);
  grid-template-columns: 0.5fr 1.2fr 1.3fr;
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 255, 255, 0.98), transparent 28%),
    linear-gradient(112deg, #f5f3ed, #e9e6dc);
}

.science-section-marker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.science-section-marker span {
  color: #77a900;
  font-family: var(--sans-narrow);
  font-size: clamp(80px, 8vw, 124px);
  letter-spacing: -0.06em;
  line-height: 0.78;
}

.science-section-marker p {
  margin: 28px 0 0;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.science-manifesto-copy h2,
.science-pathways-head h2,
.science-ingredients-head h2,
.clinical-head h2,
.science-safety h2,
.science-references h2,
.science-closing h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(46px, 4.9vw, 76px);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.94;
  text-transform: uppercase;
}

.science-manifesto-copy > p:last-child {
  max-width: 620px;
  margin: clamp(27px, 3vw, 48px) 0 0;
  color: rgba(9, 11, 12, 0.7);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.65;
}

.science-formula-stats {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.29);
  border-bottom: 1px solid rgba(9, 11, 12, 0.29);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-formula-stats > div {
  min-height: 160px;
  padding: clamp(25px, 2.4vw, 38px);
}

.science-formula-stats > div:nth-child(even) {
  border-left: 1px solid rgba(9, 11, 12, 0.2);
}

.science-formula-stats > div:nth-child(n+3) {
  border-top: 1px solid rgba(9, 11, 12, 0.2);
}

.science-formula-stats dt {
  color: #77a900;
  font-family: var(--sans-narrow);
  font-size: clamp(42px, 3.8vw, 60px);
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.science-formula-stats dd {
  margin: 16px 0 0;
  font-size: 13px;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.science-formula-stats dd span {
  color: rgba(9, 11, 12, 0.54);
  font-size: 10px;
}

.science-pathways {
  padding: clamp(86px, 8.5vw, 136px) var(--gutter);
  color: #fff;
  background:
    radial-gradient(circle at 74% 0%, rgba(22, 50, 42, 0.64), transparent 36%),
    #060a0b;
}

.science-pathways-head {
  display: grid;
  gap: clamp(40px, 6vw, 100px);
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
}

.science-pathways-head > p {
  max-width: 590px;
  margin: 0 0 7px auto;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(15px, 1.08vw, 17px);
  line-height: 1.62;
}

.science-system-map {
  display: grid;
  margin-top: clamp(62px, 6vw, 96px);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: 1.07fr 0.94fr 0.93fr 1fr 1fr;
}

.science-system-map article {
  display: flex;
  min-height: clamp(340px, 29vw, 445px);
  padding: clamp(24px, 2.4vw, 38px) clamp(14px, 1vw, 18px);
  flex-direction: column;
  transition: background-color 220ms ease;
}

.science-system-map article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.science-system-map article:hover {
  background: rgba(166, 230, 0, 0.055);
}

.science-system-map article > span {
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(38px, 3.5vw, 54px);
  line-height: 0.9;
}

.science-system-map h3 {
  max-width: 100%;
  margin: auto 0 20px;
  font-family: var(--serif);
  font-size: clamp(21px, 1.375vw, 22px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 1.04;
  white-space: nowrap;
  text-transform: uppercase;
}

@media (min-width: 1181px) and (max-width: 1430px) {
  .science-system-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .science-system-map article:nth-child(4) {
    border-left: 0;
  }

  .science-system-map article:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .science-system-map article:nth-child(5) {
    grid-column: span 2;
  }

  .science-system-map article {
    min-height: 340px;
  }
}

@media (max-width: 340px) {
  .science-system-map h3 {
    font-size: 19px;
  }
}

.science-system-map p {
  min-height: 95px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.55;
}

.science-system-map ul {
  display: flex;
  gap: 7px;
  margin: 22px 0 0;
  padding: 0;
  flex-wrap: wrap;
  list-style: none;
}

.science-system-map li {
  padding: 6px 9px;
  border: 1px solid rgba(166, 230, 0, 0.5);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.science-ingredients {
  padding: clamp(86px, 8.4vw, 134px) var(--gutter);
  background: var(--paper-soft);
}

.science-ingredients-head {
  display: grid;
  gap: 30px clamp(40px, 5vw, 82px);
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
}

.science-ingredients-head .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.science-ingredients-head > p:last-child {
  max-width: 560px;
  margin: 0 0 6px auto;
  color: rgba(9, 11, 12, 0.67);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.62;
}

.science-ingredient-list {
  display: grid;
  gap: 22px;
  margin-top: clamp(54px, 6vw, 96px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.science-ingredient-card {
  display: grid;
  min-height: clamp(330px, 27vw, 420px);
  overflow: hidden;
  border: 1px solid rgba(9, 11, 12, 0.2);
  grid-template-columns: 42% 58%;
  background: #ebe8e0;
}

.science-ingredient-image {
  position: relative;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  background: #111;
}

.science-ingredient-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 5, 5, 0.72) 100%);
  content: "";
}

.science-ingredient-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.science-ingredient-card:hover .science-ingredient-image img {
  transform: scale(1.025);
}

.science-ingredient-image span {
  position: absolute;
  z-index: 2;
  right: 18px;
  bottom: 18px;
  left: 18px;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.science-ingredient-copy {
  display: flex;
  min-width: 0;
  padding: clamp(28px, 3vw, 46px);
  flex-direction: column;
}

.science-kicker {
  margin: 0;
  color: #668d00;
  font-size: 10px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.science-ingredient-copy h3 {
  margin: clamp(16px, 1.7vw, 26px) 0 0;
  font-family: var(--serif);
  font-size: clamp(29px, 2.8vw, 44px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.science-ingredient-copy > p:not(.science-kicker) {
  margin: clamp(18px, 2vw, 30px) 0 0;
  color: rgba(9, 11, 12, 0.67);
  font-size: clamp(12px, 0.92vw, 15px);
  line-height: 1.6;
}

.science-ingredient-copy a {
  width: max-content;
  margin-top: auto;
  padding-top: 24px;
  border-bottom: 1px solid currentColor;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
}

.clinical-study {
  padding: clamp(88px, 8.5vw, 136px) var(--gutter);
  color: #fff;
  background:
    radial-gradient(circle at 84% 10%, rgba(47, 75, 66, 0.62), transparent 32%),
    linear-gradient(135deg, #070b0d 0%, #0b1112 100%);
}

.clinical-head {
  display: grid;
  gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 0.45fr 1.15fr 0.8fr;
  align-items: end;
}

.science-section-marker-dark span {
  color: var(--lime);
}

.clinical-head > p {
  max-width: 510px;
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.6;
}

.clinical-design {
  display: grid;
  margin: clamp(58px, 6vw, 96px) 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.clinical-design > div {
  min-width: 0;
  min-height: 160px;
  padding: clamp(24px, 2.3vw, 36px) clamp(16px, 1.7vw, 27px);
}

.clinical-design > div + div {
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.clinical-design dt {
  min-height: 54px;
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(28px, 2.5vw, 39px);
  letter-spacing: -0.025em;
  line-height: 0.95;
}

.clinical-design dd {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 10px;
  letter-spacing: 0.09em;
  line-height: 1.35;
  text-transform: uppercase;
}

.clinical-results-intro {
  display: grid;
  gap: 25px clamp(40px, 5vw, 80px);
  margin-top: clamp(70px, 7vw, 112px);
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
}

.clinical-results-intro .eyebrow {
  grid-column: 1 / -1;
  margin: 0;
}

.clinical-results-intro h3 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 56px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.clinical-results-intro > p:last-child {
  max-width: 440px;
  margin: 0 0 4px auto;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.55;
}

.clinical-table-scroll-hint {
  display: none;
}

.clinical-table-wrap {
  margin-top: clamp(40px, 4.5vw, 72px);
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.clinical-table {
  width: 100%;
  min-width: 690px;
  border-collapse: collapse;
}

.clinical-table th,
.clinical-table td {
  padding: clamp(22px, 2.2vw, 34px) clamp(20px, 2.4vw, 38px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  text-align: left;
}

.clinical-table tr:last-child th,
.clinical-table tr:last-child td {
  border-bottom: 0;
}

.clinical-table thead th {
  color: rgba(255, 255, 255, 0.49);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.clinical-table th + th,
.clinical-table th + td,
.clinical-table td + td {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.clinical-table tbody th {
  width: 44%;
  font-family: var(--serif);
  font-size: clamp(21px, 1.8vw, 28px);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.clinical-table tbody td {
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(38px, 4vw, 62px);
  letter-spacing: -0.04em;
}

.clinical-profiles {
  display: grid;
  gap: 22px;
  margin-top: clamp(48px, 5vw, 80px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.clinical-profiles article {
  position: relative;
  min-height: 290px;
  padding: clamp(32px, 3.5vw, 55px);
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.025);
}

.clinical-profiles article > span {
  position: absolute;
  top: clamp(28px, 3vw, 46px);
  right: clamp(28px, 3vw, 46px);
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(60px, 6vw, 92px);
  line-height: 0.75;
}

.clinical-profiles h3 {
  margin: clamp(55px, 5vw, 82px) 0 0;
  font-family: var(--serif);
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1;
  text-transform: uppercase;
}

.clinical-profiles article > p:last-child {
  max-width: 560px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  line-height: 1.58;
}

.science-safety {
  display: grid;
  gap: clamp(46px, 6vw, 96px);
  padding: clamp(88px, 8.4vw, 135px) var(--gutter);
  grid-template-columns: 0.9fr 1.1fr;
  background:
    radial-gradient(circle at 12% 2%, #fff, transparent 35%),
    linear-gradient(112deg, #f3f1ea, #e5e2d8);
}

.science-safety-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: clamp(28px, 3vw, 48px) 0 0;
  color: rgba(9, 11, 12, 0.67);
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 1.65;
}

.science-safety-copy .text-link {
  margin-top: clamp(30px, 3vw, 48px);
}

.safety-outcomes {
  display: grid;
  margin: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.28);
  border-bottom: 1px solid rgba(9, 11, 12, 0.28);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.safety-outcomes > div {
  min-height: 180px;
  padding: clamp(28px, 3vw, 46px);
}

.safety-outcomes > div:nth-child(even) {
  border-left: 1px solid rgba(9, 11, 12, 0.2);
}

.safety-outcomes > div:nth-child(n+3) {
  border-top: 1px solid rgba(9, 11, 12, 0.2);
}

.safety-outcomes dt {
  color: #77a900;
  font-family: var(--sans-narrow);
  font-size: clamp(60px, 6vw, 92px);
  line-height: 0.78;
}

.safety-outcomes dd {
  max-width: 180px;
  margin: 22px 0 0;
  font-size: 10px;
  letter-spacing: 0.1em;
  line-height: 1.4;
  text-transform: uppercase;
}

.safety-systems {
  display: grid;
  grid-column: 1 / -1;
  border-top: 1px solid rgba(9, 11, 12, 0.25);
  border-bottom: 1px solid rgba(9, 11, 12, 0.25);
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.safety-systems span {
  padding: 25px 15px;
  color: rgba(9, 11, 12, 0.65);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-align: center;
  text-transform: uppercase;
}

.safety-systems span + span {
  border-left: 1px solid rgba(9, 11, 12, 0.18);
}

.science-references {
  display: grid;
  gap: clamp(50px, 7vw, 112px);
  padding: clamp(88px, 8.4vw, 135px) var(--gutter);
  grid-template-columns: 0.68fr 1.32fr;
  background: var(--paper-soft);
}

.science-references-head > p:not(.eyebrow) {
  max-width: 520px;
  margin: clamp(28px, 3vw, 48px) 0 0;
  color: rgba(9, 11, 12, 0.64);
  font-size: 15px;
  line-height: 1.62;
}

.science-references-head .button {
  margin-top: clamp(32px, 3.5vw, 56px);
}

.reference-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(9, 11, 12, 0.28);
  list-style: none;
}

.reference-list li {
  display: grid;
  gap: 22px;
  min-height: 126px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(9, 11, 12, 0.24);
  grid-template-columns: 44px 1fr auto;
  align-items: start;
}

.reference-list li > span {
  color: #6f9c00;
  font-family: var(--sans-narrow);
  font-size: 25px;
  line-height: 1;
}

.reference-list strong {
  font-size: 13px;
  letter-spacing: 0.03em;
  line-height: 1.35;
}

.reference-list p {
  margin: 8px 0 0;
  color: rgba(9, 11, 12, 0.57);
  font-size: 12px;
  line-height: 1.5;
}

.reference-list li > a {
  padding-bottom: 3px;
  border-bottom: 1px solid currentColor;
  font-size: 9px;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.science-closing {
  position: relative;
  display: grid;
  min-height: clamp(420px, 37vw, 570px);
  padding: clamp(82px, 8vw, 128px) var(--gutter);
  overflow: hidden;
  color: #fff;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 48px;
  background:
    linear-gradient(90deg, rgba(3, 6, 7, 0.96), rgba(3, 6, 7, 0.62)),
    url("/assets/images/hero-product-integrated-v2.png") center 51% / cover no-repeat;
}

.science-closing::after {
  position: absolute;
  right: -15%;
  bottom: -70%;
  width: 65vw;
  height: 65vw;
  border: 1px solid rgba(166, 230, 0, 0.25);
  border-radius: 50%;
  content: "";
}

.science-closing > * {
  position: relative;
  z-index: 2;
}

.science-closing h2 {
  font-size: clamp(45px, 5.4vw, 84px);
}

.science-closing .button sup {
  position: relative;
  top: -0.25em;
  font-size: 0.55em;
}

.science-disclaimer {
  margin: 0;
  padding: 19px var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.46);
  background: #070b0d;
  font-size: 9px;
  letter-spacing: 0.025em;
  line-height: 1.55;
  text-align: center;
}

@media (max-width: 1180px) {
  :root {
    --gutter: 38px;
  }

  .primary-nav {
    gap: 23px;
  }

  .hero-routines {
    right: 9.5%;
  }

  .product-copy {
    padding-right: 4%;
  }

  .routines-panel {
    padding-left: 6%;
  }
}

@media (max-width: 900px) {
  :root {
    --gutter: 24px;
  }

  .site-header {
    height: 72px;
    grid-template-columns: 1fr auto auto;
  }

  body:not(.science-page) .site-header .language-switch {
    color: var(--ink);
  }

  .header-actions .buy-button {
    display: none;
  }

  .menu-toggle {
    position: relative;
    z-index: 70;
    display: grid;
    width: 38px;
    height: 38px;
    padding: 10px 7px;
    border: 0;
    align-content: center;
    gap: 6px;
    background: transparent;
  }

  .menu-toggle span:not(.sr-only) {
    display: block;
    height: 1px;
    background: currentColor;
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:nth-child(2) {
    transform: translateY(-3.5px) rotate(-45deg);
  }

  .primary-nav {
    position: fixed;
    z-index: 60;
    inset: 0;
    display: flex;
    padding: 110px 30px 40px;
    flex-direction: column;
    justify-content: flex-start;
    color: #fff;
    background: rgba(7, 11, 13, 0.98);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .primary-nav a {
    font-size: 23px;
  }

  .primary-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .hero {
    height: 850px;
  }

  .hero-background {
    top: auto;
    bottom: 0;
    height: 56%;
    object-position: 74% center;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 100%);
    mask-image: linear-gradient(to bottom, transparent 0%, #000 15%, #000 100%);
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(247, 244, 237, 0.9) 0%, rgba(247, 244, 237, 0.68) 45%, rgba(4, 6, 7, 0.15) 67%, rgba(4, 6, 7, 0.7) 100%);
  }

  .hero-copy {
    top: 110px;
    width: calc(100% - 48px);
  }

  .hero h1 {
    font-size: clamp(48px, 11vw, 72px);
  }

  .hero-routines {
    top: auto;
    right: 24px;
    bottom: 18%;
  }

  .hero-signoff {
    display: none;
  }

  .lifestyle-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lifestyle-card {
    aspect-ratio: 1 / 1.1;
  }

  .lifestyle-card:last-child {
    grid-column: 1 / -1;
    aspect-ratio: 2 / 1;
  }

  .product-section {
    height: auto;
    min-height: 0;
    padding-top: 64px;
    padding-bottom: 64px;
    grid-template-columns: 1fr;
    background: linear-gradient(180deg, #f4f1eb 0%, #e9e5dc 100%);
  }

  .product-section-background {
    display: none;
  }

  .product-section-wash {
    display: none;
  }

  .product-copy,
  .routines-panel {
    padding: 0;
  }

  .product-copy {
    gap: 24px;
  }

  .product-stage {
    width: 100%;
    height: 480px;
    margin: 12px 0 24px;
    overflow: hidden;
    background: #eeeae2 url("/assets/images/product-section-full-bleed-v4.png") 45% 52% / cover no-repeat;
  }

  .product-stage::after {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(244, 241, 235, 0.72) 0%, transparent 14%, transparent 86%, rgba(233, 229, 220, 0.72) 100%);
    content: "";
    pointer-events: none;
  }

  .routines-panel {
    margin-top: 12px;
  }

  .routine-columns {
    margin-top: 28px;
  }

  .routine-button {
    margin-top: 34px;
  }

  .formula-intro {
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .formula-intro > p {
    margin-left: 0;
  }

  .approach-section {
    gap: 58px;
    padding-top: 72px;
    padding-bottom: 72px;
    grid-template-columns: 1fr;
  }

  .approach-lead {
    gap: 28px;
    padding-right: 0;
  }

  .approach-lead .text-link {
    margin-top: 4px;
  }

  .approach-body {
    gap: 48px;
  }

  .systems-statement {
    grid-template-columns: 0.55fr 1.45fr;
  }

  .systems-statement > p:last-child {
    grid-column: 2;
  }

  .ingredient-grid {
    height: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ingredient-card {
    min-height: 390px;
  }

  .ingredient-card:nth-child(3) {
    border-left: 0;
  }

  .faq-section {
    gap: 58px;
    grid-template-columns: 1fr;
  }

  .faq-intro {
    padding-right: 0;
  }

  .faq-buy-card {
    max-width: 520px;
  }

  .study-section {
    height: auto;
    min-height: 780px;
    padding-top: 64px;
    padding-bottom: 64px;
    grid-template-columns: 1fr;
  }

  .study-copy,
  .study-data {
    padding: 0;
  }

  .study-copy {
    gap: 24px;
  }

  .study-data {
    gap: 30px;
    margin-top: 56px;
  }

  .site-footer {
    padding-top: 26px;
    padding-bottom: 26px;
  }

  .footer-main {
    gap: 16px;
    min-height: auto;
    grid-template-columns: 1fr auto;
  }

  .footer-main p {
    display: none;
  }

  .footer-legal {
    margin-top: 26px;
    padding-bottom: 0;
  }

  .legal-page .site-header {
    position: relative;
  }

  .legal-page .primary-nav {
    top: 100%;
  }

  .legal-section {
    gap: 28px;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 16px;
  }

  .header-actions {
    gap: 12px;
  }

  .language-switch {
    gap: 5px;
    font-size: 10px;
  }

  .footer-legal {
    display: grid;
    gap: 13px 20px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-legal a {
    font-size: 10px;
  }

  .legal-hero {
    padding-top: 58px;
  }

  .hero {
    height: 820px;
  }

  .hero-background {
    height: 46%;
    object-position: 74% center;
  }

  .hero-copy {
    top: 100px;
  }

  .hero-intro {
    width: 100%;
  }

  .study-areas li {
    padding-right: 6px;
    padding-left: 8px;
    font-size: 8px;
  }

  .hero-ctas {
    gap: 19px;
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-routines {
    right: 16px;
    bottom: 15%;
  }

  .lifestyle-grid {
    grid-template-columns: 1fr;
  }

  .lifestyle-card,
  .lifestyle-card:last-child {
    aspect-ratio: 1.35 / 1;
    grid-column: auto;
  }

  .product-stage {
    height: 390px;
    background-position: 45% 52%;
  }

  .approach-section {
    gap: 48px;
    padding-top: 60px;
    padding-bottom: 60px;
  }

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

  .approach-metrics > div {
    padding: 24px 18px;
  }

  .approach-metrics > div:first-child {
    padding-left: 18px;
  }

  .approach-metrics > div:nth-child(3) {
    border-top: 1px solid rgba(9, 11, 12, 0.22);
    border-left: 0;
  }

  .approach-metrics > div:nth-child(4) {
    border-top: 1px solid rgba(9, 11, 12, 0.22);
  }

  .systems-statement {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .systems-statement > p:last-child {
    grid-column: auto;
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-card {
    min-height: 430px;
    border-left: 0 !important;
  }

  .faq-section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .faq-list summary {
    padding-right: 42px;
    font-size: 21px;
  }

  .faq-list details > p {
    margin-right: 0;
  }

  .routine-columns,
  .study-metrics,
  .profile-grid {
    grid-template-columns: 1fr 1fr;
  }

  .study-metrics {
    gap: 26px 0;
  }

  .study-metrics > div:nth-child(3) {
    border-left: 0;
  }

  .profile-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1180px) {
  .science-hero {
    grid-template-columns: minmax(0, 1.1fr) minmax(330px, 0.9fr);
  }

  .science-manifesto {
    grid-template-columns: 0.38fr 1fr 1.15fr;
  }

  .science-system-map {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .science-system-map article:nth-child(4) {
    border-left: 0;
  }

  .science-system-map article:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .science-system-map article:nth-child(5) {
    grid-column: span 2;
  }

  .science-system-map article {
    min-height: 340px;
  }

  .clinical-head {
    grid-template-columns: 0.35fr 1.15fr 0.8fr;
  }

  .clinical-design {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .clinical-design > div:nth-child(4) {
    border-left: 0;
  }

  .clinical-design > div:nth-child(n+4) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
}

@media (max-width: 900px) {
  .science-page .site-header {
    color: #fff;
  }

  .science-hero {
    min-height: 940px;
    padding-top: 128px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    align-content: space-between;
  }

  .science-orbit-one {
    right: -4%;
  }

  .science-orbit-one::after {
    right: 9%;
    left: auto;
  }

  .science-orbit-two {
    right: -4%;
  }

  .science-orbit-two::after {
    right: 9%;
  }

  .science-hero-copy {
    align-self: start;
  }

  .science-hero-copy h1 {
    max-width: 700px;
    font-size: clamp(58px, 10vw, 88px);
  }

  .science-hero-facts {
    width: min(100%, 660px);
    align-self: end;
  }

  .science-hero-edition {
    grid-column: auto;
  }

  .science-chapters {
    display: flex;
    overflow-x: auto;
  }

  .science-chapters a {
    min-width: 190px;
  }

  .science-manifesto {
    grid-template-columns: 0.28fr 1fr;
  }

  .science-formula-stats {
    grid-column: 1 / -1;
  }

  .science-pathways-head,
  .science-ingredients-head,
  .clinical-results-intro,
  .science-safety,
  .science-references,
  .science-closing {
    grid-template-columns: 1fr;
  }

  .science-pathways-head > p,
  .science-ingredients-head > p:last-child,
  .clinical-results-intro > p:last-child {
    margin-left: 0;
  }

  .science-system-map {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .science-system-map article:nth-child(3),
  .science-system-map article:nth-child(5) {
    border-left: 0;
  }

  .science-system-map article:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .science-system-map article:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .science-system-map article:nth-child(5) {
    grid-column: 1 / -1;
  }

  .science-system-map article {
    min-height: 315px;
  }

  .science-system-map p {
    min-height: 0;
  }

  .science-ingredient-list {
    grid-template-columns: 1fr;
  }

  .science-ingredient-card {
    min-height: 370px;
  }

  .clinical-head {
    grid-template-columns: 0.28fr 1fr;
  }

  .clinical-head > p {
    grid-column: 2;
  }

  .clinical-profiles {
    grid-template-columns: 1fr;
  }

  .clinical-table-scroll-hint {
    display: flex;
    margin: 30px 0 0;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    color: rgba(255, 255, 255, 0.62);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .clinical-table-scroll-hint span {
    color: var(--lime);
    font-size: 22px;
    line-height: 1;
  }

  .clinical-table-wrap {
    margin-top: 12px;
    overscroll-behavior-inline: contain;
    scrollbar-color: var(--lime) rgba(255, 255, 255, 0.12);
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .science-safety {
    gap: 56px;
  }

  .safety-systems {
    grid-column: auto;
  }

  .science-references {
    gap: 60px;
  }

  .science-closing {
    align-items: start;
  }

  .science-closing .button {
    width: max-content;
  }
}

@media (max-width: 560px) {
  .science-hero {
    min-height: 930px;
    padding-top: 112px;
    padding-bottom: 38px;
    gap: 34px;
  }

  .science-hero-copy h1 {
    font-size: clamp(50px, 14vw, 67px);
  }

  .science-hero-intro {
    font-size: 15px;
  }

  .science-hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .science-hero-facts > div {
    min-height: 120px;
    padding: 22px 18px;
  }

  .science-hero-edition {
    font-size: 9px;
  }

  .science-chapters a {
    min-width: 164px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .science-manifesto,
  .clinical-head {
    gap: 38px;
    grid-template-columns: 1fr;
  }

  .science-section-marker {
    display: block;
  }

  .science-section-marker p {
    margin-top: 18px;
  }

  .science-manifesto-copy,
  .clinical-head > div:nth-child(2),
  .clinical-head > p {
    grid-column: auto;
  }

  .science-manifesto-copy h2,
  .science-pathways-head h2,
  .science-ingredients-head h2,
  .clinical-head h2,
  .science-safety h2,
  .science-references h2,
  .science-closing h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .science-formula-stats > div {
    min-height: 142px;
    padding: 22px 18px;
  }

  .science-system-map {
    grid-template-columns: 1fr;
  }

  .science-system-map article,
  .science-system-map article:nth-child(4) {
    min-height: 285px;
    border-left: 0;
  }

  .science-system-map article + article {
    border-left: 0;
  }

  .science-system-map article:nth-child(n+2) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .science-system-map article:nth-child(5) {
    grid-column: auto;
  }

  .science-ingredient-card {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .science-ingredient-image {
    min-height: 300px;
  }

  .science-ingredient-copy {
    min-height: 360px;
  }

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

  .clinical-design > div {
    min-height: 144px;
  }

  .clinical-design > div:nth-child(odd) {
    border-left: 0;
  }

  .clinical-design > div:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }

  .clinical-design > div:nth-child(n+3) {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }

  .clinical-table th,
  .clinical-table td {
    padding: 20px 18px;
  }

  .clinical-profiles article {
    min-height: 330px;
  }

  html[lang="es"] .clinical-profiles article:first-child .science-kicker {
    max-width: calc(100% - 112px);
    line-height: 1.45;
  }

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

  .safety-outcomes > div {
    min-height: 160px;
    padding: 26px 18px;
  }

  .safety-systems {
    grid-template-columns: 1fr;
  }

  .safety-systems span + span {
    border-top: 1px solid rgba(9, 11, 12, 0.18);
    border-left: 0;
  }

  .reference-list li {
    gap: 16px;
    grid-template-columns: 35px 1fr;
  }

  .reference-list li > a {
    grid-column: 2;
    justify-self: start;
  }

  .science-closing {
    min-height: 520px;
  }

  .science-closing .button {
    width: 100%;
  }

  .science-disclaimer {
    padding-top: 16px;
    padding-bottom: 16px;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Purchase confirmation */
.completion-page .site-shell {
  min-height: 100vh;
}

.completion-header {
  position: relative;
  height: clamp(72px, 6.2vw, 92px);
  background: var(--paper-soft);
}

.completion-header .header-actions {
  color: var(--ink);
}

.completion-main {
  display: grid;
  min-height: min(760px, calc(100vh - 92px));
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  background: var(--paper-soft);
}

.completion-copy {
  display: flex;
  padding: clamp(80px, 9vw, 145px) var(--gutter);
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.completion-copy h1 {
  max-width: 780px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(56px, 6vw, 96px);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.94;
  text-transform: uppercase;
}

.completion-intro {
  max-width: 610px;
  margin: clamp(24px, 2.5vw, 40px) 0 0;
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.45;
}

.completion-details {
  display: grid;
  width: min(100%, 650px);
  margin: clamp(36px, 4vw, 62px) 0 clamp(34px, 3.6vw, 56px);
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.completion-details div {
  padding: 20px 20px 0 0;
}

.completion-details div + div {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.completion-details dt {
  margin-bottom: 7px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.completion-details dd {
  margin: 0;
  font-size: clamp(15px, 1.1vw, 18px);
}

.completion-details sup {
  font-size: 0.55em;
}

.completion-support {
  margin: 25px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.completion-support a {
  color: var(--ink);
  text-underline-offset: 4px;
}

.completion-visual {
  position: relative;
  display: flex;
  min-height: 610px;
  padding: var(--gutter);
  overflow: hidden;
  color: #fff;
  background: #080b0c;
  flex-direction: column;
  justify-content: space-between;
  isolation: isolate;
}

.completion-visual > img,
.completion-visual-overlay {
  position: absolute;
  z-index: -2;
  inset: 0;
  width: 100%;
  height: 100%;
}

.completion-visual > img {
  object-fit: cover;
}

.completion-visual-overlay {
  z-index: -1;
  background: linear-gradient(145deg, rgba(3, 6, 7, 0.24), rgba(3, 6, 7, 0.89));
}

.completion-visual > p {
  max-width: 330px;
  margin: 0 0 0 auto;
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-align: right;
  text-transform: uppercase;
}

.completion-visual > div:last-child {
  display: grid;
  width: min(100%, 470px);
  margin: auto;
  grid-template-columns: 1fr 1px 1fr;
  align-items: center;
}

.completion-visual strong {
  color: var(--lime);
  font-family: var(--sans-narrow);
  font-size: clamp(100px, 12vw, 190px);
  font-weight: 400;
  line-height: 0.8;
  text-align: center;
}

.completion-visual > div:last-child span {
  width: 1px;
  height: 62%;
  background: rgba(255, 255, 255, 0.38);
}

@media (max-width: 900px) {
  .completion-main {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .completion-copy {
    min-height: 610px;
    padding-top: 96px;
    padding-bottom: 82px;
  }

  .completion-copy h1 {
    font-size: clamp(48px, 12vw, 78px);
  }

  .completion-visual {
    min-height: 500px;
  }

  .completion-visual strong {
    font-size: clamp(105px, 25vw, 180px);
  }
}

@media (max-width: 560px) {
  .completion-header {
    padding-right: 24px;
    padding-left: 24px;
  }

  .completion-copy {
    min-height: 0;
    padding: 78px 24px 70px;
  }

  .completion-copy h1 {
    font-size: clamp(43px, 13.2vw, 64px);
  }

  .completion-intro {
    font-size: 17px;
  }

  .completion-details {
    grid-template-columns: 1fr;
  }

  .completion-details div + div {
    padding-left: 0;
    border-left: 0;
  }

  .completion-visual {
    min-height: 380px;
    padding: 28px 24px;
  }

  .completion-visual strong {
    font-size: clamp(88px, 28vw, 130px);
  }
}
