@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --font-display: "Archivo Black";
  --font-body: "Space Grotesk";
  --ink: #080808;
  --paper: #f3f0e8;
  --pink: #ff2d8d;
  --lime: #d7ff24;
  --white: #fffdf8;
  --line: rgba(255, 255, 255, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--white);
  font-family: var(--font-body), Arial, sans-serif;
}

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

button,
input {
  font: inherit;
}

.nav {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: 100%;
  padding: 22px 4vw;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.brand {
  font-family: var(--font-display), sans-serif;
  font-size: clamp(1.2rem, 2.2vw, 2rem);
  letter-spacing: -0.08em;
}

.brand span {
  color: var(--pink);
}

.nav nav {
  display: flex;
  gap: 34px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav nav a,
.footer a {
  transition: color 180ms ease;
}

.nav nav a:hover,
.footer a:hover {
  color: var(--lime);
}

.navCta {
  justify-self: end;
  padding: 12px 18px;
  border: 1px solid var(--lime);
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: 180ms ease;
}

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

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 790px;
  height: 100vh;
  overflow: hidden;
  padding: 130px 7vw 90px;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, #050505 0%, rgba(5, 5, 5, 0.94) 29%, rgba(5, 5, 5, 0.24) 64%, rgba(5, 5, 5, 0.05) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.38), transparent 40%);
}

.heroImage {
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("images/volt-mix-hero.png") center / cover no-repeat;
  transform: scale(1.02);
  animation: revealImage 900ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.heroGlow {
  position: absolute;
  z-index: -1;
  width: 28vw;
  height: 28vw;
  border-radius: 50%;
  filter: blur(110px);
  opacity: 0.22;
}

.heroGlowOne {
  top: 12%;
  right: 16%;
  background: var(--pink);
}

.heroGlowTwo {
  right: 2%;
  bottom: -10%;
  background: var(--lime);
}

.heroContent {
  width: min(720px, 56vw);
  animation: rise 800ms 100ms cubic-bezier(0.2, 0.75, 0.2, 1) both;
}

.eyebrow,
.sectionNumber {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 0 rgba(215, 255, 36, 0.6);
  animation: pulse 2s infinite;
}

.hero h1,
.section h2,
.how h3 {
  margin: 22px 0;
  font-family: var(--font-display), sans-serif;
  line-height: 0.9;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(4rem, 7.6vw, 8.6rem);
}

.outline {
  display: block;
  color: transparent;
  -webkit-text-stroke: 2px var(--pink);
  text-shadow: 0 0 28px rgba(255, 45, 141, 0.12);
}

.heroCopy {
  max-width: 540px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
}

.heroActions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.primaryButton {
  display: inline-flex;
  flex-direction: column;
  min-width: 300px;
  padding: 17px 22px;
  background: var(--pink);
  box-shadow: 8px 8px 0 var(--lime);
  color: white;
  font-weight: 800;
  letter-spacing: 0.05em;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.primaryButton span {
  font-size: 0.68rem;
}

.primaryButton strong {
  margin-top: 2px;
  font-size: 1.2rem;
}

.primaryButton:hover {
  transform: translate(4px, 4px);
  box-shadow: 4px 4px 0 var(--lime);
}

.rating {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.rating span,
.bigRating span {
  color: var(--lime);
  letter-spacing: 0.12em;
}

.rating small,
.bigRating small {
  color: rgba(255, 255, 255, 0.58);
}

.quickFacts {
  display: flex;
  gap: 38px;
  margin: 46px 0 0;
  padding: 0;
  list-style: none;
}

.quickFacts li {
  display: flex;
  flex-direction: column;
  padding-left: 14px;
  border-left: 2px solid var(--pink);
}

.quickFacts strong {
  font-family: var(--font-display), sans-serif;
  font-size: 1.25rem;
}

.quickFacts span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.scrollCue {
  position: absolute;
  right: 2.4vw;
  bottom: 6vh;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  writing-mode: vertical-rl;
}

.ticker {
  overflow: hidden;
  padding: 15px 0;
  background: var(--lime);
  color: var(--ink);
  font-family: var(--font-display), sans-serif;
  white-space: nowrap;
  transform: rotate(-1deg) scale(1.02);
}

.ticker div {
  width: max-content;
  font-size: 1.1rem;
  animation: ticker 26s linear infinite;
}

.ticker i {
  padding: 0 22px;
  color: var(--pink);
  font-style: normal;
}

.section {
  padding: 110px 7vw;
}

.why {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 7vw;
  background:
    radial-gradient(circle at 20% 20%, rgba(255, 45, 141, 0.11), transparent 32%),
    #0a0a0a;
}

.section h2 {
  font-size: clamp(3.2rem, 6.2vw, 7.4rem);
}

.section h2 em {
  color: var(--pink);
  font-style: normal;
}

.sectionIntro p,
.flavorHeading p {
  max-width: 480px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 1rem;
  line-height: 1.7;
}

.benefitGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
}

.benefitCard {
  position: relative;
  min-height: 390px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--ink);
  transition: transform 220ms ease;
}

.benefitCard:hover {
  transform: translateY(-10px);
}

.benefitCard.pink {
  background: var(--pink);
  transform: rotate(-2deg);
}

.benefitCard.pink:hover {
  transform: rotate(-2deg) translateY(-10px);
}

.benefitCard.lime {
  min-height: 430px;
  background: var(--lime);
}

.benefitCard.dark {
  background: #171717;
  color: white;
  transform: rotate(2deg);
}

.benefitCard.dark:hover {
  transform: rotate(2deg) translateY(-10px);
}

.benefitCard > span {
  font-size: 0.7rem;
  font-weight: 800;
}

.iconBurst {
  display: grid;
  place-items: center;
  width: 92px;
  height: 92px;
  margin: 50px 0 52px;
  border: 2px solid currentColor;
  border-radius: 50%;
  font-size: 2.2rem;
}

.benefitCard h3 {
  margin: 0 0 12px;
  font-family: var(--font-display), sans-serif;
  font-size: 1.7rem;
  text-transform: uppercase;
}

.benefitCard p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.55;
  opacity: 0.75;
}

.flavors {
  background: var(--paper);
  color: var(--ink);
}

.flavorHeading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.flavorHeading h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5.5vw, 6.5rem);
}

.flavorHeading p {
  color: rgba(0, 0, 0, 0.58);
}

.flavorGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.flavorCard {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  background: #e4e0d6;
  transition: transform 200ms ease;
}

.flavorCard:hover {
  transform: translateY(-8px);
}

.flavorCard::after {
  position: absolute;
  inset: auto -20% -35% -20%;
  height: 70%;
  border-radius: 50%;
  content: "";
  filter: blur(44px);
  opacity: 0.65;
}

.flavorCard.berry::after {
  background: #d900ff;
}

.flavorCard.lime::after {
  background: #b8ff00;
}

.flavorCard.mango::after {
  background: #ff9a00;
}

.flavorCard.grapefruit::after {
  background: #ff3e7f;
}

.flavorIndex,
.selectFlavor {
  position: relative;
  z-index: 2;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.flavorOrb {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 180px;
  height: 250px;
  margin: 44px auto 30px;
  border: 2px solid #111;
  border-radius: 14px 14px 20px 20px;
  background: #111;
  box-shadow: 12px 16px 0 rgba(0, 0, 0, 0.13);
  transform: rotate(7deg);
}

.flavorOrb::after {
  position: absolute;
  inset: 7px 6px auto;
  height: 6px;
  background: repeating-linear-gradient(90deg, #555 0 2px, #111 2px 4px);
  content: "";
}

.flavorOrb span {
  color: var(--lime);
  font-family: var(--font-display), sans-serif;
  font-size: 5rem;
  font-style: italic;
  text-shadow: 8px 8px 0 var(--pink);
}

.flavorCard h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  font-family: var(--font-display), sans-serif;
  font-size: 1.2rem;
  text-transform: uppercase;
}

.flavorCard p {
  position: relative;
  z-index: 2;
  margin: 5px 0 24px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.selectFlavor {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
}

.how {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5vw;
  min-height: 360px;
  padding: 80px 8vw;
  background: var(--pink);
  color: var(--ink);
}

.verticalLabel {
  position: absolute;
  left: 2vw;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  writing-mode: vertical-rl;
}

.howStep {
  text-align: center;
}

.howStep strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin: auto;
  border: 2px solid;
  border-radius: 50%;
}

.how h3 {
  margin: 14px 0 4px;
  font-size: clamp(2.3rem, 5vw, 5.2rem);
}

.how p {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

.howArrow {
  color: var(--lime);
  font-size: clamp(2rem, 5vw, 5rem);
}

.reviews {
  background:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px),
    #0b0b0b;
  background-size: 44px 44px;
}

.reviewsHead {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 45px;
}

.reviewsHead h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 5vw, 6rem);
}

.bigRating {
  display: grid;
  min-width: 190px;
}

.bigRating strong {
  font-family: var(--font-display), sans-serif;
  font-size: 4.5rem;
  line-height: 1;
}

.reviewGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

blockquote {
  position: relative;
  min-height: 300px;
  margin: 0;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
}

.quoteMark {
  color: var(--pink);
  font-family: Georgia, serif;
  font-size: 5rem;
  line-height: 0.6;
}

blockquote p {
  margin: 30px 0 60px;
  font-size: 1.05rem;
  line-height: 1.55;
}

blockquote footer {
  position: absolute;
  right: 34px;
  bottom: 28px;
  left: 34px;
  display: flex;
  flex-direction: column;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

blockquote footer strong {
  color: var(--lime);
}

blockquote footer span {
  color: rgba(255, 255, 255, 0.46);
  font-size: 0.72rem;
}

.offer {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 8vw;
  overflow: hidden;
  background: var(--lime);
  color: var(--ink);
}

.offerFlash {
  position: absolute;
  top: -10%;
  left: 32%;
  color: rgba(255, 45, 141, 0.14);
  font-size: 38rem;
  line-height: 1;
  transform: rotate(12deg);
}

.offerCopy,
.checkoutCard {
  position: relative;
  z-index: 1;
}

.offer .sectionNumber {
  color: var(--ink);
}

.offer h2 {
  font-size: clamp(4rem, 7vw, 8rem);
}

.offer h2 em {
  color: var(--pink);
}

.offerCopy > p {
  max-width: 520px;
  font-size: 1.05rem;
  line-height: 1.65;
}

.offerCopy ul {
  padding: 0;
  list-style: none;
  font-weight: 700;
  line-height: 2;
}

.checkoutCard {
  align-self: center;
  padding: 34px;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--pink);
}

.checkoutTop {
  display: flex;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 0.67rem;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.checkoutTop span:last-child {
  color: #c4005c;
}

.checkoutCard h3 {
  margin: 28px 0 18px;
  font-family: var(--font-display), sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
}

.flavorOptions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.flavorOptions label {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 700;
}

.flavorOptions label:has(input:checked) {
  border-color: var(--pink);
  outline: 2px solid var(--pink);
}

.flavorOptions input {
  position: absolute;
  opacity: 0;
}

.flavorDot {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #d100ff;
}

.flavorDot.lime {
  background: #9dcc00;
}

.flavorDot.mango {
  background: #ff9a00;
}

.flavorDot.grapefruit {
  background: #ff3e7f;
}

.priceRow {
  display: flex;
  align-items: end;
  justify-content: space-between;
  margin: 24px 0 16px;
}

.priceRow div {
  display: flex;
  flex-direction: column;
}

.priceRow small {
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.priceRow strong {
  font-family: var(--font-display), sans-serif;
  font-size: 3.8rem;
  line-height: 1;
}

.priceRow del {
  color: rgba(0, 0, 0, 0.42);
  font-weight: 700;
}

.checkoutButton {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 19px;
  border: 0;
  background: var(--ink);
  color: white;
  cursor: pointer;
  font-weight: 800;
  letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease;
}

.checkoutButton:hover {
  background: var(--pink);
}

.microcopy {
  margin: 14px 0 0;
  text-align: center;
  font-size: 0.64rem;
  opacity: 0.58;
}

.faq {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 8vw;
  background: var(--paper);
  color: var(--ink);
}

.faq h2 {
  font-size: clamp(3rem, 5vw, 5.5rem);
}

.faq .sectionNumber {
  color: #b20052;
}

.faqList {
  border-top: 2px solid var(--ink);
}

.faq details {
  padding: 22px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq summary::after {
  float: right;
  color: var(--pink);
  content: "+";
  font-size: 1.4rem;
}

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

.faq details p {
  max-width: 600px;
  color: rgba(0, 0, 0, 0.62);
  line-height: 1.6;
}

.footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 52px 7vw;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.footerBrand {
  font-size: 2.2rem;
}

.footer > p {
  margin: 0;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.15em;
}

.footer > div {
  display: flex;
  gap: 20px;
  font-size: 0.75rem;
  font-weight: 700;
}

.footer small {
  grid-column: 1 / -1;
  max-width: 920px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.62rem;
  line-height: 1.6;
}

.mobileSticky {
  display: none;
}

@keyframes revealImage {
  from {
    opacity: 0;
    transform: scale(1.08);
  }
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
}

@keyframes pulse {
  70% {
    box-shadow: 0 0 0 10px rgba(215, 255, 36, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(215, 255, 36, 0);
  }
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1050px) {
  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav nav {
    display: none;
  }

  .heroContent {
    width: 68vw;
  }

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

  .benefitGrid {
    max-width: 800px;
  }

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

  .flavorCard {
    min-height: 430px;
  }

  .offer {
    grid-template-columns: 1fr 1fr;
    gap: 5vw;
  }
}

@media (max-width: 720px) {
  .nav {
    position: absolute;
    padding: 18px 20px;
  }

  .navCta {
    padding: 10px 12px;
    font-size: 0.65rem;
  }

  .hero {
    align-items: end;
    min-height: 780px;
    height: 100svh;
    padding: 110px 20px 46px;
  }

  .hero::after {
    background:
      linear-gradient(0deg, #050505 0%, rgba(5, 5, 5, 0.92) 44%, rgba(5, 5, 5, 0.05) 76%),
      linear-gradient(90deg, rgba(5, 5, 5, 0.52), transparent);
  }

  .heroImage {
    background-position: 66% center;
  }

  .heroContent {
    width: 100%;
  }

  .hero h1 {
    margin: 14px 0;
    font-size: clamp(3.5rem, 17vw, 5.4rem);
  }

  .heroCopy {
    max-width: 95%;
    margin-bottom: 22px;
    font-size: 0.9rem;
  }

  .heroActions {
    align-items: stretch;
    flex-direction: column;
    gap: 18px;
  }

  .primaryButton {
    min-width: 0;
  }

  .rating {
    flex-direction: row;
    justify-content: space-between;
  }

  .quickFacts {
    justify-content: space-between;
    gap: 10px;
    margin-top: 28px;
  }

  .scrollCue {
    display: none;
  }

  .section {
    padding: 76px 20px;
  }

  .why,
  .offer,
  .faq {
    grid-template-columns: 1fr;
  }

  .section h2 {
    font-size: clamp(3rem, 15vw, 5rem);
  }

  .benefitGrid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .benefitCard,
  .benefitCard.lime {
    min-height: 320px;
  }

  .iconBurst {
    margin: 34px 0 36px;
  }

  .flavorHeading,
  .reviewsHead {
    align-items: start;
    flex-direction: column;
  }

  .flavorGrid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .flavorCard {
    min-height: 340px;
    padding: 14px;
  }

  .flavorOrb {
    width: 105px;
    height: 170px;
    margin: 38px auto 24px;
  }

  .flavorOrb span {
    font-size: 3.6rem;
  }

  .flavorCard h3 {
    font-size: 0.9rem;
  }

  .flavorCard p {
    font-size: 0.6rem;
  }

  .selectFlavor {
    display: none;
  }

  .how {
    align-items: stretch;
    flex-direction: column;
    gap: 28px;
    padding: 70px 20px;
  }

  .verticalLabel {
    position: static;
    writing-mode: initial;
  }

  .howArrow {
    display: none;
  }

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

  .offer {
    gap: 30px;
  }

  .offerFlash {
    display: none;
  }

  .checkoutCard {
    padding: 24px 18px;
    box-shadow: 10px 10px 0 var(--pink);
  }

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

  .faq {
    gap: 24px;
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 48px 20px 100px;
  }

  .footer small {
    grid-column: auto;
  }

  .mobileSticky {
    position: fixed;
    z-index: 30;
    right: 10px;
    bottom: 10px;
    left: 10px;
    display: flex;
    justify-content: space-between;
    padding: 17px 20px;
    background: var(--pink);
    box-shadow: 5px 5px 0 var(--lime);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.05em;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
