/* Reset */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

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

*:focus:not(:focus-visible) {
  outline: none;
}

body {
  margin: 0;
}

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

button {
  font-family: inherit;
  font-size: inherit;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: inherit;
}

ul,
ol {
  list-style: none;
  margin: 0;
  padding: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: inherit;
}

/* Settings */
:root {
  --color-black: #282828;
  --color-white: #ffffff;
  --color-brand-light: #00e0a0;
  --color-brand-dark: #00bb84;
  --shadow-brand-on-light: 0 1em 3em 0 rgba(0, 206, 147, 0.7);
  --shadow-brand-on-dark: 0 0.75em 2.5em 0 rgba(86, 226, 178, 0.55);
  --color-dark: #191919;
  --color-gray-25: #f6f6f6;
  --color-gray-50: #e7e7e7;

  --font-heading: "Inter Tight", sans-serif;
  --font-body: "Archivo", sans-serif;

  --container-offset: 3.62em;

  --header-height: 4.38em;

  --radius-hero: 1.67em;
  --radius-card: 1.5em;
  --radius-brand-card: 1.38em;
  --radius-pill: 3.3em;

  --desktop-font-size-min: 8.5;
  --desktop-font-size-max: 16;
  --bp-desktop-min: 744;
  --bp-desktop-max: 1440;
}

html {
  font-size: calc(var(--desktop-font-size-min) * 1px);
  scroll-padding-top: calc(var(--header-height) + 2em);
}

@media screen and (min-width: 744px) {
  html {
    font-size: calc(
      var(--desktop-font-size-min) * 1px +
        (var(--desktop-font-size-max) - var(--desktop-font-size-min)) *
        (
          (100vw - var(--bp-desktop-min) * 1px) /
            (var(--bp-desktop-max) - var(--bp-desktop-min))
        )
    );
  }
}

@media screen and (min-width: 1440px) {
  html {
    font-size: calc(var(--desktop-font-size-max) * 1px);
  }
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--color-black);
  background-color: var(--color-gray-25);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

section[id] {
  scroll-margin-top: calc(var(--header-height) + 2em);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Main styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  align-items: center;
  padding: 0 var(--container-offset);
  background-color: var(--color-white);
}

.header__logo {
  display: block;
  width: 6.7em;
  height: 2.2em;
  flex-shrink: 0;
}

.header__logo img {
  display: block;
  width: 100%;
  height: 100%;
}

.nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 4em;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.88em;
  font-weight: 500;
  line-height: 1.4285;
  color: var(--color-black);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.5s ease;
}

.nav-link:hover {
  color: var(--color-brand-dark);
  transition: color 0s ease;
}

.cta-button {
  --cta-bg: var(--color-brand-dark);
  --cta-shadow-hover: var(--shadow-brand-on-dark);
  --cta-shadow-empty: rgba(86, 226, 178, 0);

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  height: 3.5em;
  min-width: 11.1em;
  width: fit-content;
  padding: 0 1.25em;
  background-color: var(--cta-bg);
  color: var(--color-black);
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  border-radius: var(--radius-pill);
  text-decoration: none;
  box-shadow: 0 0 0 0 var(--cta-shadow-empty);
  transition: box-shadow 0.5s ease;
}

.cta-button:hover {
  box-shadow: var(--cta-shadow-hover);
  transition: box-shadow 0s ease;
}

.cta-button--light {
  --cta-bg: var(--color-brand-light);
  --cta-shadow-hover: var(--shadow-brand-on-light);
  --cta-shadow-empty: rgba(0, 206, 147, 0);
}

.cta-button.nav-button {
  --cta-bg: var(--color-brand-light);
  --cta-shadow-hover: 0 0.7em 2em 0 rgba(0, 206, 147, 0.7);
  --cta-shadow-empty: rgba(0, 206, 147, 0);

  margin-left: auto;
  gap: 0;
  height: 2.5em;
  width: auto;
  min-width: 0;
  padding: 0 1.25em;
  font-size: 0.88em;
  line-height: 1;
  text-transform: none;
}

.heading {
  font-family: var(--font-heading);
  font-size: 3em;
  font-weight: 600;
  line-height: 1.083;
  text-transform: uppercase;
  color: var(--color-black);
}

.heading-white {
  color: var(--color-white);
}

@media (max-width: 744px) {
  :root {
    --header-height: 70px;
    --container-offset: 20px;
  }

  .header__logo {
    width: 110px;
    height: 35px;
  }

  .header .nav {
    display: none;
  }

  .cta-button {
    height: 3.5em;
    width: 11.12em;
    min-width: 0;
    padding: 0 1.25em;
    font-size: 1em;
    line-height: 1.5;
  }

  .cta-button.nav-button {
    height: 40px;
    padding: 0 20px;
    font-size: 14px;
    --cta-shadow-hover: 0 11px 32px 0 rgba(0, 206, 147, 0.7);
  }
}

@media (max-width: 480px) {
  :root {
    --header-height: 60px;
    --container-offset: 16px;
  }

  .header__logo {
    width: 80px;
    height: 25px;
  }

  .cta-button {
    height: 3.43em;
    width: 10.5em;
    padding: 0 1.14em;
    font-size: 1.31em;
    line-height: 1.428;
  }

  .cta-button--light {
    height: 3.5em;
    padding: 0 1.5em;
  }

  .cta-button.nav-button {
    height: 32px;
    padding: 0 16px;
    font-size: 12px;
  }

  .heading {
    font-size: 2.25em;
    line-height: 1.333;
  }
}

.hero {
  padding: 0 1em;
}

.hero__card {
  position: relative;
  height: 45.3em;
  margin-top: var(--header-height);
  background-color: var(--color-dark);
  border-radius: var(--radius-hero);
  overflow: hidden;
}

.hero__heading {
  position: absolute;
  top: 2em;
  left: 2.5em;
  width: 95.88%;
  height: auto;
}

.hero__photo {
  position: absolute;
  top: 0;
  left: 13%;
  width: 77.13%;
  max-width: 80em;
  height: 100%;
  overflow: hidden;
  user-select: none;
}

.hero__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  -webkit-user-drag: none;
}

.hero__content {
  position: absolute;
  bottom: 4.6em;
  left: 1.88em;
  width: 20.8em;
  display: flex;
  flex-direction: column;
  gap: 2.38em;
}

.hero__tagline {
  font-family: var(--font-heading);
  font-size: 2.25em;
  font-weight: 600;
  line-height: 1.222;
  color: var(--color-white);
  text-transform: uppercase;
}

.hero__stats {
  position: absolute;
  right: 8.8em;
  top: 21.3em;
  display: flex;
  flex-direction: column;
  gap: 2.2em;
}

.hero__stat {
  display: flex;
  flex-direction: column;
}

.hero__stat-row {
  display: grid;
  grid-template-columns: 6em auto;
  align-items: flex-start;
  gap: 1em;
}

.hero__stat-label {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.8;
}

.hero__stat-icon {
  display: block;
  width: 2em;
  height: 2em;
  flex-shrink: 0;

  justify-self: start;
}

.hero__stat-value--brands {
  font-family: var(--font-body);
  font-size: 2.63em;
  font-weight: 500;
  line-height: 1.143;
  color: var(--color-white);
  margin-top: 0.15em;
}

.hero__stat-divider {
  margin-top: 1.5em;
  width: 7.7em;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.2);
}

.hero__stat-bottom {
  display: flex;
  align-items: baseline;
  gap: 0.25em;
  margin-top: -0.1em;
}

.hero__stat-value--number {
  font-family: var(--font-heading);
  font-size: 6em;
  font-weight: 500;
  color: var(--color-white);
  text-transform: uppercase;
}

.hero__stat-caption {
  font-family: var(--font-body);
  font-size: 1em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-white);
  opacity: 0.8;
}

.hero__heading--mobile {
  display: none;
}

@media (max-width: 744px) {
  .hero {
    padding: 0 0.75em;
  }

  .hero__card {
    font-size: calc(
      10.67 * 1px + (16 - 10.67) * ((100vw - 360 * 1px) / (744 - 360))
    );
    height: 53.5em;
    border-radius: 1.67em;
  }

  .hero__heading--desktop {
    display: none;
  }

  .hero__heading--mobile {
    display: block;
    position: absolute;
    top: 27em;
    left: 0.5em;
    width: 50em;
    height: auto;
  }

  .hero__photo {
    top: 20em;
    left: -2.38em;
    width: 50.31em;
    height: 33.5em;
    overflow: hidden;
  }

  .hero__content {
    top: 2.06em;
    left: 2.5em;
    bottom: auto;
    width: auto;
    gap: 2.06em;
  }

  .hero__tagline {
    font-size: 2.25em;
    line-height: 1.222;
    width: 8.06em;
  }

  .hero__stats {
    top: 2.06em;
    right: 5.44em;
    left: auto;
    gap: 2.88em;
  }

  .hero__stat-row {
    grid-template-columns: 5.75em auto;
    gap: 1em;
  }

  .hero__stat-label {
    font-size: 1em;
    line-height: 1.5;
  }

  .hero__stat-icon {
    width: 2em;
    height: 2em;
  }

  .hero__stat-value--brands {
    font-size: 2.62em;
    line-height: 1.143;
    margin-top: 0.1em;
  }

  .hero__stat-divider {
    margin-top: 1.5em;
    width: 7.69em;
  }

  .hero__stat-bottom {
    margin-top: 0;
    gap: 0.25em;
  }

  .hero__stat-value--number {
    font-size: 6em;
    line-height: 1.333;
  }

  .hero__stat-caption {
    font-size: 1em;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .hero__card {
    height: 48.74em;
    border-radius: 1.5em;
  }

  .hero__heading--mobile {
    top: 17em;
    left: 0.3em;
    width: 50em;
  }

  .hero__photo {
    top: 16.6em;
    left: -5em;
    width: 48em;
    height: 32em;
  }

  .hero__content {
    top: 1.88em;
    left: 1.88em;
    gap: 2.25em;
  }

  .hero__tagline {
    font-size: 2.25em;
    line-height: 1.333;
    width: 12.08em;
  }

  .hero__stats {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    padding: 3em 1.69em 2.53em;
  }

  .hero__stats > .hero__stat:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    padding-right: 1.78em;
  }

  .hero__stats > .hero__stat:last-child {
    padding-left: 1.78em;
  }

  .hero__stat-divider {
    display: none;
  }

  .hero__stat-row {
    grid-template-columns: 1fr auto;
    gap: 0.75em;
    align-items: center;
  }

  .hero__stat-label {
    font-size: 1.3em;
    line-height: 1.428;
  }

  .hero__stat-icon {
    width: 2.25em;
    height: 2.25em;
  }

  .hero__stat-value--brands {
    font-size: 2.25em;
    line-height: 1.333;
  }

  .hero__stat-bottom {
    margin-top: 0;
    align-items: baseline;
  }

  .hero__stat-value--number {
    font-size: 6.75em;
    line-height: 1.111;
  }

  .hero__stat-caption {
    font-size: 1.31em;
    line-height: 1.428;
    margin-top: -0.75em;
  }
}

@media (max-width: 360px) {
  .hero__card {
    font-size: 10.67px;
  }
  .hero__photo {
    left: -8em;
  }
}

.about {
  margin-top: 10em;
  padding: 0 2.69em 0 3.6em;
}

.about__inner {
  display: grid;
  grid-template-columns: 39.7em 40em;
  grid-template-areas:
    "title body"
    "map body";
  align-items: flex-start;
  column-gap: 4.1em;
  row-gap: 2.43em;
  justify-content: space-between;
  width: 100%;
}

.about__map {
  grid-area: map;
  width: 40em;
}

.about__body {
  grid-area: body;
  width: 100%;
  padding-top: 0.63em;
}

.about__map svg {
  width: 100%;
  height: auto;
  display: block;
}

.map__country {
  fill: var(--color-gray-50);
  transition: fill 0.2s ease;
}

.map__country--active {
  fill: var(--color-brand-light);
}

.about .heading {
  grid-area: title;
}

@media (min-width: 1600px) {
  .about__map svg {
    transform: translateX(14em);
  }
}

.about__desc {
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.333;
  color: var(--color-black);
  margin-top: 0;
}

.about__regions {
  margin-top: 3em;
}

.about__regions-label {
  font-family: var(--font-body);
  font-size: 2.25em;
  font-weight: 400;
  line-height: 1.222;
  color: var(--color-black);
}

.about__countries {
  font-family: var(--font-body);
  font-size: 3em;
  font-weight: 400;
  line-height: 1.125;
  color: var(--color-black);
  margin-top: 0.6em;
}

.about__country {
  position: relative;
  display: inline;
  cursor: default;
}

.about__country--active {
  background-color: var(--color-brand-light);
  box-shadow:
    -0.08em 0 0 var(--color-brand-light),
    0.08em 0 0 var(--color-brand-light);
}

@media (max-width: 744px) {
  .about {
    margin-top: 7.5em;
    padding: 0 20px;
    font-size: calc(
      10.67 * 1px + (16 - 10.67) * ((100vw - 360 * 1px) / (744 - 360))
    );
  }

  .about__inner {
    display: flex;
    flex-direction: column;
    grid-template-columns: none;
    grid-template-areas: none;
    gap: 2.5em;
    column-gap: 0;
  }

  .about__map {
    order: 2;
    display: block;
    width: 100%;
  }

  .about .heading {
    order: 0;
    width: auto;
  }

  .about__body {
    order: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5em;
    padding-top: 0;
    width: 100%;
  }

  .about__desc {
    font-size: 1.5em;
    line-height: 1.333;
    max-width: 37.38em;
  }

  .about__regions {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    margin-top: 0;
  }

  .about__regions-label {
    font-size: 2.25em;
    line-height: 1.222;
  }

  .about__countries {
    font-size: 3em;
    line-height: 1.125;
    margin-top: 0;
    max-width: 37em;
  }

  .about__map svg {
    order: 2;
    width: 35em;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .about {
    padding: 0 16px;
  }

  .about__inner {
    gap: 1.5em;
  }

  .about__body {
    gap: 1.5em;
  }

  .about__desc {
    font-size: 1.31em;
    line-height: 1.428;
    max-width: 28.3em;
  }

  .about__regions {
    gap: 1em;
  }

  .about__regions-label {
    font-size: 1.69em;
    line-height: 1.555;
  }

  .about__countries {
    font-size: 2.25em;
    line-height: 1.333;
    max-width: 28.59em;
  }

  .about__map svg {
    width: 30em;
  }
}

@media (max-width: 360px) {
  .about {
    font-size: 10.67px;
  }
  .about__map svg {
    width: 20em;
  }
}

.trust {
  margin-top: 10em;
  padding-left: var(--container-offset);
}

.trust .heading {
  margin-bottom: 0.73em;
}

.trust__marquee {
  overflow: hidden;
  width: calc(100% + var(--container-offset));
  margin-left: calc(var(--container-offset) * -1);
}

.trust__track {
  display: flex;
  width: max-content;
  animation: trust-scroll 45s linear infinite;
}

.trust__card {
  flex-shrink: 0;
  width: 20em;
  height: 8.4em;
  background-color: var(--color-white);
  border-radius: var(--radius-brand-card);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-right: 1.25em;
}

.trust__logo {
  display: block;
}

.trust__logo--thorne {
  width: 12.1em;
  height: 1.83em;
}

.trust__logo--sr {
  width: 12.5em;
  height: 3.3em;
}

.trust__logo--bh {
  width: 12.7em;
  height: 2.56em;
}

.trust__logo--na {
  width: 8.1em;
  height: 5.8em;
}

.trust__logo--bubs {
  width: 7em;
  height: 5em;
}

.trust__logo--dfh {
  width: 8em;
  height: 6em;
}

.trust__logo--ss {
  width: 11.4em;
  height: 4.5em;
}

.trust__logo--momentous {
  width: 10em;
  height: 5em;
}

@keyframes trust-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 744px) {
  .trust {
    margin-top: 7.5em;
    font-size: calc(
      10.67 * 1px + (16 - 10.67) * ((100vw - 360 * 1px) / (744 - 360))
    );
  }

  .trust__card {
    margin-right: 0.75em;
  }
}

@media (max-width: 480px) {
  .trust {
    font-size: calc(11.5px + (12.5 - 11.5) * ((100vw - 360px) / (480 - 360)));
  }

  .trust .heading {
    margin-bottom: 1em;
  }

  .trust__card {
    margin-right: 0.5em;
  }
}

@media (max-width: 360px) {
  .trust {
    font-size: 11.5px;
  }
}

.solutions {
  margin-top: 7em;
  background-color: var(--color-dark);
  padding: 6em 0;
}

.solutions__intro {
  text-align: center;
  margin-bottom: 2.5em;
  padding: 0 var(--container-offset);
}

.solutions__desc {
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.333;
  color: var(--color-white);
  opacity: 0.8;
  max-width: 24.9em;
  margin: 1.33em auto 0;
}

.solutions__slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 25.3em;
}

.solutions__track {
  display: flex;
  align-items: center;
  gap: 12em;
  width: max-content;
  height: 100%;
  transition: transform 0.8s ease;
}

.sol-card {
  position: relative;
  flex-shrink: 0;
  width: 21.6em;
  height: 25.3em;
  background-color: var(--color-white);
  border-radius: 1.23em;
  overflow: hidden;
  box-sizing: border-box;
}

.sol-card__inner {
  position: relative;
  width: 100%;
  height: 100%;
}

.sol-card--green {
  background-color: var(--color-brand-dark);
}

.sol-card__title {
  position: absolute;
  top: 1.63em;
  left: 1.63em;
  right: 1.63em;
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 600;
  line-height: 1.333;
  text-align: center;
  color: var(--color-black);
  margin: 0;
}

.sol-card__title--white {
  color: var(--color-white);
  opacity: 1;
}

.sol-card__visual {
  position: absolute;
  left: 0;
  right: 0;
  top: 5.5em;
  height: 13em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-card__visual--certificate img {
  width: 10em;
  height: auto;
}

.sol-card__visual--person img {
  width: 15em;
  height: 19.2em;
  object-fit: cover;
  object-position: center top;
  position: absolute;
  top: 0.8em;
  left: 50%;
  transform: translateX(-50%);
}

.sol-card__visual--bottle {
  top: 7.5em;
}

.sol-card__visual--bottle .sol-card__bottle {
  width: 16em;
  height: 16em;

  transform: translateY(1.25em);
}

.sol-card__visual--channels img {
  width: 18em;
  aspect-ratio: 288 / 189;
  height: auto;
}

.sol-card__visual--world {
  height: 13em;
}

.sol-card__visual--world img {
  width: auto;
  height: 100%;

  position: absolute;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.sol-card__visual--bottles-trio {
  position: absolute;
  inset: auto 0 5.8em 0;
  height: 13.9em;
}

.sol-card__visual--bottles-trio .sol-card__bottle {
  position: absolute;
  width: 10em;
  height: 10em;

  top: 58%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.sol-card__visual--bottles-trio .sol-card__bottle--center {
  width: 13.7em;
  height: 13.7em;
  top: 55%;
  z-index: 3;
}

.sol-card__visual--bottles-trio .sol-card__bottle--left {
  transform: translate(calc(-50% - 4.8em), -50%);
}

.sol-card__visual--bottles-trio .sol-card__bottle--right {
  transform: translate(calc(-50% + 4.8em), -50%);
}

.sol-card__icon-chip {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-white);
  border-radius: 0.94em;
}

.sol-card__icon-chip--lg {
  width: 4.3em;
  height: 4.3em;
}

.sol-card__icon-chip--lg img {
  width: 2.75em;
  height: 2.75em;
}

.sol-card__icon-chip--sm {
  width: 3.6em;
  height: 3.6em;
}

.sol-card__icon-chip--sm img {
  width: 2em;
  height: 2em;
}

.sol-card__icon-chip--tr {
  top: -0.37em;
  right: 1.5em;
}

.sol-card__icon-chip--bl {
  left: 1.5em;
  bottom: 3em;
}

.sol-card__icon-chip--tr2 {
  top: 0.5em;
  right: 1.5em;
  z-index: 3;
}

.sol-card__icon-chip--bl2 {
  left: 1.5em;
  bottom: 0.6em;
  z-index: 3;
}

.sol-card__float {
  position: absolute;
  z-index: 3;
}

.sol-card__float--pill {
  width: 3.9em;
  height: 3.9em;
  left: 1.5em;
  top: 1.5em;
}

.sol-card__float--leaf {
  width: 5.3em;
  height: 5.3em;
  right: 1em;
  top: 0;
}

.sol-card__float--dna {
  width: 3.2em;
  height: 3.2em;
  right: 1.69em;
  bottom: 0;
}

.sol-card__visual--trust {
  position: absolute;
  inset: 0 0 7.6em 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sol-card__trust-bg {
  position: absolute;
  width: 23em;
  height: auto;
  left: -0.79em;
  top: 6em;
}

.sol-card__trust-circles {
  position: absolute;
  width: 16.3em;
  aspect-ratio: 260 / 216;
  height: auto;
  left: 50%;
  top: 4.6em;
  transform: translateX(-50%);
}

.sol-card__caption {
  position: absolute;
  left: 1.63em;
  right: 1.63em;
  bottom: 1.63em;
  background-color: #f2f2f2;
  border-radius: 0.61em;
  padding: 0.8em;
  font-family: var(--font-body);
  font-size: 0.88em;
  font-weight: 400;
  line-height: 1.4286;
  text-align: center;
  color: var(--color-black);
  min-height: 4.8em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.solutions__nav {
  display: flex;
  gap: 0.75em;
  margin-top: 2.5em;
  justify-content: center;
}

.solutions__btn {
  width: 4em;
  height: 4em;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: opacity 0.15s ease;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.solutions__btn img {
  width: 1.5em;
  height: 1.5em;
}

.solutions__btn--prev img {
  transform: rotate(180deg);
}

.solutions__btn:disabled {
  opacity: 0.5;
  cursor: default;
}

@media (max-width: 744px) {
  .solutions {
    font-size: calc(
      12.5 * 1px + (16 - 12.5) * ((100vw - 360 * 1px) / (744 - 360))
    );
  }
}

@media (max-width: 480px) {
  .solutions__btn {
    width: 3.2em;
    height: 3.2em;
  }

  .solutions__btn img {
    width: 1.28em;
    height: 1.28em;
  }
}

@media (max-width: 360px) {
  .solutions {
    font-size: 12.5px;
  }
}

.proof {
  margin-top: 10em;
  padding: 0 var(--container-offset);
  font-size: clamp(8.5px, calc(1.078vw + 0.48px), 16px);
}

.proof__inner {
  display: grid;
  grid-template-columns: 21.5em 54.8em;
  align-items: flex-start;
  justify-content: space-between;
}

.proof .heading {
  padding-top: 0.4em;
}

.proof__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1em;
  width: 54.8em;
}

@media (min-width: 1441px) {
  .proof__inner {
    grid-template-columns: 33em 54.8em;
  }

  .proof .heading {
    white-space: nowrap;
  }
}

.proof-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  padding: 2em;
  overflow: hidden;
}

.proof-card--small {
  height: 16em;
  display: flex;
  flex-direction: column;
  gap: 0.75em;
}

.proof-card--wide {
  grid-column: 1 / -1;
  height: 19.5em;
}

.proof-card__icon {
  position: absolute;
  top: 2em;
  right: 2em;
  width: 4em;
  height: 4em;
  background-color: var(--color-gray-25);
  border-radius: 0.75em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.proof-card__icon img {
  width: 2em;
  height: 2em;
  display: block;
}

.proof-card__value {
  font-family: var(--font-heading);
  font-size: 6em;
  font-weight: 600;
  line-height: 1.333;
  color: var(--color-black);
  text-transform: uppercase;
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
  transition-delay: var(--proof-value-delay, 0.15s);
  margin: 0;
}

.proof-card__value.is-sleeping {
  opacity: 0;
  transform: translateY(0.25em);
}

.proof-card__label {
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.333;
  color: var(--color-black);
  opacity: 0.8;
  margin: 0;
}

.proof-card--small:nth-child(2) .proof-card__label {
  max-width: 12.8em;
}

.proof-card--wide .proof-card__label {
  max-width: 17.9em;
}

.proof-card__label--bottom {
  position: absolute;
  bottom: 2em;
  max-width: 27.8em;
}

.proof-card__map {
  position: absolute;
  top: -1.75em;
  right: -0.75em;
  width: 28.5em;
  height: 16.9em;
}

.proof-card__map img {
  width: 100%;
  height: 100%;
  display: block;
}

.proof-card__flags {
  position: absolute;
  bottom: 2em;
  right: 2em;
  display: flex;
  align-items: center;
}

.proof-card__flags li {
  width: 4.9em;
  height: 4.9em;
  margin-right: -2.44em;
  flex-shrink: 0;
}

.proof-card__flags li:last-child {
  margin-right: 0;
}

.proof-card__flags img {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 744px) {
  .proof {
    margin-top: 7.5em;
  }

  .proof__inner {
    grid-template-columns: 1fr;
    gap: 2.5em;
  }

  .proof .heading {
    padding-top: 0;
  }

  .proof__cards {
    width: 100%;
  }

  .proof-card--small {
    height: 13em;
  }

  .proof-card--wide {
    height: 16em;
  }

  .proof-card__value {
    font-size: 4.5em;
    line-height: 1.166;
  }

  .proof-card__label {
    font-size: 1.12em;
    line-height: 1.555;
  }

  .proof-card--wide .proof-card__label {
    max-width: 21em;
  }

  .proof-card__map {
    width: 29.25em;
    height: 17.38em;
    top: -8.25em;
    right: auto;
    left: 16.62em;
  }

  .proof-card__flags li {
    width: 4.88em;
    height: 4.88em;
    margin-right: -2.44em;
  }
}

@media (max-width: 480px) {
  .proof {
    padding: 0 16px;
    font-size: calc(10.67px + (12.5 - 10.67) * ((100vw - 360px) / (480 - 360)));
  }

  .proof__inner {
    gap: 1.5em;
  }

  .proof__cards {
    grid-template-columns: 1fr;
    gap: 1.12em;
  }

  .proof-card {
    padding: 1.88em;
  }

  .proof-card--small {
    height: auto;
  }

  .proof-card--small .proof-card__label {
    max-width: 17.06em;
  }

  .proof-card--wide {
    grid-column: auto;
    height: 16.12em;
  }

  .proof-card__icon {
    width: 3.75em;
    height: 3.75em;
    top: 1.88em;
    right: 1.88em;
    border-radius: 0.75em;
  }

  .proof-card__icon img {
    width: 1.88em;
    height: 1.88em;
  }

  .proof-card__value {
    font-size: 4.5em;
    line-height: 1.083;
  }

  .proof-card__label {
    font-size: 1.5em;
    line-height: 1.5;
  }

  .proof-card--wide .proof-card__label {
    max-width: 26.7em;
  }

  .proof-card__label--bottom {
    bottom: 1.25em;
  }

  .proof-card__map {
    width: 22.25em;
    height: 13.21em;
    top: -5em;
    left: 12.18em;
    right: auto;
  }

  .proof-card__flags {
    bottom: auto;
    top: 1.31em;
    right: 1.37em;
  }

  .proof-card__flags li {
    width: 4.31em;
    height: 4.31em;
    margin-right: -2.16em;
  }
}

@media (max-width: 360px) {
  .proof-card__label {
    font-size: 1.3em;
  }
}

.why {
  margin-top: 10em;
  padding: 0 var(--container-offset);
}

.why .heading {
  text-align: center;
  margin-bottom: 1em;
}

.why__row {
  display: flex;
  gap: 1em;
  margin-top: 1em;
}

.why-card {
  position: relative;
  background-color: var(--color-white);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.why-card__head {
  text-align: center;
  color: var(--color-black);
}

.why-card__head--white {
  color: var(--color-white);
}

.why-card__heading {
  font-family: var(--font-body);
  font-size: 2.25em;
  font-weight: 600;
  line-height: 1.222;
  margin: 0;
}

.why-card__sub {
  font-family: var(--font-body);
  font-size: 1.13em;
  font-weight: 500;
  line-height: 1.5556;
  margin-top: 0.44em;
}

.why-card__sub--white {
  color: var(--color-white);
}

.why-card--expertise {
  height: 32.3em;
  padding-top: 4em;
  text-align: center;
}

.why-card__map {
  position: absolute;
  top: -3em;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  min-width: 82.8em;
  aspect-ratio: 2000 / 857;
}

.why-card__map img {
  width: 100%;
  height: 100%;

  display: block;
}

.why-card--expertise .why-card__head {
  position: relative;
  z-index: 1;
}

.why-card__bottles {
  position: absolute;
  left: 50%;
  bottom: -7em;
  transform: translateX(-50%);
  width: 64em;
}

.why-card__bottles-img {
  width: 100%;
  height: auto;
  display: block;
}

.why-card--brands {
  flex: 0 0 48.9em;
  height: 27.3em;
  background-color: var(--color-brand-light);
  padding-top: 4em;
  display: flex;
  flex-direction: column;
  gap: 3.6em;
}

.why-card--brands .why-card__head {
  padding: 0 1em;
}

.why-card__lines {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  width: 100%;
  overflow: hidden;
}

.why-card__line {
  overflow: hidden;
  width: 100%;
}

.why-card__line-track {
  display: flex;
  gap: 0.5em;
  width: max-content;
}

.why-card__line-track--ltr {
  animation: why-line-ltr 40s linear infinite;
}

.why-card__line-track--rtl {
  animation: why-line-rtl 40s linear infinite;
}

@keyframes why-line-ltr {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc((-13.7em - 0.5em) * 4));
  }
}

@keyframes why-line-rtl {
  from {
    transform: translateX(calc((-13.7em - 0.5em) * 4));
  }
  to {
    transform: translateX(0);
  }
}

.why-card__brand {
  flex-shrink: 0;
  width: 13.7em;
  height: 5.8em;
  background-color: var(--color-white);
  border-radius: 0.94em;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.why-card__logo {
  display: block;
}

.why-card__logo--thorne {
  width: 9.4em;
  height: 1.41em;
}
.why-card__logo--sr {
  width: 10em;
  height: 2.57em;
}
.why-card__logo--bh {
  width: 10.1em;
  height: 2em;
}
.why-card__logo--na {
  width: 6em;
  height: 4.3em;
}
.why-card__logo--bubs {
  width: 5.2em;
  height: 3.7em;
}
.why-card__logo--dfh {
  width: 4.1em;
  height: 4em;
}
.why-card__logo--ss {
  width: 7.2em;
  height: 2.8em;
}
.why-card__logo--momentous {
  width: 9em;
  height: 4em;
}

.why-card--collab {
  flex: 1 1 31.4em;
  height: 27.3em;
  position: relative;
  padding-top: 4em;
}

.why-card__photo--collab {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.why-card__photo--collab img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 37%;
  display: block;
}

.why-card__head--narrow {
  position: relative;
  z-index: 1;
  padding: 0 2em;
}

.why-card--results {
  margin-top: 1em;
  height: 31.9em;
  background-color: var(--color-dark);
  position: relative;
  overflow: hidden;
}

.why-card__bg-text {
  position: absolute;
  left: -0.94em;
  top: -0.67em;
  width: 51.9em;
  height: auto;

  opacity: 1;
}

.why-card__bg-text img {
  width: 100%;
  height: auto;
  display: block;
}

.why-card__photo--results {
  position: absolute;
  left: 14em;
  top: 0;
  width: 52.1em;
  height: 34.7em;
  overflow: hidden;
  z-index: 3;
}

.why-card__photo--results img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.why-card__results-content {
  position: absolute;
  top: 10em;
  left: 4em;
  width: 15.6em;
  display: flex;
  flex-direction: column;
  gap: 3.5em;
  z-index: 2;
}

.why-card__heading--lg {
  font-size: 2.25em;
  color: var(--color-white);
  font-weight: 600;
  line-height: 1.222;
}

.why-card__orbit {
  position: absolute;
  right: 4em;
  top: 2.31em;
  width: 27.5em;
  height: 27.5em;
  z-index: 2;
}

.why-card__orbit-glow {
  position: absolute;
  width: 60em;
  height: 60em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(
    circle,
    rgba(0, 175, 120, 1) 0%,
    rgba(0, 150, 105, 0.85) 18%,
    rgba(0, 120, 85, 0.55) 32%,
    rgba(0, 90, 65, 0.25) 50%,
    rgba(0, 60, 45, 0) 75%
  );
  filter: blur(14px);
}

.why-card__orbit-ring {
  position: absolute;
  display: block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 26.7em;
  height: 26.7em;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-sizing: border-box;
  z-index: 1;
}

.why-card__orbit-disc {
  position: absolute;
  width: 12.6em;
  height: 12.6em;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.08);
  z-index: 1;
}

.why-card__orbit-bottle {
  position: absolute;
  width: 14em;
  height: auto;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: block;
  z-index: 2;
}

.why-card__orbit-chip {
  position: absolute;
  width: 9.5em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  z-index: 3;
}

.why-card__orbit-chip-mark {
  position: relative;
  width: 2.86em;
  height: 2.86em;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-sizing: border-box;
  flex-shrink: 0;
}

.why-card__orbit-chip-icon {
  width: 100%;
  height: 100%;
  display: block;
}

.why-card__orbit-chip-label {
  font-family: var(--font-body);
  font-size: 0.88em;
  font-weight: 400;
  line-height: 1.4286;
  color: var(--color-white);
  opacity: 0.8;
  white-space: nowrap;
  text-align: center;
}

.why-card__orbit-chip--vegan {
  left: 50%;
  top: 14.32%;
  transform: translate(-50%, -50%);
}

.why-card__orbit-chip--nongmo {
  left: 19.09%;
  top: 32.16%;
  transform: translate(-50%, -50%);
}

.why-card__orbit-chip--glutenfree {
  left: 80.91%;
  top: 32.16%;
  transform: translate(-50%, -50%);
}

.why-card__orbit-chip--plantbased {
  left: 19.09%;
  top: 67.84%;
  transform: translate(-50%, -50%);
}

.why-card__orbit-chip--antioxidants {
  left: 80.91%;
  top: 67.84%;
  transform: translate(-50%, -50%);
}

.why-card__orbit-chip--probiotics {
  left: 50%;
  top: 85.68%;
  transform: translate(-50%, -50%);
}

@media (max-width: 744px) {
  .why {
    margin-top: 7.5em;
    font-size: calc(
      10.67 * 1px + (16 - 10.67) * ((100vw - 360 * 1px) / (744 - 360))
    );
  }

  .why .heading {
    margin-bottom: 1em;
  }

  .why__row {
    flex-direction: column;
    gap: 1.25em;
    margin-top: 1.25em;
  }

  .why-card {
    height: 27.25em;
    width: 100%;
    flex: 0 0 auto;
  }

  /* Card 1: Expertise */
  .why-card--expertise {
    height: 27.25em;
    padding-top: 4em;
  }

  .why-card__map {
    width: 81.88em;
    top: -4.3em;
  }

  .why-card__bottles {
    width: 48em;
    height: 18em;
    bottom: 0.5em;
  }

  .why-card__heading {
    font-size: 2.25em;
    line-height: 1.222;
  }

  .why-card__sub {
    font-size: 1.12em;
    line-height: 1.555;
  }

  /* Card 2: Brands */
  .why-card--brands {
    height: 27.25em;
    padding-top: 4em;
    gap: 1.5em;
  }

  /* Card 3: Collab */
  .why-card--collab {
    height: 27.25em;
    padding-top: 4em;
  }

  .why-card__photo--collab img {
    object-position: center 30%;
  }

  /* Card 4: Results */
  .why-card--results {
    margin-top: 1.25em;
    height: 27.25em;
  }

  .why-card__orbit {
    display: none;
  }

  .why-card__photo--results {
    left: 9em;
    top: 0;
    width: 40.9em;
    height: 27.25em;
  }

  .why-card__results-content {
    top: 8.2em;
    left: 2em;
    width: 15.6em;
    gap: 2.5em;
  }

  .why-card__bg-text {
    width: 52.9em;
    top: -0.5em;
    left: -0.55em;
  }
}

@media (max-width: 480px) {
  .why {
    padding: 0 16px;
  }

  .why .heading {
    margin-bottom: 1em;
  }

  .why__row {
    gap: 1.12em;
    margin-top: 1.12em;
  }

  .why-card {
    width: 100%;
  }

  /* Card 1: Expertise */
  .why-card--expertise {
    height: 20.34em;
    padding-top: 1.88em;
  }

  .why-card__heading {
    font-size: 1.69em;
    line-height: 1.555;
  }

  .why-card__sub {
    font-size: 1.31em;
    line-height: 1.428;
  }

  .why-card__map {
    width: 72em;
    top: -2.16em;
  }

  .why-card__bottles {
    width: 34.2em;
    height: 19em;
    bottom: -6em;
  }

  /* Card 2: Brands */
  .why-card--brands {
    height: 25.3em;
    padding-top: 1.88em;
    gap: 2.62em;
  }

  .why-card__lines {
    gap: 1.12em;
  }

  /* Card 3: Collab */
  .why-card--collab {
    height: 21.74em;
    padding-top: 1.88em;
  }

  /* Card 4: Results */
  .why-card--results {
    height: 40.86em;
    margin-top: 1.12em;
  }

  .why-card__photo--results {
    left: -3.28em;
    top: 16.02em;
    width: 37.4em;
    height: 24.83em;
  }

  .why-card__results-content {
    top: 2.53em;
    left: 50%;
    transform: translateX(-50%);
    width: 23.34em;
    gap: 1.5em;
    align-items: center;
    text-align: center;
  }

  .why-card__results-text {
    text-align: center;
  }

  .why-card__bg-text {
    width: 31.4em;
    left: -0.65em;
    top: 10.69em;
  }

  .why-card__heading--lg {
    font-size: 1.69em;
    line-height: 1.555;
  }

  .why-card__sub--white {
    font-size: 1.31em;
    line-height: 1.428;
  }
}

@media (max-width: 360px) {
  .why {
    font-size: 10.67px;
  }
}

.contact {
  margin-top: 10em;
  background-color: var(--color-white);
  border-top-left-radius: var(--radius-card);
  border-top-right-radius: var(--radius-card);
  padding: 5em var(--container-offset) 0;
  position: relative;
}

.contact__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2em;
  text-align: center;
  max-width: 37.4em;
  margin: 0 auto;
}

.contact__tagline {
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.333;
  color: var(--color-black);
  opacity: 0.8;
  margin: 0;
}

.contact .heading {
  margin: 0;
}

.contact__email {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5em;
  font-family: var(--font-body);
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.333;
  color: var(--color-black);
  text-decoration: none;
}

.contact__email-icon {
  width: 3.2em;
  height: 3.2em;
  display: block;
}

.footer {
  margin-top: 7.5em;
  padding: 2em 0;
  border-top: 1px solid var(--color-gray-50);
  display: flex;
  align-items: center;
  position: relative;
}

.footer__copy {
  font-family: var(--font-body);
  font-size: 0.83em;
  font-weight: 500;
  line-height: 1.5;
  color: var(--color-black);
  opacity: 0.6;
  margin: 0;
}

@media (max-width: 744px) {
  .contact {
    padding: 5em 2em 0;
    font-size: calc(
      10.67 * 1px + (16 - 10.67) * ((100vw - 360 * 1px) / (744 - 360))
    );
  }

  .contact__cta {
    max-width: 37.38em;
    gap: 2em;
  }

  .footer {
    flex-direction: column-reverse;
    align-items: stretch;
    gap: 2em;
    padding: 2em 0;
  }

  .footer .nav {
    position: static;
    left: auto;
    transform: none;
    justify-content: space-between;
    gap: 0;
    width: 100%;
  }

  .footer .nav-link {
    font-size: 0.88em;
    line-height: 1.428;
  }

  .footer__copy {
    font-size: 0.83em;
    line-height: 1.5;
  }
}

@media (max-width: 480px) {
  .contact {
    padding: 2.5em 1.25em 0;
  }

  .contact__cta {
    gap: 2em;
  }

  .contact__tagline {
    font-size: 1.31em;
    line-height: 1.428;
  }

  .contact .heading {
    max-width: 17em;
  }

  .contact__email {
    gap: 0.5em;
  }

  .contact__email-icon {
    width: 3em;
    height: 3em;
  }

  .contact__email span {
    font-size: 1em;
    line-height: 1.55;
  }

  .footer {
    margin-top: 3.75em;
    padding: 1.5em 0;
  }

  .footer .nav {
    display: grid;
    grid-template-columns: auto auto auto;
    grid-template-rows: auto auto;
    grid-auto-flow: column;
    column-gap: 2.06em;
    row-gap: 1.88em;
    justify-content: start;
    justify-self: start;
    width: auto;
  }

  .footer .nav-link {
    font-size: 1.12em;
    line-height: 1.5;
  }

  .footer__copy {
    font-size: 1.12em;
    line-height: 1.5;
    opacity: 0.6;
    margin-top: 1.5em;
  }
}

@media (max-width: 360px) {
  .contact {
    font-size: 10.67px;
  }
}
