:root {
  --bg-dark: #050506;
  --bg-dark-2: #0d0d10;
  --bg-light: #f3f3f3;
  --bg-light-2: #ffffff;
  --text-dark: #0a0a0c;
  --text-light: #f6f6f4;
  --muted-dark: #6b6b70;
  --muted-light: rgba(246, 246, 244, 0.62);
  --accent: #ffd400;
  --accent-2: #ffb300;
  --line-dark: rgba(255, 255, 255, 0.08);
  --line-light: rgba(10, 10, 12, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 30px 80px -30px rgba(0, 0, 0, 0.45);
  --mag-x: 0;
  --mag-y: 0;
}

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

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  background: var(--bg-light);
  color: var(--text-dark);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

/* Scroll-linked parallax layers (depth from data-parallax coefficient) */
[data-parallax] {
  will-change: transform;
  transform: translate3d(0, var(--p-shift, 0px), 0);
  transition: none;
}

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

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

.container {
  width: min(1280px, calc(100% - 40px));
  margin-inline: auto;
}

/* =============================================================
   TOP NAV
   ============================================================= */
.topnav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 16px 0;
  transition: background 0.35s var(--ease), backdrop-filter 0.35s var(--ease),
    border-color 0.35s var(--ease), padding 0.35s var(--ease);
  background: transparent;
  border-bottom: 1px solid transparent;
}
.topnav.is-scrolled {
  background: rgba(8, 8, 10, 0.78);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  padding: 10px 0;
}
.topnav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.topnav__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  flex-shrink: 0;
  line-height: 0;
}
.topnav__logo-svg {
  display: block;
  width: auto;
  height: clamp(26px, 3vw, 30px);
  shape-rendering: geometricPrecision;
}
.topnav__menu {
  display: flex;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.78);
}
.topnav__menu a {
  position: relative;
  padding: 6px 0;
  transition: color 0.25s var(--ease);
}
.topnav__menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s var(--ease);
}
.topnav__menu a:hover {
  color: #fff;
}
.topnav__menu a:hover::after {
  transform: scaleX(1);
}
.topnav__right {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

/* Language switcher */
.lang {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  padding: 4px;
  backdrop-filter: blur(10px);
}
.lang__btn {
  appearance: none;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.65);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}
.lang__btn:hover {
  color: #fff;
}
.lang__btn.is-active {
  background: var(--accent);
  color: #0a0a0c;
}

/* Burger (mobile only) */
.topnav__burger {
  display: none;
  appearance: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  width: 44px;
  height: 44px;
  padding: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  transition: background 0.25s var(--ease);
}
.topnav__burger:hover {
  background: rgba(255, 255, 255, 0.06);
}
.topnav__burger span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.topnav.is-menu-open .topnav__burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.topnav.is-menu-open .topnav__burger span:nth-child(2) {
  opacity: 0;
}
.topnav.is-menu-open .topnav__burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.35s var(--ease), background 0.3s var(--ease),
    color 0.3s var(--ease), box-shadow 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: #0a0a0c;
  box-shadow: 0 14px 40px -12px rgba(255, 212, 0, 0.55);
}
.btn--primary:hover {
  transform: translateY(-2px);
  background: #ffe24a;
  box-shadow: 0 18px 50px -12px rgba(255, 212, 0, 0.65);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(10px);
}
.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-2px);
}

.btn__play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #0a0a0c;
  font-size: 9px;
  padding-left: 2px;
}

.btn--lg {
  padding: 18px 30px;
  font-size: 16px;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  background: #050506;
  color: var(--text-light);
  padding: clamp(110px, 13vw, 160px) 0 0;
  min-height: 100vh;
  overflow: hidden;
  isolation: isolate;
}

.hero__noise,
.hero__glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero__noise {
  background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: overlay;
  opacity: 0.4;
  z-index: 0;
}
.hero__glow {
  background: radial-gradient(720px 560px at 78% 55%, rgba(255, 212, 0, 0.07), transparent 65%);
  z-index: 0;
}

/* Hero inner — copy column only; visual is full-height absolute */
.hero__inner {
  position: relative;
  z-index: 4;
  display: block;
  min-height: calc(100vh - 280px);
  padding-bottom: 60px;
}
.hero__copy {
  position: relative;
  z-index: 4;
  max-width: 52%;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  margin-bottom: 28px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.is-loaded .hero__eyebrow {
  opacity: 1;
  transform: translateY(0);
}

.hero__title {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(56px, 9.5vw, 132px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 26px;
  color: #fff;
  display: block;
  text-transform: uppercase;
}
.hero__line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: rise 1s var(--ease) forwards;
  animation-delay: var(--rise-delay, 0.2s);
}
.hero__line--1 {
  --rise-delay: 0.15s;
}
.hero__line--2 {
  --rise-delay: 0.35s;
}
@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero__title-accent {
  background: linear-gradient(180deg, #ffe04a, #ffb300);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__subtitle {
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(14px, 1.4vw, 20px);
  letter-spacing: 0.16em;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  margin: 8px 0 24px;
  max-width: 520px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.5s, transform 0.8s var(--ease) 0.5s;
}
.is-loaded .hero__subtitle {
  opacity: 1;
  transform: translateY(0);
}

.hero__lead {
  max-width: 520px;
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 36px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.65s, transform 0.8s var(--ease) 0.65s;
}
.is-loaded .hero__lead {
  opacity: 1;
  transform: translateY(0);
}

.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.7s, transform 0.8s var(--ease) 0.7s;
}
.is-loaded .hero__actions {
  opacity: 1;
  transform: translateY(0);
}

.hero__stats {
  display: flex;
  gap: clamp(28px, 4vw, 56px);
  list-style: none;
  margin: 0;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s var(--ease) 0.85s, transform 0.8s var(--ease) 0.85s;
}
.is-loaded .hero__stats {
  opacity: 1;
  transform: translateY(0);
}
.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero__stats strong {
  font-family: "Manrope", sans-serif;
  font-size: clamp(28px, 3vw, 38px);
  font-weight: 800;
  color: var(--accent);
}
.hero__stats span {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.55);
}

/* Visual — full-height absolute, image bleeds off right edge; edge blend into hero bg */
.hero__visual {
  position: absolute;
  top: 0;
  bottom: 60px; /* leave room for marquee */
  right: -6%;
  width: 70%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  overflow: visible;
  isolation: isolate;
}
.hero__visual::after {
  content: "";
  position: absolute;
  inset: -4%;
  z-index: 2;
  pointer-events: none;
  background:
    radial-gradient(ellipse 110% 95% at 62% 48%, transparent 32%, rgba(5, 5, 6, 0.45) 68%, var(--bg-dark) 92%),
    radial-gradient(ellipse 70% 55% at 100% 0%, var(--bg-dark) 0%, transparent 72%),
    radial-gradient(ellipse 65% 50% at 100% 100%, var(--bg-dark) 0%, transparent 70%),
    radial-gradient(ellipse 50% 70% at 0% 50%, var(--bg-dark) 0%, transparent 65%);
}
.hero__product {
  display: block;
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.06) contrast(1.04);
  opacity: 0;
  transform: translate3d(0, calc(30px + var(--y, 0px) * -0.04), 0) scale(0.98);
  transition: opacity 1.4s var(--ease), transform 1.4s var(--ease);
  animation: float 7s ease-in-out infinite;
  will-change: transform;
  -webkit-mask-image: radial-gradient(
    ellipse 108% 102% at 58% 50%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.75) 74%,
    transparent 100%
  );
  mask-image: radial-gradient(
    ellipse 108% 102% at 58% 50%,
    #000 0%,
    #000 52%,
    rgba(0, 0, 0, 0.75) 74%,
    transparent 100%
  );
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.is-loaded .hero__product {
  opacity: 1;
  transform: translate3d(0, calc(var(--y, 0px) * -0.04), 0) scale(1);
}
@keyframes float {
  0%,
  100% {
    transform: translate3d(0, calc(var(--y, 0px) * -0.04), 0) scale(1);
  }
  50% {
    transform: translate3d(0, calc(var(--y, 0px) * -0.04 - 10px), 0) scale(1);
  }
}

/* Marquee */
.hero__marquee {
  position: relative;
  z-index: 3;
  border-top: 1px solid var(--line-dark);
  overflow: hidden;
  padding: 18px 0;
  cursor: default;
}
.marquee__track {
  display: inline-flex;
  flex-wrap: nowrap;
  width: max-content;
  animation: marquee 40s linear infinite;
  will-change: transform;
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.4);
}
.marquee__segment {
  flex: 0 0 auto;
  white-space: nowrap;
  padding-inline-end: clamp(2.5rem, 6vw, 4rem);
  transition: color 0.4s var(--ease), text-shadow 0.45s var(--ease);
}
@media (hover: hover) {
  .hero__marquee:hover .marquee__segment {
    text-shadow: 0 0 22px rgba(255, 255, 255, 0.22);
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 1) {
    color: #ffd400;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 2) {
    color: #ff7a7a;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 3) {
    color: #b9ff5a;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 4) {
    color: #1aa3ff;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 5) {
    color: #ff6a1a;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 6) {
    color: #1ec96b;
  }
  .hero__marquee:hover .marquee__segment:nth-child(7n + 7) {
    color: #8a72ff;
  }
}
@keyframes marquee {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

/* =============================================================
   SECTION HEADERS
   ============================================================= */
.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto clamp(48px, 7vw, 80px);
}
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted-dark);
  margin-bottom: 16px;
}
.section-eyebrow--light {
  color: rgba(255, 255, 255, 0.55);
}
.section-title {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(36px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.035em;
  margin: 0 0 18px;
  color: var(--text-dark);
}
.section-title--light {
  color: #fff;
}
.section-lead {
  font-size: clamp(15px, 1.1vw, 18px);
  line-height: 1.6;
  color: var(--muted-dark);
  margin: 0;
}
.section-lead--light {
  color: rgba(255, 255, 255, 0.65);
}

/* =============================================================
   2. TASTE (light) — cinematic product cards
   ============================================================= */
.taste {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--bg-light);
  overflow: hidden;
}
.taste__blooms {
  position: absolute;
  inset: -25% -15% -15% -15%;
  pointer-events: none;
  z-index: 0;
}
.taste__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.42;
  animation: tasteBloomPulse 10s ease-in-out infinite;
}
.taste__bloom--1 {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  top: 8%;
  left: -8%;
  background: radial-gradient(circle at center, rgba(255, 212, 0, 0.55), transparent 68%);
  transform: translate(calc(var(--mag-x, 0) * 28px), calc(var(--mag-y, 0) * 22px));
}
.taste__bloom--2 {
  width: min(42vw, 380px);
  height: min(42vw, 380px);
  bottom: 5%;
  right: -5%;
  background: radial-gradient(circle at center, rgba(255, 122, 122, 0.35), transparent 70%);
  animation-duration: 12s;
  animation-delay: -3s;
  transform: translate(calc(var(--mag-x, 0) * -20px), calc(var(--mag-y, 0) * -18px));
}
.taste__bloom--3 {
  width: min(36vw, 320px);
  height: min(36vw, 320px);
  top: 42%;
  left: 38%;
  background: radial-gradient(circle at center, rgba(26, 163, 255, 0.22), transparent 72%);
  animation-duration: 14s;
  animation-delay: -6s;
  transform: translate(calc(var(--mag-x, 0) * 14px), calc(var(--mag-y, 0) * -12px));
}
@keyframes tasteBloomPulse {
  0%,
  100% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.52;
  }
}
.taste .container {
  position: relative;
  z-index: 1;
}
.taste__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  perspective: 1500px;
}
.flavor {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.flavor::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 320px at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--accent-color, #ffd400) 14%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.flavor:hover {
  box-shadow:
    0 40px 90px -30px rgba(10, 10, 12, 0.35),
    0 0 0 1px color-mix(in srgb, var(--accent-color, #ffd400) 30%, transparent);
  border-color: transparent;
}
.flavor:hover::before {
  opacity: 1;
}

.flavor__media {
  position: relative;
  aspect-ratio: 1 / 1.1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 20px 8px;
  overflow: hidden;
  z-index: 1;
}
.flavor__halo {
  position: absolute;
  inset: 14% 14% 14% 14%;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--accent-color, #ffd400) 55%, transparent),
    transparent 70%);
  filter: blur(34px);
  z-index: 0;
  opacity: 0.7;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.flavor__ring {
  position: absolute;
  left: 50%;
  bottom: 22%;
  width: 70%;
  height: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(10, 10, 12, 0.18), transparent 70%);
  filter: blur(8px);
  z-index: 0;
  transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.flavor:hover .flavor__halo {
  opacity: 1;
  transform: scale(1.08);
}
.flavor:hover .flavor__ring {
  transform: translateX(-50%) scale(0.9);
  opacity: 0.7;
}
.flavor__img {
  position: relative;
  z-index: 2;
  height: 90%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  -webkit-mask: radial-gradient(ellipse 65% 80% at center, #000 55%, transparent 90%);
          mask: radial-gradient(ellipse 65% 80% at center, #000 55%, transparent 90%);
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.18));
  transition: transform 0.6s var(--ease);
  transform: translateZ(40px);
}
.flavor:hover .flavor__img {
  transform: translateZ(60px) translateY(-8px) scale(1.05);
}
.flavor__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  background: rgba(10, 10, 12, 0.88);
  color: #fff;
  backdrop-filter: blur(8px);
  transform: translateZ(60px);
}
.flavor__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color, #ffd400);
  box-shadow: 0 0 10px var(--accent-color, #ffd400);
}

.flavor__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px 28px 28px;
}
.flavor__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.flavor__tag {
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--muted-dark);
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.flavor h3 {
  font-family: "Manrope", sans-serif;
  font-size: 26px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.flavor p {
  margin: 0;
  color: var(--muted-dark);
  line-height: 1.55;
  font-size: 14px;
  flex: 1;
}
.flavor__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.flavor__more,
.lineup__more {
  appearance: none;
  background: transparent;
  border: 1px solid var(--line-light);
  color: var(--text-dark);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
  flex: 1;
  justify-content: center;
  font-family: inherit;
}
.flavor__more svg,
.lineup__more svg {
  width: 14px;
  height: 14px;
  transition: transform 0.3s var(--ease);
}
.flavor__more:hover,
.lineup__more:hover {
  background: var(--text-dark);
  color: #fff;
  border-color: var(--text-dark);
}
.flavor__more:hover svg,
.lineup__more:hover svg {
  transform: translateX(3px);
}
.flavor__order,
.lineup__order {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--accent);
  color: var(--text-dark);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  box-shadow: 0 10px 24px -10px rgba(255, 212, 0, 0.5);
}
.flavor__order:hover,
.lineup__order:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(255, 212, 0, 0.65);
}

/* =============================================================
   3. ABOUT (dark)
   ============================================================= */
.about {
  position: relative;
  background: var(--bg-dark);
  color: var(--text-light);
  padding: clamp(72px, 8vw, 120px) 0;
  overflow: hidden;
}
.about__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(800px 500px at 20% 20%, rgba(255, 212, 0, 0.12), transparent 60%),
    radial-gradient(800px 500px at 80% 80%, rgba(90, 90, 250, 0.12), transparent 60%);
  pointer-events: none;
}
.about > .container {
  position: relative;
  z-index: 1;
}
.about__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__copy h2 {
  margin-bottom: 24px;
}
.about__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 16px;
  max-width: 520px;
}
.about__list {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius-md);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
  transition: background 0.3s var(--ease), transform 0.3s var(--ease);
}
.about__list li:hover {
  background: rgba(255, 255, 255, 0.07);
  transform: translateY(-2px);
}
.about__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 212, 0, 0.12);
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about__icon svg {
  width: 20px;
  height: 20px;
}
.about__list li > div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__list strong {
  font-weight: 700;
  color: #fff;
  font-size: 14px;
}
.about__list span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.45;
}

.about__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translate3d(0, var(--about-vis-y, 0px), 0);
  transition: none;
  will-change: transform;
}

/* ---------- Animated brew showcase (about) ---------- */
.brew {
  position: relative;
  width: 100%;
  max-width: 580px;
  aspect-ratio: 1 / 1.1;
  border-radius: 32px;
  background: linear-gradient(180deg, #f1f1ee 0%, #d6d6d2 100%);
  overflow: hidden;
  isolation: isolate;
  box-shadow:
    0 60px 100px -30px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}
.brew__halo {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  z-index: 0;
  pointer-events: none;
}
.brew__halo {
  inset: 18% 18% 26% 18%;
  background: radial-gradient(closest-side, rgba(255, 212, 0, 0.35), transparent 70%);
  opacity: 0.55;
  animation: brewHalo 9s ease-in-out infinite alternate;
}
.brew__halo--alt {
  inset: 30% 25% 18% 30%;
  background: radial-gradient(closest-side, rgba(80, 110, 255, 0.22), transparent 70%);
  animation-delay: -3s;
}
@keyframes brewHalo {
  from { transform: scale(0.95); opacity: 0.45; }
  to   { transform: scale(1.08); opacity: 0.75; }
}

.brew__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(10, 10, 12, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 12, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  mask: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  -webkit-mask: radial-gradient(ellipse at center, #000 0%, transparent 75%);
  z-index: 0;
  pointer-events: none;
}

.brew__bignum {
  position: absolute;
  top: 18px;
  right: 26px;
  z-index: 3;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(60px, 8vw, 110px);
  line-height: 0.85;
  letter-spacing: -0.05em;
  color: transparent;
  background: linear-gradient(180deg, rgba(10, 10, 12, 0.18) 0%, rgba(10, 10, 12, 0.04) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  transition: transform 0.6s var(--ease);
}

.brew__stage {
  position: absolute;
  inset: 8% 8% 22% 8%;
  z-index: 1;
}
.brew__frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.8s var(--ease), transform 1.4s var(--ease);
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.18));
}
.brew__frame.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Falling tablet animation overlay */
.brew__tablet {
  position: absolute;
  z-index: 4;
  top: 14%;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #ffffff, #d6d6d2 60%, #aaa 100%);
  box-shadow:
    0 8px 20px rgba(0, 0, 0, 0.25),
    inset 0 -3px 0 rgba(0, 0, 0, 0.08);
  transform: translate(-50%, 0) scale(0);
  opacity: 0;
  pointer-events: none;
  animation: tabletDrop var(--brew-cycle, 12s) cubic-bezier(0.55, 0.05, 0.4, 1) infinite;
}
@keyframes tabletDrop {
  0%, 4%   { transform: translate(-50%, -16px) scale(0); opacity: 0; }
  6%       { transform: translate(-50%, -16px) scale(1); opacity: 1; }
  22%      { transform: translate(-50%, 110%) scale(0.92); opacity: 1; }
  24%      { transform: translate(-50%, 130%) scale(1.18); opacity: 0.8; }
  25%, 100%{ transform: translate(-50%, 130%) scale(0); opacity: 0; }
}

.brew__fizz {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 30%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(120, 160, 255, 0.6);
  opacity: 0;
  pointer-events: none;
}
.brew__fizz--1 { animation: fizz var(--brew-cycle, 12s) ease-in-out infinite; }
.brew__fizz--2 {
  animation: fizz var(--brew-cycle, 12s) ease-in-out infinite;
  animation-delay: 0.6s;
  margin-left: -14px;
}
.brew__fizz--3 {
  animation: fizz var(--brew-cycle, 12s) ease-in-out infinite;
  animation-delay: 1.2s;
  margin-left: 12px;
}
@keyframes fizz {
  0%, 26%    { transform: translate(-50%, 0) scale(0); opacity: 0; }
  30%        { transform: translate(-50%, 0) scale(0.6); opacity: 1; }
  46%        { transform: translate(-50%, -80px) scale(1); opacity: 0.8; }
  50%, 100%  { transform: translate(-50%, -110px) scale(0.4); opacity: 0; }
}

.brew__caption {
  position: absolute;
  left: 50%;
  bottom: 60px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.92);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
  min-width: 220px;
  min-height: 40px;
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.3);
}
.brew__step-label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
  padding: 0 14px;
  text-align: center;
}
.brew__step-label.is-active {
  opacity: 1;
  transform: translateY(0);
}

.brew__progress {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}
.brew__bar {
  width: 30px;
  height: 4px;
  border-radius: 4px;
  background: rgba(10, 10, 12, 0.15);
  transition: background 0.5s var(--ease), width 0.5s var(--ease);
}
.brew__bar.is-active {
  background: var(--accent);
  width: 50px;
  box-shadow: 0 0 14px rgba(255, 212, 0, 0.6);
}

.brew__meta {
  position: absolute;
  top: 18px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: rgba(10, 10, 12, 0.85);
  color: #fff;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
}
.brew__dot-mini {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff4444;
  box-shadow: 0 0 8px #ff4444;
  animation: liveBlink 1.6s ease-in-out infinite;
}
@keyframes liveBlink {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* =============================================================
   4. STEPS (dark, cinematic) — giant ghost numbers + halos
   ============================================================= */
.steps {
  position: relative;
  padding: clamp(80px, 9vw, 130px) 0;
  background: radial-gradient(900px 600px at 50% 0%, #16161c 0%, #07070a 70%);
  color: var(--text-light);
  overflow: hidden;
}
.steps__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(900px 500px at 100% 100%, rgba(255, 212, 0, 0.08), transparent 60%),
    radial-gradient(800px 500px at 0% 0%, rgba(80, 110, 255, 0.08), transparent 60%);
  pointer-events: none;
}
.steps__grid-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 60px 60px;
  mask: radial-gradient(ellipse 60% 60% at center, #000, transparent 85%);
  -webkit-mask: radial-gradient(ellipse 60% 60% at center, #000, transparent 85%);
  pointer-events: none;
}

.steps .container {
  position: relative;
  z-index: 1;
}

.steps__rail {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  perspective: 1500px;
}
.steps__line {
  position: absolute;
  top: 38%;
  left: 6%;
  right: 6%;
  height: 2px;
  background: rgba(255, 255, 255, 0.06);
  z-index: 0;
  overflow: hidden;
}
.steps__line-fill {
  display: block;
  width: 0;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  animation: stepLine 4.5s ease-in-out infinite;
}
@keyframes stepLine {
  0%   { transform: translateX(-100%); width: 40%; }
  50%  { transform: translateX(120%); width: 40%; }
  100% { transform: translateX(120%); width: 40%; }
}

.step {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 26px;
  padding: 32px 26px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 1;
  overflow: hidden;
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transform-style: preserve-3d;
  will-change: transform;
}
.step::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(180deg, rgba(255, 212, 0, 0.4), transparent 40%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  border-radius: inherit;
  z-index: -1;
  pointer-events: none;
}
.step:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 212, 0, 0.25);
}
.step:hover::before {
  opacity: 1;
}

.step__bignum {
  position: absolute;
  top: -34px;
  right: -8px;
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(120px, 12vw, 170px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: transparent;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16) 0%, rgba(255, 255, 255, 0.02) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  pointer-events: none;
  user-select: none;
  z-index: 0;
  transition: transform 0.6s var(--ease), color 0.5s var(--ease);
}
.step:hover .step__bignum {
  transform: translateY(4px) scale(1.04);
}

.step__media {
  position: relative;
  z-index: 1;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 8px auto 4px;
  width: 78%;
}
.step__halo {
  position: absolute;
  inset: 10%;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255, 212, 0, 0.35), transparent 70%);
  filter: blur(28px);
  z-index: 0;
  transition: transform 0.6s var(--ease), opacity 0.5s var(--ease);
}
.step:hover .step__halo {
  transform: scale(1.15);
}
.step__media img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.6),
    inset 0 0 0 6px rgba(255, 255, 255, 0.04);
  transform: translateZ(40px);
  transition: transform 0.6s var(--ease);
}
.step:hover .step__media img {
  transform: translateZ(60px) scale(1.04);
}

.step__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.step__label {
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
}
.step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  margin: 0;
  color: #fff;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
  line-height: 1.55;
}

/* =============================================================
   5. CASES (dark)
   ============================================================= */
.cases {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}
.cases__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(900px 600px at 80% 20%, rgba(255, 212, 0, 0.08), transparent 60%);
  pointer-events: none;
}
.cases .container {
  position: relative;
  z-index: 1;
}
.cases__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  z-index: 1;
}
.case {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.015) 100%);
  border: 1px solid rgba(255, 255, 255, 0.07);
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.case:hover {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-color: rgba(255, 212, 0, 0.22);
}
.case.tilt {
  transform-style: preserve-3d;
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translate3d(0, 0, 0);
}
.case.tilt.is-tilting {
  transition: transform 0.08s linear, background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.case.tilt:not(.is-tilting) {
  transition: transform 0.5s var(--ease), background 0.5s var(--ease), border-color 0.5s var(--ease);
}
.case.tilt:hover {
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg)) translate3d(0, -6px, 0);
}
.case__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #111114;
}
.case__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease), filter 0.5s var(--ease);
  filter: brightness(0.92);
  transform: translate3d(0, var(--case-img-y, 0px), 0) scale(1);
}
.case:hover .case__media img {
  transform: translate3d(0, var(--case-img-y, 0px), 0) scale(1.06);
  filter: brightness(1);
}
.case__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.55) 100%);
  pointer-events: none;
}
.case__tag {
  position: absolute;
  bottom: 12px;
  left: 14px;
  z-index: 2;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.22em;
  color: var(--accent);
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(10, 10, 12, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.case__body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}
.case__body h3 {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
  margin: 0;
  color: #fff;
  letter-spacing: -0.005em;
  line-height: 1.2;
}
.case__body p {
  font-size: 13px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.5;
}

/* =============================================================
   6. LINEUP (light) — cinematic premium cards
   ============================================================= */
.lineup {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--bg-light);
  overflow: hidden;
}
.lineup__blooms {
  position: absolute;
  inset: -20% -10% -10% -10%;
  pointer-events: none;
  z-index: 0;
}
.lineup__bloom {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
  animation: lineupBloomPulse 11s ease-in-out infinite;
}
.lineup__bloom--1 {
  width: min(48vw, 420px);
  height: min(48vw, 420px);
  top: 12%;
  right: -6%;
  background: radial-gradient(circle at center, rgba(91, 58, 255, 0.2), transparent 70%);
  transform: translate(calc(var(--mag-x, 0) * -24px), calc(var(--mag-y, 0) * 20px));
}
.lineup__bloom--2 {
  width: min(40vw, 360px);
  height: min(40vw, 360px);
  bottom: 0;
  left: -4%;
  background: radial-gradient(circle at center, rgba(30, 201, 107, 0.16), transparent 72%);
  animation-duration: 13s;
  animation-delay: -5s;
  transform: translate(calc(var(--mag-x, 0) * 18px), calc(var(--mag-y, 0) * -16px));
}
@keyframes lineupBloomPulse {
  0%,
  100% {
    opacity: 0.28;
  }
  50% {
    opacity: 0.42;
  }
}
.lineup .container {
  position: relative;
  z-index: 1;
}
.lineup__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  perspective: 1500px;
}
.lineup__card {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  background: linear-gradient(180deg, #ffffff 0%, #f4f4f1 100%);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transform-style: preserve-3d;
  transition: box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
  will-change: transform;
}
.lineup__card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px 300px at var(--mx, 50%) var(--my, 0%),
    color-mix(in srgb, var(--accent-color, #1aa3ff) 14%, transparent), transparent 65%);
  opacity: 0;
  transition: opacity 0.5s var(--ease);
  pointer-events: none;
  border-radius: inherit;
  z-index: 0;
}
.lineup__card:hover {
  box-shadow:
    0 40px 80px -28px rgba(10, 10, 12, 0.3),
    0 0 0 1px color-mix(in srgb, var(--accent-color, #1aa3ff) 32%, transparent);
  border-color: transparent;
}
.lineup__card:hover::before {
  opacity: 1;
}

.lineup__media {
  position: relative;
  aspect-ratio: 1 / 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 26px 16px 6px;
  overflow: hidden;
  z-index: 1;
}
.lineup__halo {
  position: absolute;
  inset: 16% 16%;
  background: radial-gradient(closest-side,
    color-mix(in srgb, var(--accent-color, #1aa3ff) 60%, transparent),
    transparent 70%);
  filter: blur(34px);
  z-index: 0;
  opacity: 0.75;
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.lineup__card:hover .lineup__halo {
  opacity: 1;
  transform: scale(1.1);
}
.lineup__media img {
  position: relative;
  z-index: 2;
  height: 92%;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  -webkit-mask: radial-gradient(ellipse 65% 80% at center, #000 55%, transparent 90%);
          mask: radial-gradient(ellipse 65% 80% at center, #000 55%, transparent 90%);
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.18));
  transition: transform 0.6s var(--ease);
  transform: translate3d(0, var(--lp-y, 0px), 0) translateZ(40px);
}
.lineup__card:hover .lineup__media img {
  transform: translate3d(0, var(--lp-y, 0px), 0) translateZ(60px) translateY(-8px) scale(1.06);
}
.lineup__chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 3;
  display: inline-block;
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #0a0a0c;
  text-transform: lowercase;
  transform: translateZ(60px);
  box-shadow: 0 10px 20px -10px rgba(0, 0, 0, 0.3);
}

.lineup__body {
  position: relative;
  z-index: 2;
  padding: 18px 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.lineup__body h3 {
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  margin: 0;
  letter-spacing: -0.01em;
}
.lineup__body p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 14px;
  line-height: 1.55;
  flex: 1;
}
.lineup__actions {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}

/* =============================================================
   7. FOUNDATION (dark)
   ============================================================= */
.foundation {
  position: relative;
  padding: clamp(80px, 10vw, 140px) 0;
  background: var(--bg-dark);
  color: var(--text-light);
  overflow: hidden;
}
.foundation__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(900px 500px at 100% 100%, rgba(255, 212, 0, 0.12), transparent 60%),
    radial-gradient(800px 500px at 0% 0%, rgba(90, 90, 250, 0.1), transparent 60%);
  pointer-events: none;
}
.foundation > .container {
  position: relative;
  z-index: 1;
}
.foundation__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.foundation__copy h2 {
  margin-bottom: 24px;
}
.foundation__copy p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.65;
  margin: 0 0 24px;
  max-width: 520px;
}
.foundation__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}
.foundation__list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.5;
}
.foundation__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 14px;
  height: 2px;
  background: var(--accent);
}
.foundation__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  isolation: isolate;
  aspect-ratio: 1 / 1.05;
  transform-style: preserve-3d;
}
.foundation__pic {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(280px, 50vw, 520px);
  height: auto;
  aspect-ratio: 260 / 90;
  display: block;
  z-index: 0;
  pointer-events: none;
  user-select: none;
}
.foundation__bottle {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  max-width: 540px;
  height: auto;
  object-fit: contain;
  filter: brightness(1.06) drop-shadow(0 50px 60px rgba(0, 0, 0, 0.6));
  animation: float 7s ease-in-out infinite;
}
.foundation__chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 16px 9px 8px;
  background: rgba(20, 20, 24, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 30px -10px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}
.foundation__chip--1 {
  top: 18%;
  left: -2%;
  animation: floatY 6s ease-in-out infinite;
}
.foundation__chip--2 {
  bottom: 22%;
  right: -2%;
  animation: floatY 6s ease-in-out infinite -2s;
}
.foundation__chip-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 999px;
  background: var(--accent);
  color: #0a0a0c;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 11px;
}
.foundation__tag {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  white-space: nowrap;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: clamp(13px, 1.1vw, 16px);
  letter-spacing: 0.32em;
  color: var(--accent);
  text-transform: uppercase;
}

/* =============================================================
   CTA
   ============================================================= */
.cta {
  position: relative;
  padding: clamp(72px, 8vw, 120px) 0;
  background: var(--bg-light);
}
.cta__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  background: #0a0a0c;
  color: #fff;
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 72px);
  position: relative;
  overflow: hidden;
}
.cta__bg {
  position: absolute;
  inset: -12%;
  border-radius: inherit;
  z-index: 0;
  background:
    radial-gradient(720px 420px at 12% 30%, rgba(80, 120, 255, 0.14), transparent 58%),
    radial-gradient(640px 380px at 92% 8%, rgba(255, 212, 0, 0.16), transparent 55%),
    radial-gradient(500px 360px at 50% 100%, rgba(30, 201, 107, 0.08), transparent 60%);
  pointer-events: none;
}
.cta__copy,
.cta__form {
  position: relative;
  z-index: 2;
}
.cta__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px 400px at 100% 0%, rgba(255, 212, 0, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.cta__copy {
  position: relative;
}
.cta__copy h2 {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  margin: 14px 0 16px;
  letter-spacing: -0.03em;
}
.cta__copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
  line-height: 1.6;
  max-width: 460px;
}
.cta__form {
  position: relative;
  display: grid;
  gap: 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 24px;
  backdrop-filter: blur(14px);
}
.cta__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.cta__field span {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}
.cta__field input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  color: #fff;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
  font-family: inherit;
}
.cta__field input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}
.cta__field input:focus {
  border-color: var(--accent);
  background: rgba(255, 255, 255, 0.12);
}
.cta__legal {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}
.cta__success {
  font-size: 14px;
  color: var(--accent);
  margin: 0;
}

/* =============================================================
   8. FOOTER
   ============================================================= */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: clamp(60px, 8vw, 100px) 0 30px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.2fr 2fr auto;
  gap: 48px;
  align-items: start;
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer__logo {
  display: inline-flex;
  align-items: center;
  color: #fff;
  line-height: 0;
}
.footer__logo-svg {
  display: block;
  width: auto;
  height: clamp(30px, 3.4vw, 36px);
  shape-rendering: geometricPrecision;
}
.footer__brand p {
  margin: 0;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}
.footer__cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.footer__cols h4 {
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 16px;
}
.footer__cols ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
  font-size: 14px;
}
.footer__cols a:hover {
  color: var(--accent);
}
.footer__social {
  display: flex;
  gap: 12px;
}
.footer__icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.25s var(--ease), color 0.25s var(--ease), transform 0.25s var(--ease);
}
.footer__icon:hover {
  background: var(--accent);
  color: #0a0a0c;
  transform: translateY(-2px);
}
.footer__icon svg {
  width: 20px;
  height: 20px;
}
.footer__bottom {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

/* =============================================================
   3D TILT BASE (cursor + accessibility)
   ============================================================= */
.tilt {
  transform: perspective(1200px) rotateX(var(--rx, 0deg)) rotateY(var(--ry, 0deg))
    translate3d(0, 0, 0);
  transition: transform 0.6s var(--ease);
}
.tilt.is-tilting {
  transition: transform 0.08s linear;
}

/* =============================================================
   PRODUCT MODAL
   ============================================================= */
.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 3vw, 40px);
}
.modal[aria-hidden="false"] {
  display: flex;
}
.modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(5, 5, 7, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: fadeIn 0.35s var(--ease);
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal__card {
  position: relative;
  width: min(1100px, 100%);
  max-height: 92vh;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  background: linear-gradient(180deg, #0e0e12 0%, #07070a 100%);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 28px;
  box-shadow: 0 60px 120px -30px rgba(0, 0, 0, 0.7);
  animation: modalIn 0.55s var(--ease);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(24px) scale(0.97); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.modal__close {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 5;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
  backdrop-filter: blur(10px);
}
.modal__close:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: rotate(90deg);
}
.modal__close svg {
  width: 18px;
  height: 18px;
}

.modal__media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  overflow: hidden;
  background: linear-gradient(180deg, #ededeb 0%, #d8d8d4 100%);
}
.modal__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(closest-side at 50% 40%,
      color-mix(in srgb, var(--modal-accent, #ffd400) 22%, transparent), transparent 70%);
  filter: blur(20px);
  z-index: 0;
}
.modal__halo {
  display: none;
}
.modal__ring {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(rgba(10, 10, 12, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 12, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  mask: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  pointer-events: none;
}
.modal__img {
  position: relative;
  z-index: 1;
  max-width: 80%;
  max-height: 88%;
  object-fit: contain;
  filter: drop-shadow(0 30px 30px rgba(0, 0, 0, 0.22));
  animation: floatY 6s ease-in-out infinite;
}
.modal__chip {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: rgba(20, 20, 24, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  backdrop-filter: blur(12px);
  white-space: nowrap;
}
.modal__chip::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--modal-accent, #ffd400);
  box-shadow: 0 0 10px var(--modal-accent, #ffd400);
}

.modal__body {
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  overflow-y: auto;
}
.modal__tag {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--modal-accent, var(--accent));
  font-weight: 700;
}
.modal__title {
  font-family: "Manrope", sans-serif;
  font-weight: 900;
  font-size: clamp(34px, 3.4vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  color: #fff;
}
.modal__desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.65;
}
.modal__facts {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.modal__facts li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
}
.modal__facts li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--modal-accent, var(--accent));
  box-shadow: 0 0 10px color-mix(in srgb, var(--modal-accent, var(--accent)) 60%, transparent);
}
.modal__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.modal__cta {
  background: var(--modal-accent, var(--accent));
  color: #0a0a0c;
  box-shadow: 0 16px 40px -10px color-mix(in srgb, var(--modal-accent, var(--accent)) 55%, transparent);
}
.modal__cta:hover {
  filter: brightness(1.05);
}
.modal__hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.modal-open {
  overflow: hidden;
}

/* =============================================================
   REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translate3d(0, 44px, 0);
  transition: opacity 0.95s var(--ease), transform 0.95s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1040px) {
  .topnav__menu {
    display: none;
  }
  .topnav.is-menu-open .topnav__menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 18px;
    padding: 24px clamp(20px, 5vw, 40px) 28px;
    background: rgba(8, 8, 10, 0.96);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
  }
  .topnav__burger {
    display: inline-flex;
  }
  .hero__inner {
    text-align: center;
    padding-top: 20px;
    min-height: auto;
  }
  .hero__subtitle {
    margin-inline: auto;
  }
  .hero__copy {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .hero__lead {
    margin-inline: auto;
  }
  .hero__actions {
    justify-content: center;
  }
  .hero__visual {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 360px;
    margin-top: 40px;
  }
  .hero__product {
    width: min(620px, 100%);
    height: auto;
    object-fit: contain;
    margin: 0 auto;
    -webkit-mask-image: radial-gradient(
      ellipse 95% 90% at 50% 48%,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.78) 76%,
      transparent 100%
    );
    mask-image: radial-gradient(
      ellipse 95% 90% at 50% 48%,
      #000 0%,
      #000 55%,
      rgba(0, 0, 0, 0.78) 76%,
      transparent 100%
    );
  }
  .taste__grid,
  .lineup__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .steps__rail {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .steps__line {
    display: none;
  }
  .modal__card {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }
  .modal__media {
    aspect-ratio: 4/3;
    padding: 30px;
  }
  .modal__body {
    padding: 32px 28px 36px;
  }
  .modal__facts {
    grid-template-columns: 1fr;
  }
  .brew {
    aspect-ratio: 1 / 1.05;
  }
  .cases__grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .about__inner,
  .cta__inner,
  .foundation__inner,
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .foundation__brand {
    aspect-ratio: auto;
    min-height: 540px;
    margin-top: 20px;
  }
  .foundation__bottle {
    max-width: 380px;
  }
  .foundation__chip--1 {
    left: 4%;
  }
  .foundation__chip--2 {
    right: 4%;
  }
  .footer__cols {
    grid-template-columns: repeat(3, 1fr);
  }
  .about__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: clamp(48px, 14vw, 84px);
  }
  .hero__stats {
    flex-wrap: wrap;
    justify-content: center;
    gap: 22px;
  }
  .taste__grid,
  .steps__rail,
  .lineup__grid {
    grid-template-columns: 1fr;
  }
  .cases__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .flavor__actions,
  .lineup__actions {
    flex-direction: column;
    gap: 8px;
  }
  .brew__bignum {
    font-size: clamp(50px, 14vw, 90px);
  }
  .brew__caption {
    min-width: 180px;
    font-size: 12px;
  }
  .footer__cols {
    grid-template-columns: 1fr;
  }
  .footer__bottom {
    flex-direction: column;
    gap: 8px;
  }
  .hero__chip {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  :root {
    --mag-x: 0 !important;
    --mag-y: 0 !important;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .marquee__track {
    animation: none !important;
    transform: none !important;
  }
}
