:root {
  --sage-950: #0f2d4a;
  --sage-900: #1f6fbf;
  --sage-700: #215f99;
  --sage-500: #76aee4;
  --sage-100: #eaf4fd;
  --ivory: #f7fbff;
  --pearl: #ffffff;
  --line: #d8e8f5;
  --gold: #3e9b4f;
  --ink: #102538;
  --muted: #627589;
  --shadow: 0 24px 70px rgba(31, 111, 191, 0.13);
  --radius: 8px;
  --container: 1320px;
  --serif: "Playfair Display", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --logo: "Raleway", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
}

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

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

strong {
  font-weight: 600;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  height: auto;
  padding: 18px clamp(20px, 4vw, 58px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid rgba(31, 111, 191, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  line-height: 1;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.brand svg {
  flex: 0 0 auto;
}

.brand span {
  display: grid;
  gap: 5px;
}

.brand strong {
  font-family: var(--logo);
  color: var(--sage-900);
  font-size: 1.34rem;
  letter-spacing: 0.16em;
  font-weight: 800;
}

.brand small {
  color: var(--gold);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--sage-900);
  font-size: 0.92rem;
  font-weight: 600;
}

.nav a,
.site-footer a {
  position: relative;
}

.nav a::after,
.site-footer a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.nav a:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
}

.header-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  font-size: .875rem;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.header-cta,
.button.primary {
  color: #fff;
  background: var(--sage-900);
  box-shadow: 0 16px 34px rgba(31, 111, 191, 0.22);
}

.button.secondary {
  color: #fff;
  background: var(--gold);
  border-color: rgba(62, 155, 79, 0.35);
  box-shadow: 0 16px 34px rgba(62, 155, 79, 0.18);
}

.header-cta:hover,
.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(31, 111, 191, 0.18);
}

main {
  width: 100%;
  margin: 0;
}

.hero {
  position: relative;
  min-height: 760px;
  margin: 0;
  padding: clamp(70px, 8vw, 112px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  background:
    radial-gradient(circle at 42% 50%, rgba(62, 155, 79, 0.12), transparent 34rem),
    linear-gradient(100deg, #eaf4fd 0%, #f4fbf6 48%, #e4f1fb 100%);
}

.hero-copy,
.hero-media {
  position: relative;
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.96fr) minmax(480px, 1fr);
  gap: clamp(42px, 7vw, 110px);
  align-items: center;
}

.hero-copy {
  max-width: 590px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-pill {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  gap: 10px;
  margin: 0 0 28px;
  padding: 0 18px;
  border: 1px solid rgba(31, 111, 191, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--sage-900);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(31, 111, 191, 0.08);
}

.hero-pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(62, 155, 79, 0.14);
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
}

h1,
h2 {
  font-family: var(--serif);
  color: var(--sage-950);
  line-height: 1.02;
}

h1 {
  max-width: 700px;
  margin-bottom: 26px;
  font-size: clamp(2.65rem, 4vw, 4.15rem);
  letter-spacing: 0;
}

.accent-text {
  display: block;
  color: var(--sage-900);
  font-style: italic;
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(2rem, 3vw, 3.7rem);
}

h3 {
  color: var(--sage-950);
  font-size: 1.1rem;
  line-height: 1.25;
}

.hero-lede {
  max-width: 590px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.32vw, 1.24rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 32px;
}

.hero-checks {
  display: grid;
  gap: 14px;
  margin: 34px 0 0;
  padding: 0;
  color: #0b4c89;
  font-weight: 650;
  list-style: none;
}

.hero-checks li {
  position: relative;
  padding-left: 34px;
}

.hero-checks li::before {
  position: absolute;
  left: 0;
  top: 1px;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  content: "✓";
  font-size: 0.78rem;
  font-weight: 900;
}

.hero-outline {
  color: var(--sage-900);
  background: rgba(255, 255, 255, 0.74);
  border-color: rgba(31, 111, 191, 0.26);
  box-shadow: none;
}

.hero-social {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 54px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  padding-left: 8px;
}

.avatar-stack img {
  width: 36px;
  height: 36px;
  margin-left: -8px;
  border: 2px solid #fff;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 8px 16px rgba(31, 111, 191, 0.14);
}

.hero-social strong {
  display: block;
  color: #ffc83d;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.hero-social p {
  margin: 0;
  color: #0b4c89;
  font-size: 0.92rem;
  font-weight: 650;
}

.hero-media {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  border: 0;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 28px 84px rgba(15, 45, 74, 0.15);
}

.hero-media img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  transform: scale(1.03);
}

.hero-product-card {
  position: absolute;
  left: 38px;
  bottom: 34px;
  width: min(250px, calc(100% - 76px));
  padding: 22px 24px;
  border: 1px solid rgba(31, 111, 191, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 42px rgba(15, 45, 74, 0.14);
  backdrop-filter: blur(18px);
}

.hero-product-card span,
.product-card span,
.serum-card span {
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-product-card strong {
  display: block;
  margin: 0 0 4px;
  color: var(--sage-900);
  font-family: var(--serif);
  font-size: 1.75rem;
}

.hero-product-card p {
  margin: 0;
  color: #0b4c89;
  font-size: 0.92rem;
  font-weight: 550;
}

.verified-badge {
  position: absolute;
  top: 28px;
  right: 30px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  box-shadow: 0 14px 32px rgba(62, 155, 79, 0.28);
}

.verified-badge::before {
  margin-right: 9px;
  content: "✓";
  font-weight: 900;
}

.brand-strip {
  overflow: hidden;
  margin: 0;
  border-top: 1px solid rgba(31, 111, 191, 0.16);
  border-bottom: 1px solid rgba(31, 111, 191, 0.28);
  border-right: 0;
  border-left: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(31, 111, 191, 0.05);
}

.brand-strip-inner {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: repeat(5, 1fr);
  min-height: 158px;
  align-items: center;
}

.brand-highlight {
  position: relative;
  display: grid;
  gap: 14px;
  justify-items: center;
  padding: 30px 22px;
  text-align: center;
}

.brand-highlight:not(:last-child)::after {
  position: absolute;
  top: 36px;
  right: 0;
  width: 1px;
  height: 74px;
  background: rgba(31, 111, 191, 0.24);
  content: "";
}

.highlight-icon {
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border-radius: 16px;
  font-size: 1.62rem;
  font-weight: 900;
}

.highlight-icon img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.highlight-icon.blue {
  background: #eaf4fd;
  color: var(--sage-900);
}

.highlight-icon.green {
  background: #dcf2e1;
  color: var(--gold);
}

.brand-highlight strong {
  color: #062c53;
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.25;
  text-transform: uppercase;
}

section {
  margin-bottom: 0;
}

.feature-product {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 4vw, 60px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(120deg, #1f6fbf 0%, #328bc6 52%, #3e9b4f 100%);
  color: #fff;
  box-shadow: none;
}

.feature-grid {
  width: min(var(--container), 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
}

.feature-product .section-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 34px;
  padding: 0 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
}

.feature-product h2 {
  max-width: 620px;
  color: #fff;
  font-size: clamp(2.7rem, 4.2vw, 4.8rem);
  line-height: 1.22;
}

.feature-grid p,
.section-heading>p,
.application-copy p {
  color: var(--muted);
  font-size: 1.02rem;
}

.feature-product .feature-grid p {
  max-width: 820px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.08rem;
}

.check-list {
  display: grid;
  gap: 11px;
  margin: 28px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  font-weight: 650;
}

.feature-product .check-list {
  color: #fff;
}

.check-list li::before {
  position: absolute;
  left: 0;
  color: var(--gold);
  content: "✓";
}

.feature-product .check-list li::before {
  color: #fff;
  content: "•";
}

.feature-product .button.primary {
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.55);
  box-shadow: none;
}

.serum-card {
  min-height: 430px;
  padding: 34px;
  border-radius: var(--radius);
  background: transparent;
  border: 0;
  text-align: center;
}

.bottle-visual {
  display: grid;
  height: 300px;
  place-items: center;
}

.bottle-visual div {
  width: 132px;
  height: 286px;
  border-radius: 28px 28px 10px 10px;
  background:
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent),
    linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0 32%, rgba(255, 255, 255, 0.08) 32% 72%, rgba(255, 255, 255, 0.14) 72%);
  border: 2px solid rgba(255, 255, 255, 0.34);
  box-shadow: none;
}

.serum-card span,
.serum-card p {
  color: rgba(255, 255, 255, 0.78);
}

.section-heading {
  display: flex;
  gap: 30px;
  align-items: end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.section-heading p {
  max-width: 470px;
  margin-left: auto;
  margin-right: auto;
}

.centered {
  display: block;
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.products,
.why {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 4vw, 60px);
  background:
    linear-gradient(180deg, rgba(234, 244, 253, 0.42), rgba(255, 255, 255, 0.96) 22%),
    #ffffff;
}

.products>*,
.why>* {
  width: min(var(--container), 100%);
  margin-right: auto;
  margin-left: auto;
}

.product-group {
  margin-top: 34px;
}

.product-group h3 {
  margin-bottom: 16px;
  font-weight: 600;
}

.product-grid,
.protocol-grid,
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.product-card,
.protocol-card,
.why-grid article {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(31, 111, 191, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(31, 111, 191, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card h4 {
  min-height: 56px;
  margin: 10px 0 12px;
  color: var(--sage-950);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.2;
}

.product-card h3 {
  font-weight: 600;
}

.product-card p,
.protocol-card p,
.why-grid p {
  font-size: 1rem;
  color: var(--muted);
}

.product-card a {
  margin-top: auto;
  color: var(--sage-900);
  font-size: 1rem;
  font-weight: 800;
}

.product-card:hover,
.protocol-card:hover,
.why-grid article:hover {
  border-color: rgba(62, 155, 79, 0.42);
  box-shadow: 0 22px 54px rgba(31, 111, 191, 0.12);
  transform: translateY(-4px);
}

.protocols {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 4vw, 60px);
  border-radius: 0;
  background:
    linear-gradient(120deg, rgba(31, 111, 191, 0.96) 0%, rgba(50, 139, 198, 0.94) 52%, rgba(62, 155, 79, 0.96) 100%),
    #1f6fbf;
  color: #fff;
}

.protocols>* {
  width: min(var(--container), 100%);
  margin-right: auto;
  margin-left: auto;
}

.protocols h2,
.protocols h3 {
  color: #fff;
}

.protocols .section-kicker {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--gold);
  box-shadow: 0 12px 28px rgba(15, 45, 74, 0.12);
}

.protocols .section-heading>p {
  color: rgba(255, 255, 255, 0.78);
}

.protocol-card h3 {
  color: var(--sage-950);
}

.protocol-card p {
  color: var(--muted);
}

.protocol-card {
  background: #ffffff;
  border-color: rgba(31, 111, 191, 0.12);
  box-shadow: 0 18px 45px rgba(31, 111, 191, 0.08);
}

.protocol-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(31, 111, 191, 0.12), rgba(62, 155, 79, 0.16));
  color: var(--sage-900);
}

.protocol-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.protocol-icon svg * {
  stroke: currentColor;
}

.protocol-card:nth-child(2) .protocol-icon {
  color: var(--gold);
  background: linear-gradient(135deg, rgba(62, 155, 79, 0.16), rgba(31, 111, 191, 0.1));
}

.protocol-card:nth-child(3) .protocol-icon {
  color: var(--sage-900);
  background: linear-gradient(135deg, rgba(31, 111, 191, 0.1), rgba(62, 155, 79, 0.18));
}

.protocol-stack {
  color: var(--sage-950) !important;
  font-weight: 800;
}

.why-grid article i {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: var(--sage-100);
  color: var(--sage-900);
  font-size: 1.7rem;
  font-style: normal;
  font-weight: 900;
}

.why-grid article i img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.why-grid article {
  text-align: center;
}

.why .section-heading {
  text-align: center;
}

.why .section-kicker {
  color: var(--gold);
  text-align: center;
}

.why h2 {
  text-align: center;
}

.wholesale {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 4vw, 60px);
  border: 0;
  border-radius: 0;
  background: #ffffff;
}

.wholesale-inner {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: minmax(0, 0.88fr) minmax(420px, 1fr);
  gap: clamp(44px, 7vw, 100px);
  align-items: center;
}

.wholesale-copy {
  max-width: 620px;
}

.wholesale-copy .section-kicker {
  color: var(--sage-900);
}

.wholesale-copy h2 {
  max-width: 560px;
  font-size: clamp(2rem, 2.65vw, 3.15rem);
  line-height: 1.08;
}

.wholesale-copy > p {
  margin-bottom: 30px;
  color: #0b4c89;
  font-size: 1.08rem;
  line-height: 1.55;
}

.benefits {
  display: grid;
  gap: 20px;
}

.benefits div {
  position: relative;
  padding: 0 0 0 58px;
  border-left: 0;
  background: transparent;
  box-shadow: none;
}

.benefits div::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage-900);
  color: #fff;
  content: "✓";
  font-weight: 900;
}

.benefits div:nth-child(2)::before {
  background: var(--gold);
}

.benefits strong,
.benefits span {
  display: block;
}

.benefits strong {
  color: var(--sage-950);
  font-size: 1.08rem;
}

.benefits span {
  margin-top: 4px;
  color: #0b4c89;
  font-size: 1rem;
  line-height: 1.45;
}

.text-link {
  display: inline-flex;
  margin-top: 38px;
  color: var(--sage-900);
  border-bottom: 2px solid var(--sage-900);
  font-size: 0.9rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.wholesale-media {
  position: relative;
  min-height: 640px;
}

.wholesale-media img {
  width: 100%;
  height: 640px;
  border-radius: 24px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 30px 80px rgba(15, 45, 74, 0.14);
}

.wholesale-stat {
  position: absolute;
  left: -38px;
  bottom: -38px;
  width: min(260px, calc(100% - 40px));
  padding: 28px 30px;
  border: 1px solid rgba(31, 111, 191, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 24px 60px rgba(15, 45, 74, 0.16);
}

.wholesale-stat strong {
  display: block;
  color: var(--sage-900);
  font-family: var(--serif);
  font-size: 2.7rem;
  line-height: 1;
}

.wholesale-stat span {
  color: #0b4c89;
  font-size: 0.92rem;
  line-height: 1.45;
}

.application {
  padding: clamp(72px, 8vw, 124px) clamp(20px, 4vw, 60px);
  border-radius: 0;
  background: linear-gradient(120deg, #1f6fbf 0%, #338bc6 58%, #3e9b4f 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.application-inner {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.application-copy {
  max-width: 560px;
}

.partner-form {
  max-width: 720px;
}

.application h2,
.application .section-kicker,
.application-copy p {
  color: #fff;
}

.application-copy {
  position: sticky;
  top: 116px;
}

.privacy-note {
  margin-top: 28px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.92rem;
  font-weight: 700;
}

.partner-form {
  display: block;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: var(--pearl);
  box-shadow: var(--shadow);
}

.partner-form .wpcf7,
.partner-form form {
  margin: 0;
}

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

.partner-form .fg p {
  margin: 0;
}

.partner-form br {
  display: none;
}

label {
  display: grid;
  gap: 8px;
  color: var(--sage-900);
  font-size: 0.82rem;
  font-weight: 800;
}

.partner-form label {
  margin-bottom: 6px;
}

.full {
  grid-column: 1 / -1;
}

.partner-form .fg.full {
  grid-column: 1 / -1;
}

.partner-form .form-grid > .fg:nth-child(n+5) {
  grid-column: 1 / -1;
}

.partner-form .form-note {
  display: block;
  margin: 0;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.5;
  text-align: center;
}

.partner-form .gsk-hp {
  display: none;
}

.partner-form .form-response {
  margin: 0 0 18px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 700;
}

.partner-form .form-response-success {
  background: #e6f6ef;
  color: #1d6b4a;
}

.partner-form .form-response-error {
  background: #fdebec;
  color: #9a1f2c;
}

.partner-form .wpcf7-submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--sage-900);
  color: #fff;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
}

.partner-form .gsk-form-submitting .wpcf7-submit,
.partner-form .gsk-form-submitting button[type="submit"],
.partner-form .gsk-form-submitting input[type="submit"] {
  cursor: wait;
  opacity: .82;
}

.partner-form .gsk-form-submitting button[type="submit"] {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.partner-form .gsk-form-submitting button[type="submit"]::before {
  content: "";
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, .45);
  border-top-color: #fff;
  border-radius: 50%;
  animation: gsk-spin 700ms linear infinite;
}

.partner-form .wpcf7-spinner {
  display: none;
}

.partner-form .gsk-form-submitting .wpcf7-spinner {
  display: block;
  visibility: visible;
  opacity: 1;
  margin: 12px auto 0;
}

@keyframes gsk-spin {
  to {
    transform: rotate(360deg);
  }
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9dced;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: .875rem;
  min-height: 48px;
  padding: 12px 14px;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--sage-700);
  box-shadow: 0 0 0 4px rgba(31, 111, 191, 0.16);
}

.site-footer {
  border-top: 1px solid rgba(31, 111, 191, 0.14);
  color: #fff;
  background: #0f2d4a;
  width: 100%;
  max-width: none;
  padding: clamp(64px, 7vw, 96px) clamp(20px, 4vw, 60px) 36px;
}

.footer-inner {
  display: grid;
  width: min(var(--container), 100%);
  margin: 0 auto;
  grid-template-columns: 1.45fr repeat(3, 0.72fr) 1fr;
  gap: clamp(34px, 5vw, 70px);
  align-items: start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  line-height: 1;
  text-transform: uppercase;
}

.footer-logo svg {
  flex: 0 0 auto;
  filter: drop-shadow(0 8px 18px rgba(234, 244, 253, 0.12));
}

.footer-logo img {
  width: auto;
  max-width: 150px;
  max-height: 42px;
  object-fit: contain;
}

.footer-logo span {
  display: grid;
  gap: 5px;
}

.footer-logo strong {
  display: block;
  color: #fff;
  font-family: var(--logo);
  font-size: 1.34rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.footer-logo small {
  color: #8bd59a;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.footer-brand p {
  max-width: 370px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem;
  line-height: 1.75;
}

.social-links {
  display: flex;
  gap: 14px;
}

.social-links a {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  color: #fff;
  font-weight: 800;
  transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-links img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.social-links a:hover {
  background: var(--sage-900);
  border-color: var(--sage-900);
  transform: translateY(-2px);
}

.footer-column,
.footer-address {
  display: grid;
  gap: 14px;
  font-style: normal;
}

.footer-column h3,
.footer-address h3 {
  margin: 0 0 10px;
  color: #fff;
  font-family: var(--sans);
  font-size: 1.08rem;
  line-height: 1.2;
}

.footer-column a,
.footer-address a,
.footer-address span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.96rem;
}

.footer-column a:hover,
.footer-address a:hover,
.footer-bottom a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  width: min(var(--container), 100%);
  margin: 64px auto 0;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.88rem;
}

.footer-bottom nav {
  display: flex;
  gap: 34px;
}

.site-footer a {
  color: inherit;
}

.section-reveal {
  animation: reveal 700ms ease both;
}

@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {

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

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    order: 3;
    grid-column: 1 / -1;
    justify-content: start;
    overflow-x: auto;
    padding-bottom: 4px;
  }

  .hero-inner,
  .feature-grid,
  .wholesale-inner,
  .application-inner {
    grid-template-columns: 1fr;
  }

  .wholesale-copy {
    max-width: none;
  }

  .wholesale-media {
    min-height: auto;
  }

  .wholesale-media img {
    height: 540px;
  }

  .wholesale-stat {
    left: 24px;
    bottom: -28px;
  }

  .partner-form,
  .application-copy {
    max-width: none;
  }

  .footer-inner {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(247, 251, 255, 0.98) 0 54%, rgba(234, 244, 253, 0.98) 54% 100%);
  }

  .hero::before {
    display: none;
  }

  .hero-media,
  .hero-media img {
    min-height: 440px;
  }

  .brand-strip-inner {
    grid-template-columns: repeat(2, 1fr);
    width: min(100% - 28px, var(--container));
  }

  .brand-strip-inner .brand-highlight:last-child {
    grid-column: 1 / -1;
  }

  .brand-highlight:not(:last-child)::after {
    display: none;
  }

  .product-grid,
  .protocol-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .application-copy {
    position: static;
  }
}

@media (max-width: 680px) {
  main {
    width: 100%;
  }

  .site-header {
    padding: 14px;
  }

  .header-cta {
    min-height: 40px;
    padding: 0 14px;
  }

  h1 {
    font-size: 2.25rem;
  }

  .hero {
    padding: 42px 14px 56px;
  }

  .hero-actions .button,
  .partner-form .button {
    width: 100%;
  }

  .hero-media,
  .hero-media img {
    min-height: 360px;
  }

  .hero-product-card {
    right: 14px;
    bottom: 14px;
    left: 14px;
    width: min(230px, calc(100% - 28px));
    padding: 16px 18px;
  }

  .verified-badge {
    top: 14px;
    right: 14px;
    min-height: 36px;
    padding: 0 14px;
    font-size: 0.78rem;
  }

  .hero-social {
    align-items: flex-start;
    margin-top: 34px;
  }

  .section-heading,
  .brand-strip-inner,
  .product-grid,
  .protocol-grid,
  .why-grid,
  .partner-form .form-grid,
  .partner-form {
    grid-template-columns: 1fr;
  }

  .feature-product,
  .protocols,
  .wholesale,
  .products,
  .why,
  .application {
    padding: 28px 20px;
  }

  .wholesale-media img {
    height: 380px;
    border-radius: 18px;
  }

  .wholesale-stat {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 16px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    display: block;
  }

  .footer-column,
  .footer-address {
    margin-top: 30px;
  }

  .footer-bottom {
    display: block;
    margin-top: 42px;
  }

  .footer-bottom nav {
    margin-top: 18px;
    gap: 18px;
    flex-wrap: wrap;
  }
}
