:root {
  --ink: #1f120d;
  --brown: #3c2116;
  --cream: #fff7e8;
  --paper: #ffffff;
  --mist: #f6f0e6;
  --orange: #ff6400;
  --rose: #ef287d;
  --cyan: #00a8d7;
  --yellow: #ffd43c;
  --green: #62bd3d;
  --muted: #796155;
  --line: rgba(31, 18, 13, 0.14);
  --dark-line: rgba(255, 255, 255, 0.16);
  --radius: 8px;
  --max: 1220px;
  --rail: 116px;
  --shadow: 0 24px 70px rgba(31, 18, 13, 0.16);
  --cta-text: #1f120d;
  --cta-bg: linear-gradient(135deg, #ffd43c 0%, #ff9f1c 48%, #ff6400 100%);
  --cta-shadow: 0 18px 38px rgba(255, 100, 0, 0.32);
  --cta-shadow-strong: 0 22px 48px rgba(255, 100, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, rgba(31,18,13,0.045) 1px, transparent 1px),
    linear-gradient(180deg, #fffaf0 0%, #fff 44%, #fff1d2 100%);
  background-size: 84px 84px, auto;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

main {
  width: 100%;
  overflow: hidden;
}

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

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

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -4rem;
  z-index: 50;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 1rem;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 20;
  width: var(--rail);
  display: grid;
  grid-template-rows: auto repeat(5, minmax(44px, 1fr));
  align-items: stretch;
  gap: 0.75rem;
  padding: 1rem 0.7rem;
  color: white;
  background: var(--ink);
  border-right: 1px solid var(--dark-line);
}

.brand,
.nav a,
.header-cta {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.menu-toggle {
  display: none;
}

.brand {
  width: 100%;
  padding: 0.35rem;
  background: white;
  border-radius: var(--radius);
}

.header-logo {
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.rail-marquee {
  width: calc(100% - var(--rail));
  height: 3.35rem;
  margin-left: var(--rail);
  overflow: hidden;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
}

.rail-marquee-track {
  width: max-content;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
  padding: 0.34rem 0;
  animation: top-marquee 28s linear infinite;
  will-change: transform;
}

.rail-marquee-set {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding-right: 0.45rem;
}

.rail-marquee span {
  min-height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.85rem;
  white-space: nowrap;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 18, 13, 0.14);
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 950;
  text-align: center;
}

.nav {
  width: 100%;
  display: contents;
  margin-top: 0;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.nav a {
  width: 100%;
  min-height: 44px;
  padding: 0.45rem 0.2rem;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.nav a:hover {
  color: var(--ink);
  background: var(--yellow);
}

.header-cta {
  position: relative;
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.2rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--cta-text);
  background: var(--cta-bg);
  border-radius: var(--radius);
  box-shadow: var(--cta-shadow);
  font-size: 0.82rem;
  font-weight: 950;
  text-align: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    filter 240ms ease;
}

.header-cta::after,
.button::after {
  content: "";
  position: absolute;
  inset: -45% -70%;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(
    115deg,
    transparent 0%,
    rgba(255, 255, 255, 0) 35%,
    rgba(255, 255, 255, 0.78) 48%,
    rgba(255, 255, 255, 0.18) 57%,
    transparent 74%
  );
  transform: translateX(-145%) skewX(-18deg);
  mix-blend-mode: screen;
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: rotate(180deg) translateY(-1px) scale(1.045);
  box-shadow: var(--cta-shadow-strong);
  filter: saturate(1.08) brightness(1.02);
}

.section-band,
.footer {
  margin-left: var(--rail);
}

.section-band {
  padding: clamp(3.7rem, 6.8vw, 6.25rem) clamp(1rem, 4vw, 4rem);
}

.hero {
  min-height: 100dvh;
  display: grid;
  grid-template-columns: minmax(380px, 1.08fr) minmax(0, 0.92fr);
  gap: 0;
  align-items: stretch;
  padding: 0;
  color: white;
  background:
    radial-gradient(circle at 72% 18%, rgba(239, 40, 125, 0.22), transparent 22rem),
    radial-gradient(circle at 88% 82%, rgba(0, 168, 215, 0.18), transparent 22rem),
    #21120d;
}

.hero-visual {
  order: 1;
  min-height: 100dvh;
  display: grid;
  place-items: center;
  padding: clamp(1.1rem, 2vw, 1.8rem);
  background:
    linear-gradient(135deg, rgba(255, 212, 60, 0.84), rgba(239, 40, 125, 0.28)),
    #ffefe0;
}

.hero-copy {
  order: 2;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 4.5vw, 4.4rem);
}

.hero-logo {
  width: min(34rem, 100%);
  margin-bottom: 1.35rem;
  padding: 0.38rem;
  background: white;
  border-radius: var(--radius);
  mix-blend-mode: normal;
}

.hero-collage {
  position: relative;
  width: min(100%, 48rem);
  min-height: min(82vh, 50rem);
}

.hero-collage::before {
  content: "";
  position: absolute;
  inset: 4% 8% 8% 2%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(135deg, rgba(255,100,0,0.2) 0 12px, transparent 12px 28px);
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 22px 22px 22px 70px;
  transform: skewY(-3deg);
  box-shadow: 0 34px 90px rgba(76, 27, 8, 0.24);
}

.hero-main-photo {
  position: absolute;
  inset: 8% 9% 12% 7%;
  z-index: 2;
  width: 84%;
  height: 78%;
  object-fit: cover;
  object-position: center;
  border: 10px solid white;
  border-radius: 8px 8px 8px 54px;
  box-shadow: var(--shadow);
}

.brand-badge {
  position: absolute;
  z-index: 4;
  left: 2%;
  top: 2%;
  width: min(9rem, 20vw);
  padding: 0.35rem;
  background: white;
  border-radius: 50%;
  box-shadow: var(--shadow);
}

.collage-tile {
  position: absolute;
  z-index: 4;
  margin: 0;
  padding: 0.5rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.collage-tile img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.tile-berries {
  --float-rotate: -4deg;
  left: 2%;
  bottom: 6%;
  width: min(13rem, 24vw);
  height: min(8.2rem, 15vw);
  transform: rotate(-4deg);
}

.tile-watermelon {
  --float-rotate: 5deg;
  right: 4%;
  top: 5%;
  width: min(13rem, 24vw);
  height: min(8.2rem, 15vw);
  transform: rotate(5deg);
}

.tile-oreo {
  --float-rotate: 4deg;
  right: 2%;
  bottom: 4%;
  width: min(12rem, 22vw);
  height: min(8rem, 14vw);
  transform: rotate(4deg);
}

.hero-stat {
  position: absolute;
  z-index: 5;
  min-width: 11rem;
  padding: 0.85rem 1rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31,18,13,0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-stat strong {
  display: block;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
  font-weight: 950;
}

.hero-stat span {
  display: block;
  margin-top: 0.24rem;
  color: var(--muted);
  font-weight: 900;
}

.stat-area {
  left: 5%;
  bottom: 2%;
}

.stat-margin {
  right: 5%;
  top: 34%;
}

.eyebrow {
  width: fit-content;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  margin: 0 0 1rem;
  padding: 0.36rem 0.72rem;
  color: var(--ink);
  background: var(--yellow);
  border: 1px solid rgba(31,18,13,0.14);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 950;
  text-transform: uppercase;
}

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

h1 {
  max-width: 13.4ch;
  margin-bottom: 1.1rem;
  color: white;
  font-size: clamp(3rem, 5vw, 5.35rem);
  line-height: 0.96;
  font-weight: 950;
  text-wrap: balance;
  overflow-wrap: normal;
  word-break: normal;
}

h2 {
  max-width: 15ch;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 4.4vw, 4.6rem);
  line-height: 0.98;
  font-weight: 950;
  text-wrap: balance;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: clamp(1.14rem, 1.8vw, 1.5rem);
  line-height: 1.15;
  font-weight: 900;
}

p {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  line-height: 1.62;
}

.hero-text {
  max-width: 40rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1.08rem, 1.45vw, 1.28rem);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.55rem 0 0.85rem;
}

.button {
  position: relative;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.1rem;
  overflow: hidden;
  isolation: isolate;
  color: var(--cta-text);
  background: var(--cta-bg);
  border: 1px solid rgba(31, 18, 13, 0.16);
  border-radius: var(--radius);
  box-shadow: var(--cta-shadow);
  font-weight: 950;
  text-align: center;
  transform-origin: center;
  transition:
    transform 240ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 240ms ease,
    background 240ms ease,
    filter 240ms ease;
}

.button:hover,
.button:focus-visible {
  color: var(--cta-text);
  background: var(--cta-bg);
  transform: translateY(-3px) scale(1.045);
  box-shadow: var(--cta-shadow-strong);
  filter: saturate(1.08) brightness(1.02);
}

.primary {
  color: var(--cta-text);
  background: var(--cta-bg);
  box-shadow: var(--cta-shadow);
}

.secondary {
  color: var(--cta-text);
  background: var(--cta-bg);
  border: 1px solid rgba(31, 18, 13, 0.16);
  box-shadow: var(--cta-shadow);
}

.micro {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.94rem;
}

.section-head {
  max-width: 62rem;
  margin-bottom: 1.55rem;
}

.section-head p {
  max-width: 56rem;
}

.product-power {
  background-color: var(--cream);
}

.power-layout,
.format-showcase,
.launch-head,
.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(1.25rem, 3vw, 2.4rem);
  align-items: stretch;
  margin-bottom: 1.55rem;
}

.product-power .section-head,
.formats .section-head,
.partner .section-head,
.launch .section-head,
.menu .section-head,
.faq .section-head {
  padding: clamp(1.25rem, 2.5vw, 2rem);
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 16px 40px rgba(31,18,13,0.08);
}

.product-power .section-head {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.product-power .section-head .primary,
.formats .section-head .primary,
.partner .section-head .primary,
.launch .section-head .primary,
.menu .section-head .primary,
.faq .section-head .primary {
  color: var(--cta-text);
  background: var(--cta-bg);
  box-shadow: var(--cta-shadow);
}

.human-card,
.kiosk-hero,
.launch-visuals,
.final-scene {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.human-card,
.kiosk-hero {
  min-height: clamp(28rem, 42vw, 42rem);
}

.human-card img,
.kiosk-hero img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.kiosk-hero .scene-overlay-logo,
.human-card .scene-overlay-logo,
.launch-visuals .scene-overlay-logo {
  width: clamp(7rem, 12vw, 11rem);
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.human-card::after,
.kiosk-hero::after,
.launch-visuals::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 48%;
  background: linear-gradient(180deg, transparent, rgba(31,18,13,0.82));
}

.human-card figcaption,
.kiosk-hero figcaption {
  position: absolute;
  z-index: 2;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  color: white;
  font-weight: 900;
}

.feature-grid,
.format-grid,
.package-grid,
.finance-grid,
.timeline,
.faq-list {
  display: grid;
  gap: clamp(0.85rem, 1.5vw, 1.15rem);
}

.feature-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.feature-card,
.format-card,
.mini-card,
.number-card,
details,
.timeline li {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 36px rgba(31,18,13,0.08);
}

.feature-card,
.format-card,
.mini-card,
.number-card,
.timeline li {
  padding: clamp(1rem, 1.8vw, 1.35rem);
}

.feature-card {
  grid-column: span 3;
  min-height: 25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.feature-card:nth-child(3),
.feature-card:nth-child(4) {
  grid-column: span 3;
}

.photo-visual,
.card-asset,
.format-asset {
  position: relative;
  display: block;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--ink);
}

.feature-card .photo-visual {
  height: 17rem;
  margin: -0.25rem 0 1rem;
}

.format-card .photo-visual,
.format-asset {
  height: 18rem;
  margin: 0 0 1rem;
}

.mini-card .photo-visual {
  height: 12rem;
  margin: 0 0 0.9rem;
}

.kiosk-hero .photo-visual {
  height: 100%;
}

.scene-photo-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.scene-overlay-logo {
  position: absolute;
  z-index: 2;
  left: 0.85rem;
  top: 0.85rem;
  width: clamp(6.2rem, 18%, 8.5rem);
  height: auto;
  padding: 0.25rem 0.35rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 10px 22px rgba(31,18,13,0.16);
}

.about {
  background:
    linear-gradient(135deg, var(--ink), #482317);
  color: white;
}

.about p {
  color: rgba(255,255,255,0.78);
}

.about .primary {
  color: var(--ink);
  background: var(--cta-bg);
  box-shadow: var(--cta-shadow);
}

.tag-cloud {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.tag-cloud span {
  min-height: 9rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-size: clamp(1.35rem, 2.8vw, 2.35rem);
  font-weight: 950;
  text-align: center;
}

.tag-cloud span:nth-child(2) {
  color: white;
  background: var(--cyan);
}

.tag-cloud span:nth-child(3) {
  color: white;
  background: var(--rose);
}

.tag-cloud span:nth-child(4) {
  color: white;
  background: var(--green);
}

.product-stage {
  color: white;
  background:
    radial-gradient(circle at 12% 14%, rgba(255,100,0,0.28), transparent 20rem),
    radial-gradient(circle at 88% 8%, rgba(0,168,215,0.2), transparent 20rem),
    #1f120d;
}

.product-stage .section-head {
  max-width: 70rem;
}

.product-stage p {
  color: rgba(255,255,255,0.76);
}

.product-gallery {
  display: flex;
  gap: 1rem;
  max-width: 100%;
  padding: 0.2rem 0 1.1rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--yellow) rgba(255,255,255,0.18);
}

.product-gallery.auto-scroll,
.flavor-track.auto-scroll {
  scroll-snap-type: none;
  scrollbar-width: none;
  scroll-behavior: auto;
}

.product-gallery.auto-scroll::-webkit-scrollbar,
.flavor-track.auto-scroll::-webkit-scrollbar {
  display: none;
}

.product-gallery.auto-scroll:hover,
.flavor-track.auto-scroll:hover {
  cursor: grab;
}

.product-shot {
  position: relative;
  flex: 0 0 clamp(15rem, 20vw, 19rem);
  min-height: clamp(18rem, 26vw, 22rem);
  display: grid;
  place-items: center;
  margin: 0;
  padding: 1rem;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,244,221,0.94));
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius);
  scroll-snap-align: start;
}

.product-shot img {
  width: 100%;
  height: 100%;
  max-height: 15.5rem;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.product-shot figcaption {
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.48rem 0.65rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: var(--radius);
  font-weight: 950;
  overflow-wrap: anywhere;
}

.finance {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 100, 0, 0.08), transparent 24rem),
    linear-gradient(180deg, #fff7e7 0%, #fffdf8 100%);
}

.finance-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.number-card {
  position: relative;
  min-height: 12.4rem;
  overflow: hidden;
  background: white;
}

.number-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 0.45rem;
  background: linear-gradient(180deg, var(--orange), var(--rose), var(--cyan));
}

.number-card strong {
  display: block;
  margin: 0.8rem 0;
  font-size: clamp(2rem, 3.05vw, 3.25rem);
  line-height: 0.94;
  font-weight: 950;
}

.number-card small,
.number-card span {
  display: block;
  color: var(--muted);
  font-weight: 850;
}

.number-card.wide {
  grid-column: span 1;
}

.formats {
  background:
    linear-gradient(135deg, #eaf9ff 0%, #fff 42%, #fff0d4 100%);
}

.format-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.format-card {
  display: flex;
  flex-direction: column;
  min-height: 30rem;
}

.format-card span {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin-bottom: 0.65rem;
  padding: 0 0.62rem;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  font-weight: 950;
}

.format-card strong {
  display: block;
  margin-bottom: 0.72rem;
  font-size: 1.55rem;
}

.partner {
  background: #fff;
}

.package-grid {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.mini-card {
  grid-column: span 3;
  min-height: 23rem;
}

.mini-card:nth-child(1),
.mini-card:nth-child(2) {
  grid-column: span 6;
}

.launch {
  color: white;
  background:
    radial-gradient(circle at 15% 12%, rgba(255,212,60,0.22), transparent 20rem),
    #24130d;
}

.launch p {
  color: rgba(255,255,255,0.76);
}

.launch .section-head h2 {
  color: var(--ink);
}

.launch .section-head p {
  color: var(--muted);
}

.launch-visuals {
  min-height: 29rem;
}

.launch-photo {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

.launch-logo-card {
  position: absolute;
  z-index: 2;
  left: 1rem;
  top: 1rem;
  width: min(12rem, 44%);
  padding: 0.28rem 0.36rem;
  background: white;
  border-radius: var(--radius);
  mix-blend-mode: multiply;
}

.timeline {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  min-height: 14rem;
  background: rgba(255,255,255,0.08);
  border-color: var(--dark-line);
}

.timeline span {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 50%;
  font-weight: 950;
}

.timeline h3 {
  color: white;
}

.menu {
  background: #fff7e8;
}

.flavor-track {
  display: flex;
  gap: 0.8rem;
  max-width: 100%;
  padding-bottom: 0.85rem;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--orange) rgba(31,18,13,0.12);
}

.flavor-track span {
  flex: 0 0 auto;
  min-height: 5.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 1.1rem;
  color: white;
  background: var(--ink);
  border-radius: var(--radius);
  font-size: clamp(1.08rem, 1.8vw, 1.55rem);
  font-weight: 950;
  white-space: nowrap;
  scroll-snap-align: start;
}

.flavor-track span:nth-child(2n) {
  background: var(--rose);
}

.flavor-track span:nth-child(3n) {
  color: var(--ink);
  background: var(--yellow);
}

.flavor-track img {
  width: 3.45rem;
  height: 3.45rem;
  object-fit: contain;
  background: white;
  border-radius: 50%;
  mix-blend-mode: multiply;
}

.faq-list {
  max-width: 66rem;
}

details {
  padding: 0.95rem 1.1rem;
}

summary {
  min-height: 44px;
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.05rem;
  font-weight: 900;
}

details p {
  max-width: 56rem;
  margin-bottom: 0;
}

.final-cta {
  color: white;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,212,60,0.48), transparent 22rem),
    linear-gradient(135deg, #22120d, #4a2114);
}

.final-inner {
  max-width: 72rem;
}

.final-logo {
  width: min(34rem, 92vw);
  margin-bottom: 1.3rem;
  padding: 0.36rem;
  background: white;
  border-radius: var(--radius);
  mix-blend-mode: multiply;
}

.final-scene {
  width: min(32rem, 100%);
  aspect-ratio: 4 / 3;
  margin: 0 0 1.2rem;
}

.final-cta h2 {
  max-width: 18ch;
}

.final-cta p,
.final-cta .eyebrow {
  color: rgba(255,255,255,0.86);
}

.final-cta .secondary {
  color: var(--cta-text);
  background: var(--cta-bg);
  border-color: rgba(31, 18, 13, 0.16);
  box-shadow: var(--cta-shadow);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem clamp(1rem, 4vw, 4rem);
  color: white;
  background: #160b08;
}

.footer p {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.9rem;
}

@media (min-width: 901px) {
  .product-stage > .section-head,
  .finance > .section-head,
  .partner > .section-head,
  .menu > .section-head,
  .faq > .section-head {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: minmax(26rem, 0.92fr) minmax(24rem, 0.78fr);
    column-gap: clamp(2rem, 6vw, 5rem);
    row-gap: 0.85rem;
    align-items: end;
  }

  .product-stage > .section-head .eyebrow,
  .finance > .section-head .eyebrow,
  .partner > .section-head .eyebrow,
  .menu > .section-head .eyebrow,
  .faq > .section-head .eyebrow {
    grid-column: 1 / -1;
  }

  .product-stage > .section-head h2,
  .finance > .section-head h2,
  .partner > .section-head h2,
  .menu > .section-head h2,
  .faq > .section-head h2 {
    grid-column: 1;
    grid-row: 2 / span 3;
    max-width: 15.5ch;
    margin-bottom: 0;
  }

  .product-stage > .section-head p:not(.eyebrow),
  .product-stage > .section-head .button,
  .finance > .section-head p:not(.eyebrow),
  .finance > .section-head .button,
  .partner > .section-head p:not(.eyebrow),
  .partner > .section-head .button,
  .menu > .section-head p:not(.eyebrow),
  .menu > .section-head .button,
  .faq > .section-head p:not(.eyebrow),
  .faq > .section-head .button {
    grid-column: 2;
    max-width: none;
  }

  .product-stage > .section-head .button,
  .finance > .section-head .button,
  .partner > .section-head .button,
  .menu > .section-head .button,
  .faq > .section-head .button {
    justify-self: start;
  }

  .faq > .faq-list {
    width: 100%;
    max-width: none;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible,
.hero .reveal {
  opacity: 1;
  transform: translateY(0);
}

.motion-ready .hero-main-photo {
  animation: hero-photo-float 9s ease-in-out infinite;
  will-change: transform;
}

.motion-ready .brand-badge,
.motion-ready .collage-tile,
.motion-ready .hero-stat {
  animation: hero-card-float 7s ease-in-out infinite;
  will-change: transform;
}

.motion-ready .tile-watermelon {
  animation-delay: -1.8s;
}

.motion-ready .tile-oreo {
  animation-delay: -3.1s;
}

.motion-ready .button {
  animation: button-soft-pulse 2.8s ease-in-out infinite;
  will-change: transform;
}

.motion-ready .header-cta {
  animation: header-cta-soft-pulse 3s ease-in-out infinite;
  will-change: transform;
}

.motion-ready .button::after,
.motion-ready .header-cta::after {
  animation: cta-shine 2.9s cubic-bezier(0.33, 1, 0.68, 1) infinite;
}

.motion-ready .button:hover::after,
.motion-ready .button:focus-visible::after,
.motion-ready .header-cta:hover::after,
.motion-ready .header-cta:focus-visible::after {
  animation-duration: 2.35s;
}

.feature-card,
.format-card,
.mini-card,
.number-card,
.product-shot,
.button {
  transition:
    transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 220ms ease,
    background 220ms ease,
    border-color 220ms ease;
}

.feature-card:hover,
.format-card:hover,
.mini-card:hover,
.number-card:hover,
.product-shot:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.button:hover {
  transform: translateY(-3px) scale(1.045);
}

.button.is-pressed {
  transform: translateY(0) scale(0.97) !important;
}

.header-cta.is-pressed {
  transform: rotate(180deg) scale(0.985) !important;
}

@keyframes rail-marquee {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

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

@keyframes hero-photo-float {
  0%,
  100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -10px, 0); }
}

@keyframes hero-card-float {
  0%,
  100% { transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg)); }
  50% { transform: translate3d(0, -8px, 0) rotate(var(--float-rotate, 0deg)); }
}

@keyframes button-soft-pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow: var(--cta-shadow);
  }
  50% {
    transform: translateY(-2px) scale(1.04);
    box-shadow: var(--cta-shadow-strong);
  }
}

@keyframes header-cta-soft-pulse {
  0%,
  100% {
    transform: rotate(180deg) scale(1);
    box-shadow: var(--cta-shadow);
  }
  50% {
    transform: rotate(180deg) scale(1.04);
    box-shadow: var(--cta-shadow-strong);
  }
}

@keyframes cta-shine {
  0%,
  18% {
    opacity: 0;
    transform: translateX(-155%) skewX(-18deg);
  }
  38% {
    opacity: 0.64;
  }
  66% {
    opacity: 0.2;
    transform: translateX(145%) skewX(-18deg);
  }
  78%,
  100% {
    opacity: 0;
    transform: translateX(145%) skewX(-18deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .rail-marquee-track,
  .hero-main-photo,
  .brand-badge,
  .collage-tile,
  .hero-stat,
  .button,
  .header-cta {
    animation: none !important;
  }

  .button::after,
  .header-cta::after {
    animation: none !important;
    opacity: 0 !important;
  }
}

@media (max-width: 1180px) {
  .feature-grid,
  .finance-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card,
  .feature-card:nth-child(3),
  .feature-card:nth-child(4),
  .mini-card,
  .mini-card:nth-child(1),
  .mini-card:nth-child(2) {
    grid-column: span 1;
  }

  .format-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .number-card.wide {
    grid-column: span 2;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    width: auto;
    min-height: auto;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 0.8rem 1rem;
  }

  .brand {
    width: auto;
    max-width: 10rem;
  }

  .menu-toggle {
    width: 48px;
    height: 48px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-left: auto;
    color: var(--ink);
    background: var(--cta-bg);
    border: 1px solid rgba(31, 18, 13, 0.16);
    border-radius: var(--radius);
    box-shadow: var(--cta-shadow);
    cursor: pointer;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      box-shadow 220ms ease,
      filter 220ms ease;
  }

  .menu-toggle:hover,
  .menu-toggle:focus-visible {
    transform: translateY(-1px) scale(1.03);
    box-shadow: var(--cta-shadow-strong);
    filter: saturate(1.08) brightness(1.02);
  }

  .menu-toggle span {
    width: 22px;
    height: 3px;
    display: block;
    background: currentColor;
    border-radius: 999px;
    transition:
      transform 220ms cubic-bezier(0.22, 1, 0.36, 1),
      opacity 180ms ease;
  }

  .site-header.menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-header.menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .header-logo {
    width: 9.5rem;
  }

  .rail-marquee {
    order: 3;
    width: 100%;
    margin-left: 0;
    height: 42px;
    border-color: rgba(31, 18, 13, 0.14);
  }

  .rail-marquee-track {
    width: max-content;
    flex-direction: row;
    align-items: center;
    gap: 0;
    padding: 0.3rem 0;
    animation: top-marquee 28s linear infinite;
  }

  .rail-marquee span {
    min-height: 32px;
    padding: 0 0.7rem;
  }

  .header-cta {
    display: none;
  }

  .nav {
    order: 2;
    width: 100%;
    max-height: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
    margin-top: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
      max-height 260ms ease,
      opacity 220ms ease,
      padding-top 220ms ease;
  }

  .site-header.menu-open .nav {
    max-height: 14rem;
    padding-top: 0.75rem;
    opacity: 1;
    pointer-events: auto;
  }

  .nav a {
    width: 100%;
    min-height: 46px;
    padding: 0 0.75rem;
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--dark-line);
    writing-mode: horizontal-tb;
    transform: none;
  }

  .nav a:hover,
  .nav a:focus-visible {
    color: var(--ink);
    background: var(--yellow);
  }

  .section-band,
  .footer {
    margin-left: 0;
  }

  .section-band {
    padding: 3.25rem 1rem;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 33rem;
    padding: 1rem;
  }

  .hero-copy {
    padding: 2rem 1rem 2.5rem;
  }

  .hero-collage {
    width: min(100%, 390px);
    min-height: 31rem;
  }

  .hero-main-photo {
    inset: 12% 4% 16% 4%;
    width: 92%;
    height: 70%;
    border-width: 6px;
    border-radius: 8px 8px 8px 38px;
  }

  .brand-badge {
    left: 3%;
    top: 2%;
    width: 7.2rem;
  }

  .tile-berries {
    left: 0;
    bottom: 4%;
    width: 8rem;
    height: 5.9rem;
  }

  .tile-watermelon {
    right: 4%;
    top: 5%;
    width: 7.6rem;
    height: 5.9rem;
  }

  .tile-oreo {
    display: none;
  }

  .hero-stat {
    min-width: 7.2rem;
    max-width: 8.4rem;
    padding: 0.55rem 0.62rem;
  }

  .hero-stat strong {
    font-size: clamp(1.35rem, 7vw, 1.85rem);
  }

  .hero-stat span {
    font-size: 0.78rem;
    line-height: 1.12;
  }

  .stat-area {
    left: 5%;
    bottom: 1%;
  }

  .stat-margin {
    right: 9%;
    top: auto;
    bottom: 1%;
  }

  .hero-logo {
    width: min(100%, 358px);
  }

  h1 {
    max-width: 10.8ch;
    font-size: clamp(2.35rem, 10.8vw, 3.1rem);
    line-height: 0.98;
    overflow-wrap: anywhere;
  }

  h2 {
    max-width: 14ch;
    font-size: clamp(2rem, 8.4vw, 2.85rem);
    line-height: 1.02;
  }

  p,
  h3,
  .button {
    overflow-wrap: anywhere;
  }

  .button,
  .cta-row {
    width: 100%;
  }

  .cta-row {
    gap: 0.65rem;
    margin: 1.05rem 0 0.7rem;
  }

  .section-head {
    margin-bottom: 1.25rem;
  }

  .button {
    flex: 1 1 100%;
  }

  .power-layout,
  .format-showcase,
  .launch-head,
  .split,
  .feature-grid,
  .finance-grid,
  .timeline,
  .tag-cloud {
    grid-template-columns: 1fr;
  }

  .product-gallery,
  .flavor-track {
    margin-inline: -1rem;
    padding-inline: 1rem;
  }

  .product-shot {
    flex-basis: min(76vw, 18rem);
    min-height: 18rem;
  }

  .number-card.wide {
    grid-column: auto;
  }

  .feature-card,
  .format-card,
  .mini-card {
    min-height: auto;
  }

  .feature-card .photo-visual,
  .format-card .photo-visual,
  .format-asset {
    height: 17rem;
  }

  .mini-card .photo-visual {
    height: 13rem;
  }

  .human-card,
  .kiosk-hero,
  .launch-visuals {
    min-height: 24rem;
  }

  .footer {
    flex-direction: column;
  }
}
