:root {
  --ink: #011635;
  --paper: #ffffff;
  --paper-deep: #ffffff;
  --orange: #ff4f18;
  --blue: #096bcf;
  --purple: #4b2388;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--paper);
}

body {
  min-height: 100%;
  margin: 0;
  background: #ffffff;
  color: var(--ink);
  font-family: Inter, Avenir Next, Helvetica Neue, Arial, sans-serif;
}

body.is-intro-playing {
  overflow: hidden;
}

.page-intro {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--orange);
  isolation: isolate;
  pointer-events: auto;
  animation: intro-panel-exit 750ms cubic-bezier(0.76, 0, 0.24, 1) 1.25s forwards;
  will-change: transform;
}

.page-intro::after {
  position: absolute;
  z-index: -1;
  bottom: -50vw;
  left: 50%;
  width: 100vw;
  height: 100vw;
  border-radius: 50%;
  background: var(--orange);
  content: "";
  transform: translateX(-50%);
}

.page-intro__logo {
  display: block;
  width: clamp(150px, 15vw, 250px);
  height: auto;
  opacity: 0;
  transform: scale(0.12) rotate(-34deg);
  animation: intro-logo-arrive 500ms cubic-bezier(0.16, 1, 0.3, 1) 550ms forwards;
  will-change: opacity, transform;
}

@keyframes intro-logo-arrive {
  0% {
    opacity: 0;
    transform: scale(0.12) rotate(-34deg);
  }

  58% {
    opacity: 1;
    transform: scale(1.1) rotate(3deg);
  }

  78% {
    opacity: 1;
    transform: scale(0.97) rotate(-1deg);
  }

  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes intro-panel-exit {
  0% {
    transform: translateY(0);
  }

  99% {
    visibility: visible;
    transform: translateY(calc(-100% - 50vw));
  }

  100% {
    visibility: hidden;
    transform: translateY(calc(-100% - 50vw));
  }
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  width: 100%;
  border-bottom: 1px solid rgba(1, 22, 53, 0.06);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  isolation: isolate;
  transform: translateY(0);
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-nav {
  position: relative;
  display: grid;
  grid-template-columns: 200px minmax(540px, 1fr) auto;
  min-height: 88px;
  align-items: center;
  gap: clamp(20px, 2.4vw, 38px);
  padding-inline: clamp(24px, 2.8vw, 44px);
}

.brand {
  position: relative;
  display: block;
  width: 100%;
  max-width: 200px;
  height: 86px;
  overflow: hidden;
}

.brand img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  max-width: none;
  height: auto;
  transform: translate(-50%, -50%);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2.5vw, 42px);
}

.nav-links a {
  position: relative;
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding-top: 16px;
  color: var(--ink);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(15px, 1.15vw, 18px);
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0;
  white-space: nowrap;
  transform-origin: center 72%;
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.nav-symbol {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  color: var(--signal, var(--orange));
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  opacity: 0;
  transform: translate(-50%, 8px) scale(0.74) rotate(-8deg);
  transition:
    opacity 160ms ease,
    transform 210ms cubic-bezier(0.3, 1.45, 0.4, 1);
}

.nav-symbol--bundle {
  width: 31px;
  stroke-width: 1.7;
}

.nav-symbol--mark {
  object-fit: contain;
}

.nav-links a:nth-child(1),
.nav-links a:nth-child(2) {
  --signal: var(--orange);
}

.nav-links a:nth-child(3),
.nav-links a:nth-child(4) {
  --signal: var(--blue);
}

.nav-links a:nth-child(5),
.nav-links a:nth-child(6) {
  --signal: var(--purple);
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a.is-active {
  color: var(--signal);
}

.nav-links a:hover,
.nav-links a:focus-visible {
  transform: translateY(-2px) scale(1.06);
}

.nav-links a:hover .nav-symbol,
.nav-links a:focus-visible .nav-symbol,
.nav-links a.is-active .nav-symbol {
  opacity: 1;
  transform: translate(-50%, -2px) scale(1) rotate(0deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(13px, 1.5vw, 23px);
}

.icon-link {
  position: relative;
  display: grid;
  width: 28px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  transition:
    color 160ms ease,
    transform 160ms ease;
}

.icon-link:hover,
.icon-link:focus-visible {
  color: var(--orange);
  transform: translateY(-1px);
}

.account-link svg {
  width: 22px;
  fill: currentColor;
}

.cart-link svg {
  width: 27px;
  overflow: visible;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2.2;
}

.cart-link circle {
  fill: currentColor;
  stroke: none;
}

.cart-count {
  position: absolute;
  top: 1px;
  right: -7px;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  border: 2px solid #fffaf4;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
}

.bundle-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding-inline: clamp(20px, 1.7vw, 29px);
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-family: Avenir Next, Helvetica Neue, Arial, sans-serif;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

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

.menu-toggle {
  display: none;
  width: 43px;
  height: 43px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin-block: 4px;
  border-radius: 99px;
  background: white;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

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

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

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

.page-shell {
  min-height: calc(100vh - 89px);
}

.hero {
  position: relative;
  display: grid;
  min-height: min(820px, calc(100vh - 89px));
  grid-template-columns: minmax(360px, 0.82fr) minmax(600px, 1.18fr);
  align-items: center;
  overflow: hidden;
  padding: clamp(40px, 5vw, 82px) clamp(28px, 5.3vw, 86px) clamp(122px, 9vw, 144px);
  background: #ffffff;
}

.hero__copy {
  position: relative;
  z-index: 5;
  max-width: 650px;
  padding-bottom: 12px;
}

.hero__eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(14px, 1.15vw, 19px);
  font-weight: 900;
  letter-spacing: 0.075em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 670px;
  margin: 0;
  color: var(--ink);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(64px, 6.7vw, 112px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
}

.hero__description {
  margin: clamp(25px, 2.4vw, 38px) 0 0;
  color: rgba(1, 22, 53, 0.84);
  font-size: clamp(17px, 1.28vw, 22px);
  font-weight: 650;
  line-height: 1.55;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 29px;
}

.hero-button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 0 25px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.hero-button--primary {
  background: var(--ink);
  color: white;
  box-shadow: 0 10px 24px rgba(1, 22, 53, 0.14);
}

.hero-button--primary span {
  font-size: 19px;
  line-height: 0;
  transition: transform 180ms ease;
}

.hero-button--secondary {
  background: white;
  color: var(--ink);
}

.hero-button:hover,
.hero-button:focus-visible {
  transform: translateY(-2px);
}

.hero-button--primary:hover,
.hero-button--primary:focus-visible {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 13px 28px rgba(255, 79, 24, 0.22);
}

.hero-button--primary:hover span,
.hero-button--primary:focus-visible span {
  transform: translateX(3px);
}

.hero-button--secondary:hover,
.hero-button--secondary:focus-visible {
  border-color: var(--blue);
  color: var(--blue);
}

.hero__proof {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 34px;
}

.hero__faces {
  display: flex;
  padding-left: 7px;
}

.hero__face {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-left: -7px;
  overflow: hidden;
  border: 3px solid white;
  border-radius: 50%;
}

.hero__face img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__face--orange {
  background: #ffdfd3;
}

.hero__face--blue {
  background: #dceeff;
}

.hero__face--purple {
  background: #eadffa;
}

.hero__proof-copy {
  padding-left: 1px;
}

.hero__stars {
  color: var(--orange);
  font-size: 17px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.hero__proof-copy p {
  margin: 7px 0 0;
  font-size: 13px;
  font-weight: 750;
}

.hero__visual {
  position: relative;
  align-self: stretch;
  min-width: 0;
  min-height: 620px;
  isolation: isolate;
}

.hero__cans {
  position: absolute;
  z-index: 3;
  right: 1%;
  bottom: 4%;
  left: 5%;
  display: flex;
  height: 91%;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(9px, 0.8vw, 15px);
}

.hero__can {
  display: block;
  width: auto;
  height: 110%;
  max-height: none;
  margin-inline: clamp(-34px, -2.5vw, -20px);
  object-fit: contain;
  filter: drop-shadow(0 10px 8px rgba(1, 22, 53, 0.08)) contrast(1.01) saturate(1.02);
  transform-origin: center bottom;
  transition:
    filter 260ms ease,
    transform 340ms cubic-bezier(0.2, 0.85, 0.2, 1.15);
}

.hero__can--energy {
  z-index: 1;
  transform: translateY(10px) rotate(-0.8deg) scale(0.985);
}

.hero__can--daily {
  z-index: 3;
  width: auto;
  height: 114%;
  transform: translateY(-2px) scale(1.01);
}

.hero__can--nightly {
  z-index: 2;
  width: auto;
  height: 98%;
  transform: translateY(10px) rotate(0.8deg) scale(0.985);
}

.hero__visual:hover .hero__can {
  filter: drop-shadow(0 18px 13px rgba(1, 22, 53, 0.15)) contrast(1.01) saturate(1.02);
}

.hero__visual:hover .hero__can--energy {
  transform: translate(calc(-1 * clamp(8px, 1.5vw, 20px)), 1px) rotate(-2.2deg) scale(1.02);
}

.hero__visual:hover .hero__can--daily {
  transform: translateY(-16px) scale(1.035);
}

.hero__visual:hover .hero__can--nightly {
  transform: translate(clamp(8px, 1.5vw, 20px), 1px) rotate(2.2deg) scale(1.02);
}

.hero__ingredient {
  position: absolute;
  z-index: 1;
  display: block;
  max-width: none;
  pointer-events: none;
  user-select: none;
}

.hero__ingredient--citrus {
  bottom: 0;
  left: -15%;
  width: 60%;
}

.hero__ingredient--lavender {
  right: -8%;
  bottom: 0;
  width: 55%;
}

.hero__product-shadow {
  position: absolute;
  z-index: 0;
  right: 11%;
  bottom: 2.2%;
  left: 12%;
  height: 38px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(1, 22, 53, 0.18) 0%, rgba(1, 22, 53, 0.08) 48%, transparent 74%);
  filter: blur(13px);
  transform: scaleY(0.54);
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 4px;
}

@media (max-width: 1180px) {
  .site-nav {
    grid-template-columns: 180px minmax(500px, 1fr) auto;
    gap: 18px;
    padding-inline: 20px;
  }

  .nav-links {
    gap: 19px;
  }

  .brand {
    max-width: 180px;
  }

  .nav-links a {
    font-size: 12px;
  }

  .nav-actions {
    gap: 12px;
  }

  .bundle-button {
    padding-inline: 17px;
  }

  .hero {
    grid-template-columns: minmax(340px, 0.9fr) minmax(520px, 1.1fr);
    padding-inline: 40px 28px;
  }

  .hero__visual {
    min-height: 560px;
  }
}

@media (max-width: 980px) {
  .site-nav {
    grid-template-columns: minmax(160px, 200px) auto;
    min-height: 82px;
    justify-content: space-between;
  }

  .brand {
    height: 80px;
    max-width: 200px;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 1px);
    right: 16px;
    left: 16px;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid rgba(1, 22, 53, 0.1);
    border-radius: 18px;
    background: #fffaf4;
    box-shadow: 0 24px 50px rgba(1, 22, 53, 0.13);
    opacity: 0;
    transform: translateY(-8px);
    transition:
      visibility 180ms ease,
      opacity 180ms ease,
      transform 180ms ease;
  }

  .nav-links[data-open="true"] {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 48px;
    justify-content: flex-start;
    padding: 14px 16px 14px 48px;
    border-radius: 10px;
    font-size: 14px;
  }

  .nav-symbol {
    top: 50%;
    left: 24px;
    transform: translate(-50%, -50%) scale(0.74) rotate(-8deg);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    transform: none;
  }

  .nav-links a:hover .nav-symbol,
  .nav-links a:focus-visible .nav-symbol,
  .nav-links a.is-active .nav-symbol {
    transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }

  .nav-links a:hover,
  .nav-links a:focus-visible {
    background: rgba(255, 79, 24, 0.08);
  }

  .menu-toggle {
    display: block;
  }

  .page-shell {
    min-height: calc(100vh - 83px);
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
    padding: 56px 24px 74px;
    text-align: center;
  }

  .hero__copy {
    max-width: 720px;
    margin-inline: auto;
  }

  .hero__title {
    margin-inline: auto;
    font-size: clamp(64px, 12vw, 92px);
  }

  .hero__actions,
  .hero__proof {
    justify-content: center;
  }

  .hero__visual {
    width: min(100%, 720px);
    min-height: 600px;
    margin: 18px auto 0;
  }

  .hero__cans {
    inset-inline: 7%;
    height: 88%;
  }

  .hero__ingredient--citrus {
    left: -8%;
    width: 45%;
  }

  .hero__ingredient--lavender {
    right: -5%;
    width: 40%;
  }

}

@media (max-width: 560px) {
  .site-nav {
    grid-template-columns: minmax(138px, 164px) auto;
    min-height: 74px;
    gap: 8px;
    padding-inline: 12px;
  }

  .brand {
    height: 72px;
    max-width: 164px;
  }

  .nav-actions {
    gap: 7px;
  }

  .bundle-button {
    display: none;
  }

  .icon-link {
    width: 25px;
  }

  .account-link {
    display: none;
  }

  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 9px;
  }

  .hero {
    padding: 42px 16px 48px;
  }

  .hero__eyebrow {
    margin-bottom: 13px;
    font-size: 12px;
  }

  .hero__title {
    font-size: clamp(52px, 16vw, 76px);
    line-height: 0.9;
  }

  .hero__description {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.55;
  }

  .hero__actions {
    gap: 9px;
    margin-top: 23px;
  }

  .hero-button {
    min-height: 49px;
    padding-inline: 18px;
    font-size: 11px;
  }

  .hero__proof {
    margin-top: 27px;
  }

  .hero__face {
    width: 36px;
    height: 36px;
  }

  .hero__proof-copy {
    text-align: left;
  }

  .hero__stars {
    font-size: 14px;
  }

  .hero__proof-copy p {
    font-size: 11px;
  }

  .hero__visual {
    min-height: 420px;
    margin-top: 22px;
  }

  .hero__cans {
    right: 1%;
    left: 1%;
    height: 88%;
    gap: 0;
  }

  .hero__can {
    width: auto;
    height: 92%;
    margin-inline: -20px;
  }

  .hero__can--daily {
    width: auto;
    height: 95%;
  }

  .hero__can--nightly {
    width: auto;
    height: 84%;
  }

  .hero__ingredient--citrus {
    bottom: 1%;
    left: 10%;
    width: 43%;
  }

  .hero__ingredient--lavender {
    right: -6%;
    bottom: 0;
    width: 46%;
  }

}

@media (prefers-reduced-motion: reduce) {
  body.is-intro-playing {
    overflow: auto;
  }

  .page-intro {
    display: none;
  }

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

/* Nutrition label system */
.buddy-specs {
  position: relative;
  display: grid;
  min-height: 590px;
  grid-template-columns: minmax(280px, 0.76fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(48px, 8vw, 132px);
  padding: clamp(66px, 7vw, 112px) clamp(28px, 8vw, 132px);
  overflow: hidden;
  background:
    linear-gradient(112deg, color-mix(in srgb, var(--accent) 12%, white), white 58%, color-mix(in srgb, var(--accent) 6%, white));
  isolation: isolate;
}

.buddy-specs__label {
  position: relative;
  z-index: 1;
  width: min(100%, 390px);
  justify-self: start;
}

.buddy-specs--reverse .buddy-specs__label {
  order: 2;
  justify-self: end;
}

.buddy-specs--reverse .buddy-specs__content {
  order: 1;
}

.nutrition-label {
  position: relative;
  padding: 15px 18px 13px;
  border: 2px solid var(--ink);
  background: #fff;
  box-shadow: 9px 10px 0 color-mix(in srgb, var(--accent) 48%, white);
  color: #050505;
  font-family: Arial, Helvetica, sans-serif;
  transform: rotate(-1.1deg);
}

.buddy-specs--reverse .nutrition-label {
  transform: rotate(1.1deg);
}

.nutrition-label::after {
  position: absolute;
  top: 0;
  right: -2px;
  width: 9px;
  height: 100%;
  background: var(--accent);
  content: "";
  transform: translateX(100%);
}

.nutrition-label__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: rgba(5, 5, 5, 0.58);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  line-height: 1;
  text-transform: uppercase;
}

.nutrition-label__title {
  margin: 7px 0 3px;
  color: #050505;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(44px, 5.5vw, 70px);
  font-weight: 950;
  letter-spacing: -0.085em;
  line-height: 0.86;
}

.nutrition-label__rule {
  height: 1px;
  margin: 6px 0;
  background: #050505;
}

.nutrition-label__rule--thick {
  height: 8px;
  margin: 7px 0 6px;
}

.nutrition-label__serving,
.nutrition-label__footnote {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
}

.nutrition-label__serving {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
}

.nutrition-label__serving strong {
  text-align: right;
}

.nutrition-label__calories,
.nutrition-label__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 5px 0;
}

.nutrition-label__calories span {
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.nutrition-label__calories strong {
  font-size: 38px;
  font-weight: 950;
  letter-spacing: -0.05em;
  line-height: 0.8;
}

.nutrition-label__row {
  border-bottom: 1px solid rgba(5, 5, 5, 0.38);
  font-size: 13px;
  line-height: 1.15;
}

.nutrition-label__row--major {
  font-size: 15px;
  font-weight: 800;
}

.nutrition-label__row strong {
  font-weight: 900;
  white-space: nowrap;
}

.nutrition-label__footnote {
  color: rgba(5, 5, 5, 0.63);
  font-size: 8px;
  font-weight: 600;
}

.buddy-specs__content {
  position: relative;
  z-index: 1;
  max-width: 610px;
}

.buddy-specs__eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.buddy-specs__content h4 {
  max-width: 580px;
  margin: 0;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(54px, 6.3vw, 94px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.buddy-specs__lede {
  max-width: 430px;
  margin: 25px 0 0;
  color: rgba(1, 22, 53, 0.62);
  font-size: clamp(14px, 1.2vw, 17px);
  font-weight: 650;
  line-height: 1.45;
}

.buddy-specs__callout {
  display: flex;
  width: min(100%, 430px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 30px;
  padding: 14px 0 13px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 42%, rgba(1, 22, 53, 0.18));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 42%, rgba(1, 22, 53, 0.18));
}

.buddy-specs__callout span,
.buddy-specs__callout strong {
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.buddy-specs__callout span {
  color: rgba(1, 22, 53, 0.48);
}

.buddy-specs__callout strong {
  color: var(--accent);
  text-align: right;
}

@media (max-width: 700px) {
  .buddy-specs,
  .buddy-specs--reverse {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 62px 22px 70px;
  }

  .buddy-specs__label,
  .buddy-specs--reverse .buddy-specs__label {
    order: 1;
    width: min(100%, 370px);
    justify-self: center;
  }

  .buddy-specs__content,
  .buddy-specs--reverse .buddy-specs__content {
    order: 2;
    width: 100%;
  }

  .nutrition-label {
    box-shadow: 7px 8px 0 color-mix(in srgb, var(--accent) 48%, white);
  }

  .buddy-specs__content h4 {
    font-size: clamp(48px, 14vw, 70px);
  }

  .buddy-specs__lede {
    margin-top: 20px;
    font-size: 14px;
  }
}

/* Meet the Buddies */
.buddies {
  position: relative;
  background: white;
}

.buddies__intro {
  position: relative;
  display: flex;
  min-height: 100svh;
  align-items: center;
  flex-direction: column;
  overflow: hidden;
  padding: clamp(56px, 7vw, 104px) 24px clamp(72px, 8vw, 120px);
  text-align: center;
}

.buddies__intro h2 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(58px, 8.2vw, 132px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.88;
  text-transform: uppercase;
}

.buddies__banner {
  position: absolute;
  z-index: 2;
  top: clamp(20px, 2vw, 32px);
  bottom: clamp(20px, 2vw, 32px);
  display: flex;
  width: clamp(40px, 4vw, 60px);
  justify-content: center;
  overflow: hidden;
  background: var(--orange);
  color: white;
  pointer-events: none;
}

.buddies__banner--left {
  left: clamp(16px, 2vw, 32px);
}

.buddies__banner--right {
  right: clamp(16px, 2vw, 32px);
}

.buddies__banner-track {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 0;
  will-change: transform;
}

.buddies__banner span {
  display: block;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(10px, 0.95vw, 14px);
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
  writing-mode: vertical-rl;
}

.buddies__banner--left span {
  transform: rotate(180deg);
}

.buddies__banner--left .buddies__banner-track {
  animation: buddies-banner-up 8s linear infinite;
}

.buddies__banner--right .buddies__banner-track {
  animation: buddies-banner-down 8s linear infinite;
}

@keyframes buddies-banner-up {
  to {
    transform: translateY(-16.6667%);
  }
}

@keyframes buddies-banner-down {
  from {
    transform: translateY(-16.6667%);
  }
}

.buddies__can-stack {
  position: relative;
  z-index: 1;
  display: block;
  width: auto;
  max-width: 72vw;
  height: min(68svh, 720px);
  margin-top: clamp(32px, 4vw, 60px);
  object-fit: contain;
}

/* Ingredients journey */
.ingredients-journey {
  --ingredients-bg: #eef7ff;
  position: relative;
  height: 300svh;
  overflow: clip;
  background: var(--ingredients-bg);
  color: var(--ink);
}

.ingredients-journey__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  min-height: 680px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0.82), transparent 34%),
    var(--ingredients-bg);
}

.ingredients-journey__topline {
  position: absolute;
  z-index: 6;
  top: clamp(22px, 3vw, 42px);
  right: clamp(24px, 5.3vw, 86px);
  left: clamp(24px, 5.3vw, 86px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.ingredients-journey__eyebrow,
.ingredients-journey__progress,
.ingredients-journey__kicker,
.ingredients-journey__scroll-cue,
.ingredient-card__number {
  margin: 0;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.15em;
  line-height: 1;
  text-transform: uppercase;
}

.ingredients-journey__eyebrow {
  color: var(--orange);
}

.ingredients-journey__progress {
  color: rgba(1, 22, 53, 0.48);
}

.ingredients-journey__progress span {
  color: var(--ink);
}

.ingredients-journey__progress i {
  padding-inline: 5px;
  color: var(--orange);
  font-style: normal;
}

.ingredients-journey__marquee {
  position: absolute;
  z-index: 1;
  top: 15%;
  right: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}

.ingredients-journey__marquee-track {
  display: flex;
  width: max-content;
  align-items: baseline;
  gap: clamp(36px, 7vw, 100px);
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(110px, 16.5vw, 260px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.82;
  text-transform: uppercase;
  opacity: var(--ingredients-marquee-opacity, 1);
  transform: translate3d(var(--ingredients-marquee-shift, 0vw), 0, 0);
  will-change: transform;
}

.ingredients-journey__marquee-track span {
  display: block;
  -webkit-text-stroke: 1px var(--ink);
}

.ingredients-journey__reveal {
  position: absolute;
  z-index: 4;
  top: clamp(26px, 4.5vw, 66px);
  right: clamp(24px, 5.3vw, 86px);
  left: clamp(24px, 5.3vw, 86px);
  pointer-events: none;
}

.ingredients-journey__reveal-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(12px, 3.25vw, 58px);
  max-width: 1440px;
  margin: 0 auto;
}

.reveal-ingredient {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(9px, 1.15vw, 17px);
  min-width: 0;
  padding: 0;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, -140px, 0);
  will-change: transform, opacity;
}

.reveal-ingredient img {
  display: block;
  width: clamp(76px, 8.4vw, 132px);
  aspect-ratio: 1;
  object-fit: contain;
  filter: drop-shadow(0 10px 12px rgba(1, 22, 53, 0.08));
}

.reveal-ingredient h3 {
  max-width: 11ch;
  margin: 0;
  color: var(--ink);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(14px, 1.45vw, 23px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.98;
  text-transform: uppercase;
}

.ingredients-journey__intro {
  position: absolute;
  z-index: 5;
  bottom: clamp(56px, 11vh, 140px);
  left: clamp(24px, 5.3vw, 86px);
  width: min(31vw, 430px);
}

.ingredients-journey__kicker {
  margin-bottom: 17px;
  color: var(--blue);
}

.ingredients-journey__intro h2 {
  margin: 0;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(58px, 6.5vw, 102px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.84;
  text-transform: uppercase;
}

.ingredients-journey__lede {
  max-width: 320px;
  margin: 23px 0 0;
  color: rgba(1, 22, 53, 0.62);
  font-size: clamp(13px, 1.05vw, 16px);
  font-weight: 650;
  line-height: 1.48;
}

.ingredients-journey__can-wrap {
  position: absolute;
  z-index: 3;
  top: 45%;
  left: 50%;
  width: min(43vw, 620px);
  height: min(93svh, 950px);
  transform: translate3d(-50%, calc(-50% + var(--ingredients-can-drop, 0px)), 0) scale(var(--ingredients-can-scale, 1));
  transform-origin: center center;
  will-change: transform;
}

.ingredients-journey__can-halo {
  position: absolute;
  top: 13%;
  right: 13%;
  bottom: 14%;
  left: 13%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.9) 0 36%, rgba(255, 255, 255, 0) 70%);
  filter: blur(18px);
  transform: scaleX(0.66);
}

.ingredients-journey__can {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 20px rgba(1, 22, 53, 0.16));
}

.ingredients-journey__can-note {
  position: absolute;
  top: 49%;
  left: 78%;
  display: grid;
  gap: 6px;
  width: max-content;
  color: var(--blue);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  transform: rotate(90deg);
  transform-origin: left top;
}

.ingredients-journey__can-note span:last-child {
  color: rgba(1, 22, 53, 0.42);
  font-size: 8px;
}

.ingredients-journey__cards {
  position: absolute;
  z-index: 6;
  top: 24%;
  right: clamp(24px, 5.3vw, 86px);
  display: grid;
  width: min(26vw, 360px);
  gap: 13px;
}

.ingredient-card {
  --card-accent: var(--orange);
  min-height: 112px;
  padding: 17px 20px 18px;
  border-left: 3px solid var(--card-accent);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 13px 25px rgba(1, 22, 53, 0.06);
  opacity: 0;
  transform: translate3d(0, -42px, 0);
  transition: opacity 120ms linear, transform 120ms linear;
  will-change: opacity, transform;
}

.ingredient-card--water {
  --card-accent: var(--blue);
}

.ingredient-card--electrolytes {
  --card-accent: var(--orange);
}

.ingredient-card--sugar {
  --card-accent: var(--purple);
}

.ingredient-card--together {
  --card-accent: #2e9d7b;
}

.ingredient-card__number {
  color: var(--card-accent);
  font-size: 10px;
}

.ingredient-card h3 {
  margin: 10px 0 0;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(21px, 1.55vw, 27px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.95;
  text-transform: uppercase;
}

.ingredient-card > p:last-child {
  margin: 10px 0 0;
  color: rgba(1, 22, 53, 0.56);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.35;
}

.ingredients-journey__scroll-cue {
  position: absolute;
  z-index: 6;
  right: clamp(24px, 5.3vw, 86px);
  bottom: clamp(26px, 3.3vw, 48px);
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(1, 22, 53, 0.46);
  font-size: 10px;
}

.ingredients-journey__scroll-cue i {
  display: inline-grid;
  width: 29px;
  height: 29px;
  place-items: center;
  border: 1px solid rgba(1, 22, 53, 0.22);
  border-radius: 50%;
  color: var(--orange);
  font-size: 15px;
  font-style: normal;
}

.buddy-story {
  --accent: var(--orange);
  --accent-soft: #ffc1a9;
  --scene: #ffffff;
  --can-left: 51%;
  --title-size: 15vw;
  --title-size-mobile: 18.2vw;
  position: relative;
  min-height: 0;
  background: var(--scene);
}

.buddy-story__stage {
  position: relative;
  min-height: max(100svh, calc(min(25vw, 340px) * 1.78 + 420px));
  background: var(--scene);
}

.buddy-story--energy {
  --accent: var(--orange);
  --accent-soft: #ffc4ad;
  --title-size: 13.2vw;
  --title-size-mobile: 15.6vw;
}

.buddy-story--daily {
  --accent: var(--blue);
  --accent-soft: #9bd3ff;
  --title-size: 16vw;
  --title-size-mobile: 19.4vw;
}

.buddy-story--nightly {
  --accent: var(--purple);
  --accent-soft: #c9a8ed;
  --title-size: 14.2vw;
  --title-size-mobile: 16.8vw;
}

#nightly-specs {
  margin-top: 24px;
}

.buddy-story__sticky {
  position: relative;
  height: max(100svh, calc(min(25vw, 340px) * 1.78 + 420px));
  min-height: 650px;
  overflow: hidden;
  background: var(--scene);
  isolation: isolate;
}

.buddy-story__title {
  position: absolute;
  z-index: 1;
  top: 7.5%;
  right: 3.5vw;
  left: 3.5vw;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(92px, var(--title-size), 228px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.015em;
  line-height: 0.86;
  text-align: center;
  text-transform: uppercase;
  transform: scaleY(1.32);
  transform-origin: center top;
  white-space: nowrap;
  word-spacing: 0.08em;
  will-change: auto;
}

.buddy-story__title span {
  display: block;
  width: 100%;
  background-color: var(--accent);
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.24) 0 0.8px, transparent 0.95px);
  background-size: 3px 3px;
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  -webkit-text-stroke: 1.5px var(--accent);
}

.buddy-story__detail-media {
  position: absolute;
  z-index: 2;
  bottom: 7.5%;
  left: 6.5%;
  display: block;
  width: min(25vw, 340px);
  height: auto;
  border-radius: clamp(24px, 2.5vw, 40px);
  filter: saturate(1.12) contrast(1.03);
}

.buddy-story__can-wrap {
  position: absolute;
  z-index: 3;
  top: 56%;
  left: var(--can-left);
  display: grid;
  width: min(35vw, 500px);
  height: min(96svh, 960px);
  place-items: center;
  transform: translate(-50%, -50%);
}

.buddy-story__can {
  display: block;
  width: auto;
  max-width: 100%;
  height: min(88svh, 880px);
  object-fit: contain;
  filter: drop-shadow(0 22px 17px rgba(1, 22, 53, 0.14));
  transform: translate3d(0, var(--can-y, 0), 0) rotate(var(--can-tilt, 0deg));
  transform-origin: center 64%;
  will-change: transform;
}

.buddy-story__can--open {
  height: min(95svh, 950px);
}

.buddy-story__copy {
  position: absolute;
  z-index: 5;
  right: clamp(30px, 6vw, 96px);
  bottom: clamp(52px, 10vh, 120px);
  width: min(31vw, 455px);
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  opacity: 1;
  transform: none;
  will-change: auto;
}

.buddy-story--daily .buddy-story__copy {
  right: clamp(30px, 6vw, 96px);
  left: auto;
}

.buddy-story__eyebrow {
  margin: 0 0 13px;
  color: var(--accent);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.buddy-story__copy h4 {
  margin: 0;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(28px, 2.75vw, 46px);
  font-stretch: condensed;
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 1.02;
}

.buddy-story__copy > p:not(.buddy-story__eyebrow) {
  margin: 22px 0 0;
  color: rgba(1, 22, 53, 0.5);
  font-size: clamp(14px, 1.16vw, 18px);
  font-weight: 650;
  line-height: 1.5;
}

.buddy-story__benefits {
  display: none;
}

.buddy-specs {
  position: relative;
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
  align-items: center;
  gap: clamp(40px, 5.5vw, 84px);
  padding: clamp(42px, 4.5vw, 66px) clamp(54px, 7vw, 118px);
  overflow: hidden;
  background: white;
}

.buddy-specs__visual {
  position: relative;
  order: 2;
  width: min(100%, 500px);
  aspect-ratio: 3 / 2;
  justify-self: end;
  overflow: hidden;
  border-radius: clamp(24px, 2.5vw, 38px);
  background: #f2f2f2;
  box-shadow: 0 22px 48px rgba(1, 22, 53, 0.12);
}

.buddy-specs__visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.buddy-specs__content {
  position: relative;
  z-index: 2;
  order: 1;
  max-width: 650px;
}

.buddy-specs--reverse .buddy-specs__visual {
  order: 1;
  justify-self: start;
}

.buddy-specs--reverse .buddy-specs__content {
  order: 2;
}

.buddy-specs__content h4 {
  max-width: 580px;
  margin: 0;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(46px, 4.2vw, 72px);
  font-weight: 900;
  letter-spacing: -0.025em;
  line-height: 0.9;
  text-transform: uppercase;
}

.buddy-specs__metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(26px, 3vw, 40px);
  border-top: 1px solid color-mix(in srgb, var(--accent) 30%, rgba(1, 22, 53, 0.12));
  border-bottom: 1px solid color-mix(in srgb, var(--accent) 30%, rgba(1, 22, 53, 0.12));
}

.buddy-specs__metrics > div {
  min-width: 0;
  padding: 20px 14px 19px 0;
}

.buddy-specs__metrics > div + div {
  padding-left: 14px;
  border-left: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(1, 22, 53, 0.1));
}

.buddy-specs__metrics strong,
.buddy-specs__metrics span {
  display: block;
}

.buddy-specs__metrics strong {
  color: var(--accent);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(26px, 2.2vw, 38px);
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.buddy-specs__metrics span {
  margin-top: 7px;
  color: rgba(1, 22, 53, 0.52);
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.buddy-specs__formula {
  margin: 22px 0 0;
}

.buddy-specs__formula > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(1, 22, 53, 0.1);
}

.buddy-specs__formula dt,
.buddy-specs__formula dd {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
}

.buddy-specs__formula dt {
  color: rgba(1, 22, 53, 0.58);
}

.buddy-specs__formula dd {
  color: var(--ink);
}

.buddy-specs__note {
  margin: 17px 0 0;
  color: rgba(1, 22, 53, 0.42);
  font-size: 10px;
  line-height: 1.45;
}

.brand-story {
  --story-cream: #fff;
  --story-soft: #fff;
  --story-progress: 0;
  --story-line-fill: 0px;
  position: relative;
  min-height: 100svh;
  overflow: clip;
  background: var(--ink);
  color: var(--story-cream);
  font-family: Inter, Avenir Next, Helvetica Neue, Arial, sans-serif;
  isolation: isolate;
}

.brand-story__sticky {
  position: relative;
  height: 100svh;
  min-height: 650px;
  overflow: hidden;
  background: var(--ink);
}

.brand-story.is-story-enhanced .brand-story__sticky {
  position: sticky;
  top: 0;
}

.brand-story__sticky::before {
  display: none;
  content: none;
}

.brand-story__topbar {
  position: absolute;
  z-index: 20;
  top: clamp(20px, 3.2vh, 34px);
  right: clamp(22px, 3.2vw, 52px);
  left: clamp(22px, 3.2vw, 52px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 248, 236, 0.68);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  pointer-events: none;
}

.brand-story__topbar::after {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--purple));
  content: "";
  opacity: 0.75;
  transform: scaleX(var(--story-progress));
  transform-origin: left center;
}

.brand-story__counter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.brand-story__counter strong,
.brand-story__counter span {
  font: inherit;
}

.brand-story__counter strong {
  color: var(--story-cream);
}

.brand-story__counter i {
  width: 24px;
  height: 1px;
  background: currentColor;
}

.brand-story__viewport {
  position: absolute;
  z-index: 1;
  inset: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: none;
}

.brand-story__viewport::-webkit-scrollbar {
  display: none;
}

.brand-story.is-story-enhanced .brand-story__viewport {
  overflow: hidden;
}

.brand-story__track {
  position: relative;
  display: flex;
  width: max-content;
  min-width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transform-origin: left center;
  will-change: transform;
}

.story-panel {
  --panel-width: 100vw;
  --panel-focus: 0;
  position: relative;
  width: var(--panel-width);
  height: 100%;
  flex: 0 0 var(--panel-width);
  overflow: hidden;
}

.story-panel--opening {
  --panel-width: 125vw;
}

.story-panel--spark,
.story-panel--brew,
.story-panel--pilot {
  --panel-width: 105vw;
}

.story-panel--trio {
  --panel-width: 125vw;
}

.story-panel--now {
  --panel-width: 100vw;
}

[data-story-float] {
  --story-float-x: 0px;
  --story-float-y: 0px;
  --story-float-rotate: 0deg;
  transform: translate3d(var(--story-float-x), var(--story-float-y), 0)
    rotate(var(--story-float-rotate));
  transform-origin: center;
  will-change: transform;
}

.story-symbol {
  --symbol-bg: var(--story-cream);
  --symbol-tilt: 0deg;
  position: absolute;
  z-index: 9;
  width: clamp(86px, 7vw, 124px);
  aspect-ratio: 1;
  padding: 8px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--symbol-bg);
  box-shadow: 7px 8px 0 var(--ink), 0 20px 45px rgba(0, 0, 0, 0.28);
}

.story-symbol::before {
  position: absolute;
  inset: -8px;
  border: 1px dashed color-mix(in srgb, var(--symbol-bg) 72%, white);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.story-symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.76;
  transform: rotate(var(--symbol-tilt)) scale(0.9);
  transition: opacity 220ms ease, transform 320ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.story-panel.is-current .story-symbol img {
  opacity: 1;
  transform: rotate(var(--symbol-tilt)) scale(1);
}

.story-symbol--compass {
  --symbol-bg: #fff1d7;
  --symbol-tilt: -5deg;
  top: 8%;
  left: 57vw;
}

.story-symbol--heat {
  --symbol-bg: #ffd8cd;
  --symbol-tilt: 4deg;
  top: 8%;
  left: 79vw;
  width: clamp(82px, 6.2vw, 112px);
}

.story-symbol--first-three {
  --symbol-bg: #fff3e8;
  --symbol-tilt: -4deg;
  bottom: 18%;
  left: 39vw;
  width: clamp(96px, 7.6vw, 136px);
}

.story-symbol--formulation {
  --symbol-bg: #dceeff;
  --symbol-tilt: 5deg;
  bottom: 18%;
  left: 45vw;
}

.story-symbol--notes {
  --symbol-bg: #f6fbff;
  --symbol-tilt: -5deg;
  bottom: 18%;
  left: 65vw;
  width: clamp(82px, 6.4vw, 114px);
}

.story-symbol--pilot {
  --symbol-bg: #f0e6ff;
  --symbol-tilt: 4deg;
  top: 56%;
  left: 34vw;
  width: clamp(92px, 7.2vw, 128px);
}

.story-symbol--together {
  --symbol-bg: #ffd8cd;
  --symbol-tilt: -4deg;
  right: 49vw;
  bottom: 16%;
  width: clamp(96px, 7.6vw, 136px);
}

.brand-story .story-symbol {
  --symbol-bg: #fff;
}

.story-loose-icon {
  position: absolute;
  z-index: 9;
  display: grid;
  width: clamp(78px, 6.4vw, 112px);
  aspect-ratio: 1;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  background: #fff;
}

.story-loose-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-loose-icon--promise {
  bottom: 18%;
  left: 9vw;
  transform: rotate(-5deg);
}

.story-loose-icon--three {
  top: 57%;
  left: 29vw;
  transform: rotate(-6deg);
}

.story-loose-icon--retail {
  top: 12%;
  left: 91vw;
  transform: rotate(5deg);
}

.story-loose-icon--buddy {
  bottom: 13%;
  left: 8vw;
  transform: rotate(-4deg);
}

.story-opening__title {
  position: absolute;
  z-index: 6;
  top: 12%;
  left: 5vw;
  width: 34vw;
}

.story-opening__title > p {
  margin: 0 0 18px 8px;
  color: var(--orange);
  font-size: clamp(10px, 0.85vw, 14px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-opening__title h2 {
  margin: 0;
  color: var(--story-cream);
  font-family: inherit;
  font-size: clamp(78px, 8.6vw, 154px);
  font-weight: 900;
  letter-spacing: -0.045em;
  line-height: 0.76;
  text-transform: uppercase;
}

.story-opening__title h2 span {
  display: block;
}

.story-opening__title h2 span:last-child {
  margin-left: 4vw;
}

.story-photo {
  position: absolute;
  z-index: 2;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 248, 236, 0.24);
  border-radius: clamp(22px, 2.2vw, 38px);
  background: #12213a;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.28);
}

.story-photo::after {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

.story-photo > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 13px 16px;
  border-radius: 14px;
  background: rgba(1, 22, 53, 0.88);
  color: white;
  backdrop-filter: blur(12px);
}

.story-photo figcaption span,
.story-photo figcaption strong {
  display: block;
}

.story-photo figcaption span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.story-photo figcaption strong {
  font-size: 11px;
  line-height: 1.2;
  text-align: right;
}

.story-photo--travel {
  top: 15%;
  left: 28vw;
  width: 34vw;
  height: 55%;
}

.story-photo--peace-sign {
  top: 57%;
  left: 72vw;
  width: 19vw;
  height: 30%;
  border-radius: clamp(18px, 1.8vw, 28px);
}

.story-photo--peace-sign > img {
  object-position: center 42%;
}

.story-photo--children-circle {
  top: 27%;
  left: 101vw;
  width: 20vw;
  height: 44%;
  border-radius: clamp(18px, 1.8vw, 28px);
}

.story-photo--children-circle > img {
  object-position: center 48%;
}

.story-photo--travel figcaption {
  background: rgba(255, 79, 24, 0.9);
}

.story-photo--passenger {
  z-index: 5;
  top: 54%;
  left: 34vw;
  width: 18vw;
  height: 26%;
  border-radius: clamp(18px, 1.8vw, 28px);
}

.story-photo--passenger > img {
  object-position: center 62%;
}

.story-opening__manifesto {
  position: absolute;
  z-index: 3;
  top: 28%;
  left: 66vw;
  width: 31vw;
}

.story-kicker {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.story-opening__manifesto > p:last-child {
  margin: 0;
  font-family: inherit;
  font-size: clamp(34px, 3.5vw, 66px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1;
}

.story-mini-lineup {
  position: absolute;
  z-index: 4;
  top: 14%;
  left: 103vw;
  display: grid;
  width: 18vw;
  min-width: 260px;
  height: 33%;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 5px;
  padding: 34px 20px 18px;
  overflow: hidden;
  border-radius: 26px;
  background: var(--story-soft);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.story-mini-lineup img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 120px;
  object-fit: contain;
}

.story-mini-lineup .story-mini-lineup__icon {
  position: absolute;
  z-index: 0;
  top: 18%;
  left: 50%;
  width: 44%;
  height: 44%;
  min-height: 0;
  opacity: 0.11;
  transform: translateX(-50%);
}

.story-mini-lineup > img:not(.story-mini-lineup__icon),
.story-mini-lineup > span {
  position: relative;
  z-index: 1;
}

.story-mini-lineup span {
  position: absolute;
  top: 15px;
  color: var(--ink);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.story-mini-lineup span:nth-of-type(1) {
  left: 15%;
  color: var(--orange);
}

.story-mini-lineup span:nth-of-type(2) {
  left: 48%;
  color: var(--blue);
}

.story-mini-lineup span:nth-of-type(3) {
  right: 12%;
  color: var(--purple);
}

.story-sticker {
  position: absolute;
  z-index: 6;
  display: grid;
  place-items: center;
  border: 2px solid currentColor;
  background: var(--story-cream);
  color: var(--ink);
  font-family: inherit;
  font-weight: 900;
  line-height: 1.02;
  text-align: center;
  box-shadow: 8px 8px 0 currentColor;
  transform: rotate(-4deg);
}

.story-sticker--promise {
  bottom: 18%;
  left: 8vw;
  width: 182px;
  height: 112px;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  color: var(--orange);
  font-size: 16px;
  text-align: left;
}

.story-sticker--promise img,
.story-sticker--three img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.story-sticker--promise span,
.story-sticker--three span {
  display: block;
}

.story-orbit {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 248, 236, 0.62);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.story-orbit--opening {
  bottom: 19%;
  left: 68vw;
}

.story-orbit i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.story-orbit i:last-of-type {
  background: var(--purple);
}

.story-copy {
  position: absolute;
  z-index: 5;
}

.story-copy h3,
.story-now__copy h3 {
  margin: 0;
  color: var(--story-cream);
  font-family: inherit;
  font-size: clamp(50px, 5.1vw, 92px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.86;
  text-transform: uppercase;
}

.story-copy > p:last-child,
.story-now__copy > p:not(.story-chapter-pill) {
  max-width: 560px;
  margin: 25px 0 0;
  color: rgba(255, 248, 236, 0.72);
  font-size: clamp(13px, 1.02vw, 17px);
  font-weight: 570;
  line-height: 1.55;
}

.story-chapter-pill {
  display: inline-flex;
  min-height: 39px;
  align-items: center;
  margin: 0 0 23px;
  padding: 0 19px;
  border-radius: 999px;
  background: var(--orange);
  color: white;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  box-shadow: 0 8px 24px rgba(255, 79, 24, 0.24);
}

.story-chapter-pill--blue {
  background: var(--blue);
  box-shadow: 0 8px 24px rgba(9, 107, 207, 0.24);
}

.story-chapter-pill--purple {
  background: var(--purple);
  box-shadow: 0 8px 24px rgba(75, 35, 136, 0.28);
}

.story-copy--spark {
  top: 22%;
  left: 7vw;
  width: 31vw;
}

.story-photo--ingredients {
  top: 14%;
  left: 42vw;
  width: 38vw;
  height: 52%;
}

.story-photo--ingredients > img {
  object-position: center 34%;
}

.story-photo--ingredients figcaption {
  background: rgba(255, 79, 24, 0.9);
}

.story-quote {
  position: absolute;
  z-index: 5;
  margin: 0;
  padding: 25px 28px;
  border-radius: 21px;
  background: var(--story-soft);
  color: var(--ink);
  font-family: inherit;
  font-size: clamp(19px, 1.55vw, 29px);
  font-weight: 900;
  line-height: 1.12;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.story-quote img {
  display: block;
  width: clamp(54px, 5vw, 76px);
  flex: 0 0 auto;
  object-fit: contain;
}

.story-quote span {
  display: block;
}

.story-quote--spark {
  top: 60%;
  left: 70vw;
  width: 28vw;
  min-width: 330px;
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  transform: none;
}

.story-product-medallion {
  position: absolute;
  z-index: 7;
  display: grid;
  width: clamp(130px, 11vw, 190px);
  aspect-ratio: 1;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 24px 65px rgba(0, 0, 0, 0.32);
}

.story-product-medallion::before,
.story-product-medallion::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 50%;
  content: "";
}

.story-product-medallion::before {
  inset: 8px;
}

.story-product-medallion::after {
  inset: -8px;
  border-style: dashed;
  opacity: 0.5;
}

.story-product-medallion img {
  position: relative;
  z-index: 1;
  display: block;
  width: 48%;
  height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 14px 12px rgba(0, 0, 0, 0.3));
}

.story-product-medallion > span {
  position: absolute;
  z-index: 2;
  top: -28px;
  left: 50%;
  color: var(--story-cream);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.story-product-medallion--energy {
  --accent: var(--orange);
  top: 58%;
  left: 52vw;
}

.story-product-medallion--daily {
  --accent: var(--blue);
  top: 18%;
  left: 87vw;
}

.story-flavor-chips {
  position: absolute;
  z-index: 5;
  bottom: 18%;
  left: 7vw;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.story-flavor-chips span {
  padding: 9px 13px;
  border: 1px solid rgba(255, 248, 236, 0.3);
  border-radius: 999px;
  color: rgba(255, 248, 236, 0.7);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.story-citrus-cutout {
  position: absolute;
  z-index: 4;
  top: 14%;
  left: 82vw;
  width: 26vw;
  height: 36%;
  overflow: hidden;
  pointer-events: none;
}

.story-citrus-cutout img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.25));
}

.story-photo--lab {
  top: 16%;
  left: 6vw;
  width: 38vw;
  height: 49%;
}

.story-photo--lab figcaption {
  background: rgba(9, 107, 207, 0.88);
}

.story-photo--formulation-line {
  top: 29%;
  left: 84vw;
  width: 20vw;
  height: 47%;
  border-radius: clamp(18px, 1.8vw, 28px);
}

.story-photo--formulation-line > img {
  object-position: center;
}

.story-copy--brew {
  top: 18%;
  left: 49vw;
  width: 32vw;
}

.story-recipe-card {
  position: absolute;
  z-index: 6;
  top: 60%;
  left: 74vw;
  width: 24vw;
  min-width: 320px;
  padding: 23px 24px;
  border-radius: 18px;
  background:
    repeating-linear-gradient(transparent 0 31px, rgba(1, 22, 53, 0.11) 31px 32px),
    #e5f2ff;
  color: var(--ink);
  box-shadow: 10px 12px 0 var(--blue), 0 24px 70px rgba(0, 0, 0, 0.25);
  transform: rotate(-2deg);
}

.story-recipe-card__icon {
  position: absolute;
  top: 12px;
  right: 14px;
  display: block;
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.story-recipe-card > p {
  margin: 0 62px 13px 0;
  color: var(--blue);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.story-recipe-card > span {
  display: flex;
  min-height: 32px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: inherit;
  font-size: 12px;
}

.story-recipe-card s {
  color: rgba(1, 22, 53, 0.46);
}

.story-recipe-card strong {
  font-size: 13px;
}

.story-bubble-field {
  position: absolute;
  top: 66%;
  left: 43vw;
  width: 22vw;
  height: 15%;
  pointer-events: none;
}

.story-bubble-field i {
  position: absolute;
  width: 11px;
  height: 11px;
  border: 1px solid rgba(255, 248, 236, 0.55);
  border-radius: 50%;
}

.story-bubble-field i:nth-child(1) { top: 50%; left: 4%; }
.story-bubble-field i:nth-child(2) { top: 12%; left: 21%; width: 18px; height: 18px; }
.story-bubble-field i:nth-child(3) { top: 65%; left: 39%; width: 7px; height: 7px; }
.story-bubble-field i:nth-child(4) { top: 20%; left: 55%; width: 25px; height: 25px; }
.story-bubble-field i:nth-child(5) { top: 58%; left: 73%; width: 15px; height: 15px; }
.story-bubble-field i:nth-child(6) { top: 5%; left: 91%; width: 8px; height: 8px; }

.story-sticker--again {
  bottom: 17%;
  left: 30vw;
  width: 112px;
  height: 86px;
  border-radius: 50%;
  color: var(--blue);
  font-size: 18px;
  transform: rotate(8deg);
}

.story-copy--trio {
  top: 17%;
  left: 5vw;
  width: 34vw;
}

.story-can-system {
  position: absolute;
  z-index: 4;
  top: 12%;
  left: 43vw;
  display: grid;
  width: 76vw;
  height: 63%;
  grid-template-columns: repeat(3, 1fr);
  align-items: end;
  gap: 2vw;
}

.story-can-card {
  position: relative;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) auto;
  color: var(--story-cream);
}

.story-can-card::before {
  position: absolute;
  z-index: -1;
  top: 12%;
  left: 50%;
  width: min(18vw, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--accent);
  content: "";
  box-shadow: 0 0 0 14px color-mix(in srgb, var(--accent) 18%, transparent);
  transform: translateX(-50%);
}

.story-can-card::after {
  position: absolute;
  z-index: -1;
  top: 8%;
  left: 50%;
  width: min(21vw, 320px);
  aspect-ratio: 1;
  border: 1px dashed color-mix(in srgb, var(--accent) 75%, white);
  border-radius: 50%;
  content: "";
  transform: translateX(-50%);
}

.story-can-card--energy { --accent: var(--orange); }
.story-can-card--daily { --accent: var(--blue); }
.story-can-card--nightly { --accent: var(--purple); }

.story-can-card > img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  filter: drop-shadow(0 24px 22px rgba(0, 0, 0, 0.34));
}

.story-can-card__time {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  padding: 8px 13px;
  border-radius: 999px;
  background: var(--story-cream);
  color: var(--accent);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.story-can-card__symbol {
  position: absolute;
  z-index: 4;
  top: 15%;
  right: 1%;
  display: grid;
  width: clamp(58px, 4.8vw, 82px);
  aspect-ratio: 1;
  place-items: center;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 5px 5px 0 var(--ink), 0 13px 28px rgba(0, 0, 0, 0.24);
  transform: rotate(4deg);
}

.story-can-card:nth-child(2) .story-can-card__symbol {
  top: 22%;
  right: auto;
  left: 0;
  transform: rotate(-5deg);
}

.story-can-card:nth-child(3) .story-can-card__symbol {
  top: 17%;
  transform: rotate(5deg);
}

.story-can-card__symbol img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-can-card > p {
  width: 90%;
  margin: -3px auto 0;
  padding-top: 11px;
  border-top: 1px solid color-mix(in srgb, var(--accent) 75%, white);
  text-align: center;
}

.story-can-card > p strong,
.story-can-card > p span {
  display: block;
}

.story-can-card > p strong {
  color: var(--accent);
  font-family: inherit;
  font-size: clamp(24px, 2vw, 38px);
  text-transform: uppercase;
}

.story-can-card > p span {
  margin-top: 4px;
  color: rgba(255, 248, 236, 0.58);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.story-time-strip {
  position: absolute;
  z-index: 6;
  bottom: 17%;
  left: 7vw;
  display: flex;
  width: 31vw;
  align-items: center;
  gap: 12px;
  color: rgba(255, 248, 236, 0.55);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-time-strip i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--orange), var(--blue));
}

.story-time-strip i:last-of-type {
  background: linear-gradient(90deg, var(--blue), var(--purple));
}

.story-sticker--three {
  top: 57%;
  left: 28vw;
  width: 168px;
  height: 104px;
  grid-template-columns: 58px 1fr;
  gap: 8px;
  padding: 12px;
  border-radius: 24px;
  color: var(--purple);
  font-size: 14px;
  text-align: left;
  transform: rotate(-6deg);
}

.story-copy--pilot {
  top: 18%;
  left: 6vw;
  width: 31vw;
}

.story-photo--pilot-line {
  top: 14%;
  left: 39vw;
  width: 37vw;
  height: 47%;
}

.story-photo--pilot-line > img {
  filter: contrast(1.04);
}

.story-pilot-products {
  position: absolute;
  z-index: 2;
  inset: 7% 10% 1%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 1%;
  pointer-events: none;
}

.story-pilot-products img {
  display: block;
  width: 30%;
  height: 77%;
  object-fit: contain;
  filter: drop-shadow(0 18px 13px rgba(0, 0, 0, 0.48));
}

.story-pilot-products img:nth-child(1) {
  transform: rotate(-3deg) translateY(6%);
}

.story-pilot-products img:nth-child(2) {
  z-index: 2;
  height: 84%;
}

.story-pilot-products img:nth-child(3) {
  transform: rotate(3deg) translateY(6%);
}

.story-photo--pilot-line figcaption {
  background: rgba(75, 35, 136, 0.88);
}

.story-photo--samples {
  top: 18%;
  left: 47vw;
  width: 46vw;
  height: 58%;
  border-radius: clamp(20px, 2vw, 32px);
}

.story-photo--samples figcaption {
  right: 10%;
  bottom: 8%;
  left: 10%;
  background: rgba(255, 79, 24, 0.9);
}

.story-photo--retail {
  z-index: 3;
  bottom: 17%;
  left: 4vw;
  width: 28vw;
  height: 25%;
  border-radius: clamp(18px, 1.8vw, 28px);
}

.story-photo--retail > img {
  object-position: center 46%;
}

.story-retail-products {
  position: absolute;
  z-index: 2;
  right: 21%;
  bottom: 3%;
  left: 21%;
  display: flex;
  height: 76%;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  pointer-events: none;
}

.story-retail-products::before {
  position: absolute;
  z-index: -1;
  right: -12%;
  bottom: -4%;
  left: -12%;
  height: 25%;
  border-radius: 50%;
  background: rgba(1, 22, 53, 0.4);
  filter: blur(12px);
  content: "";
}

.story-retail-products img {
  display: block;
  width: 35%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 9px rgba(0, 0, 0, 0.52));
}

.story-retail-products img:nth-child(1) {
  transform: rotate(-4deg) translateY(5%);
}

.story-retail-products img:nth-child(2) {
  z-index: 2;
}

.story-retail-products img:nth-child(3) {
  transform: rotate(4deg) translateY(5%);
}

.story-retail-badge,
.story-photo__icon {
  position: absolute;
  z-index: 5;
  display: grid;
  width: clamp(54px, 5vw, 76px);
  aspect-ratio: 1;
  place-items: center;
  padding: 5px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: #fff;
  box-shadow: 5px 5px 0 rgba(1, 22, 53, 0.78), 0 12px 24px rgba(0, 0, 0, 0.28);
}

.story-retail-badge {
  top: 10px;
  right: 10px;
}

.story-photo__icon--passenger {
  right: 10px;
  bottom: 10px;
}

.story-retail-badge img,
.story-photo__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.story-batch-stamp {
  position: absolute;
  z-index: 7;
  top: 60%;
  left: 17vw;
  display: grid;
  width: 155px;
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 4px;
  border: 3px double var(--orange);
  border-radius: 50%;
  color: var(--orange);
  text-align: center;
  text-transform: uppercase;
  transform: rotate(8deg);
}

.story-batch-stamp span,
.story-batch-stamp i {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.story-batch-stamp strong {
  max-width: 110px;
  font-family: inherit;
  font-size: 22px;
  line-height: 0.95;
}

.story-batch-stamp i {
  font-style: normal;
}

.story-measurements {
  position: absolute;
  z-index: 2;
  bottom: 17%;
  left: 42vw;
  display: flex;
  width: 44vw;
  height: 24px;
  align-items: end;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 248, 236, 0.35);
}

.story-measurements i {
  width: 1px;
  height: 10px;
  background: rgba(255, 248, 236, 0.45);
}

.story-measurements i:nth-child(3n) {
  height: 19px;
}

.story-now__copy {
  position: absolute;
  z-index: 7;
  top: 18%;
  left: 6vw;
  width: 45vw;
}

.story-now__copy h3 {
  font-size: clamp(57px, 6vw, 108px);
}

.story-chapter-pill--now {
  background: var(--story-cream);
  color: var(--ink);
  box-shadow: none;
}

.story-now__button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
  padding: 0 26px;
  border: 2px solid var(--story-cream);
  border-radius: 999px;
  background: var(--story-cream);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.story-now__button span {
  font-size: 19px;
}

.story-now__button:hover,
.story-now__button:focus-visible {
  background: transparent;
  color: var(--story-cream);
  transform: translateY(-2px);
}

.story-now__cans {
  position: absolute;
  z-index: 4;
  top: 10%;
  left: 52vw;
  width: 45vw;
  height: 67%;
}

.story-now__halo {
  position: absolute;
  top: 17%;
  width: 18vw;
  max-width: 300px;
  aspect-ratio: 1;
  border-radius: 50%;
  opacity: 0.9;
}

.story-now__halo::after {
  position: absolute;
  inset: -12px;
  border: 1px dashed rgba(255, 248, 236, 0.42);
  border-radius: inherit;
  content: "";
}

.story-now__halo--orange { left: 0; background: var(--orange); }
.story-now__halo--blue { left: 32%; background: var(--blue); }
.story-now__halo--purple { right: 0; background: var(--purple); }

.story-now__can {
  position: absolute;
  z-index: 2;
  top: 4%;
  display: block;
  width: 33%;
  height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 28px 24px rgba(0, 0, 0, 0.36));
}

.story-now__can--energy {
  left: 0;
  transform: rotate(-8deg) translateY(6%);
}

.story-now__can--daily {
  z-index: 3;
  left: 33%;
}

.story-now__can--nightly {
  right: 0;
  transform: rotate(8deg) translateY(6%);
}

.story-now__promise {
  position: absolute;
  z-index: 7;
  bottom: 16%;
  left: 7vw;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 13px 19px 13px 13px;
  border-radius: 20px;
  background: var(--story-soft);
  color: var(--ink);
  transform: rotate(-2deg);
}

.story-now__promise img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.story-now__promise span {
  font-family: inherit;
  font-size: 14px;
  line-height: 1.05;
}

.story-now__promise strong {
  color: var(--orange);
  font-size: 18px;
}

.story-timeline {
  position: absolute;
  z-index: 15;
  right: 0;
  bottom: 18px;
  left: 0;
  display: flex;
  height: 96px;
  pointer-events: none;
}

.story-timeline::after {
  position: absolute;
  top: 25px;
  right: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #fff;
  content: "";
  transform: translate(50%, -50%);
}

.story-timeline__line {
  position: absolute;
  top: 24px;
  right: 0;
  left: 0;
  height: 5px;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
}

.story-timeline__line > span {
  position: absolute;
  top: -1px;
  left: 0;
  width: var(--story-line-fill);
  max-width: 100%;
  height: 5px;
  background: #fff;
}

.story-timeline__cell {
  position: relative;
  height: 100%;
  flex: 0 0 var(--timeline-width);
}

.story-timeline__cell--opening { --timeline-width: 125vw; }
.story-timeline__cell--spark,
.story-timeline__cell--brew,
.story-timeline__cell--pilot { --timeline-width: 105vw; }
.story-timeline__cell--trio { --timeline-width: 125vw; }
.story-timeline__cell--now { --timeline-width: 100vw; }

.story-timeline__node {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  display: grid;
  width: 51px;
  height: 51px;
  place-items: center;
  overflow: hidden;
  border: 4px solid #fff;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%) scale(0.9);
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.story-timeline__cell.is-active .story-timeline__node {
  box-shadow: 0 0 0 6px rgba(255, 248, 236, 0.16), 0 8px 20px rgba(0, 0, 0, 0.32);
  transform: translateX(-50%) scale(1.1);
}

.story-timeline__node img {
  display: block;
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.story-timeline__node--photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-timeline__cell small {
  position: absolute;
  top: 62px;
  left: 50%;
  color: rgba(255, 248, 236, 0.63);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  white-space: nowrap;
  transform: translateX(-50%);
}

.story-timeline__cell.is-active small {
  color: var(--story-cream);
}

.brand-story__scroll-cue {
  position: absolute;
  z-index: 21;
  right: 3.2vw;
  bottom: 128px;
  display: flex;
  align-items: center;
  gap: 13px;
  margin: 0;
  color: rgba(255, 248, 236, 0.62);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: opacity 180ms ease;
  pointer-events: none;
}

.brand-story__scroll-cue i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(255, 248, 236, 0.45);
  border-radius: 50%;
  color: var(--story-cream);
  font-size: 17px;
  font-style: normal;
}

.brand-story__cue-mobile {
  display: none;
}

.buddy-bundle {
  position: relative;
  padding: clamp(72px, 8vw, 132px) clamp(24px, 5.3vw, 86px) clamp(54px, 6vw, 92px);
  overflow: hidden;
  background:
    radial-gradient(circle at 87% 8%, rgba(255, 79, 24, 0.1), transparent 23%),
    linear-gradient(135deg, #fffaf4 0%, #fff 58%);
  color: var(--ink);
}

.buddy-bundle::before {
  display: none;
  content: none;
}

.buddy-bundle::after {
  display: none;
  content: none;
}

.buddy-bundle__layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 1500px);
  min-height: 590px;
  grid-template-columns: minmax(360px, 0.83fr) minmax(540px, 1.17fr);
  align-items: center;
  gap: clamp(50px, 7vw, 120px);
  margin: 0 auto;
}

.buddy-bundle__copy {
  max-width: 650px;
}

.buddy-bundle__copy h2 {
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(76px, 7vw, 126px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.82;
  text-transform: uppercase;
}

.buddy-bundle__lead {
  max-width: 560px;
  margin: 32px 0 0;
  color: rgba(1, 22, 53, 0.67);
  font-size: clamp(16px, 1.25vw, 21px);
  font-weight: 560;
  line-height: 1.52;
}

.buddy-bundle__button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-top: 35px;
  padding: 0 30px;
  border: 2px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: white;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    background 160ms ease,
    color 160ms ease,
    transform 160ms ease;
}

.buddy-bundle__button span {
  font-size: 20px;
  line-height: 1;
  transition: transform 160ms ease;
}

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

.buddy-bundle__button:hover span,
.buddy-bundle__button:focus-visible span {
  transform: translateX(4px);
}

.buddy-bundle__note {
  margin: 13px 0 0 10px;
  color: rgba(1, 22, 53, 0.45);
  font-size: 11px;
  font-weight: 700;
}

.buddy-bundle__visual {
  position: relative;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(1, 22, 53, 0.1);
  border-radius: 32px;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.9), transparent 28%),
    radial-gradient(circle at 88% 78%, rgba(75, 35, 136, 0.13), transparent 32%),
    linear-gradient(145deg, #e8f3ff 0%, #f8f3ef 56%, #f3eaff 100%);
  perspective: 1200px;
  box-shadow: 0 24px 55px rgba(1, 22, 53, 0.1);
}

.buddy-bundle__visual--collage {
  width: min(100%, 580px);
  min-height: 0;
  aspect-ratio: 1;
  justify-self: center;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  perspective: none;
  box-shadow: none;
}

.buddy-bundle__visual.buddy-bundle__visual--collage::before,
.buddy-bundle__visual.buddy-bundle__visual--collage::after {
  display: none;
  content: none;
}

.buddy-bundle__collage {
  position: relative;
  width: 100%;
  height: 100%;
}

.buddy-bundle__photo {
  position: absolute;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1;
  border: 5px solid white;
  background: white;
  box-shadow:
    0 18px 38px rgba(1, 22, 53, 0.16),
    0 3px 8px rgba(1, 22, 53, 0.09);
}

.buddy-bundle__photo--hero {
  top: 50%;
  left: 0;
  z-index: 2;
  width: 66%;
  border-radius: 22px;
  transform: translateY(-50%) rotate(-2deg);
}

.buddy-bundle__photo--detail {
  top: 3%;
  right: 1%;
  z-index: 1;
  width: 42%;
  border-radius: 18px;
  transform: rotate(2.5deg);
}

.buddy-bundle__photo--lifestyle {
  right: 0;
  bottom: 3%;
  z-index: 3;
  width: 42%;
  border-radius: 18px;
  transform: rotate(-1.5deg);
}

.buddy-bundle__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.buddy-bundle__visual::before {
  position: absolute;
  top: 10%;
  right: 8%;
  width: 68%;
  height: 62%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.48);
  content: "";
  filter: blur(2px);
  transform: rotate(-8deg);
}

.buddy-bundle__visual::after {
  position: absolute;
  top: 22px;
  right: 24px;
  width: 118px;
  height: 118px;
  border: 1px solid rgba(1, 22, 53, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 14px rgba(255, 255, 255, 0.14),
    0 0 0 28px rgba(255, 255, 255, 0.11);
  content: "";
}

.buddy-bundle__offer {
  position: absolute;
  z-index: 6;
  top: 60px;
  right: 30px;
  display: grid;
  gap: 4px;
  min-width: 132px;
  padding: 14px 17px 13px;
  border: 2px solid var(--ink);
  border-radius: 14px 14px 14px 4px;
  background: var(--ink);
  color: white;
  text-align: center;
  text-transform: uppercase;
  box-shadow: 5px 6px 0 rgba(255, 255, 255, 0.6);
  transform: rotate(4deg);
}

.buddy-bundle__offer strong {
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  color: #fff;
  font-size: clamp(27px, 2.4vw, 37px);
  letter-spacing: 0.01em;
  line-height: 1;
}

.buddy-bundle__offer span {
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.bundle-case {
  --bundle-can-size: clamp(48px, 5.8vw, 78px);
  position: absolute;
  z-index: 2;
  inset: 6% 3% 4%;
}

.bundle-case__back {
  position: absolute;
  z-index: 1;
  top: 13%;
  right: 7%;
  bottom: 10%;
  left: 7%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 16px 22px;
  border: 3px solid #71452d;
  border-radius: 16px 16px 24px 24px;
  background:
    linear-gradient(180deg, rgba(66, 35, 22, 0.2), transparent 17%),
    linear-gradient(145deg, #c98c5d 0%, #a96742 100%);
  color: rgba(1, 22, 53, 0.68);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 7px rgba(255, 231, 199, 0.1),
    0 25px 45px rgba(63, 35, 17, 0.2);
}

.bundle-case__back::before {
  position: absolute;
  z-index: -1;
  top: -10%;
  right: -2%;
  left: -2%;
  height: 19%;
  border: 3px solid #71452d;
  border-radius: 16px 16px 5px 5px;
  background: linear-gradient(180deg, #e0ae7d 0%, #cf9564 100%);
  content: "";
  transform: perspective(700px) rotateX(16deg);
  transform-origin: bottom;
}

.bundle-case__back::after {
  position: absolute;
  top: 10%;
  right: 6%;
  bottom: 12%;
  left: 6%;
  border: 2px solid rgba(75, 40, 25, 0.22);
  border-radius: 12px;
  background: rgba(73, 40, 26, 0.12);
  content: "";
  box-shadow: inset 0 14px 24px rgba(54, 28, 17, 0.18);
}

.bundle-stack {
  position: absolute;
  z-index: 3;
  bottom: 18%;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  filter: drop-shadow(0 14px 10px rgba(37, 20, 12, 0.22));
  transform: translateX(-50%);
}

.bundle-stack__row {
  display: flex;
  justify-content: center;
  gap: clamp(3px, 0.45vw, 7px);
}

.bundle-stack__row + .bundle-stack__row {
  margin-top: calc(var(--bundle-can-size) * -0.12);
}

.bundle-can {
  --can-color: var(--blue);
  position: relative;
  display: block;
  width: var(--bundle-can-size);
  aspect-ratio: 1;
  flex: 0 0 var(--bundle-can-size);
  border: clamp(2px, 0.2vw, 3px) solid #e4e5e4;
  border-radius: 50%;
  background:
    radial-gradient(circle at 34% 25%, rgba(255, 255, 255, 0.95) 0 4%, transparent 5%),
    radial-gradient(circle at 50% 50%, transparent 0 47%, rgba(64, 69, 74, 0.18) 48% 51%, transparent 52%),
    repeating-radial-gradient(circle at 50% 50%, #c4c7c9 0 1px, #f1f2f1 2px 4px, #b4b8bb 5px 6px);
  box-shadow:
    0 0 0 5px var(--can-color),
    0 0 0 7px rgba(1, 22, 53, 0.32),
    6px 10px 13px rgba(31, 20, 15, 0.26),
    inset 0 -5px 7px rgba(1, 22, 53, 0.2);
}

.bundle-can::before {
  position: absolute;
  z-index: 1;
  top: 28%;
  left: 24%;
  width: 52%;
  height: 32%;
  border: 2px solid rgba(94, 98, 102, 0.82);
  border-radius: 52% 48% 46% 54%;
  background: linear-gradient(145deg, #f7f7f5 0%, #aeb2b5 100%);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.88),
    0 2px 2px rgba(1, 22, 53, 0.14);
  content: "";
  transform: rotate(-14deg);
}

.bundle-can::after {
  position: absolute;
  z-index: 2;
  top: 38%;
  left: 43%;
  width: 18%;
  aspect-ratio: 1;
  border: 2px solid rgba(78, 82, 86, 0.72);
  border-radius: 50%;
  background: #d6d8d8;
  content: "";
  box-shadow: inset 0 2px 2px rgba(255, 255, 255, 0.7);
}

.bundle-can--energy {
  --can-color: var(--orange);
}

.bundle-can--daily {
  --can-color: var(--blue);
}

.bundle-can--nightly {
  --can-color: var(--purple);
}

.bundle-stack__row:nth-child(2n) .bundle-can:nth-child(2n),
.bundle-stack__row:nth-child(2n + 1) .bundle-can:nth-child(2n + 1) {
  transform: rotate(8deg);
}

.bundle-stack__row:nth-child(2n) .bundle-can:nth-child(2n + 1),
.bundle-stack__row:nth-child(2n + 1) .bundle-can:nth-child(2n) {
  transform: rotate(-7deg);
}

.bundle-case__side {
  position: absolute;
  z-index: 4;
  bottom: 8%;
  width: 18%;
  height: 70%;
  background: linear-gradient(145deg, #dea979, #bd7d50);
  filter:
    drop-shadow(0 0 2px rgba(113, 69, 45, 0.82))
    drop-shadow(0 4px 0 #71452d);
}

.bundle-case__side--left {
  left: 2.5%;
  clip-path: polygon(19% 3%, 100% 12%, 100% 100%, 0 88%);
}

.bundle-case__side--right {
  right: 2.5%;
  clip-path: polygon(0 12%, 81% 3%, 100% 88%, 0 100%);
}

.bundle-case__front {
  position: absolute;
  z-index: 6;
  right: 4%;
  bottom: 1%;
  left: 4%;
  display: flex;
  height: 19%;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 30px 22px;
  border: 3px solid #71452d;
  border-radius: 12px 12px 18px 18px;
  background:
    linear-gradient(90deg, transparent 49.4%, rgba(92, 48, 23, 0.13) 49.5% 50.5%, transparent 50.6%),
    linear-gradient(145deg, #dca673 0%, #bf8051 100%);
  box-shadow:
    inset 0 0 0 7px rgba(255, 255, 255, 0.08),
    0 22px 28px rgba(63, 35, 17, 0.2);
}

.bundle-case__front img {
  display: block;
  width: min(45%, 210px);
  height: auto;
  filter: brightness(0) saturate(100%);
}

.bundle-case__front > span {
  color: rgba(1, 22, 53, 0.72);
  font-size: clamp(8px, 0.75vw, 10px);
  font-weight: 900;
  letter-spacing: 0.11em;
  text-align: right;
  text-transform: uppercase;
}

.bundle-case__stripes {
  position: absolute;
  right: 7%;
  bottom: 10px;
  left: 7%;
  display: grid;
  height: 5px;
  grid-template-columns: repeat(3, 1fr);
  gap: 5px;
}

.bundle-case__stripes i:nth-child(1) {
  background: var(--orange);
}

.bundle-case__stripes i:nth-child(2) {
  background: var(--blue);
}

.bundle-case__stripes i:nth-child(3) {
  background: var(--purple);
}

.bundle-roller {
  position: absolute;
  z-index: 5;
  top: 18.5%;
  left: calc(50% - (var(--bundle-can-size) / 2));
  display: block;
  width: var(--bundle-can-size);
  aspect-ratio: 1;
  animation: bundle-can-tumble 8.4s cubic-bezier(0.45, 0.05, 0.4, 1) 2.3s infinite both;
  transform-origin: 50% 50%;
}

.bundle-roller .bundle-can {
  width: 100%;
  height: 100%;
  flex-basis: 100%;
}

@keyframes bundle-can-tumble {
  0%,
  22% {
    visibility: visible;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  31% {
    visibility: visible;
    transform: translate(55%, 82%) rotate(105deg) scale(1.01);
  }

  43% {
    visibility: visible;
    transform: translate(108%, 165%) rotate(235deg) scale(0.99);
  }

  56% {
    visibility: visible;
    transform: translate(162%, 248%) rotate(385deg) scale(1.01);
  }

  69% {
    visibility: visible;
    transform: translate(215%, 330%) rotate(545deg) scale(1);
  }

  81% {
    visibility: visible;
    transform: translate(270%, 414%) rotate(690deg) scale(0.98);
  }

  87% {
    visibility: visible;
    transform: translate(278%, 395%) rotate(735deg) scale(0.98);
  }

  92% {
    visibility: hidden;
    transform: translate(285%, 430%) rotate(810deg) scale(0.92);
  }

  93%,
  99% {
    visibility: hidden;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }

  100% {
    visibility: visible;
    transform: translate(0, 0) rotate(0deg) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .bundle-roller {
    animation: none;
  }

}

.buddy-bundle__details {
  position: relative;
  z-index: 2;
  display: grid;
  width: min(100%, 1500px);
  grid-template-columns: repeat(3, 1fr);
  margin: 42px auto 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(1, 22, 53, 0.16);
}

.buddy-bundle__details > div {
  padding: 0 clamp(20px, 3.3vw, 54px);
}

.buddy-bundle__details > div:first-child {
  padding-left: 0;
}

.buddy-bundle__details > div + div {
  border-left: 1px solid rgba(1, 22, 53, 0.16);
}

.buddy-bundle__details dt {
  margin: 0;
  line-height: 0;
}

.buddy-bundle__details dt img {
  display: block;
  width: clamp(70px, 7vw, 96px);
  height: clamp(70px, 7vw, 96px);
  object-fit: contain;
}

.buddy-bundle__details dd {
  max-width: 220px;
  margin: 14px 0 0;
  color: rgba(1, 22, 53, 0.58);
  font-size: clamp(12px, 1vw, 14px);
  font-weight: 700;
  line-height: 1.4;
}

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

@media (max-width: 1100px) {
  .buddy-story__copy {
    right: 4vw;
    width: min(32vw, 400px);
  }

  .buddy-story--daily .buddy-story__copy {
    right: 4vw;
  }

  .buddy-story__can-wrap {
    width: min(39vw, 470px);
  }

  .buddy-story__detail-media {
    left: 4vw;
    width: min(26vw, 330px);
  }

  .buddy-specs {
    gap: 44px;
    padding-right: 5vw;
    padding-left: 5vw;
  }

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

  .buddy-specs__metrics > div:nth-child(3) {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(1, 22, 53, 0.1));
  }

  .buddy-specs__metrics > div:nth-child(4) {
    border-top: 1px solid color-mix(in srgb, var(--accent) 22%, rgba(1, 22, 53, 0.1));
  }

  .buddy-bundle {
    padding-right: 34px;
    padding-left: 34px;
  }

  .buddy-bundle__layout {
    min-height: 520px;
    grid-template-columns: minmax(310px, 0.85fr) minmax(440px, 1.15fr);
    gap: 32px;
  }

  .buddy-bundle__visual {
    min-height: 540px;
  }

  .buddy-bundle__visual--collage {
    min-height: 0;
  }
}

@media (max-width: 700px) {
  .buddies__intro {
    min-height: 100svh;
    padding: 52px 18px 72px;
  }

  .buddies__intro h2 {
    font-size: clamp(55px, 17vw, 84px);
  }

  .buddies__can-stack {
    width: auto;
    max-width: calc(100vw - 84px);
    height: min(62svh, 680px);
    margin-top: 28px;
  }

  .buddies__banner {
    top: 12px;
    bottom: 12px;
    width: 32px;
  }

  .buddies__banner--left {
    left: 10px;
  }

  .buddies__banner--right {
    right: 10px;
  }

  .buddies__banner-track {
    gap: 10px;
    padding: 0;
  }

  .buddies__banner span {
    font-size: 8px;
    letter-spacing: 0.1em;
  }

  .buddy-story,
  .buddy-story--daily {
    --can-left: 50%;
  }

  .buddy-story__stage {
    min-height: clamp(720px, 92svh, 800px);
  }

  .buddy-story__sticky {
    height: clamp(720px, 92svh, 800px);
    min-height: clamp(720px, 92svh, 800px);
    background:
      linear-gradient(
        180deg,
        white 0%,
        white 64%,
        color-mix(in srgb, var(--accent) 9%, white) 100%
      );
  }

  .buddy-story__title {
    top: 34px;
    right: -2vw;
    left: -2vw;
    font-size: clamp(55px, var(--title-size-mobile), 86px);
    line-height: 0.88;
  }

  .buddy-story__can-wrap {
    top: 42%;
    width: 60vw;
    height: min(54svh, 480px);
  }

  .buddy-story__can {
    height: min(50svh, 440px);
  }

  .buddy-story__can--open {
    height: min(54svh, 470px);
  }

  .buddy-story__detail-media {
    bottom: 24px;
    left: 18px;
    width: min(32vw, 124px);
    height: 156px;
    border: 3px solid white;
    border-radius: 20px;
    object-fit: cover;
    object-position: center;
    box-shadow: 0 14px 32px rgba(1, 22, 53, 0.14);
  }

  .buddy-story__copy,
  .buddy-story--daily .buddy-story__copy {
    right: 18px;
    bottom: 26px;
    left: auto;
    width: calc(68vw - 56px);
    max-width: 214px;
    padding: 0;
  }

  .buddy-story__copy h4 {
    max-width: none;
    font-size: clamp(19px, 5.6vw, 25px);
    line-height: 1.02;
  }

  .buddy-story__copy > p:not(.buddy-story__eyebrow) {
    margin-top: 10px;
    font-size: clamp(9px, 2.7vw, 11px);
    line-height: 1.42;
  }

  .buddy-story__eyebrow {
    margin-bottom: 7px;
    font-size: 8px;
  }

  .buddy-specs,
  .buddy-specs--reverse {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 28px 24px 38px;
  }

  #nightly-specs {
    margin-top: 0;
  }

  .buddy-specs__label,
  .buddy-specs--reverse .buddy-specs__label {
    width: min(100%, 330px);
  }

  .buddy-specs__visual,
  .buddy-specs--reverse .buddy-specs__visual {
    display: none;
  }

  .nutrition-label {
    padding: 11px 13px 10px;
    box-shadow: 6px 7px 0 color-mix(in srgb, var(--accent) 48%, white);
  }

  .nutrition-label__title {
    margin-top: 4px;
    font-size: 36px;
  }

  .nutrition-label__rule {
    margin: 4px 0;
  }

  .nutrition-label__rule--thick {
    height: 6px;
    margin: 5px 0 4px;
  }

  .nutrition-label__serving {
    font-size: 8px;
  }

  .nutrition-label__calories,
  .nutrition-label__row {
    padding: 3px 0;
  }

  .nutrition-label__calories span {
    font-size: 16px;
  }

  .nutrition-label__calories strong {
    font-size: 30px;
  }

  .nutrition-label__row {
    font-size: 11px;
  }

  .nutrition-label__row--major {
    font-size: 12px;
  }

  .nutrition-label__footnote {
    font-size: 7px;
  }

  .buddy-bundle {
    padding: 76px 18px 50px;
  }

  .buddy-bundle__layout {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .buddy-bundle__copy h2 {
    font-size: clamp(70px, 20vw, 94px);
  }

  .buddy-bundle__lead {
    margin-top: 25px;
    font-size: 16px;
  }

  .buddy-bundle__button {
    width: 100%;
    margin-top: 28px;
  }

  .buddy-bundle__note {
    margin-left: 0;
    text-align: center;
  }

  .buddy-bundle__visual {
    min-height: min(125vw, 500px);
  }

  .buddy-bundle__visual--collage {
    min-height: 0;
  }

  .buddy-bundle__offer {
    top: 24px;
    right: 16px;
    min-width: 0;
    width: 108px;
    padding: 11px 12px 10px;
  }

  .bundle-case {
    --bundle-can-size: clamp(43px, 12vw, 50px);
    inset: 5% 1% 3%;
  }

  .bundle-case__back {
    right: 5%;
    left: 5%;
    padding: 12px 14px;
    font-size: 7px;
  }

  .bundle-case__front {
    right: 2%;
    left: 2%;
    gap: 12px;
    padding: 12px 16px 19px;
  }

  .bundle-case__front img {
    width: 43%;
  }

  .bundle-case__front > span {
    font-size: 7px;
  }

  .bundle-case__stripes {
    right: 6%;
    bottom: 8px;
    left: 6%;
    height: 4px;
  }

  .buddy-bundle__details {
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 34px;
    padding-top: 0;
    border-top: 0;
  }

  .buddy-bundle__details > div,
  .buddy-bundle__details > div:first-child {
    padding: 22px 0;
    border-top: 1px solid rgba(1, 22, 53, 0.16);
  }

  .buddy-bundle__details > div + div {
    border-left: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .buddies__banner-track {
    animation-play-state: paused;
  }

  .buddies__scroll-line::after {
    animation: none;
    transform: none;
  }

  .buddy-story__stage {
    min-height: max(100svh, 650px);
  }

  .buddy-story__can,
  .buddy-story__title,
  .buddy-story__copy {
    will-change: auto;
  }
}

@media (max-width: 1100px) {
  .ingredients-journey__intro {
    width: min(34vw, 360px);
  }

  .ingredients-journey__cards {
    width: min(29vw, 310px);
  }

  .ingredient-card {
    min-height: 104px;
    padding: 15px 16px 16px;
  }
}

@media (max-width: 700px) {
  .ingredients-journey {
    height: 285svh;
  }

  .ingredients-journey__sticky {
    min-height: 620px;
    background:
      radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.9), transparent 48%),
      var(--ingredients-bg);
  }

  .ingredients-journey__topline {
    top: 18px;
    right: 18px;
    left: 18px;
  }

  .ingredients-journey__eyebrow,
  .ingredients-journey__progress {
    font-size: 9px;
  }

  .ingredients-journey__marquee {
    top: 16%;
  }

  .ingredients-journey__marquee-track {
    font-size: clamp(54px, 16vw, 84px);
  }

  .ingredients-journey__reveal {
    top: 20px;
    right: 14px;
    left: 14px;
  }

  .ingredients-journey__reveal-grid {
    gap: 5px;
  }

  .reveal-ingredient {
    gap: 7px;
  }

  .reveal-ingredient img {
    width: clamp(44px, 13.5vw, 66px);
    filter: none;
  }

  .reveal-ingredient h3 {
    max-width: 8ch;
    font-size: clamp(9px, 2.85vw, 13px);
    line-height: 0.98;
  }

  .ingredients-journey__intro {
    right: 18px;
    bottom: 22px;
    left: 18px;
    width: auto;
  }

  .ingredients-journey__kicker {
    margin-bottom: 10px;
    font-size: 9px;
  }

  .ingredients-journey__intro h2 {
    font-size: clamp(50px, 15.5vw, 72px);
  }

  .ingredients-journey__lede {
    max-width: 285px;
    margin-top: 13px;
    font-size: 12px;
  }

  .ingredients-journey__can-wrap {
    top: 47%;
    width: min(165vw, 680px);
    height: min(82svh, 640px);
  }

  .ingredients-journey__can-note {
    display: none;
  }

  .ingredients-journey__cards {
    top: 20%;
    right: 18px;
    left: 18px;
    width: auto;
    gap: 8px;
  }

  .ingredient-card {
    min-height: 0;
    padding: 11px 13px 12px;
    border-left-width: 2px;
  }

  .ingredient-card__number {
    font-size: 8px;
  }

  .ingredient-card h3 {
    margin-top: 6px;
    font-size: clamp(18px, 5.2vw, 24px);
  }

  .ingredient-card > p:last-child {
    margin-top: 6px;
    font-size: 10px;
  }

  .ingredients-journey__scroll-cue {
    right: 18px;
    bottom: 18px;
    font-size: 8px;
  }

  .ingredients-journey__scroll-cue i {
    width: 24px;
    height: 24px;
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ingredients-journey__marquee-track {
    transform: none;
  }

  .reveal-ingredient {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 1100px) and (min-width: 701px) {
  .story-opening__manifesto {
    width: 34vw;
  }

  .story-copy h3,
  .story-now__copy h3 {
    font-size: clamp(46px, 5.5vw, 72px);
  }

  .story-copy > p:last-child,
  .story-now__copy > p:not(.story-chapter-pill) {
    font-size: 13px;
  }

  .story-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 10px 12px;
  }

  .story-photo figcaption strong {
    font-size: 9px;
  }

  .story-can-card > p span {
    font-size: 7px;
  }

  .story-recipe-card {
    min-width: 280px;
  }
}

@media (max-width: 700px), (prefers-reduced-motion: reduce) {
  .brand-story {
    min-height: 0;
    overflow: hidden;
  }

  .brand-story__sticky,
  .brand-story.is-story-enhanced .brand-story__sticky {
    position: relative;
    top: auto;
    height: auto;
    min-height: 0;
  }

  .brand-story__topbar {
    top: 20px;
    right: 18px;
    left: 18px;
  }

  .brand-story__topbar::after {
    display: none;
  }

  .brand-story__viewport,
  .brand-story.is-story-enhanced .brand-story__viewport {
    position: relative;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .brand-story__track {
    height: auto;
    align-items: stretch;
    transform: none !important;
    will-change: auto;
  }

  .story-panel {
    display: flex;
    height: auto;
    min-height: 900px;
    flex-direction: column;
    gap: 18px;
    padding: 78px 22px 82px;
    border-right: 1px solid rgba(255, 248, 236, 0.08);
  }

  [data-story-float] {
    transform: none !important;
    will-change: auto;
  }

  .story-opening__title,
  .story-opening__manifesto,
  .story-copy,
  .story-now__copy,
  .story-photo,
  .story-quote,
  .story-recipe-card,
  .story-product-medallion,
  .story-can-system,
  .story-now__cans,
  .story-now__promise,
  .story-mini-lineup,
  .story-batch-stamp {
    position: relative;
    inset: auto;
    width: 100%;
    min-width: 0;
    flex: 0 0 auto;
  }

  .story-loose-icon {
    position: relative;
    inset: auto;
    width: 76px;
    flex: 0 0 76px;
    align-self: flex-end;
    margin: -88px 12px 0 0;
    padding: 0;
    transform: none;
  }

  .story-opening__title {
    z-index: 5;
  }

  .story-opening__title > p {
    margin: 0 0 13px;
    font-size: 8px;
  }

  .story-opening__title h2 {
    font-size: clamp(76px, 23vw, 112px);
    line-height: 0.8;
  }

  .story-opening__title h2 span:last-child {
    margin-left: 9vw;
  }

  .story-photo {
    z-index: 2;
    height: auto;
    aspect-ratio: 4 / 3;
    border-radius: 22px;
  }

  .story-photo > img {
    min-height: 0;
  }

  .story-photo figcaption {
    right: 10px;
    bottom: 10px;
    left: 10px;
    padding: 9px 11px;
  }

  .story-photo figcaption span {
    font-size: 6px;
  }

  .story-photo figcaption strong {
    font-size: 8px;
  }

  .story-opening__manifesto {
    z-index: 3;
    order: 3;
  }

  .story-kicker {
    margin-bottom: 9px;
    font-size: 8px;
  }

  .story-opening__manifesto > p:last-child {
    font-size: clamp(28px, 8.5vw, 42px);
  }

  .story-mini-lineup {
    z-index: 3;
    order: 4;
    height: 180px;
    padding-top: 29px;
    border-radius: 20px;
  }

  .story-mini-lineup img {
    min-height: 110px;
  }

  .story-copy {
    z-index: 4;
  }

  .story-copy h3,
  .story-now__copy h3 {
    font-size: clamp(48px, 13.5vw, 68px);
    line-height: 0.88;
  }

  .story-copy > p:last-child,
  .story-now__copy > p:not(.story-chapter-pill) {
    margin-top: 17px;
    font-size: 12px;
    line-height: 1.52;
  }

  .story-chapter-pill {
    min-height: 34px;
    margin-bottom: 17px;
    padding: 0 14px;
    font-size: 8px;
  }

  .story-quote {
    z-index: 4;
    padding: 18px 19px;
    border-radius: 16px;
    font-size: 19px;
    transform: none;
  }

  .story-product-medallion {
    z-index: 3;
    width: 142px;
    align-self: center;
  }

  .story-flavor-chips,
  .story-citrus-cutout,
  .story-bubble-field,
  .story-sticker,
  .story-orbit,
  .story-time-strip,
  .story-measurements,
  .story-timeline {
    display: none;
  }

  .story-symbol {
    position: relative;
    inset: auto;
    display: none;
    width: 72px;
    flex: 0 0 72px;
    align-self: flex-end;
    margin: -86px 10px 0 0;
    padding: 5px;
    box-shadow: 4px 5px 0 var(--ink), 0 13px 28px rgba(0, 0, 0, 0.22);
  }

  .story-symbol--compass,
  .story-symbol--heat,
  .story-symbol--formulation,
  .story-symbol--pilot,
  .story-symbol--together {
    display: block;
  }

  .story-recipe-card {
    z-index: 5;
    padding: 20px;
    box-shadow: 7px 8px 0 var(--blue);
    transform: none;
  }

  .story-recipe-card > span {
    font-size: 11px;
  }

  .story-can-system {
    z-index: 4;
    display: grid;
    height: 370px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 5px;
  }

  .story-can-card::before {
    top: 16%;
    width: 24vw;
  }

  .story-can-card::after {
    top: 13%;
    width: 27vw;
  }

  .story-can-card > img {
    height: 100%;
  }

  .story-can-card__time {
    top: 4px;
    padding: 6px 7px;
    font-size: 5px;
  }

  .story-can-card__symbol,
  .story-can-card:nth-child(2) .story-can-card__symbol,
  .story-can-card:nth-child(3) .story-can-card__symbol {
    top: 15%;
    right: 0;
    left: auto;
    width: clamp(42px, 5vw, 68px);
    padding: 3px;
    box-shadow: 3px 3px 0 var(--ink), 0 8px 18px rgba(0, 0, 0, 0.2);
  }

  .story-can-card > p {
    width: 100%;
    padding-top: 7px;
  }

  .story-can-card > p strong {
    font-size: 19px;
  }

  .story-can-card > p span {
    display: none;
  }

  .story-photo--samples {
    border-radius: 22px;
  }

  .story-batch-stamp {
    width: 132px;
    align-self: center;
  }

  .story-now__button {
    width: 100%;
    min-height: 52px;
    justify-content: center;
    margin-top: 24px;
    padding: 0 18px;
    font-size: 8px;
  }

  .story-now__cans {
    z-index: 3;
    height: 340px;
  }

  .story-now__halo {
    top: 19%;
    width: 36%;
  }

  .story-now__can {
    height: 91%;
  }

  .story-now__promise {
    z-index: 5;
    width: max-content;
    max-width: 100%;
  }

  .brand-story__scroll-cue {
    right: 18px;
    bottom: 22px;
  }
}

@media (max-width: 700px) {
  .brand-story__viewport {
    scroll-snap-type: x mandatory;
    scroll-padding-left: 0;
  }

  .brand-story__track {
    padding-right: 12vw;
  }

  .story-panel,
  .story-panel--opening,
  .story-panel--spark,
  .story-panel--brew,
  .story-panel--trio,
  .story-panel--pilot,
  .story-panel--now {
    --panel-width: 88vw;
    width: 88vw;
    flex-basis: 88vw;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .story-panel--opening,
  .story-panel--pilot {
    min-height: 980px;
  }

  .story-panel--spark,
  .story-panel--brew {
    min-height: 1040px;
  }

  .story-panel--trio,
  .story-panel--now {
    min-height: 860px;
  }

  .brand-story__cue-desktop {
    display: none;
  }

  .brand-story__cue-mobile {
    display: inline;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-story {
    height: auto !important;
  }

  .brand-story__viewport,
  .brand-story.is-story-enhanced .brand-story__viewport {
    overflow: visible;
  }

  .brand-story__track {
    display: block;
    width: 100%;
    padding: 0;
  }

  .story-panel,
  .story-panel--opening,
  .story-panel--spark,
  .story-panel--brew,
  .story-panel--trio,
  .story-panel--pilot,
  .story-panel--now {
    --panel-width: 100%;
    width: 100%;
    min-height: 780px;
    padding: 100px clamp(24px, 8vw, 118px) 80px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 248, 236, 0.1);
  }

  .story-opening__title,
  .story-opening__manifesto,
  .story-copy,
  .story-now__copy,
  .story-photo,
  .story-quote,
  .story-recipe-card,
  .story-can-system,
  .story-now__cans,
  .story-mini-lineup {
    max-width: 980px;
  }

  .brand-story__scroll-cue {
    display: none;
  }
}

/* Buddy Fund */
.buddy-fund {
  position: relative;
  padding: clamp(68px, 6vw, 96px) clamp(24px, 6vw, 88px) 0;
  background: #fff;
  color: var(--ink);
  scroll-margin-top: 88px;
}

.buddy-fund__inner {
  display: grid;
  width: min(100%, 1080px);
  margin-inline: auto;
  gap: 0;
}

.buddy-fund__title {
  max-width: none;
  margin: 0 auto clamp(42px, 5vw, 72px);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(42px, 6vw, 96px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.82;
  white-space: nowrap;
  text-align: center;
  text-transform: uppercase;
}

.buddy-fund__beat {
  --fund-accent: var(--orange);
  display: grid;
  min-width: 0;
  grid-template-areas: "media copy";
  grid-template-columns: minmax(0, 0.96fr) minmax(280px, 1.04fr);
  align-items: center;
  gap: clamp(36px, 5vw, 64px);
}

.buddy-fund__beat--reverse {
  grid-template-areas: "copy media";
}

.buddy-fund__beat--blue {
  --fund-accent: var(--blue);
}

.buddy-fund__beat + .buddy-fund__beat {
  margin-top: clamp(44px, 4vw, 64px);
  padding-top: clamp(44px, 4vw, 64px);
}

.buddy-fund__media {
  position: relative;
  grid-area: media;
  width: min(100%, 350px);
  min-width: 0;
  aspect-ratio: auto;
  justify-self: center;
  overflow: hidden;
  border-radius: clamp(22px, 2vw, 32px);
  background: color-mix(in srgb, var(--fund-accent) 10%, white);
}

.buddy-fund__media img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

.buddy-fund__beat:nth-child(1) .buddy-fund__media img {
  object-position: 50% 52%;
}

.buddy-fund__beat:nth-child(2) .buddy-fund__media img {
  object-position: 50% 48%;
}

.buddy-fund__beat:nth-child(3) .buddy-fund__media img {
  object-position: 50% 50%;
}

.buddy-fund__beat:nth-child(4) .buddy-fund__media img {
  object-position: 50% 48%;
}

.buddy-fund__copy {
  grid-area: copy;
  width: min(100%, 440px);
  min-width: 0;
  justify-self: center;
}

.buddy-fund__copy h2,
.buddy-fund__copy h3 {
  max-width: 9ch;
  margin: 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(46px, 5.1vw, 76px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.88;
  text-transform: uppercase;
  text-wrap: balance;
}

.buddy-fund__lede {
  max-width: 360px;
  margin: clamp(18px, 1.9vw, 24px) 0 0;
  font-size: clamp(15px, 1.2vw, 18px);
  font-weight: 650;
  letter-spacing: -0.012em;
  line-height: 1.48;
}

.buddy-fund__lede strong {
  color: var(--fund-accent);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: 1.35em;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.buddy-fund__word {
  position: relative;
  display: inline-block;
  vertical-align: baseline;
}

.buddy-fund__copy.is-fund-highlight-ready .buddy-fund__word {
  color: #bcc5cf;
}

.buddy-fund__word-active {
  position: absolute;
  inset: 0;
  color: var(--fund-highlight-active, var(--ink));
  pointer-events: none;
  will-change: clip-path;
}

.buddy-fund__lede strong .buddy-fund__word {
  --fund-highlight-active: var(--fund-accent);
}

@media (max-width: 1023px), (prefers-reduced-motion: reduce) {
  .buddy-fund__copy.is-fund-highlight-ready .buddy-fund__word {
    color: inherit;
  }

  .buddy-fund__word-active {
    -webkit-clip-path: none !important;
    clip-path: none !important;
    will-change: auto;
  }
}

@media (max-width: 960px) {
  .buddy-fund {
    padding-right: 28px;
    padding-left: 28px;
  }

  .buddy-fund__beat {
    grid-template-columns: minmax(0, 0.96fr) minmax(270px, 1.04fr);
    gap: 28px;
  }

  .buddy-fund__copy h2,
  .buddy-fund__copy h3 {
    font-size: clamp(42px, 6.2vw, 58px);
  }
}

@media (max-width: 700px) {
  .buddy-fund {
    padding: 52px 18px 0;
    scroll-margin-top: 72px;
  }

  .buddy-fund__inner {
    gap: 0;
  }

  .buddy-fund__title {
    margin-bottom: 36px;
    font-size: clamp(28px, 8vw, 54px);
  }

  .buddy-fund__beat,
  .buddy-fund__beat--reverse {
    grid-template-areas:
      "media"
      "copy";
    grid-template-columns: minmax(0, 1fr);
    gap: 20px;
  }

  .buddy-fund__beat + .buddy-fund__beat {
    margin-top: 36px;
    padding-top: 36px;
  }

  .buddy-fund__media {
    width: min(80vw, 280px);
    aspect-ratio: auto;
    border-radius: 22px;
  }

  .buddy-fund__copy {
    width: 100%;
    justify-self: start;
  }

  .buddy-fund__copy h2,
  .buddy-fund__copy h3 {
    max-width: 9ch;
    font-size: clamp(42px, 12.8vw, 56px);
  }

.buddy-fund__lede {
    max-width: 320px;
    margin-top: 16px;
    font-size: 14px;
    line-height: 1.5;
  }
}

/* FAQ */
.faq {
  position: relative;
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(48px, 7vw, 112px);
  padding: clamp(82px, 9vw, 136px) clamp(24px, 6vw, 88px) clamp(92px, 10vw, 148px);
  border-top: 0;
  background:
    radial-gradient(circle at 8% 0%, rgba(255, 79, 24, 0.08), transparent 28%),
    #fffaf4;
  color: var(--ink);
  scroll-margin-top: 88px;
}

.faq__intro {
  position: sticky;
  top: 118px;
  align-self: start;
  max-width: 390px;
}

.faq__eyebrow,
.faq-group__eyebrow,
.site-footer__label {
  margin: 0;
  color: var(--orange);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
  line-height: 1.1;
  text-transform: uppercase;
}

.faq__intro h2 {
  margin: 20px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(56px, 6.4vw, 98px);
  font-weight: 900;
  letter-spacing: -0.055em;
  line-height: 0.86;
  text-transform: uppercase;
}

.faq__intro h2 span {
  color: var(--blue);
}

.faq__lede {
  max-width: 330px;
  margin: 26px 0 0;
  color: rgba(1, 22, 53, 0.66);
  font-size: 16px;
  font-weight: 650;
  line-height: 1.52;
}

.faq__contact-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  color: var(--ink);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 160ms ease, transform 160ms ease;
}

.faq__contact-link span {
  color: var(--orange);
  font-size: 20px;
  line-height: 0.5;
}

.faq__contact-link:hover,
.faq__contact-link:focus-visible {
  color: var(--orange);
  transform: translateX(4px);
}

.faq__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  min-width: 0;
}

.faq-group {
  --faq-accent: var(--orange);
  min-width: 0;
  padding: clamp(18px, 2vw, 26px);
  border: 1px solid rgba(1, 22, 53, 0.12);
  border-top: 5px solid var(--faq-accent);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 9px 11px 0 color-mix(in srgb, var(--faq-accent) 12%, white);
}

.faq-group--blue {
  --faq-accent: var(--blue);
}

.faq-group--purple {
  --faq-accent: var(--purple);
}

.faq-group__heading {
  display: flex;
  min-height: 110px;
  align-items: center;
  gap: 14px;
  padding-bottom: 18px;
}

.faq-group__icon {
  flex: 0 0 94px;
  width: 94px;
  height: 94px;
}

.faq-group__icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.faq-group__eyebrow {
  color: var(--faq-accent);
  font-size: 10px;
  letter-spacing: 0.12em;
}

.faq-group h3 {
  max-width: 9ch;
  margin: 9px 0 0;
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(28px, 2.5vw, 42px);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.88;
  text-transform: uppercase;
}

.faq-list {
  border-top: 1px solid rgba(1, 22, 53, 0.12);
}

.faq-item {
  border-bottom: 1px solid rgba(1, 22, 53, 0.12);
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-item summary {
  position: relative;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 15px 2px;
  cursor: pointer;
  list-style: none;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

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

.faq-item summary::after {
  display: grid;
  width: 25px;
  height: 25px;
  flex: 0 0 25px;
  place-items: center;
  border: 1.5px solid var(--faq-accent);
  border-radius: 50%;
  color: var(--faq-accent);
  content: "+";
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.faq-item[open] summary::after {
  background: var(--faq-accent);
  color: white;
  content: "−";
  transform: rotate(180deg);
}

.faq-item summary:hover,
.faq-item summary:focus-visible {
  color: var(--faq-accent);
}

.faq-item p {
  max-width: 50ch;
  margin: -2px 32px 17px 2px;
  color: rgba(1, 22, 53, 0.64);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.5;
}

/* Footer */
.site-footer {
  position: relative;
  padding: clamp(52px, 6vw, 86px) clamp(24px, 6vw, 88px) 26px;
  background: var(--ink);
  color: white;
}

.site-footer__top {
  display: grid;
  width: min(100%, 1260px);
  grid-template-columns: minmax(230px, 1.7fr) minmax(130px, 0.75fr) minmax(200px, 1fr);
  gap: clamp(36px, 7vw, 120px);
  margin: 0 auto;
}

.site-footer__brand a {
  display: block;
  width: min(100%, 230px);
}

.site-footer__brand img {
  display: block;
  width: 100%;
  filter: brightness(0) invert(1);
}

.site-footer__brand p {
  max-width: 220px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.63);
  font-size: 14px;
  line-height: 1.45;
}

.site-footer__label {
  margin-bottom: 18px;
  color: #ff875f;
}

.site-footer__column {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 11px;
}

.site-footer__column a,
.site-footer__contact p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  font-weight: 650;
  line-height: 1.4;
  text-decoration: none;
  transition: color 160ms ease, transform 160ms ease;
}

.site-footer__column a:hover,
.site-footer__column a:focus-visible {
  color: white;
  transform: translateX(3px);
}

.site-footer__contact p {
  margin: 2px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 550;
}

.site-footer__bottom {
  display: flex;
  width: min(100%, 1260px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: clamp(54px, 8vw, 100px) auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.site-footer__bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
  font-weight: 650;
  line-height: 1.4;
}

@media (max-width: 960px) {
  .faq {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq__intro {
    position: static;
    max-width: 640px;
  }

  .faq__intro h2 {
    font-size: clamp(60px, 9vw, 88px);
  }
}

@media (max-width: 700px) {
  .faq {
    gap: 36px;
    padding: 62px 18px 76px;
    scroll-margin-top: 72px;
  }

  .faq__intro h2 {
    font-size: clamp(54px, 16vw, 78px);
  }

  .faq__lede {
    margin-top: 22px;
    font-size: 14px;
  }

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

  .faq-group {
    border-radius: 22px;
    box-shadow: 6px 8px 0 color-mix(in srgb, var(--faq-accent) 12%, white);
  }

  .faq-group__heading {
    min-height: 92px;
  }

  .faq-group__icon {
    flex-basis: 78px;
    width: 78px;
    height: 78px;
  }

  .faq-group h3 {
    font-size: 31px;
  }

  .faq-item summary {
    min-height: 54px;
    font-size: 13px;
  }

  .site-footer {
    padding: 48px 20px 22px;
  }

  .site-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 44px 28px;
  }

  .site-footer__brand {
    grid-column: 1 / -1;
  }

  .site-footer__brand a {
    width: min(100%, 210px);
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
    margin-top: 56px;
  }
}

@media (max-width: 420px) {
  .faq-group__heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-group h3 {
    max-width: none;
  }

  .site-footer__top {
    grid-template-columns: 1fr;
  }
}

/* FAQ reference layout */
.faq {
  display: block;
  padding: clamp(48px, 5vw, 78px) clamp(18px, 3vw, 44px) clamp(58px, 6vw, 92px);
  background: #fff;
}

.faq__hero {
  max-width: 780px;
  margin: 0 auto clamp(34px, 5vw, 64px);
  text-align: center;
}

.faq__pill {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 10px 24px;
  border: 1.5px solid rgba(1, 22, 53, 0.38);
  border-radius: 999px;
  color: rgba(1, 22, 53, 0.68);
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.faq__hero h2 {
  margin: clamp(24px, 3vw, 42px) 0 0;
  color: var(--ink);
  font-family: Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
  font-size: clamp(58px, 7.5vw, 112px);
  font-weight: 900;
  letter-spacing: -0.07em;
  line-height: 0.82;
  text-transform: uppercase;
}

.faq__hero h2 span {
  color: var(--ink);
}

.faq__hero .faq__lede {
  max-width: 520px;
  margin: 20px auto 0;
  color: rgba(1, 22, 53, 0.62);
  font-size: clamp(13px, 1.1vw, 16px);
  font-weight: 650;
  line-height: 1.5;
}

.faq__accordion {
  width: min(100%, 980px);
  margin-inline: auto;
}

.faq__accordion .faq-item {
  --faq-accent: #6f89a0;
  --faq-surface: #eef7ff;
  border: 0;
  border-radius: clamp(20px, 2vw, 28px);
  background: #fff;
  box-shadow: 0 1px 0 rgba(1, 22, 53, 0.03);
  overflow: hidden;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.faq__accordion .faq-item + .faq-item {
  margin-top: clamp(12px, 1.4vw, 18px);
}

.faq-item__heading {
  margin: 0;
}

.faq__accordion .faq-question {
  display: flex;
  width: 100%;
  min-height: clamp(78px, 6vw, 100px);
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 18px clamp(20px, 2.5vw, 30px);
  color: var(--ink);
  cursor: pointer;
  font-family: Arial Narrow, Helvetica Neue Condensed Bold, Impact, sans-serif;
  font-size: clamp(22px, 2.25vw, 34px);
  font-weight: 900;
  letter-spacing: -0.035em;
  line-height: 0.96;
  text-align: left;
  text-transform: uppercase;
}

.faq-toggle {
  position: relative;
  display: block;
  width: clamp(42px, 3.6vw, 52px);
  height: clamp(42px, 3.6vw, 52px);
  flex: 0 0 clamp(42px, 3.6vw, 52px);
  border-radius: 50%;
  background: var(--faq-accent);
  pointer-events: none;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 19px;
  height: 2px;
  border-radius: 99px;
  background: white;
  content: "";
  transform: translate(-50%, -50%);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.faq__accordion .faq-item[data-open="true"] {
  background: var(--faq-surface);
  color: var(--ink);
}

.faq__accordion .faq-item[data-open="true"] .faq-question {
  color: var(--ink);
}

.faq-question[aria-expanded="true"] .faq-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.faq__accordion .faq-question:hover,
.faq__accordion .faq-question:focus-visible {
  color: var(--faq-accent);
}

.faq__accordion .faq-question:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--faq-accent) 45%, transparent);
  outline-offset: -5px;
  border-radius: inherit;
}

.faq__accordion .faq-item[data-open="true"] .faq-question:hover,
.faq__accordion .faq-item[data-open="true"] .faq-question:focus-visible {
  color: var(--ink);
}

.faq-answer-shell {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  visibility: hidden;
  opacity: 0;
  transition:
    grid-template-rows 320ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 180ms ease,
    visibility 0s linear 320ms;
}

.faq__accordion .faq-item[data-open="true"] > .faq-answer-shell {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

.faq-item__answer {
  --faq-answer-padding-bottom: clamp(20px, 2.5vw, 32px);
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr);
  min-height: 0;
  align-items: center;
  gap: 18px;
  overflow: hidden;
  padding: 0 clamp(20px, 4vw, 48px) 0 clamp(22px, 2.5vw, 30px);
  transition: padding-bottom 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.faq__accordion .faq-item[data-open="true"] .faq-item__answer {
  padding-bottom: var(--faq-answer-padding-bottom);
}

.faq-item__answer img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.faq__accordion .faq-item__answer p {
  max-width: 930px;
  margin: 0;
  color: rgba(1, 22, 53, 0.68);
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 550;
  line-height: 1.45;
}

@media (max-width: 700px) {
  .faq {
    padding: 44px 16px 56px;
  }

  .faq__hero {
    margin-bottom: 30px;
  }

  .faq__pill {
    min-height: 42px;
    padding-inline: 20px;
    font-size: 12px;
  }

  .faq__hero h2 {
    margin-top: 26px;
    font-size: clamp(52px, 15vw, 76px);
    line-height: 0.84;
  }

  .faq__hero .faq__lede {
    margin-top: 18px;
    font-size: 13px;
  }

  .faq__accordion .faq-question {
    min-height: 78px;
    padding: 18px 16px;
    font-size: clamp(19px, 6.2vw, 26px);
    line-height: 0.98;
  }

  .faq-toggle {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .faq-toggle::before,
  .faq-toggle::after {
    width: 16px;
  }

  .faq-item__answer {
    --faq-answer-padding-bottom: 22px;
    grid-template-columns: 1fr;
    gap: 8px;
    padding-inline: 18px;
  }

  .faq-item__answer img {
    width: 56px;
    height: 56px;
  }

  .faq__accordion .faq-item__answer p {
    font-size: 13px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .faq-answer-shell,
  .faq-item__answer,
  .faq-toggle::after {
    transition: none;
  }
}
