:root {
  --cream: #f7f1e8;
  --paper: #fffdf8;
  --cocoa: #4a2418;
  --brown: #7a3e29;
  --deep: #1e1715;
  --orange: #ff6938;
  --orange-soft: #ffb28f;
  --lime: #d7ff43;
  --pink: #ff6d9b;
  --line: rgba(74, 36, 24, 0.16);
  --shadow: 0 28px 70px rgba(74, 36, 24, 0.14);
  --radius: 34px;
  --max: 1240px;
  --display: "Arial Black", "Helvetica Neue", Arial, sans-serif;
  --body: Inter, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--deep);
  background: var(--cream);
  font-family: var(--body);
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
button,
input {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--lime);
  color: var(--deep);
  border-radius: 99px;
  font-weight: 900;
}
.skip-link:focus {
  top: 1rem;
}

.topbar {
  position: fixed;
  inset: 18px 22px auto;
  z-index: 100;
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 1.25rem;
  min-height: 70px;
  padding: 10px 12px 10px 22px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 24px;
  background: rgba(31, 24, 21, 0.68);
  color: white;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.topbar.scrolled {
  background: rgba(31, 24, 21, 0.91);
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  width: fit-content;
}
.wordmark span {
  font: 900 2rem/1 var(--display);
  letter-spacing: -0.13em;
  color: var(--lime);
}
.wordmark small {
  font-size: 0.67rem;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: 0.12em;
}
.nav-scroll {
  display: flex;
  justify-content: center;
  gap: clamp(0.7rem, 2vw, 1.8rem);
}
.nav-scroll a {
  position: relative;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.nav-scroll a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -7px;
  height: 2px;
  background: var(--lime);
  transition: right 0.25s ease;
}
.nav-scroll a:hover::after,
.nav-scroll a:focus-visible::after {
  right: 0;
}
.nav-buy {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 0.86rem 1.1rem;
  border-radius: 16px;
  background: var(--lime);
  color: var(--deep);
  font-size: 0.78rem;
  font-weight: 950;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.nav-buy span {
  font-size: 1.1rem;
}

.hero {
  position: relative;
  min-height: min(940px, 100svh);
  display: flex;
  align-items: center;
  color: white;
  isolation: isolate;
  overflow: hidden;
  background: var(--deep);
}
.hero-bg,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg {
  object-fit: cover;
  object-position: center;
  z-index: -4;
}
.hero-shade {
  z-index: -3;
  background:
    linear-gradient(
      90deg,
      rgba(17, 12, 10, 0.08) 0%,
      rgba(17, 12, 10, 0.17) 38%,
      rgba(17, 12, 10, 0.85) 73%,
      rgba(17, 12, 10, 0.86) 100%
    ),
    linear-gradient(0deg, rgba(17, 12, 10, 0.7) 0%, transparent 42%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: min(710px, 44vw);
  margin: 60px 5vw 40px auto;
  padding: 4rem 0;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin: 0 0 1.25rem;
  color: var(--brown);
  font-size: 0.73rem;
  font-weight: 950;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.eyebrow > span {
  width: 34px;
  height: 3px;
  background: var(--orange);
  border-radius: 9px;
}
.eyebrow.light {
  color: rgba(255, 255, 255, 0.8);
}
.eyebrow.light > span {
  background: var(--lime);
}
.hero h1,
h2 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  line-height: 0.89;
  letter-spacing: -0.075em;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(4.2rem, 7.3vw, 8.6rem);
}
h2 {
  font-size: clamp(3rem, 6.2vw, 6.8rem);
}
h1 em,
h2 em {
  color: var(--orange);
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.02);
}
.hero h1 em {
  color: var(--lime);
}
.hero-copy {
  max-width: 580px;
  margin: 2rem 0 2.2rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.4rem);
  min-height: 58px;
  padding: 1rem 1.4rem;
  border: 0;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    transform 0.24s ease,
    box-shadow 0.24s ease,
    background 0.24s ease;
}
.button span {
  font-size: 1.15em;
  transition: transform 0.24s ease;
}
.button:hover,
.button:focus-visible {
  transform: translateY(-4px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}
.button:hover span {
  transform: translate(3px, -3px);
}
.button-lime {
  color: var(--deep);
  background: var(--lime);
}
.button-dark {
  color: white;
  background: var(--deep);
}
.button-cocoa {
  color: white;
  background: var(--cocoa);
}
.button-orange {
  color: white;
  background: var(--orange);
}
.button-xl {
  min-height: 72px;
  padding: 1.25rem clamp(1.5rem, 4vw, 3.5rem);
  border-radius: 22px;
  font-size: clamp(0.82rem, 1.2vw, 1rem);
}
.text-link {
  color: white;
  font-size: 0.8rem;
  font-weight: 900;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px;
}
.hero-product {
  position: absolute;
  z-index: 1;
  left: 41%;
  bottom: 72px;
  width: clamp(150px, 18vw, 290px);
  filter: drop-shadow(0 28px 35px rgba(0, 0, 0, 0.45));
  animation: productFloat 5s ease-in-out infinite;
}
.hero-product img {
  width: 100%;
  height: auto;
}
.product-glow {
  position: absolute;
  inset: 20% 0 0;
  z-index: -1;
  border-radius: 50%;
  background: rgba(215, 255, 67, 0.19);
  filter: blur(30px);
}
.spin-badge {
  position: absolute;
  right: -12px;
  top: 12%;
  display: grid;
  place-content: center;
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font: 900 1.1rem/1 var(--display);
  letter-spacing: -0.04em;
  text-align: center;
  transform: rotate(9deg);
  animation: badgeSpin 12s linear infinite;
}
.spin-badge small {
  font: 900 0.5rem/1 var(--body);
  letter-spacing: 0.08em;
}
.hero-orb {
  position: absolute;
  z-index: -2;
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.45;
  animation: drift 8s ease-in-out infinite alternate;
}
.orb-one {
  width: 150px;
  height: 150px;
  right: 13%;
  top: 18%;
  border: 1px solid var(--orange);
}
.orb-two {
  width: 34px;
  height: 34px;
  right: 47%;
  top: 27%;
  background: var(--lime);
  animation-delay: -3s;
}
.hero-marquee {
  position: absolute;
  inset: auto 0 0;
  overflow: hidden;
  padding: 13px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(30, 23, 21, 0.64);
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.17em;
  white-space: nowrap;
}
.hero-marquee div {
  width: max-content;
  animation: marquee 24s linear infinite;
}

.section {
  position: relative;
  padding: clamp(5rem, 10vw, 9rem) max(24px, 5vw);
}
.section-head,
.window-copy,
.knowledge-head {
  width: min(900px, 100%);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.section-head .eyebrow,
.window-copy .eyebrow,
.knowledge-head .eyebrow {
  justify-content: center;
}
.section-head > p:last-child,
.window-copy > p:last-child,
.knowledge-head > p:last-child {
  max-width: 680px;
  margin: 2rem auto 0;
  color: #66504a;
  font-size: 1.12rem;
}
.intro {
  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 105, 56, 0.15),
      transparent 25%
    ),
    radial-gradient(
      circle at 88% 70%,
      rgba(215, 255, 67, 0.35),
      transparent 22%
    ),
    var(--cream);
}
.intro h2 em,
.knowledge h2 em {
  color: var(--orange);
}
.stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: var(--max);
  margin: auto;
}
.stat-card {
  position: relative;
  min-height: 380px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}
.stat-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  bottom: -70px;
  border: 36px solid rgba(255, 255, 255, 0.17);
  border-radius: 50%;
}
.stat-card.cocoa {
  background: var(--cocoa);
  color: white;
}
.stat-card.orange {
  background: var(--orange);
  color: white;
  transform: translateY(40px) rotate(1.5deg);
}
.stat-card.lime {
  background: var(--lime);
  color: var(--deep);
}
.stat-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin-bottom: 3rem;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-weight: 950;
}
.stat-card strong {
  font: 950 clamp(4.5rem, 7vw, 7rem) / 0.8 var(--display);
  letter-spacing: -0.09em;
}
.stat-card b {
  margin-left: 0.35rem;
  font: 950 1.4rem var(--display);
  text-transform: uppercase;
}
.stat-card h3 {
  margin: 2.1rem 0 0.6rem;
  font: 950 1.3rem var(--display);
  text-transform: uppercase;
}
.stat-card p {
  margin: 0;
  opacity: 0.76;
}
.center-cta {
  display: flex;
  justify-content: center;
  margin-top: clamp(3.5rem, 7vw, 6rem);
}

.feature-split {
  display: grid;
  grid-template-columns: minmax(300px, 0.55fr) minmax(760px, 1.45fr);
  gap: clamp(2rem, 3vw, 3.5rem);
  align-items: center;
  max-width: 1680px;
  margin: auto;
  background: var(--paper);
}
.feature-copy {
  min-width: 0;
  width: 100%;
}
.feature-photo {
  position: relative;
  min-height: 730px;
}
.feature-photo img {
  width: 100%;
  height: 730px;
  object-fit: cover;
  border-radius: 180px 32px 180px 32px;
  box-shadow: var(--shadow);
}
.photo-tag {
  position: absolute;
  right: -25px;
  bottom: 10%;
  display: grid;
  place-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--deep);
  font: 950 1rem/1.05 var(--display);
  text-align: center;
  transform: rotate(-8deg);
}
.feature-copy > p:not(.eyebrow) {
  max-width: 650px;
  color: #67534b;
  font-size: 1.05rem;
}
.feature-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 5.5vw, 6rem);
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}
.feature-copy h2 em {
  color: var(--orange);
}
.hydro-lab {
  margin-top: 2.3rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--cream);
}
.lab-topline {
  display: flex;
  justify-content: space-between;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--line);
  color: var(--brown);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.live-dot::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: #55c75b;
  animation: blink 1.4s ease-in-out infinite;
}
.protein-chain {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 126px;
}
.protein-chain span {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  border: 2px solid var(--cocoa);
  border-radius: 50%;
  background: white;
  color: var(--cocoa);
  font-weight: 950;
  transition:
    transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s ease;
}
.protein-chain i {
  width: 20px;
  height: 2px;
  background: var(--orange);
  transition:
    transform 0.5s ease,
    opacity 0.4s ease;
}
.protein-chain.split span:nth-of-type(odd) {
  transform: translate(-12px, -14px) rotate(-9deg);
  background: var(--lime);
}
.protein-chain.split span:nth-of-type(even) {
  transform: translate(12px, 14px) rotate(9deg);
  background: var(--orange-soft);
}
.protein-chain.split i {
  opacity: 0;
  transform: scaleX(0) rotate(35deg);
}
.hydro-lab > p {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 0.9rem;
}
.lab-button {
  width: 100%;
  padding: 1rem;
  border: 0;
  border-radius: 16px;
  background: var(--deep);
  color: white;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}
.lab-button span {
  color: var(--lime);
}
.local-cta {
  margin-top: 2rem;
  width: 100%;
}

.recovery-window {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.3), transparent),
    var(--orange);
  overflow: hidden;
}
.recovery-window::before {
  content: "60";
  position: absolute;
  left: -4vw;
  top: 44%;
  color: rgba(255, 255, 255, 0.12);
  font: 950 34vw/0.6 var(--display);
}
.window-copy {
  position: relative;
}
.window-copy .eyebrow {
  color: white;
}
.window-copy .eyebrow span {
  background: var(--lime);
}
.window-copy h2 em {
  color: var(--lime);
}
.window-copy > p:last-child {
  color: rgba(255, 255, 255, 0.76);
}
.window-tool {
  position: relative;
  display: grid;
  grid-template-columns: 380px 1fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  max-width: 1080px;
  margin: auto;
  padding: clamp(2rem, 4vw, 4rem);
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 40px;
  background: rgba(255, 255, 255, 0.17);
  box-shadow: 0 30px 80px rgba(104, 37, 18, 0.19);
  backdrop-filter: blur(14px);
}
.clock-face {
  --progress: 120deg;
  position: relative;
  display: grid;
  place-items: center;
  width: min(100%, 330px);
  aspect-ratio: 1;
  margin: auto;
  border-radius: 50%;
  background: conic-gradient(
    var(--lime) 0 var(--progress),
    rgba(255, 255, 255, 0.2) var(--progress) 360deg
  );
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
}
.clock-face::before {
  content: "";
  position: absolute;
  inset: 23px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 20px 50px rgba(255, 255, 255, 0.12);
}
.clock-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
}
.clock-center strong {
  font: 950 6.6rem/0.8 var(--display);
  letter-spacing: -0.1em;
}
.clock-center span {
  margin-top: 1rem;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.18em;
}
.range-wrap label {
  display: block;
  margin-bottom: 1.2rem;
  color: white;
  font-weight: 900;
}
input[type="range"] {
  width: 100%;
  height: 8px;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.26);
  appearance: none;
}
input[type="range"]::-webkit-slider-thumb {
  width: 32px;
  height: 32px;
  border: 7px solid var(--deep);
  border-radius: 50%;
  background: var(--lime);
  appearance: none;
  cursor: grab;
}
input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  border: 7px solid var(--deep);
  border-radius: 50%;
  background: var(--lime);
}
.range-labels {
  display: flex;
  justify-content: space-between;
  margin-top: 0.65rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.7rem;
  font-weight: 900;
}
.window-result {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 1rem;
  border-radius: 18px;
  background: white;
  color: var(--deep);
}
.window-result > span {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--lime);
  font-weight: 950;
}
.window-result p {
  margin: 0;
  font-size: 0.82rem;
}
.window-result strong {
  display: block;
  font-size: 0.92rem;
}

.mix-section {
  background: var(--deep);
  color: white;
  overflow: hidden;
}
.mix-section::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  right: -170px;
  top: 30%;
  border: 80px solid rgba(215, 255, 67, 0.06);
  border-radius: 50%;
}
.mix-intro {
  max-width: var(--max);
  margin: 0 auto 3.5rem;
}
.mix-intro h2 em {
  color: var(--lime);
}
.mix-intro > p:last-child {
  color: rgba(255, 255, 255, 0.65);
}
.mix-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 22px;
  max-width: var(--max);
  margin: auto;
}
.mix-photo img {
  width: 100%;
  height: 100%;
  min-height: 690px;
  object-fit: cover;
  border-radius: 34px;
}
.shaker-game {
  display: flex;
  flex-direction: column;
  min-height: 690px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 34px;
  background: #2d211d;
}
.light-line {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.14);
}
.shaker-stage {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  gap: 2rem;
}
.shaker {
  position: relative;
  width: 150px;
  height: 310px;
  transform-origin: 50% 30%;
}
.shaker-lid {
  position: absolute;
  left: 16px;
  top: 0;
  width: 118px;
  height: 48px;
  border-radius: 14px 14px 7px 7px;
  background: var(--lime);
  box-shadow: inset 0 -8px 0 rgba(0, 0, 0, 0.11);
}
.shaker-cup {
  position: absolute;
  inset: 40px 4px 0;
  border: 3px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px 16px 43px 43px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  clip-path: polygon(6% 0, 94% 0, 84% 100%, 16% 100%);
}
.shake-liquid {
  position: absolute;
  inset: auto 0 0;
  height: 22%;
  background: rgba(135, 190, 255, 0.58);
  transition:
    height 0.4s ease,
    background 0.3s ease;
}
.scoop-dot {
  position: absolute;
  left: 50%;
  top: 23%;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #9a5d44;
  opacity: 0;
  transform: translate(-50%, -70px);
}
.shaker.scoops-1 .s1,
.shaker.scoops-2 .s1,
.shaker.scoops-2 .s2,
.shaker.scoops-3 .s1,
.shaker.scoops-3 .s2,
.shaker.scoops-3 .s3 {
  opacity: 1;
  animation: scoopDrop 0.5s ease forwards;
}
.scoop-dot.s2 {
  left: 42%;
  top: 27%;
}
.scoop-dot.s3 {
  left: 60%;
  top: 31%;
}
.shaker.shaking {
  animation: shakerShake 0.12s linear 12;
}
.shaker.mixed .scoop-dot {
  opacity: 0;
}
.shaker.mixed .shake-liquid {
  height: 68%;
  background: #8b4c38;
}
.mix-score strong {
  display: block;
  color: var(--lime);
  font: 950 3rem/1 var(--display);
}
.mix-score span {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.68rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}
.mix-controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.mix-controls > button,
.liquid-button {
  min-height: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: white;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  cursor: pointer;
}
.mix-controls > button:last-of-type {
  grid-column: 1 / -1;
  background: var(--lime);
  color: var(--deep);
}
.mix-controls > button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.liquid-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}
.liquid-button {
  min-height: 50px;
}
.liquid-button.active {
  background: var(--orange);
  border-color: var(--orange);
}
.game-message {
  margin: 0.9rem 0 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.82rem;
  text-align: center;
}

.micro-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  background: var(--paper);
}
.micro-copy {
  max-width: 650px;
}
.micro-copy h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.2rem, 5.8vw, 6.5rem);
}
.micro-copy h2 em {
  color: var(--orange);
}
.micro-copy > p:last-child {
  color: #66504a;
  font-size: 1.05rem;
}
.micro-visual {
  position: relative;
}
.micro-visual img {
  width: 100%;
  height: 620px;
  object-fit: cover;
  border-radius: 50% 50% 32px 32px;
}
.molecule-float {
  position: absolute;
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: var(--lime);
  border: 5px solid white;
  box-shadow: var(--shadow);
  color: var(--deep);
  font: 950 1.1rem var(--display);
  animation: drift 4s ease-in-out infinite alternate;
}
.m-one {
  left: -20px;
  top: 15%;
}
.m-two {
  right: 4%;
  top: -25px;
  background: var(--orange);
  color: white;
  animation-delay: -1.2s;
}
.m-three {
  right: -20px;
  bottom: 16%;
  background: var(--cocoa);
  color: white;
  animation-delay: -2.4s;
}
.electrolyte-lab {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: var(--max);
  width: 100%;
  margin: 1rem auto 0;
}
.electro-buttons {
  display: grid;
  gap: 0.75rem;
}
.electro {
  display: grid;
  grid-template-columns: 66px 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--cream);
  color: var(--deep);
  text-align: left;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background 0.2s ease;
}
.electro:hover {
  transform: translateX(5px);
}
.electro.active {
  background: var(--lime);
}
.electro > span {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--deep);
  color: white;
  font: 950 1rem var(--display);
}
.electro b {
  font: 950 1rem var(--display);
  text-transform: uppercase;
}
.electro small {
  color: #6a5148;
  font-weight: 800;
}
.electro-display {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 310px;
  padding: 2rem;
  border-radius: 28px;
  background: var(--deep);
  color: white;
}
.pulse-rings {
  position: relative;
  display: grid;
  place-items: center;
  width: 180px;
  height: 180px;
}
.pulse-rings i {
  position: absolute;
  inset: 30px;
  border: 1px solid var(--lime);
  border-radius: 50%;
  animation: pulseRing 2.8s ease-out infinite;
}
.pulse-rings i:nth-child(2) {
  animation-delay: -0.9s;
}
.pulse-rings i:nth-child(3) {
  animation-delay: -1.8s;
}
.pulse-rings strong {
  color: var(--lime);
  font: 950 3.8rem var(--display);
}
.electro-display h3 {
  margin: 0;
  font: 950 2rem var(--display);
  text-transform: uppercase;
}
.electro-display p:last-child {
  color: rgba(255, 255, 255, 0.65);
}

.nutrition-section {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  padding: 0;
  background: var(--cocoa);
  color: white;
}
.nutrition-photo {
  position: relative;
  min-height: 900px;
}
.nutrition-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(39, 16, 10, 0.42), transparent 52%);
}
.nutrition-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nutrition-photo > span {
  position: absolute;
  z-index: 2;
  left: 2rem;
  bottom: 2rem;
  display: grid;
  place-content: center;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--lime);
  color: var(--deep);
  font: 950 2.2rem/0.8 var(--display);
  text-align: center;
}
.nutrition-photo small {
  font: 950 0.6rem var(--body);
  letter-spacing: 0.08em;
}
.nutrition-content {
  padding: clamp(4rem, 8vw, 8rem) clamp(2rem, 6vw, 7rem);
}
.nutrition-content h2 {
  margin-bottom: 2rem;
}
.nutrition-content h2 em {
  color: var(--lime);
}
.nutrition-toggle {
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
  padding: 5px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
}
.nutrition-toggle button {
  padding: 0.75rem 1.2rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.nutrition-toggle button.active {
  background: var(--lime);
  color: var(--deep);
}
.nutri-grid {
  margin-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.nutri-grid > div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.nutri-grid span {
  color: rgba(255, 255, 255, 0.68);
}
.nutri-grid strong {
  font-family: var(--display);
}
.micro-details {
  margin-top: 1.1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.micro-details summary {
  display: flex;
  justify-content: space-between;
  padding: 1rem 0;
  font-weight: 900;
  cursor: pointer;
  list-style: none;
}
.micro-details summary::-webkit-details-marker {
  display: none;
}
.micro-details[open] summary span {
  transform: rotate(45deg);
}
.micro-table {
  padding-bottom: 1rem;
}
.micro-table p {
  display: flex;
  justify-content: space-between;
  margin: 0.5rem 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}
.micro-table b {
  color: white;
}

.knowledge {
  background: var(--cream);
}
.quiz-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 22px;
  max-width: var(--max);
  margin: auto;
}
.quiz-photo img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  border-radius: 34px;
}
.quiz-card {
  display: flex;
  flex-direction: column;
  min-height: 650px;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: var(--shadow);
}
.quiz-progress {
  height: 7px;
  border-radius: 9px;
  background: #ede5dc;
  overflow: hidden;
}
.quiz-progress span {
  display: block;
  width: 33.333%;
  height: 100%;
  background: var(--orange);
  transition: width 0.4s ease;
}
.quiz-kicker {
  margin: 2rem 0 1rem;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.quiz-card h3 {
  margin: 0 0 2rem;
  font: 950 clamp(2rem, 3vw, 3.3rem) / 1 var(--display);
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.answer-list {
  display: grid;
  gap: 0.7rem;
}
.answer {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1rem;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--cream);
  color: var(--deep);
  text-align: left;
  cursor: pointer;
}
.answer b {
  display: grid;
  place-content: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: white;
}
.answer.correct {
  border-color: #6abf63;
  background: #dcf8d8;
}
.answer.wrong {
  border-color: var(--orange);
  background: #ffe1d6;
}
.answer:disabled {
  cursor: default;
}
.quiz-feedback {
  min-height: 48px;
  margin: 1.25rem 0;
  color: #67534b;
  font-size: 0.86rem;
}
.quiz-next {
  margin-top: auto;
  padding: 1rem;
  border: 0;
  border-radius: 14px;
  background: var(--deep);
  color: white;
  font-size: 0.74rem;
  font-weight: 950;
  text-transform: uppercase;
  cursor: pointer;
}
.quiz-next:disabled {
  opacity: 0.28;
  cursor: not-allowed;
}

.ingredients {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: clamp(2rem, 7vw, 7rem);
  background: var(--lime);
  overflow: hidden;
}
.ingredients-card {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.ingredients-card h2 {
  margin-bottom: 2rem;
  font-size: clamp(3.4rem, 6vw, 6.6rem);
}
.ingredients-card h2 em {
  color: var(--orange);
}
.ingredient-lead {
  font-size: 1.12rem;
}
.ingredients details {
  margin: 2rem 0 1rem;
  border-top: 1px solid rgba(30, 23, 21, 0.23);
  border-bottom: 1px solid rgba(30, 23, 21, 0.23);
}
.ingredients summary {
  display: flex;
  justify-content: space-between;
  padding: 1.2rem 0;
  font-weight: 950;
  cursor: pointer;
  list-style: none;
}
.ingredients summary::-webkit-details-marker {
  display: none;
}
.ingredients details p {
  font-size: 0.79rem;
}
.allergen-note {
  color: #493f29;
  font-size: 0.8rem;
}
.ingredient-art {
  position: relative;
  height: 570px;
}
.cocoa-disc,
.orange-disc,
.protein-disc {
  position: absolute;
  display: grid;
  place-content: center;
  border-radius: 50%;
  box-shadow: var(--shadow);
  font: 950 clamp(1.3rem, 3vw, 2.5rem) / 0.9 var(--display);
  text-align: center;
}
.cocoa-disc {
  width: 360px;
  height: 360px;
  right: -40px;
  top: 80px;
  background: var(--cocoa);
  color: white;
  animation: drift 5s ease-in-out infinite alternate;
}
.orange-disc {
  width: 230px;
  height: 230px;
  left: -10px;
  bottom: 10px;
  background: var(--orange);
  color: white;
  animation: drift 4s ease-in-out -2s infinite alternate;
}
.protein-disc {
  width: 190px;
  height: 190px;
  left: 70px;
  top: 0;
  background: white;
  color: var(--deep);
  transform: rotate(-10deg);
}
.protein-disc small {
  font: 950 0.7rem var(--body);
  letter-spacing: 0.12em;
}

.faq-section {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(2rem, 7vw, 7rem);
  background: var(--paper);
}
.faq-title {
  position: sticky;
  top: 120px;
  align-self: start;
}
.faq-title h2 {
  margin-bottom: 2rem;
  font-size: clamp(3rem, 5.3vw, 5.8rem);
}
.faq-title h2 em {
  color: var(--orange);
}
.faq-title img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  border-radius: 24px;
  margin-bottom: 1.2rem;
}
.faq-title .button {
  width: 100%;
}
.faq-list details {
  border-top: 1px solid var(--line);
}
.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.75rem 0;
  font: 950 clamp(1.1rem, 2vw, 1.45rem) / 1.2 var(--display);
  letter-spacing: -0.025em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: var(--orange);
  font-size: 1.6rem;
  transition: transform 0.25s ease;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  max-width: 740px;
  margin: 0 0 1.8rem;
  color: #68524a;
}

.final-cta {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 820px;
  padding: clamp(5rem, 10vw, 9rem) max(24px, 7vw);
  color: white;
  overflow: hidden;
  isolation: isolate;
}
.final-cta > img:first-child,
.final-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.final-cta > img:first-child {
  z-index: -3;
  object-fit: cover;
  object-position: center;
}
.final-shade {
  z-index: -2;
  background:
    linear-gradient(
      90deg,
      rgba(18, 12, 10, 0.9) 0%,
      rgba(18, 12, 10, 0.62) 50%,
      rgba(18, 12, 10, 0.26) 100%
    ),
    linear-gradient(0deg, rgba(18, 12, 10, 0.42), transparent);
}
.final-content {
  position: relative;
  z-index: 1;
  max-width: 790px;
}
.final-content h2 {
  font-size: clamp(4rem, 7.5vw, 8rem);
}
.final-content h2 em {
  color: var(--lime);
}
.final-content > p:not(.eyebrow) {
  max-width: 620px;
  margin: 2rem 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}
.final-product {
  position: absolute !important;
  z-index: 0 !important;
  inset: auto 29vw 1.5rem auto !important;
  width: min(20vw, 270px) !important;
  height: auto !important;
  filter: drop-shadow(0 30px 35px rgba(0, 0, 0, 0.42));
  animation: productFloat 5s ease-in-out infinite;
}

footer {
  padding: 4rem max(24px, 5vw) 2rem;
  background: var(--deep);
  color: white;
}
.footer-top {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 2rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}
.footer-top > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.78rem;
  text-align: center;
}
.footer-top > a:last-child {
  justify-self: end;
  color: var(--lime);
  font-weight: 950;
  text-underline-offset: 6px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-top: 1.5rem;
}
.footer-bottom p {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.7rem;
}
.floating-buy {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: none;
  align-items: center;
  gap: 0.7rem;
  padding: 0.8rem 1rem;
  border-radius: 16px;
  background: var(--lime);
  color: var(--deep);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.24);
  font-size: 0.7rem;
  font-weight: 950;
  text-decoration: none;
}
.floating-buy b {
  font-size: 1.2rem;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.2, 0.75, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

@keyframes marquee {
  to {
    transform: translateX(-50%);
  }
}
@keyframes productFloat {
  50% {
    transform: translateY(-14px) rotate(1.5deg);
  }
}
@keyframes badgeSpin {
  to {
    transform: rotate(369deg);
  }
}
@keyframes drift {
  to {
    transform: translate(18px, -20px) rotate(5deg);
  }
}
@keyframes blink {
  50% {
    opacity: 0.25;
    transform: scale(0.7);
  }
}
@keyframes pulseRing {
  0% {
    transform: scale(0.45);
    opacity: 0;
  }
  25% {
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
@keyframes scoopDrop {
  to {
    transform: translate(-50%, 130px);
  }
}
@keyframes shakerShake {
  0% {
    transform: rotate(-6deg) translateX(-3px);
  }
  50% {
    transform: rotate(6deg) translateX(3px);
  }
  100% {
    transform: rotate(-6deg) translateX(-3px);
  }
}

@media (max-width: 1250px) {
  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    max-width: 920px;
    margin: auto;
  }
  .feature-photo {
    min-height: 650px;
  }
  .feature-photo img {
    height: 650px;
  }
}

@media (max-width: 1050px) {
  .topbar {
    grid-template-columns: auto 1fr auto;
  }
  .wordmark small {
    display: none;
  }
  .nav-scroll {
    justify-content: flex-start;
    overflow-x: auto;
  }
  .hero-content {
    width: 48vw;
    margin-right: 4vw;
  }
  .hero-product {
    left: 37%;
  }
  .feature-split {
    grid-template-columns: 1fr;
  }
  .feature-copy {
    max-width: 850px;
    margin: auto;
  }
  .feature-photo {
    min-height: 650px;
  }
  .feature-photo img {
    height: 650px;
  }
  .micro-section {
    grid-template-columns: 1fr 1fr;
  }
  .electrolyte-lab {
    grid-template-columns: 1fr;
  }
  .nutrition-section {
    grid-template-columns: 1fr;
  }
  .nutrition-photo {
    min-height: 720px;
  }
  .ingredients {
    grid-template-columns: 1fr;
  }
  .ingredient-art {
    height: 480px;
    max-width: 640px;
    width: 100%;
    margin: auto;
  }
}

@media (max-width: 780px) {
  .topbar {
    inset: 10px 10px auto;
    grid-template-columns: auto 1fr;
    min-height: 58px;
    padding: 8px 10px 8px 16px;
    border-radius: 18px;
  }
  .wordmark span {
    font-size: 1.7rem;
  }
  .nav-scroll {
    display: none;
  }
  .nav-buy {
    justify-self: end;
    padding: 0.72rem 0.9rem;
    border-radius: 12px;
  }
  .hero {
    min-height: 900px;
    align-items: flex-end;
  }
  .hero-bg {
    object-position: 31% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      rgba(17, 12, 10, 0.96) 0%,
      rgba(17, 12, 10, 0.72) 50%,
      rgba(17, 12, 10, 0.18) 87%
    );
  }
  .hero-content {
    width: auto;
    margin: 0;
    padding: 19rem 24px 8rem;
  }
  .hero h1 {
    font-size: clamp(3.8rem, 17vw, 6rem);
  }
  .hero-copy {
    margin: 1.4rem 0;
  }
  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .hero-product {
    left: auto;
    right: -26px;
    bottom: 65px;
    width: 150px;
    opacity: 0.92;
  }
  .spin-badge {
    width: 60px;
    height: 60px;
    font-size: 0.78rem;
  }
  .section {
    padding: 5.5rem 20px;
  }
  h2 {
    font-size: clamp(2.8rem, 14vw, 4.8rem);
  }
  .stat-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    min-height: 320px;
  }
  .stat-card.orange {
    transform: rotate(1.5deg);
  }
  .feature-split {
    padding-inline: 20px;
  }
  .feature-photo {
    min-height: 530px;
  }
  .feature-photo img {
    height: 530px;
    border-radius: 100px 24px 100px 24px;
  }
  .photo-tag {
    right: -8px;
    width: 110px;
    height: 110px;
    font-size: 0.77rem;
  }
  .feature-copy h2 {
    font-size: clamp(3rem, 13vw, 4.8rem);
  }
  .protein-chain {
    gap: 4px;
  }
  .protein-chain span {
    width: 40px;
    height: 40px;
  }
  .protein-chain i {
    width: 12px;
  }
  .window-tool {
    grid-template-columns: 1fr;
    padding: 1.4rem;
    border-radius: 28px;
  }
  .clock-face {
    width: 260px;
  }
  .clock-center strong {
    font-size: 5rem;
  }
  .mix-layout {
    grid-template-columns: 1fr;
  }
  .mix-photo img {
    min-height: 470px;
  }
  .shaker-game {
    min-height: 640px;
  }
  .micro-section {
    grid-template-columns: 1fr;
  }
  .micro-visual img {
    height: 530px;
  }
  .electrolyte-lab {
    grid-column: 1;
  }
  .electro {
    grid-template-columns: 60px 1fr;
  }
  .electro small {
    grid-column: 2;
  }
  .electro-display {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .pulse-rings {
    margin: auto;
  }
  .nutrition-photo {
    min-height: 620px;
  }
  .nutrition-content {
    padding: 5rem 20px;
  }
  .quiz-layout {
    grid-template-columns: 1fr;
  }
  .quiz-photo img {
    height: 480px;
  }
  .quiz-card {
    min-height: 610px;
    padding: 2rem 1.25rem;
  }
  .ingredient-art {
    height: 400px;
  }
  .cocoa-disc {
    width: 270px;
    height: 270px;
  }
  .orange-disc {
    width: 170px;
    height: 170px;
  }
  .protein-disc {
    width: 140px;
    height: 140px;
  }
  .faq-section {
    grid-template-columns: 1fr;
  }
  .faq-title {
    position: static;
  }
  .final-cta {
    min-height: 850px;
    align-items: flex-end;
    padding-bottom: 7rem;
  }
  .final-cta > img:first-child {
    object-position: 55% center;
  }
  .final-shade {
    background: linear-gradient(
      0deg,
      rgba(18, 12, 10, 0.94) 0%,
      rgba(18, 12, 10, 0.7) 55%,
      rgba(18, 12, 10, 0.25) 100%
    );
  }
  .final-product {
    display: none;
  }
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-mark {
    margin: auto;
  }
  .footer-top > a:last-child {
    justify-self: center;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  .floating-buy {
    display: flex;
  }
}

@media (max-width: 430px) {
  .nav-buy {
    font-size: 0.67rem;
    gap: 0.55rem;
  }
  .button {
    width: 100%;
  }
  .hero-product {
    display: none;
  }
  .hero-content {
    padding-top: 24rem;
  }
  .mix-controls {
    grid-template-columns: 1fr;
  }
  .mix-controls > button:last-of-type {
    grid-column: 1;
  }
  .shaker-stage {
    gap: 0.8rem;
  }
  .shaker {
    transform: scale(0.88);
  }
  .electro {
    padding: 0.7rem;
  }
  .nutrition-photo {
    min-height: 520px;
  }
  .micro-table p {
    align-items: flex-start;
    gap: 0.6rem;
  }
}

/* Recovery Playground */
.game-section {
  overflow: hidden;
}
.game-section-head {
  width: min(980px, 100%);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
  text-align: center;
}
.game-section-head .eyebrow {
  justify-content: center;
}
.game-section-head h2 {
  font-size: clamp(3rem, 5.6vw, 6.2rem);
}
.game-section-head > p:last-child {
  max-width: 720px;
  margin: 2rem auto 0;
  color: #66504a;
  font-size: 1.08rem;
}
.game-split {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 22px;
  max-width: var(--max);
  margin: auto;
  align-items: stretch;
}
.game-split.reverse .game-photo {
  order: 2;
}
.game-photo {
  position: relative;
  min-width: 0;
  margin: 0;
}
.game-photo img {
  width: 100%;
  height: 100%;
  min-height: 680px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.game-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 14px;
  background: rgba(30, 23, 21, 0.72);
  color: white;
  font-size: 0.66rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  backdrop-filter: blur(12px);
}
.play-card {
  min-width: 0;
  min-height: 680px;
  padding: clamp(1.4rem, 4vw, 3.4rem);
  border: 1px solid rgba(74, 36, 24, 0.12);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}
.routine-section {
  background:
    radial-gradient(circle at 5% 15%, rgba(215, 255, 67, 0.5), transparent 22%),
    radial-gradient(circle at 95% 80%, rgba(255, 105, 56, 0.17), transparent 24%),
    var(--cream);
}
.routine-pool {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  min-height: 128px;
  margin: 1.8rem 0;
  padding: 1rem;
  border: 1px dashed rgba(74, 36, 24, 0.28);
  border-radius: 20px;
  background: #f2e9df;
}
.routine-pool:empty::after {
  content: "Alle Elemente sind im Flow";
  align-self: center;
  margin: auto;
  color: #7a655d;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.routine-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  min-height: 48px;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(74, 36, 24, 0.18);
  border-radius: 14px;
  background: white;
  color: var(--deep);
  font-size: 0.76rem;
  font-weight: 900;
  cursor: grab;
  box-shadow: 0 8px 20px rgba(74, 36, 24, 0.08);
}
.routine-chip:active {
  cursor: grabbing;
}
.routine-chip span {
  display: grid;
  place-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--lime);
  font-size: 0.63rem;
}
.routine-chip.dragging {
  opacity: 0.42;
}
.routine-slots {
  display: grid;
  gap: 0.65rem;
}
.routine-slot {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-height: 62px;
  padding: 0.55rem 0.8rem;
  border: 2px dashed #d5c5b8;
  border-radius: 16px;
  color: #8c756d;
  transition:
    border-color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}
.routine-slot b {
  display: grid;
  place-content: center;
  flex: 0 0 32px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #e9ded3;
  font-size: 0.7rem;
}
.routine-slot > span {
  font-size: 0.72rem;
  font-weight: 850;
  text-transform: uppercase;
}
.routine-slot.filled > span {
  display: none;
}
.routine-slot .routine-chip {
  flex: 1;
  justify-content: flex-start;
}
.routine-slot.drop-target {
  border-color: var(--orange);
  background: #fff0e9;
  transform: scale(1.015);
}
.routine-slot.correct {
  border-color: #6abf63;
  background: #e5f8e1;
}
.routine-slot.wrong {
  border-color: var(--orange);
  background: #ffe8df;
}
.game-actions {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.4rem;
}
.game-button {
  min-height: 50px;
  padding: 0.8rem 1rem;
  border: 0;
  border-radius: 14px;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
.game-button:hover,
.game-button:focus-visible {
  transform: translateY(-2px);
}
.game-button.primary {
  background: var(--deep);
  color: white;
}
.game-button.ghost {
  border: 1px solid var(--line);
  background: transparent;
  color: inherit;
}
.game-button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}
.game-feedback {
  min-height: 48px;
  margin: 1rem 0 0;
  color: #6d5750;
  font-size: 0.82rem;
}

.portions-section {
  background:
    radial-gradient(circle at 12% 28%, rgba(255, 105, 56, 0.24), transparent 25%),
    radial-gradient(circle at 90% 78%, rgba(215, 255, 67, 0.12), transparent 22%),
    var(--deep);
  color: white;
}
.portions-section .game-section-head > p:last-child,
.pb-section .game-section-head > p:last-child {
  color: rgba(255, 255, 255, 0.7);
}
.portions-card {
  display: grid;
  grid-template-columns: minmax(180px, 0.62fr) minmax(330px, 1.38fr);
  align-items: center;
  gap: clamp(1.5rem, 4vw, 3rem);
  background: #30231f;
  color: white;
  border-color: rgba(255, 255, 255, 0.1);
}
.portions-section .game-split.reverse {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
}
.portion-controls,
.portion-result {
  min-width: 0;
}
.portion-result strong,
.portion-result p,
.tiny-note {
  overflow-wrap: anywhere;
}
.portion-ring {
  --portion-progress: 42.85%;
  display: grid;
  place-content: center;
  aspect-ratio: 1;
  border-radius: 50%;
  background: conic-gradient(
    var(--lime) 0 var(--portion-progress),
    rgba(255, 255, 255, 0.12) var(--portion-progress) 100%
  );
  box-shadow: 0 0 0 12px rgba(215, 255, 67, 0.05);
  transition: background 0.35s ease;
}
.portion-ring::before {
  content: "";
  grid-area: 1 / 1;
  width: 76%;
  aspect-ratio: 1;
  place-self: center;
  border-radius: 50%;
  background: #30231f;
}
.portion-ring div {
  position: relative;
  grid-area: 1 / 1;
  display: grid;
  place-content: center;
  text-align: center;
}
.portion-ring strong {
  font: 950 clamp(2.2rem, 3.4vw, 3.8rem) / 0.9 var(--display);
  letter-spacing: -0.08em;
}
.portion-ring span {
  color: var(--lime);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.portion-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-weight: 900;
}
.portion-controls output {
  display: grid;
  place-content: center;
  width: 44px;
  height: 44px;
  margin-top: -0.6rem;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font: 950 1.25rem var(--display);
}
.portion-controls input[type="range"] {
  width: 100%;
  margin: 2rem 0 0.5rem;
  accent-color: var(--lime);
}
.portion-controls .range-labels {
  color: rgba(255, 255, 255, 0.48);
}
.portion-result {
  margin-top: 2rem;
  padding: 1.3rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
}
.portion-result > span {
  color: var(--orange-soft);
  font-size: 0.64rem;
  font-weight: 950;
  letter-spacing: 0.13em;
}
.portion-result strong {
  display: block;
  margin-top: 0.45rem;
  font: 950 clamp(2rem, 3vw, 3.4rem) / 1 var(--display);
  letter-spacing: -0.055em;
  text-transform: uppercase;
}
.portion-result p,
.tiny-note {
  color: rgba(255, 255, 255, 0.65);
}
.portion-result p {
  margin-bottom: 0;
}
.tiny-note {
  margin-top: 1rem;
  font-size: 0.7rem;
}

.reaction-section {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 105, 56, 0.19), transparent 25%),
    linear-gradient(145deg, #fffdf8, #f4e9df);
}
.reaction-card {
  background: var(--cocoa);
  color: white;
}
.reaction-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}
.reaction-topline p {
  margin: 0;
}
.reaction-topline span {
  color: var(--lime);
  font-family: var(--display);
  font-size: 1.4rem;
}
.reaction-stage {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1rem;
  min-height: 430px;
  padding: 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    #211714;
  background-size: 36px 36px;
  overflow: hidden;
}
.reaction-target {
  position: relative;
  place-self: center;
  width: clamp(58px, 7vw, 84px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  opacity: 0.2;
  pointer-events: none;
}
.reaction-target::before {
  content: "";
  position: absolute;
  inset: 26%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.13);
}
.reaction-target.active {
  border-color: var(--lime);
  background: rgba(215, 255, 67, 0.22);
  box-shadow:
    0 0 0 10px rgba(215, 255, 67, 0.08),
    0 0 38px rgba(215, 255, 67, 0.72);
  opacity: 1;
  pointer-events: auto;
  cursor: pointer;
  animation: targetPulse 0.72s ease-in-out infinite alternate;
}
.reaction-target.active::before {
  background: var(--lime);
}
.reaction-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-content: center;
  gap: 0.5rem;
  padding: 2rem;
  background: rgba(24, 16, 14, 0.76);
  text-align: center;
  backdrop-filter: blur(5px);
  transition: opacity 0.25s ease;
}
.reaction-overlay.hidden {
  opacity: 0;
  pointer-events: none;
}
.reaction-overlay strong {
  color: var(--lime);
  font: 950 clamp(3rem, 6vw, 6rem) / 0.9 var(--display);
  letter-spacing: -0.08em;
}
.reaction-overlay span {
  color: rgba(255, 255, 255, 0.72);
}
.reaction-start {
  width: 100%;
  margin-top: 1rem;
  background: var(--lime) !important;
  color: var(--deep) !important;
}
.reaction-card .game-feedback {
  color: rgba(255, 255, 255, 0.65);
}

.pb-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255, 105, 56, 0.32), transparent 26%),
    radial-gradient(circle at 88% 80%, rgba(215, 255, 67, 0.13), transparent 20%),
    var(--cocoa);
  color: white;
}
.pb-generator {
  background: var(--cream);
  color: var(--deep);
}
.pb-generator > label {
  display: block;
  margin-bottom: 0.7rem;
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.pb-input-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.6rem;
}
.pb-input-row input {
  min-width: 0;
  min-height: 52px;
  padding: 0 1rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: white;
  color: var(--deep);
}
.pb-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: min(100%, 390px);
  aspect-ratio: 4 / 5;
  margin: 1.4rem auto;
  padding: 1.5rem;
  border-radius: 26px;
  background:
    radial-gradient(circle at 80% 18%, rgba(255, 105, 56, 0.9), transparent 24%),
    radial-gradient(circle at 15% 90%, rgba(215, 255, 67, 0.7), transparent 24%),
    #1e1715;
  color: white;
  box-shadow: 0 25px 55px rgba(30, 23, 21, 0.24);
  overflow: hidden;
  isolation: isolate;
}
.pb-card::after {
  content: "17,5";
  position: absolute;
  right: -0.08em;
  bottom: -0.16em;
  z-index: -1;
  color: rgba(255, 255, 255, 0.055);
  font: 950 8rem/1 var(--display);
  letter-spacing: -0.12em;
}
.pb-brand,
.pb-card small {
  font-size: 0.6rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}
.pb-card p {
  margin: auto 0 0.7rem;
  color: var(--lime);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.12em;
}
.pb-card strong {
  max-width: 92%;
  font: 950 clamp(2.1rem, 4vw, 3.6rem) / 0.93 var(--display);
  letter-spacing: -0.07em;
  overflow-wrap: anywhere;
  text-transform: uppercase;
}
.pb-card small {
  margin-top: 1.5rem;
  color: rgba(255, 255, 255, 0.62);
}
.pb-rings {
  position: absolute;
  right: -55px;
  top: 45px;
  z-index: -1;
  width: 180px;
  aspect-ratio: 1;
}
.pb-rings i {
  position: absolute;
  inset: calc(var(--ring, 0) * 20px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
}
.pb-rings i:nth-child(2) {
  --ring: 1;
}
.pb-rings i:nth-child(3) {
  --ring: 2;
}

@keyframes targetPulse {
  to {
    transform: scale(1.08);
  }
}

@media (max-width: 1050px) {
  .game-split {
    grid-template-columns: 1fr;
  }
  .game-split.reverse .game-photo {
    order: 0;
  }
  .game-photo img {
    height: 620px;
    min-height: 0;
  }
  .play-card {
    min-height: 0;
  }
}

@media (max-width: 780px) {
  .game-section-head h2 {
    font-size: clamp(2.8rem, 13vw, 4.7rem);
  }
  .game-photo img {
    height: 500px;
  }
  .portions-card {
    grid-template-columns: 1fr;
  }
  .portion-ring {
    width: min(280px, 78vw);
    margin: auto;
  }
  .reaction-stage {
    min-height: 370px;
  }
}

@media (max-width: 430px) {
  .game-photo img {
    height: 430px;
  }
  .play-card {
    padding: 1rem;
    border-radius: 24px;
  }
  .routine-chip {
    width: 100%;
  }
  .game-actions,
  .pb-input-row {
    grid-template-columns: 1fr;
    flex-direction: column;
  }
  .game-actions .game-button {
    width: 100%;
  }
  .reaction-stage {
    min-height: 330px;
    gap: 0.5rem;
    padding: 0.7rem;
  }
  .reaction-target {
    width: 58px;
  }
  .pb-card {
    padding: 1.15rem;
  }
}

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