@font-face {
  font-family: "Monument Extended";
  src: url("./assets/fonts/MonumentExtended-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Monument Extended";
  src: url("./assets/fonts/MonumentExtended-Ultrabold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "TBS Gartek Condensed";
  src:
    url("./assets/fonts/TBSGartekCondensed.woff2") format("woff2"),
    url("./assets/fonts/TBSGartekCondensed.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --lime: #99ff00;
  --black: #000;
  --white: #fff;
  --muted: #313132;
  --line: #111;
  --body: "DM Sans", Arial, sans-serif;
  --display: "Monument Extended", "DM Sans", Arial, sans-serif;
  --condensed: "TBS Gartek Condensed", "Anton", Impact, sans-serif;
  --max: 1290px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
mark { background: var(--lime); color: inherit; padding: 0 .12em; }
.mobile-only { display: none; }

.site-header {
  height: 110px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 clamp(28px, 6vw, 86px);
}
.menu-button {
  width: 38px;
  height: 28px;
  border: 0;
  background: transparent;
  padding: 0;
  display: grid;
  gap: 5px;
}
.menu-button span { display: block; height: 6px; background: var(--black); }
.brand {
  font-family: var(--condensed);
  font-size: 50px;
  line-height: .72;
  letter-spacing: 0;
  text-transform: uppercase;
  transform-origin: center;
}
.shop-pill, .button {
  justify-self: end;
  background: var(--black);
  color: var(--white);
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--display);
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
}
.button {
  justify-self: start;
  min-width: 211px;
  min-height: 66px;
  font-size: 20px;
}

.hero {
  min-height: 645px;
  display: grid;
  grid-template-columns: minmax(520px, 681px) minmax(390px, 553px);
  justify-content: space-between;
  gap: clamp(56px, 7vw, 106px);
  align-items: start;
  padding: 0 clamp(28px, 6vw, 86px);
  overflow: hidden;
}
.hero-copy { align-self: start; max-width: 681px; padding-top: 160px; z-index: 1; }
.hero h1, section h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.43;
  letter-spacing: 0;
}
.hero p {
  width: min(574px, 100%);
  margin: 22px 0 36px;
  font-size: 18px;
  line-height: 30px;
}
.hero-art { position: relative; height: 645px; display: flex; align-items: flex-start; justify-content: flex-start; }
.hero-art::after {
  content: "";
  position: absolute;
  left: 187px;
  bottom: 1px;
  width: 330px;
  height: 44px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,.18) 0%, rgba(0,0,0,.08) 42%, rgba(0,0,0,0) 72%);
  filter: blur(7px);
  z-index: 2;
  pointer-events: none;
}
.hero-art img { width: 350px; margin: 67px 0 0 12px; position: relative; z-index: 3; filter: drop-shadow(0 16px 15px rgba(0,0,0,.10)); }
.wash {
  position: absolute;
  inset: 0 auto auto 36%;
  width: min(1040px, 80vw);
  aspect-ratio: 1698 / 1063;
  transform: translateX(-50%);
  background: url("./assets/pattern.png") center / contain no-repeat;
  opacity: .72;
  z-index: 1;
  pointer-events: none;
}
.pattern {
  background-image:
    linear-gradient(135deg, rgba(0,0,0,.035) 25%, transparent 25%),
    linear-gradient(225deg, rgba(0,0,0,.035) 25%, transparent 25%),
    linear-gradient(45deg, rgba(0,0,0,.035) 25%, transparent 25%),
    linear-gradient(315deg, rgba(0,0,0,.035) 25%, #fff 25%);
  background-position: 18px 0, 18px 0, 0 0, 0 0;
  background-size: 36px 36px;
}

.energy { padding: 168px clamp(28px, 6vw, 86px) 50px; text-align: center; }
.energy h2 { max-width: 1110px; margin: 0 auto 54px; }
.benefit-row {
  max-width: 1240px;
  margin: 0 auto 76px;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 42px;
  list-style: none;
  font-size: 18px;
  line-height: 30px;
}
.benefit-row li::before { content: ""; display: inline-block; width: 13px; height: 13px; border-radius: 50%; background: var(--black); margin-right: 22px; vertical-align: middle; }
.ingredient-map {
  max-width: 1216px;
  min-height: 500px;
  margin: 0 auto;
  position: relative;
}
.ingredient-map::before {
  content: "";
  position: absolute;
  left: 50%;
  top: -160px;
  width: min(1120px, 88vw);
  aspect-ratio: 1849 / 1206;
  transform: translateX(-50%);
  background: url("./assets/pattern.png") center / contain no-repeat;
  opacity: .56;
  z-index: 0;
  pointer-events: none;
}
.leaf-pile {
  position: absolute;
  width: 630px;
  left: 50%;
  top: -138px;
  transform: translateX(-50%);
  mix-blend-mode: multiply;
  z-index: 1;
}
.callout {
  width: 339px;
  height: 102px;
  border: 1px solid var(--black);
  background: var(--white);
  position: absolute;
  z-index: 2;
  text-align: left;
  display: grid;
  grid-template-columns: 102px 237px;
  grid-template-rows: 40px 62px;
  overflow: hidden;
}
.callout .icon {
  grid-row: 1 / 3;
  background: var(--black);
  color: var(--lime);
  display: grid;
  place-items: center;
  font-size: 42px;
  font-weight: 900;
}
.callout h3 {
  position: relative;
  z-index: 1;
  margin: 8px 0 0 21px;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 400;
  font-size: 20px;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: none;
}
.callout p {
  position: relative;
  z-index: 1;
  width: 186px;
  margin: 7px 0 0 21px;
  font-size: 18px;
  line-height: 25px;
  text-transform: none;
}
.callout-art {
  display: block;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 102px;
  object-fit: contain;
  z-index: 0;
  pointer-events: none;
}
.wellness {
  grid-template-columns: 237px 102px;
}
.wellness h3,
.wellness p {
  grid-column: 1;
  text-align: center;
}
.wellness h3 {
  margin: 8px 0 0;
}
.wellness p {
  width: 165px;
  justify-self: center;
  margin: 7px 0 0;
}
.endurance h3,
.endurance p,
.metabolism h3,
.metabolism p,
.focus h3,
.focus p {
  grid-column: 2;
}
.endurance p { width: 165px; }
.wellness { left: 0; top: 0; }
.endurance { right: 0; top: 0; }
.metabolism { left: 0; top: 375px; }
.focus { right: 0; top: 375px; }

.humans { padding: 54px clamp(28px, 6vw, 86px) 90px; text-align: center; }
.humans h2 { margin-bottom: 56px; }
.human-grid {
  max-width: 1287px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 29px;
}
.human-card {
  height: 454px;
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: #ddd;
}
.human-card img,
.human-card .hover-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.human-card img {
  filter: grayscale(1);
  transition: filter .35s ease, transform .35s ease;
}
.human-card .hover-video {
  position: absolute;
  inset: 0;
  opacity: 0;
  z-index: 1;
  transition: opacity .35s ease, transform .35s ease;
}
.human-card:hover img,
.human-card:focus-within img {
  filter: grayscale(0);
  transform: scale(1.02);
}
.human-card:hover .hover-video,
.human-card:focus-within .hover-video {
  opacity: 1;
  transform: scale(1.02);
}
.human-card::after { content: ""; position: absolute; inset: 48% 0 0; background: linear-gradient(transparent, #000); z-index: 2; }
.human-card div { position: absolute; inset: auto 0 18px; z-index: 3; }
.human-card h3 {
  margin: 0 8px 18px;
  font-family: var(--condensed);
  font-size: 60px;
  line-height: .8;
  letter-spacing: 6px;
  text-transform: uppercase;
}
.human-card p { margin: 0; font-size: 18px; line-height: 30px; text-transform: capitalize; }

.comparison { padding: 40px clamp(28px, 6vw, 86px) 70px; text-align: center; }
.comparison h2 { margin-bottom: 62px; }
.compare-wrap {
  max-width: 1216px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 240px 260px 292px 260px;
  gap: 36px;
  justify-content: center;
  align-items: end;
}
.compare-labels {
  width: 240px;
  display: grid;
  grid-template-rows: repeat(7, 81px);
  text-align: left;
  font-size: 21px;
  align-self: end;
  margin-bottom: 0;
}
.compare-labels span { border-top: 1px solid #bcbcbc; padding: 28px 0 0 16px; }
.compare-card { position: relative; border: 1px solid var(--black); background: var(--white); }
.compare-card.side { width: 260px; padding-top: 235px; }
.compare-card.main { width: 292px; background: var(--black); color: var(--lime); padding-top: 292px; border: 0; }
.compare-card img { position: absolute; left: 50%; transform: translateX(-50%); object-fit: contain; }
.compare-card.side img { top: -40px; width: 237px; height: 237px; }
.compare-card.main img { top: -18px; width: 156px; height: 257px; }
.compare-card dl { margin: 0; display: grid; grid-template-rows: repeat(7, 81px); }
.compare-card div { display: grid; place-items: center; border-top: 1px solid #bcbcbc; }
.compare-card.main div { border-top-color: #161616; }
.compare-card dt { position: absolute; opacity: 0; pointer-events: none; }
.compare-card dd { margin: 0; font-size: 21px; line-height: 18px; }
.compare-card.main dd { font-size: 23px; font-weight: 900; }
.compare-note { max-width: 960px; margin: 38px auto 0; text-align: left; font-size: 18px; letter-spacing: 5px; text-transform: uppercase; }

.faq { padding: 10px clamp(28px, 6vw, 86px) 260px; }
.eyebrow { margin: 0 auto 16px; text-align: center; font-size: 18px; line-height: 30px; text-transform: uppercase; }
.faq h2 {
  max-width: var(--max);
  height: 66px;
  margin: 0 auto;
  background: var(--black);
  color: var(--white);
  display: grid;
  place-items: center;
}
.accordion { max-width: var(--max); margin: 0 auto; border-left: 1px solid var(--black); border-right: 1px solid var(--black); }
details { border-bottom: 1px solid var(--black); }
summary {
  min-height: 66px;
  padding: 16px 48px 16px 17px;
  cursor: pointer;
  list-style: none;
  position: relative;
  font-size: 18px;
  line-height: 30px;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; color: var(--lime); font-size: 22px; position: absolute; right: 30px; top: 18px; }
details[open] summary::after { content: "⌄"; color: var(--black); }
details p { margin: 0 17px 0; font-size: 18px; line-height: 30px; }
details p:last-child { margin-bottom: 38px; }

.footer {
  min-height: 539px;
  background: var(--black);
  color: var(--white);
  padding: 128px clamp(40px, 13vw, 184px) 40px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 80px;
  position: relative;
}
.footer h2 { margin: 0 0 28px; color: var(--lime); font-size: 18px; }
.footer a { display: block; opacity: .8; font-size: 14px; line-height: 30px; }
.socials { display: flex; gap: 26px; align-items: center; }
.socials a { opacity: 1; font-weight: 900; font-size: 18px; line-height: 1; }
.copyright {
  grid-column: 1 / -1;
  border-top: 1px solid rgba(153,255,0,.35);
  padding-top: 36px;
  margin: 88px 0 0;
  text-align: center;
  opacity: .65;
  font-size: 14px;
}

@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; padding-top: 36px; }
  .hero-copy { padding-top: 0; }
  .hero-art { height: auto; min-height: 470px; justify-content: center; }
  .hero-art::after { left: 50%; bottom: 12px; }
  .hero-art img { margin: 0; }
  .wash { inset: 20px auto auto 50%; width: min(760px, 100vw); }
  .benefit-row { flex-wrap: wrap; gap: 16px 34px; }
  .ingredient-map { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; min-height: 0; }
  .ingredient-map::before { top: -18px; width: min(720px, 96vw); }
  .leaf-pile { position: static; width: min(560px, 100%); transform: none; grid-column: 1 / -1; justify-self: center; order: -1; }
  .callout { position: static; width: min(339px, 100%); }
  .wellness { grid-template-columns: 1fr 102px; }
  .callout-art { width: 100%; }
  .human-grid { grid-template-columns: repeat(2, 1fr); }
  .compare-wrap { grid-template-columns: repeat(3, minmax(190px, 1fr)); gap: 20px; }
  .compare-labels { display: none; }
  .compare-card.side, .compare-card.main { width: 100%; }
  .compare-card dt {
    position: static;
    opacity: 1;
    font-size: 12px;
    text-transform: uppercase;
    color: #777;
  }
  .compare-card.main dt { color: var(--white); opacity: .65; }
}

@media (max-width: 720px) {
  .site-header { height: 82px; padding: 0 20px; }
  .brand { font-size: 42px; }
  .shop-pill { display: none; }
  .hero { padding: 28px 20px 0; }
  .hero-copy { min-width: 0; width: 100%; }
  .hero p { width: auto; max-width: 330px; font-size: 16px; line-height: 28px; overflow-wrap: anywhere; }
  .hero h1 { font-size: 25px; line-height: 1.3; overflow-wrap: anywhere; }
  section h2 { font-size: 22px; line-height: 1.3; overflow-wrap: anywhere; }
  .hero-art { justify-content: center; overflow: hidden; }
  .hero-art::after {
    width: min(255px, 62vw);
    height: 32px;
    bottom: 40px;
    filter: blur(6px);
  }
  .hero-art img { width: min(250px, 58vw); }
  .energy, .humans, .comparison, .faq { padding-left: 20px; padding-right: 20px; }
  .energy { padding-top: 88px; padding-bottom: 62px; }
  .humans { padding-top: 56px; padding-bottom: 76px; }
  .comparison { padding-top: 18px; padding-bottom: 58px; }
  .energy h2 { max-width: 300px; }
  .benefit-row { display: grid; justify-content: start; text-align: left; }
  .ingredient-map { width: 100%; max-width: 350px; margin-inline: auto; justify-items: center; gap: 14px; }
  .callout {
    position: relative;
    inset: auto;
    min-width: 0;
    width: min(339px, 100%);
    height: 102px;
    min-height: 102px;
    display: grid;
    justify-self: center;
    padding: 0;
    text-align: left;
  }
  .wellness { grid-template-columns: minmax(0, 1fr) 90px; }
  .endurance,
  .metabolism,
  .focus { grid-template-columns: 90px minmax(0, 1fr); }
  .callout-art {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: fill;
  }
  .callout h3 { min-width: 0; margin: 7px 0 0 18px; font-size: 17px; line-height: 30px; overflow-wrap: anywhere; }
  .callout p { min-width: 0; width: min(178px, 100%); margin: 6px 0 0 18px; font-size: 15px; line-height: 21px; overflow-wrap: anywhere; }
  .wellness h3,
  .wellness p { margin-left: 0; justify-self: center; text-align: center; }
  .wellness p { width: min(172px, 100%); }
  .endurance h3,
  .endurance p,
  .metabolism h3,
  .metabolism p,
  .focus h3,
  .focus p { grid-column: 2; }
  .ingredient-map, .human-grid, .compare-wrap, .footer { grid-template-columns: 1fr; }
  .ingredient-map { overflow: hidden; }
  .leaf-pile { width: min(370px, 100%); }
  .human-card {
    width: 100%;
    max-width: 354px;
    height: auto;
    aspect-ratio: 2 / 3;
    justify-self: center;
  }
  .human-card img,
  .human-card .hover-video {
    object-fit: cover;
    object-position: 50% 50%;
  }
  .human-card .hover-video {
    opacity: 1;
  }
  .human-card:nth-child(1) img,
  .human-card:nth-child(1) .hover-video { object-position: 50% 34%; }
  .human-card:nth-child(2) img,
  .human-card:nth-child(2) .hover-video { object-position: 50% 38%; }
  .human-card:nth-child(3) img,
  .human-card:nth-child(3) .hover-video { object-position: 50% 42%; }
  .human-card:nth-child(4) img,
  .human-card:nth-child(4) .hover-video { object-position: 50% 40%; }
  .human-card h3 { font-size: 44px; letter-spacing: 4px; }
  .human-card p { padding: 0 12px; font-size: 16px; line-height: 24px; }
  .humans h2 { max-width: 270px; margin-left: auto; margin-right: auto; }
  .mobile-only { display: block; }
  .comparison {
    overflow: hidden;
  }
  .comparison h2 {
    max-width: 292px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 36px;
    line-height: 1.24;
  }
  .compare-wrap {
    justify-items: center;
    width: 100%;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
  }
  .compare-card.side,
  .compare-card.main {
    width: 100%;
    max-width: 292px;
    margin: 34px auto 0;
  }
  .compare-card.side {
    padding-top: 220px;
  }
  .compare-card.main {
    padding-top: 270px;
  }
  .compare-card.side img {
    top: -22px;
  }
  .compare-card.main img {
    top: 0;
  }
  .compare-note { text-align: center; }
  .faq h2 { font-size: 28px; }
  .footer { padding-top: 80px; gap: 36px; }
  .copyright { margin-top: 28px; }
}

@media (max-width: 390px) {
  .hero h1 { font-size: 24px; }
  .hero p { max-width: 315px; }
  .hero-art img { width: min(238px, 56vw); }
  .energy h2,
  .humans h2,
  .comparison h2 {
    width: min(260px, 100%);
    max-width: 260px;
    font-size: 20px;
  }
  .ingredient-map { max-width: 320px; }
  .callout {
    width: min(320px, 100%);
  }
  .callout h3 { font-size: 16px; }
  .callout p { font-size: 14px; line-height: 20px; }
  .human-card h3 { font-size: 39px; letter-spacing: 3px; }
  .human-card p { font-size: 15px; line-height: 22px; }
  .compare-wrap { max-width: 280px; }
  .compare-card.side,
  .compare-card.main {
    width: 280px;
    max-width: 280px;
  }
  .compare-card.side { padding-top: 205px; }
  .compare-card.main { padding-top: 255px; }
  .compare-card.side img { width: 220px; height: 220px; }
  .compare-card.main img { width: 146px; height: 240px; }
}
