:root {
  /* 01. Brand tokens */
  --brand-primary: #D95A1B;
  --brand-accent: #F7B733;
  --brand-neutral: #F7F2E8;
  --brand-purple: var(--brand-primary);
  --brand-yellow: var(--brand-accent);
  --brand-mint: var(--brand-accent);
  --brand-blue: #D95A1B;
  --primary: #D95A1B;
  --secondary: #F7B733;
  --background: #F7F2E8;
  --accent: #F7B733;
  --accent-deep: #241812;
  --highlight: var(--brand-yellow);
  --text-primary: #241812;
  --warm-ivory: #FFFDF7;
  --soft-beige: #F7F2E8;
  --light-gray: #EBE6DB;
  --warm-gray: #5F5F5F;
  --primary-soft: #FFE5A3;
  --secondary-soft: #FFE9AA;
  --action: #F7B733;
  --action-2: #D95A1B;
  --action-dark: #241812;
  --action-text: #241812;
  --action-accent: #241812;
  --highlight-soft: #FFEAB8;
  --highlight-text: #241812;
  --purple: var(--primary);
  --purple-2: var(--secondary);
  --purple-soft: var(--primary-soft);
  --lime: var(--accent);
  --lime-soft: var(--secondary-soft);
  --black: #000;
  --ink: var(--text-primary);
  --gray-600: var(--warm-gray);
  --gray-300: #E4DFD4;
  --gray-200: var(--light-gray);
  --gray-100: var(--warm-ivory);
  --white: #fff;
  --shadow: 0 24px 80px rgba(34, 34, 34, 0.14);
  --radius-hero: 34px;
  --radius-panel: 29px;
  --radius-card: 8px;
  --container: 1360px;
  --page-gutter: clamp(53px, calc(3.4vw + 35px), 75px);
  --page-gutter-total: clamp(106px, calc(6.8vw + 70px), 150px);
  --section-gap: clamp(34px, 4.2vw, 64px);
  --site-bg-r: 247;
  --site-bg-g: 242;
  --site-bg-b: 232;
  --page-bg-a-r: 247;
  --page-bg-a-g: 242;
  --page-bg-a-b: 232;
  --page-bg-b-r: 255;
  --page-bg-b-g: 253;
  --page-bg-b-b: 247;
  --page-accent-r: 199;
  --page-accent-g: 246;
  --page-accent-b: 88;
  --page-alt-r: 239;
  --page-alt-g: 79;
  --page-alt-b: 0;
  --hero-reveal: 0;
}

/* 02. Global reset and page shell */
* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: rgb(var(--site-bg-r), var(--site-bg-g), var(--site-bg-b));
  font-family: "Poppins", system-ui, sans-serif;
  overflow-x: hidden;
  overflow-x: clip;
}

body.menu-open {
  overflow: hidden;
}

body.loader-active {
  overflow: hidden;
}

body.menu-open .page-background,
body.menu-open .mega-menu,
body.menu-open main,
body.menu-open .site-footer {
  filter: blur(18px) saturate(0.82);
}

body.cursor-ready,
body.cursor-ready a,
body.cursor-ready button,
body.cursor-ready input,
body.cursor-ready select,
body.cursor-ready textarea {
  cursor: none;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

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

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

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

.site-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  background: transparent;
  overflow-x: clip;
}

/* 02A. Premium loader reveal */
.site-loader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: transparent;
  opacity: 1;
  visibility: visible;
  will-change: opacity;
  transition:
    opacity 420ms ease 1940ms,
    visibility 0ms linear 2360ms;
}

.site-loader::before,
.site-loader::after {
  content: "";
  position: absolute;
  z-index: 1;
  border-radius: 999px;
  pointer-events: none;
}

.site-loader::before {
  width: clamp(280px, 32vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.08);
  box-shadow:
    inset 0 0 0 42px rgba(217, 90, 27, 0.07),
    0 32px 110px rgba(17, 17, 17, 0.11);
  transform: translate3d(-46vw, 18vh, 0);
}

.site-loader::after {
  width: clamp(220px, 28vw, 440px);
  aspect-ratio: 1;
  background: var(--primary);
  opacity: 0.44;
  transform: translate3d(42vw, -25vh, 0) rotate(12deg);
}

.site-loader.is-hiding {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader.is-hiding::before,
.site-loader.is-hiding::after {
  opacity: 0;
  transition: opacity 320ms ease;
}

.loader-screen-cover {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: var(--primary);
  transform: translate3d(0, 0, 0);
  transition: transform 2100ms cubic-bezier(0.18, 0.84, 0.16, 1);
  will-change: transform;
}

.site-loader.is-hiding .loader-screen-cover {
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate3d(0, -114%, 0);
}

.loader-reveal-edge {
  position: absolute;
  left: 50%;
  bottom: clamp(-190px, -18vh, -104px);
  z-index: 4;
  width: 142vw;
  height: clamp(190px, 26vh, 320px);
  pointer-events: none;
  opacity: 0;
  transform: translate3d(-50%, 34%, 0) scaleX(0.9);
  transform-origin: 50% 100%;
}

.loader-reveal-rim,
.loader-reveal-glow {
  position: absolute;
  inset: 0;
  border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.loader-reveal-rim {
  border-top: clamp(7px, 0.9vw, 12px) solid rgba(217, 90, 27, 0.92);
  background: var(--primary);
  box-shadow:
    0 -28px 76px rgba(17, 17, 17, 0.16),
    0 -10px 34px rgba(217, 90, 27, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.loader-reveal-glow {
  background: var(--primary);
  filter: blur(22px);
  transform: translateY(-32%);
}

.site-loader.is-hiding .loader-reveal-edge {
  animation: loaderRevealEdge 2100ms cubic-bezier(0.18, 0.84, 0.16, 1) forwards;
}

.loader-stage {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
  width: min(82vw, 520px);
  aspect-ratio: 1.42;
  perspective: 900px;
  animation: loaderStageIn 620ms cubic-bezier(0.18, 0.84, 0.24, 1) both;
}

.loader-card {
  position: relative;
  display: grid;
  place-items: center;
  width: min(78vw, 440px);
  aspect-ratio: 1.58;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: clamp(28px, 6vw, 46px);
  background: var(--primary);
  box-shadow:
    0 44px 120px rgba(17, 17, 17, 0.18),
    0 18px 42px rgba(36, 36, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform-origin: 50% 18%;
  animation: loaderCardFloat 1450ms ease-in-out 500ms infinite alternate;
}

.loader-card::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: inherit;
  background: var(--primary);
  background-size: 34px 34px;
  mask-image: none;
}

.loader-card::after {
  content: "";
  position: absolute;
  inset: -40% -60%;
  background: var(--primary);
  transform: translateX(-28%) rotate(8deg);
  animation: loaderSheen 1350ms ease-in-out 220ms both;
}

.loader-handle {
  position: absolute;
  top: clamp(16px, 4vw, 26px);
  left: 50%;
  width: clamp(70px, 17vw, 118px);
  height: clamp(26px, 5vw, 42px);
  border: clamp(5px, 1vw, 7px) solid rgba(17, 17, 17, 0.82);
  border-bottom: 0;
  border-radius: 999px 999px 0 0;
  transform: translateX(-50%);
  opacity: 0.72;
}

.loader-logo-pill {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(62vw, 330px);
  min-height: clamp(76px, 13vw, 104px);
  padding: clamp(15px, 3vw, 22px) clamp(26px, 5vw, 44px);
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  animation: loaderLogoPulse 1150ms ease-in-out infinite alternate;
}

.loader-logo-pill img {
  width: min(49vw, 238px);
  height: auto;
}

.loader-meal-dots {
  position: absolute;
  bottom: clamp(22px, 5vw, 34px);
  left: 50%;
  z-index: 2;
  display: flex;
  gap: 12px;
  transform: translateX(-50%);
}

.loader-meal-dots span {
  width: clamp(12px, 3vw, 18px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 9px rgba(217, 90, 27, 0.2);
  animation: loaderDotBite 900ms ease-in-out infinite;
}

.loader-meal-dots span:nth-child(2) {
  background: var(--purple);
  box-shadow: 0 0 0 9px rgba(17, 17, 17, 0.12);
  animation-delay: 120ms;
}

.loader-meal-dots span:nth-child(3) {
  background: var(--ds-lime);
  box-shadow: 0 0 0 9px rgba(217, 90, 27, 0.18);
  animation-delay: 240ms;
}

.loader-lid-line {
  position: absolute;
  right: 12%;
  bottom: 24%;
  width: min(36vw, 150px);
  height: 12px;
  border-radius: 99px;
  background: rgba(217, 90, 27, 0.58);
  filter: blur(0.2px);
  transform: rotate(-8deg);
}

.loader-steam {
  position: absolute;
  top: 18%;
  width: 10px;
  height: 46px;
  border-radius: 99px;
  background: var(--primary);
  filter: blur(1px);
  animation: loaderSteam 1200ms ease-in-out infinite;
}

.loader-steam-one {
  left: 24%;
}

.loader-steam-two {
  left: 50%;
  animation-delay: 160ms;
}

.loader-steam-three {
  right: 24%;
  animation-delay: 320ms;
}

.loader-orbit {
  position: absolute;
  z-index: -1;
  width: clamp(34px, 8vw, 58px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--lime);
  box-shadow: 0 0 0 16px rgba(217, 90, 27, 0.18), 0 20px 52px rgba(17, 17, 17, 0.12);
  animation: loaderOrbit 1700ms ease-in-out infinite alternate;
}

.loader-orbit-one {
  top: 4%;
  left: 10%;
}

.loader-orbit-two {
  right: 8%;
  bottom: 8%;
  width: clamp(22px, 5vw, 38px);
  animation-delay: 240ms;
}

.loader-caption {
  position: absolute;
  left: 50%;
  top: calc(50% + min(26vw, 176px));
  margin: 0;
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.78rem, 1.5vw, 0.92rem);
  font-weight: 900;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
  transform: translateX(-50%);
  opacity: 0.72;
}

.site-loader.is-hiding .loader-card {
  animation: loaderLidLift 1900ms cubic-bezier(0.18, 0.95, 0.22, 1) forwards;
}

.site-loader.is-hiding .loader-stage,
.site-loader.is-hiding .loader-caption {
  transition:
    opacity 420ms ease,
    transform 1100ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 1100ms ease;
  opacity: 0;
  filter: blur(8px);
}

body.loader-revealing .hero-card {
  animation: loaderHeroWake 2100ms cubic-bezier(0.18, 0.84, 0.16, 1) both;
}

.site-loader.is-hiding .loader-caption {
  transform: translate(-50%, -16px);
}

@keyframes loaderStageIn {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes loaderCardFloat {
  from {
    transform: translate3d(0, 0, 0) rotateX(0deg);
  }
  to {
    transform: translate3d(0, -8px, 0) rotateX(2deg);
  }
}

@keyframes loaderLogoPulse {
  from {
    transform: scale(0.985);
  }
  to {
    transform: scale(1.015);
  }
}

@keyframes loaderSheen {
  from {
    transform: translateX(-54%) rotate(8deg);
  }
  to {
    transform: translateX(54%) rotate(8deg);
  }
}

@keyframes loaderDotBite {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-7px) scale(1.08);
  }
}

@keyframes loaderSteam {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0) scaleY(0.65);
  }
  45% {
    opacity: 0.85;
  }
  100% {
    opacity: 0;
    transform: translate3d(0, -18px, 0) scaleY(1.08);
  }
}

@keyframes loaderOrbit {
  from {
    transform: translate3d(0, 0, 0) scale(1);
  }
  to {
    transform: translate3d(10px, -12px, 0) scale(1.08);
  }
}

@keyframes loaderRevealEdge {
  0% {
    opacity: 0;
    transform: translate3d(-50%, 36%, 0) scaleX(0.88);
  }
  16% {
    opacity: 1;
  }
  62% {
    opacity: 1;
    transform: translate3d(-50%, -64vh, 0) scaleX(1.02);
  }
  100% {
    opacity: 0.72;
    transform: translate3d(-50%, -118vh, 0) scaleX(1.06);
  }
}

@keyframes loaderLidLift {
  0% {
    transform: translate3d(0, -8px, 0) rotateX(2deg) scale(1);
  }
  26% {
    transform: translate3d(0, 18px, 0) rotateX(-4deg) scale(1.015);
  }
  100% {
    transform: translate3d(0, -125vh, 0) rotateX(14deg) scale(0.9);
  }
}

@keyframes loaderHeroWake {
  0% {
    opacity: 0.78;
    filter: blur(7px) saturate(0.94);
  }
  48% {
    opacity: 0.94;
    filter: blur(3px) saturate(1);
  }
  100% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }
}

#top {
  display: flex;
  flex-direction: column;
  gap: var(--section-gap);
}

/* 03. Scroll-driven background and pagination */
.page-background {
  --shape-one-x: -120px;
  --shape-one-y: -80px;
  --shape-one-scale: 1;
  --shape-one-opacity: 0.74;
  --shape-two-x: 72vw;
  --shape-two-y: 10vh;
  --shape-two-scale: 1;
  --shape-two-opacity: 0.42;
  --shape-three-x: 20vw;
  --shape-three-y: 68vh;
  --shape-three-scale: 1;
  --shape-three-opacity: 0.34;
  --bg-parallax-one-x: 0px;
  --bg-parallax-one-y: 0px;
  --bg-parallax-two-x: 0px;
  --bg-parallax-two-y: 0px;
  --bg-parallax-three-x: 0px;
  --bg-parallax-three-y: 0px;
  --bg-sheen-x: 0px;
  --bg-sheen-y: 0px;
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
  background: rgb(var(--site-bg-r), var(--site-bg-g), var(--site-bg-b));
  transition: filter 500ms ease-out;
}

.page-background::before {
  position: absolute;
  inset: -16%;
  content: "";
  opacity: 0.4;
  background: var(--primary);
  transform: translate3d(var(--bg-sheen-x), var(--bg-sheen-y), 0);
}

.bg-shape {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  mix-blend-mode: multiply;
  will-change: transform, opacity;
}

.bg-shape-one {
  width: clamp(300px, 38vw, 620px);
  aspect-ratio: 1;
  opacity: var(--shape-one-opacity);
  background: var(--primary);
  transform: translate3d(
      calc(var(--shape-one-x) + var(--bg-parallax-one-x)),
      calc(var(--shape-one-y) + var(--bg-parallax-one-y)),
      0
    )
    scale(var(--shape-one-scale));
}

.bg-shape-two {
  width: clamp(240px, 30vw, 500px);
  aspect-ratio: 1 / 0.82;
  opacity: var(--shape-two-opacity);
  background: var(--primary);
  transform: translate3d(
      calc(var(--shape-two-x) + var(--bg-parallax-two-x)),
      calc(var(--shape-two-y) + var(--bg-parallax-two-y)),
      0
    )
    rotate(-12deg)
    scale(var(--shape-two-scale));
}

.bg-shape-three {
  width: clamp(220px, 27vw, 460px);
  aspect-ratio: 1;
  opacity: var(--shape-three-opacity);
  border: clamp(28px, 4vw, 54px) solid rgba(var(--page-alt-r), var(--page-alt-g), var(--page-alt-b), 0.16);
  border-left-color: rgba(var(--page-accent-r), var(--page-accent-g), var(--page-accent-b), 0.28);
  background: transparent;
  transform: translate3d(
      calc(var(--shape-three-x) + var(--bg-parallax-three-x)),
      calc(var(--shape-three-y) + var(--bg-parallax-three-y)),
      0
    )
    rotate(18deg)
    scale(var(--shape-three-scale));
}

.section-pagination {
  position: fixed;
  top: 50%;
  right: clamp(12px, 1.8vw, 28px);
  z-index: 47;
  display: grid;
  gap: 10px;
  padding: 10px 8px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 56px rgba(36, 36, 36, 0.08);
  backdrop-filter: blur(18px);
  transform: translateY(-50%);
}

.section-pagination button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(var(--page-alt-r), var(--page-alt-g), var(--page-alt-b), 0.34);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.48);
  cursor: pointer;
  transition:
    height 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms ease-out,
    box-shadow 420ms ease-out,
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1);
}

.section-pagination button:hover {
  transform: scale(1.28);
}

.section-pagination button.active {
  height: 34px;
  background: rgb(var(--page-accent-r), var(--page-accent-g), var(--page-accent-b));
  box-shadow:
    0 0 0 5px rgba(var(--page-accent-r), var(--page-accent-g), var(--page-accent-b), 0.18),
    0 14px 28px rgba(36, 36, 36, 0.14),
    inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

body.menu-open .section-pagination {
  opacity: 0;
  pointer-events: none;
}

/* 04. Single cursor dot */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 115;
  display: none;
  width: 18px;
  height: 18px;
  pointer-events: none;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 8px rgba(217, 90, 27, 0.2), 0 8px 18px rgba(0, 0, 0, 0.16);
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 180ms ease, width 180ms ease, height 180ms ease, box-shadow 180ms ease;
}

.cursor-dot.visible {
  display: block;
  opacity: 1;
}

/* 04. Header and navigation */
.site-header {
  --mark-fill: var(--purple);
  --mark-cut: var(--white);
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 50;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  min-height: 88px;
  padding: 14px 34px;
  color: var(--purple);
  background: rgba(255, 255, 255, calc(var(--hero-reveal) * 0.94));
  border: 1px solid rgba(255, 255, 255, calc(var(--hero-reveal) * 0.56));
  border-radius: var(--radius-hero);
  box-shadow: 0 18px 60px rgba(36, 36, 36, calc(var(--hero-reveal) * 0.12));
  transform: translate3d(-50%, calc((1 - var(--hero-reveal)) * 14px), 0);
  backdrop-filter: blur(calc(var(--hero-reveal) * 18px));
  transition:
    background 500ms ease,
    border-color 500ms ease,
    border-radius 500ms ease,
    box-shadow 500ms ease,
    color 500ms ease,
    backdrop-filter 500ms ease,
    transform 500ms ease;
}

.site-header.scrolled,
.site-header.menu-open {
  --mark-fill: var(--purple);
  --mark-cut: var(--white);
  color: var(--purple);
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(216, 216, 216, 0.74);
  border-radius: 28px;
  box-shadow: 0 18px 60px rgba(36, 36, 36, 0.12);
  backdrop-filter: blur(20px);
}

.site-header.menu-open {
  background: rgba(255, 255, 255, 0.96);
}

.brand {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  padding: 10px 18px;
  background: rgba(255, 255, 255, calc(0.96 - var(--hero-reveal) * 0.72));
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(36, 36, 36, calc(0.14 - var(--hero-reveal) * 0.08)),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.45rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  transform: scale(calc(1.08 - var(--hero-reveal) * 0.08));
  transform-origin: center;
  transition:
    background 500ms ease,
    border-color 500ms ease,
    box-shadow 500ms ease,
    transform 500ms ease;
}

.brand img {
  display: block;
  width: 178px;
  height: auto;
  transition: filter 500ms ease;
}

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 38px;
  height: 42px;
  color: var(--mark-fill);
  background: var(--mark-fill);
  border-radius: 9px 9px 11px 11px;
}

.brand-mark::after {
  content: "";
  position: absolute;
  z-index: 1;
  right: 7px;
  bottom: 11px;
  width: 15px;
  height: 7px;
  background: var(--mark-cut);
  border: 4px solid var(--mark-cut);
  border-left-width: 0;
}

.brand-handle {
  position: absolute;
  top: -8px;
  width: 17px;
  height: 10px;
  border: 4px solid var(--mark-fill);
  border-bottom: 0;
  border-radius: 6px 6px 0 0;
}

.brand-g {
  position: relative;
  z-index: 2;
  color: var(--mark-cut);
  font-size: 1.35rem;
  font-weight: 900;
}

.brand-word {
  color: currentColor;
}

.desktop-nav {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  gap: 28px;
  align-items: center;
  justify-content: flex-start;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.ghost-link {
  opacity: 0.9;
  text-shadow: 0 1px 18px rgba(255, 255, 255, 0.28);
  transition: opacity 180ms ease, transform 180ms ease;
}

.desktop-nav a:hover,
.ghost-link:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.header-actions {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-end;
}

/* 05. Buttons and header icons */
.ghost-link,
.header-icon {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.header-icon {
  position: relative;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.search-icon::before {
  content: "";
  position: absolute;
  inset: 7px 9px 9px 7px;
  border: 2px solid currentColor;
  border-radius: 50%;
}

.search-icon::after {
  content: "";
  position: absolute;
  right: 7px;
  bottom: 7px;
  width: 9px;
  height: 2px;
  background: currentColor;
  transform: rotate(45deg);
}

.user-icon::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 50%;
  width: 10px;
  height: 10px;
  border: 2px solid currentColor;
  border-radius: 50%;
  transform: translateX(-50%);
}

.user-icon::after {
  content: "";
  position: absolute;
  left: 8px;
  bottom: 6px;
  width: 18px;
  height: 11px;
  border: 2px solid currentColor;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom: 0;
}

.cart-icon::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 7px;
  width: 20px;
  height: 12px;
  border: 2px solid currentColor;
  border-top: 0;
  transform: skewX(-10deg);
}

.cart-icon::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 9px;
  width: 18px;
  height: 4px;
  border-radius: 99px;
  box-shadow: 0 0 0 2px currentColor inset, 12px 0 0 -1px currentColor;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px rgba(36, 36, 36, 0.16);
}

.btn-lime {
  color: var(--action-accent);
  background: var(--action);
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.btn-white {
  color: var(--purple);
  background: var(--white);
}

.menu-button {
  display: block;
  width: 50px;
  height: 50px;
  border: 0;
  border-radius: 50%;
  color: var(--action-accent);
  background: var(--action);
  box-shadow:
    0 16px 34px rgba(17, 17, 17, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  cursor: pointer;
}

/* 06. Mega menu dropdown */
.mega-menu {
  position: fixed;
  top: 112px;
  left: 50%;
  z-index: 42;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  padding: 0;
  color: var(--ink);
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.72);
  border-radius: 30px;
  box-shadow:
    0 30px 90px rgba(17, 17, 17, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translate(-50%, -16px) scale(0.985);
  transition: opacity 320ms ease, transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.site-shell > section.mega-menu {
  min-height: auto;
  padding: 0;
  scroll-margin-top: 0;
}

.mega-menu.open {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0) scale(1);
}

.mega-menu:not(.open) .mega-cards {
  display: none;
}

.mega-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(290px, 0.3fr) minmax(0, 1fr);
  gap: clamp(22px, 2.6vw, 38px);
  align-items: start;
  padding: clamp(24px, 2.8vw, 34px);
}

.mega-inner::after {
  content: "";
  position: absolute;
  right: -72px;
  bottom: -96px;
  width: 300px;
  aspect-ratio: 1;
  border: 42px solid rgba(217, 90, 27, 0.28);
  border-radius: 50%;
  pointer-events: none;
}

.mega-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 16px;
  min-height: 350px;
  padding: clamp(22px, 2.6vw, 32px);
  color: var(--white);
  background: var(--primary);
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.18);
  overflow: hidden;
}

.mega-copy::after {
  content: "MEALS";
  position: absolute;
  right: -18px;
  bottom: -12px;
  color: rgba(255, 255, 255, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.6rem, 7vw, 7.4rem);
  font-weight: 900;
  line-height: 0.8;
}

.mega-eyebrow {
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0;
  padding: 9px 14px;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-inner h2 {
  position: relative;
  z-index: 1;
  max-width: 15ch;
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.72rem, 2.35vw, 2.55rem);
  font-weight: 900;
  line-height: 0.95;
}

.mega-copy p:not(.mega-eyebrow) {
  position: relative;
  z-index: 1;
  max-width: 34ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.98rem;
  line-height: 1.5;
}

.mega-cta {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  width: max-content;
  min-height: 42px;
  padding: 0 18px;
  color: var(--purple);
  background: var(--white);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease;
}

.mega-cta:hover,
.mega-cta:focus-visible {
  color: var(--action-accent);
  background: var(--action);
  transform: translateY(-2px);
}

.mega-cards {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(14px, 1.6vw, 22px);
  align-self: center;
  align-content: start;
  align-items: stretch;
}

.mega-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto;
  gap: 14px;
  align-content: start;
  min-height: auto;
  padding: 12px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(216, 216, 216, 0.64);
  border-radius: 22px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 800;
  text-align: left;
  box-shadow: 0 18px 48px rgba(17, 17, 17, 0.08);
  overflow: hidden;
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.mega-card::after {
  content: "View";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.mega-card:hover::after,
.mega-card.active::after {
  opacity: 1;
  transform: translateY(0);
}

.mega-card img {
  width: 100%;
  aspect-ratio: 1.16;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 16px 36px rgba(36, 36, 36, 0.1);
  transition: transform 260ms ease, filter 260ms ease;
}

.mega-card span {
  display: grid;
  gap: 6px;
  align-content: start;
  padding: 0 4px 4px;
}

.mega-card strong {
  color: var(--purple);
  font-size: clamp(0.95rem, 1.12vw, 1.18rem);
  line-height: 1.1;
}

.mega-card small {
  color: var(--gray-600);
  font-family: "Poppins", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.35;
}

.mega-card:hover,
.mega-card:focus-visible,
.mega-card.active {
  background: var(--primary);
  border-color: rgba(17, 17, 17, 0.32);
  box-shadow: 0 24px 68px rgba(17, 17, 17, 0.16);
  transform: translateY(-6px);
}

.mega-card:hover img,
.mega-card.active img {
  filter: saturate(1.08);
  transform: scale(1.035);
}

/* 07. Full-screen menu overlay */
.menu-overlay {
  position: fixed;
  inset: clamp(10px, 1.4vw, 22px);
  z-index: 90;
  display: block;
  padding: clamp(58px, 7vw, 94px) clamp(34px, 8vw, 128px);
  color: var(--action);
  background: var(--primary);
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: clamp(24px, 3vw, 42px);
  backdrop-filter: blur(24px) saturate(1.18);
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
  transform: translateY(18px) scale(0.985);
  box-shadow:
    0 32px 110px rgba(17, 17, 17, 0.2),
    0 18px 80px rgba(217, 90, 27, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    opacity 300ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-overlay.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.menu-overlay-surface {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.34;
  background-image: none;
  background-size: 52px 52px;
  mask-image: none;
}

.menu-overlay::before {
  content: "GRATASTE";
  position: absolute;
  right: clamp(-86px, -4vw, -42px);
  bottom: clamp(-32px, -1vw, -12px);
  z-index: 0;
  color: rgba(17, 17, 17, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(5rem, 17vw, 17rem);
  font-weight: 900;
  line-height: 0.72;
  letter-spacing: 0;
  pointer-events: none;
}

.menu-overlay-nav {
  position: relative;
  z-index: 3;
  display: grid;
  gap: clamp(12px, 1.7vh, 19px);
  width: min(560px, 100%);
  max-width: 100%;
  margin-top: clamp(12px, 2vw, 28px);
}

.menu-overlay-nav a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  max-width: 100%;
  padding: 0.08em 0.34em 0.12em 0;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 3.35vw, 3.7rem);
  font-weight: 900;
  line-height: 0.98;
  letter-spacing: 0;
  opacity: 0;
  transform: translateX(-22px);
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease,
    opacity 420ms ease,
    transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.menu-overlay.open .menu-overlay-nav a {
  opacity: 1;
  transform: translateX(0);
}

.menu-overlay.open .menu-overlay-nav a:nth-child(1) {
  transition-delay: 90ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(2) {
  transition-delay: 135ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(3) {
  transition-delay: 180ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(4) {
  transition-delay: 225ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(5) {
  transition-delay: 270ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(6) {
  transition-delay: 315ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(7) {
  transition-delay: 360ms;
}

.menu-overlay.open .menu-overlay-nav a:nth-child(8) {
  transition-delay: 405ms;
}

.menu-overlay-nav a:hover,
.menu-overlay-nav a:focus-visible,
.menu-overlay-nav a.active {
  color: var(--action-accent);
  background: var(--action);
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.18);
}

.menu-overlay-nav a span {
  flex: 0 0 auto;
  display: grid;
  width: clamp(34px, 4.4vw, 52px);
  height: clamp(34px, 4.4vw, 52px);
  place-items: center;
  background: var(--action);
  border-radius: 50%;
}

.menu-overlay-nav a:hover span,
.menu-overlay-nav a:focus-visible span,
.menu-overlay-nav a.active span {
  background: rgba(255, 255, 255, 0.14);
}

.menu-overlay-nav a span::after {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 3px solid var(--action-accent);
  border-right: 3px solid var(--action-accent);
  transform: rotate(45deg);
}

.menu-overlay-nav a:hover span::after,
.menu-overlay-nav a:focus-visible span::after,
.menu-overlay-nav a.active span::after {
  border-color: var(--white);
}

.menu-close {
  position: absolute;
  top: clamp(22px, 3vw, 42px);
  right: clamp(22px, 3vw, 42px);
  z-index: 5;
  display: grid;
  width: clamp(48px, 5vw, 62px);
  height: clamp(48px, 5vw, 62px);
  place-items: center;
  color: var(--action-accent);
  border: 0;
  border-radius: 50%;
  background: var(--action);
  font-family: "Inter", system-ui, sans-serif;
  cursor: pointer;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.2);
  transition: transform 180ms ease, background 180ms ease;
}

.menu-close:hover,
.menu-close:focus-visible {
  background: var(--action-2);
  transform: rotate(6deg) scale(1.04);
}

.menu-close span {
  position: absolute;
  width: 20px;
  height: 3px;
  background: currentColor;
  border-radius: 999px;
}

.menu-close span:first-child {
  transform: rotate(45deg);
}

.menu-close span:last-child {
  transform: rotate(-45deg);
}

.menu-overlay-note {
  position: absolute;
  top: clamp(50px, 7vw, 88px);
  right: clamp(96px, 10vw, 160px);
  z-index: 3;
  display: grid;
  gap: 14px;
  justify-items: end;
  color: rgba(17, 17, 17, 0.72);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.76rem, 1vw, 0.95rem);
  font-weight: 900;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 420ms ease 220ms, transform 520ms cubic-bezier(0.2, 0.8, 0.2, 1) 220ms;
}

.menu-overlay.open .menu-overlay-note {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay-note img {
  width: clamp(138px, 14vw, 220px);
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
}

.menu-overlay-note p {
  margin: 0;
}

.menu-ribbon {
  position: absolute;
  inset: auto 0 -6vh 0;
  z-index: 1;
  width: 100%;
  height: min(66vh, 600px);
  overflow: visible;
  pointer-events: none;
}

.menu-ribbon-stroke {
  fill: none;
  stroke: var(--action);
  stroke-width: clamp(42px, 4.8vw, 78px);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  filter:
    drop-shadow(0 22px 28px rgba(17, 17, 17, 0.26))
    drop-shadow(0 0 18px rgba(217, 90, 27, 0.24));
}

.menu-overlay.open .menu-ribbon-stroke {
  animation: menuRibbonDraw 1150ms cubic-bezier(0.18, 0.8, 0.2, 1) 120ms forwards;
}

.menu-ribbon-text {
  fill: var(--action-accent);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(21px, 2.5vw, 34px);
  font-weight: 900;
  letter-spacing: 0.015em;
  opacity: 0;
  text-transform: uppercase;
}

.menu-overlay.open .menu-ribbon-text {
  animation: menuRibbonTextIn 500ms ease 680ms forwards;
}

@keyframes menuRibbonDraw {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes menuRibbonTextIn {
  to {
    opacity: 1;
  }
}

.menu-button span {
  display: block;
  width: 20px;
  height: 3px;
  margin: 5px auto;
  background: currentColor;
  border-radius: 99px;
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  display: none;
  width: min(360px, calc(100vw - 44px));
  padding: 16px;
  color: var(--purple);
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow);
}

.mobile-nav a {
  display: block;
  padding: 14px 16px;
  border-bottom: 1px solid var(--gray-200);
  font-weight: 800;
}

/* 08. Hero section */
.hero-section {
  min-height: 150vh;
  padding: clamp(12px, 1.8vw, 24px) var(--page-gutter) 0;
  scroll-margin-top: 0;
}

.hero-card {
  --hero-scroll: 0;
  --hero-bg-y: 0px;
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  position: sticky;
  top: clamp(12px, 1.8vw, 24px);
  display: grid;
  width: min(100%, var(--container));
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.78fr);
  align-items: center;
  min-height: calc(100svh - clamp(24px, 3.6vw, 48px));
  margin: 0 auto;
  padding: clamp(126px, 11vw, 152px) clamp(28px, 5vw, 74px) clamp(28px, 3vw, 38px);
  overflow: hidden;
  color: var(--highlight-text);
  background: var(--primary);
  background-position: center calc(50% + var(--hero-bg-y));
  background-size: cover;
  border-radius: var(--radius-hero);
  box-shadow:
    0 42px 120px rgba(217, 90, 27, 0.24),
    0 20px 70px rgba(17, 17, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  isolation: isolate;
  perspective: 1100px;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  background-image: none;
  background-size: auto, auto, 18px 18px;
  scale: calc(1 + var(--hero-scroll) * 0.035);
  translate: 0 calc(var(--hero-scroll) * -42px);
}

.hero-copy {
  position: relative;
  z-index: 3;
  max-width: 650px;
  opacity: clamp(0, calc(1 - var(--hero-scroll) * 1.35), 1);
  translate: 0 calc(var(--hero-scroll) * -112px);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  margin: 0 0 16px;
  padding: 0 18px;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-heading h2,
.countdown-section h2,
.flow-copy h2,
.waitlist-section h2,
.site-footer h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy h1 {
  max-width: 720px;
  font-size: clamp(3.1rem, 6.6vw, 5.8rem);
  font-weight: 900;
}

.hero-copy p:not(.eyebrow) {
  max-width: 560px;
  margin: 18px 0 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: clamp(1rem, 2vw, 1.28rem);
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 22px;
}

.hero-word {
  position: absolute;
  top: clamp(118px, 18vw, 170px);
  left: 50%;
  z-index: 0;
  margin: 0;
  color: rgba(17, 17, 17, 0.1);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(4.8rem, 14vw, 12.8rem);
  font-weight: 900;
  line-height: 0.8;
  pointer-events: none;
  opacity: clamp(0.08, calc(0.62 - var(--hero-scroll) * 0.48), 0.62);
  transform: translateX(-50%);
  translate: calc(var(--hero-scroll) * -80px) calc(var(--hero-scroll) * -62px);
  white-space: nowrap;
}

.hero-media {
  position: relative;
  z-index: 2;
  align-self: center;
  width: min(370px, 100%);
  margin-left: auto;
  transform:
    translate3d(var(--px, 0), var(--py, 0), 0)
    rotateX(var(--tilt-x))
    rotateY(var(--tilt-y));
  transform-style: preserve-3d;
  opacity: clamp(0.18, calc(1 - var(--hero-scroll) * 0.72), 1);
  translate: 0 calc(var(--hero-scroll) * -74px);
  transition: transform 400ms ease;
}

.hero-phone-media {
  display: flex;
  justify-content: center;
}

.hero-phone-media::before {
  content: "";
  position: absolute;
  inset: 7% 2% 6%;
  z-index: -1;
  background: var(--primary);
  border: 18px solid rgba(217, 90, 27, 0.2);
  border-radius: 50%;
  filter: blur(0.2px);
  transform: rotate(-10deg);
}

.hero-phone-media::after {
  content: "";
  position: absolute;
  right: 6%;
  top: 18%;
  z-index: -1;
  width: 58%;
  aspect-ratio: 1;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-top-color: rgba(217, 90, 27, 0.68);
  border-left-color: rgba(17, 17, 17, 0.42);
  border-radius: 50%;
  opacity: 0.78;
  transform: rotate(22deg);
}

.iphone-prototype {
  position: relative;
  flex: 0 0 min(284px, 100%);
  width: min(284px, 100%);
  aspect-ratio: 0.49;
  padding: 10px;
  background: var(--primary);
  border: 2px solid transparent;
  border-radius: 46px;
  box-shadow:
    0 34px 92px rgba(17, 17, 17, 0.44),
    0 0 0 1px rgba(217, 90, 27, 0.24),
    0 0 46px rgba(217, 90, 27, 0.16),
    inset 10px 0 24px rgba(255, 255, 255, 0.08),
    inset -12px 0 26px rgba(0, 0, 0, 0.34);
  scale: calc(1 + var(--hero-scroll) * 0.08);
  rotate: -1.6deg;
}

.iphone-prototype::before {
  content: "";
  position: absolute;
  top: 23px;
  left: 50%;
  z-index: 4;
  width: 108px;
  height: 30px;
  background: var(--primary);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 1px 18px rgba(0, 0, 0, 0.3);
  transform: translateX(-50%);
}

.iphone-prototype::after {
  content: "";
  position: absolute;
  bottom: 16px;
  left: 50%;
  z-index: 4;
  width: 108px;
  height: 4px;
  background: rgba(217, 90, 27, 0.38);
  border-radius: 999px;
  transform: translateX(-50%);
}

.iphone-side-button {
  position: absolute;
  top: 118px;
  right: -4px;
  width: 4px;
  height: 82px;
  background: var(--primary);
  border-radius: 999px;
}

.iphone-screen {
  position: relative;
  height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
  border: 7px solid #111111;
  border-radius: 36px;
  box-shadow:
    0 0 0 1px rgba(217, 90, 27, 0.16),
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    inset 0 28px 52px rgba(255, 255, 255, 0.08);
}

.app-video,
.app-placeholder {
  position: absolute;
  inset: 0;
}

.app-video {
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.app-placeholder {
  z-index: 2;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 16px;
  padding: 58px 18px 24px;
  background: var(--primary);
  background-size: auto, 16px 16px;
}

.app-status {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255, 255, 255, 0.82);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
}

.app-status i {
  width: 38px;
  height: 12px;
  background: var(--primary);
  border-radius: 999px;
  opacity: 0.9;
}

.app-hero-card,
.app-plan-list span {
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
}

.app-hero-card {
  display: grid;
  gap: 5px;
  padding: 16px;
}

.app-hero-card span,
.app-hero-card small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.76rem;
  font-weight: 800;
}

.app-hero-card strong {
  color: var(--lime);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.72rem;
  font-weight: 900;
  line-height: 0.95;
}

.app-bowl-preview {
  position: relative;
  align-self: center;
  width: min(210px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  overflow: hidden;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 24px 70px rgba(36, 36, 36, 0.28);
}

.app-bowl-preview strong {
  position: absolute;
  left: 50%;
  bottom: 22px;
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 900;
  transform: translateX(-50%);
}

.app-food {
  position: absolute;
  border-radius: 999px;
  filter: saturate(1.08);
}

.app-food-one {
  top: 32px;
  left: 35px;
  width: 76px;
  height: 76px;
  background: var(--ds-lime);
}

.app-food-two {
  top: 36px;
  right: 32px;
  width: 66px;
  height: 66px;
  background: var(--ds-clay);
}

.app-food-three {
  left: 34px;
  bottom: 54px;
  width: 64px;
  height: 64px;
  background: var(--ds-lime);
}

.app-food-four {
  right: 38px;
  bottom: 62px;
  width: 72px;
  height: 72px;
  background: var(--ds-paper);
}

.app-plan-list {
  display: grid;
  gap: 10px;
}

.app-plan-list span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 12px 14px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.76rem;
  font-weight: 700;
}

.app-plan-list b {
  color: var(--lime);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
}

.meal-pack {
  position: absolute;
  display: grid;
  gap: 8px;
  padding: 16px;
  color: var(--purple);
  background: var(--white);
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(36, 36, 36, 0.18);
  transform: rotate(-7deg);
}

.meal-pack span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
}

.meal-pack strong {
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1.05;
}

.meal-pack-large {
  right: -34px;
  bottom: 150px;
  translate: calc(var(--hero-scroll) * -18px) calc(var(--hero-scroll) * -20px);
}

.meal-pack-small {
  top: 42px;
  left: -26px;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(9deg);
  translate: calc(var(--hero-scroll) * 16px) calc(var(--hero-scroll) * 18px);
}

/* 09. Hero meal mode switch */
.meal-mode-switch {
  --mode-x: 0;
  position: absolute;
  right: 38px;
  bottom: 32px;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, minmax(82px, 1fr));
  gap: 4px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(36, 36, 36, 0.18);
  overflow: hidden;
  opacity: clamp(0, calc(1 - var(--hero-scroll) * 1.45), 1);
  translate: 0 calc(var(--hero-scroll) * -54px);
}

.mode-thumb {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 0;
  width: calc((100% - 16px) / 3);
  height: calc(100% - 16px);
  background: var(--action);
  border-radius: 999px;
  transform: translateX(calc(var(--mode-x) * 100%));
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.meal-mode-switch button {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 52px;
  place-items: center;
  padding: 0 14px;
  color: var(--gray-600);
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 0.82rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 220ms ease, transform 220ms ease;
}

.meal-mode-switch button span,
.meal-mode-switch button small {
  pointer-events: none;
}

.meal-mode-switch button small {
  color: inherit;
  font-size: 0.62rem;
  font-weight: 800;
  opacity: 0.72;
  text-transform: uppercase;
}

.meal-mode-switch button.active {
  color: var(--action-accent);
  transform: translateY(-1px);
}

.hero-media.switching .iphone-prototype {
  animation: productPop 520ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-card {
  animation: heroReveal 820ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-copy,
.hero-media,
.hero-float-card,
.meal-mode-switch {
  animation: none;
}

.hero-media {
  animation-delay: 120ms;
}

.hero-float-card,
.meal-mode-switch {
  animation-delay: 220ms;
}

.hero-float-card {
  position: absolute;
  right: 38px;
  bottom: 94px;
  z-index: 4;
  width: 270px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.96);
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(36, 36, 36, 0.22);
  opacity: clamp(0, calc(1 - var(--hero-scroll) * 1.5), 1);
  translate: 0 calc(var(--hero-scroll) * -86px);
  backdrop-filter: blur(16px);
}

.hero-float-card span {
  color: var(--purple);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-float-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.1rem;
}

.hero-float-card p {
  margin: 8px 0 0;
  color: var(--gray-600);
  font-size: 0.85rem;
}

/* 10. Shared section layout and headings */
section:not(.hero-section) {
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: 0 auto;
  padding: clamp(70px, 9vw, 118px) 0;
  scroll-margin-top: 130px;
}

.countdown-grid,
.finder-card,
.feature-card,
.plan-card {
  --float-depth: 0px;
  --float-drift: 0px;
  --float-inner-depth: 0px;
  translate: 0 var(--float-depth);
  will-change: translate;
}

.finder-result::before,
.feature-illustration,
.waitlist-form {
  translate: var(--float-drift) var(--float-inner-depth);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 34px;
}

.section-heading h2,
.countdown-section h2,
.flow-copy h2,
.waitlist-section h2,
.site-footer h2 {
  color: var(--purple);
  font-size: clamp(2.3rem, 5.8vw, 5rem);
  font-weight: 900;
}

.section-heading p:not(.eyebrow) {
  max-width: 640px;
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* 12. Countdown section */
section.countdown-section {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  min-height: clamp(520px, 52vw, 690px);
  margin: 0 auto;
  padding: clamp(92px, 9vw, 142px) 0;
  overflow: visible;
  background: var(--primary);
  border-radius: 0;
  isolation: isolate;
}

.countdown-section > div:not(.countdown-ribbon) {
  position: relative;
  z-index: 2;
}

.countdown-ribbon {
  position: absolute;
  inset: -126px 0 -132px;
  z-index: 0;
  pointer-events: none;
  opacity: 0.96;
}

.countdown-ribbon-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  transform: scaleX(1);
  transform-origin: center;
}

.countdown-ribbon-path {
  fill: none;
  stroke: var(--action);
  stroke-linecap: butt;
  stroke-linejoin: round;
  stroke-width: 88px;
  vector-effect: non-scaling-stroke;
}

.countdown-ribbon-text {
  fill: var(--action-accent);
  dominant-baseline: middle;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

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

.countdown-grid div {
  display: grid;
  min-height: 150px;
  place-items: center;
  padding: 18px;
  background: rgba(217, 90, 27, 0.34);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: var(--radius-panel);
  backdrop-filter: blur(10px);
}

.countdown-grid strong {
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.1rem, 6vw, 4.2rem);
  font-weight: 900;
}

.countdown-grid span {
  color: var(--gray-600);
  font-weight: 700;
}

/* 13. Meal finder form */
.finder-section {
  position: relative;
}

.finder-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(360px, 0.88fr);
  gap: 18px;
  padding: clamp(14px, 2vw, 20px);
  overflow: hidden;
  background: var(--primary);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: clamp(28px, 3.6vw, 42px);
  box-shadow:
    0 28px 90px rgba(217, 90, 27, 0.2),
    0 12px 42px rgba(17, 17, 17, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  isolation: isolate;
}

.finder-card::before {
  position: absolute;
  inset: 18px 50% auto 18px;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  opacity: 0.7;
}

.finder-form,
.finder-result {
  position: relative;
  z-index: 1;
  padding: clamp(26px, 4.2vw, 48px);
  background: var(--white);
  border-radius: clamp(22px, 3vw, 32px);
}

.finder-form {
  --finder-glow-x: 92%;
  --finder-glow-y: 0%;
  display: grid;
  gap: 18px;
  align-content: start;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.88);
  box-shadow:
    0 22px 70px rgba(36, 36, 36, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  overflow: hidden;
}

.finder-form::before {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  width: 76px;
  aspect-ratio: 1;
  content: "";
  border: 10px double rgba(217, 90, 27, 0.62);
  border-radius: 50%;
  opacity: 0.62;
  pointer-events: none;
}

.finder-form::after {
  position: absolute;
  inset: 10px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: clamp(18px, 2.4vw, 26px);
  pointer-events: none;
}

.finder-form-heading {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
  max-width: calc(100% - 96px);
  margin-bottom: 2px;
}

.finder-form-heading span {
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  color: var(--purple);
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.finder-form-heading strong {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 900;
  line-height: 1.05;
}

.finder-form-heading p {
  max-width: 34rem;
  margin: 0;
  color: rgba(36, 36, 36, 0.64);
  font-size: 0.92rem;
  line-height: 1.5;
}

fieldset {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(148px, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0 0 24px;
  border: 0;
}

.finder-form fieldset {
  position: relative;
  z-index: 1;
  grid-template-columns: repeat(auto-fit, minmax(156px, 1fr));
  gap: 12px;
  padding: 16px;
  margin: 0;
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.58);
  border-radius: 24px;
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

legend,
.waitlist-form label,
.form-row label {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

legend {
  grid-column: 1 / -1;
  width: 100%;
  margin-bottom: 2px;
}

.finder-form legend {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 2px;
  color: var(--purple);
  letter-spacing: 0.1em;
}

.finder-form legend::after {
  flex: 1;
  height: 1px;
  content: "";
  background: var(--primary);
}

fieldset label {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  min-height: 58px;
  gap: 10px;
  padding: 0 18px;
  color: var(--purple);
  background: var(--purple-soft);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 -1px 0 rgba(17, 17, 17, 0.06);
  font-weight: 800;
  cursor: pointer;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.finder-form fieldset label {
  min-height: 58px;
  padding: 0 16px;
  background: var(--primary);
  border-color: rgba(17, 17, 17, 0.1);
  border-radius: 18px;
  box-shadow:
    0 10px 24px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

fieldset input {
  flex: 0 0 auto;
  display: block;
  width: 18px;
  height: 18px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 2px solid rgba(17, 17, 17, 0.46);
  border-radius: 50%;
  accent-color: var(--purple);
  appearance: none;
  background: var(--white);
  transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

fieldset input[type="checkbox"] {
  border-radius: 6px;
}

fieldset label:hover {
  border-color: rgba(17, 17, 17, 0.22);
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.1);
  transform: translateY(-1px);
}

.finder-form fieldset label:hover {
  border-color: rgba(17, 17, 17, 0.22);
  background: var(--primary);
  box-shadow:
    0 14px 30px rgba(17, 17, 17, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

fieldset label:has(input:checked) {
  color: var(--white);
  background: var(--action);
  border-color: rgba(255, 255, 255, 0.16);
  box-shadow: 0 16px 34px rgba(17, 17, 17, 0.24);
}

.finder-form fieldset label:has(input:checked) {
  color: var(--white);
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow:
    0 16px 34px rgba(17, 17, 17, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

fieldset input:checked {
  border-color: var(--action-accent);
  background: var(--action-accent);
  box-shadow: inset 0 0 0 4px var(--action);
}

.form-row {
  display: grid;
  grid-template-columns: minmax(140px, 0.64fr) minmax(240px, 1fr);
  gap: 20px;
  align-items: end;
  margin-top: 6px;
}

.finder-form .form-row {
  position: relative;
  z-index: 1;
  grid-template-columns: minmax(150px, 0.58fr) minmax(220px, 1fr);
  gap: 14px;
  align-items: stretch;
  margin-top: 0;
}

.form-row label {
  display: grid;
  gap: 10px;
}

.finder-form .form-row label {
  min-width: 0;
  padding: 14px;
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.58);
  border-radius: 22px;
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.finder-form .form-row label:hover,
.finder-form .form-row label:focus-within {
  color: var(--purple);
  border-color: rgba(17, 17, 17, 0.22);
  background: var(--primary);
  box-shadow:
    0 18px 40px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

input:not([type="radio"]):not([type="checkbox"]),
select,
textarea {
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  padding: 0 14px;
  border: 1px solid var(--gray-300);
  border-radius: 14px;
  background: var(--white);
}

textarea {
  min-height: 108px;
  padding: 16px 14px;
  resize: vertical;
}

.finder-form .form-row input,
.finder-form .form-row select {
  min-height: 54px;
  margin-top: 0;
  padding: 0 16px;
  color: var(--ink);
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.78);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.finder-form .form-row select {
  padding-right: 42px;
}

.finder-form .form-row input:focus,
.finder-form .form-row select:focus {
  border-color: rgba(17, 17, 17, 0.46);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(217, 90, 27, 0.34);
}

.finder-result {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 100%;
  overflow: hidden;
  color: var(--white);
  background: var(--primary);
  background-size: cover;
  background-position: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 -120px 120px rgba(36, 36, 36, 0.18);
}

.finder-result::before {
  position: absolute;
  inset: 0;
  content: "";
  background: var(--primary);
  pointer-events: none;
}

.finder-result > * {
  position: relative;
  z-index: 1;
}

.finder-result span {
  display: inline-flex;
  align-items: center;
  width: max-content;
  max-width: 100%;
  min-height: 36px;
  padding: 0 16px;
  color: var(--lime);
  background: rgba(217, 90, 27, 0.13);
  border: 1px solid rgba(217, 90, 27, 0.22);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.finder-result h3 {
  max-width: 620px;
  margin: 20px 0 14px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 4.4vw, 5rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.finder-result p {
  max-width: 540px;
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.18rem);
  line-height: 1.55;
}

.finder-result .btn {
  width: min(100%, 520px);
  min-height: 62px;
  justify-content: center;
  margin-top: clamp(24px, 4vw, 34px);
  color: var(--purple);
  box-shadow: 0 20px 44px rgba(36, 36, 36, 0.18);
}

.contact-note {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.35;
}

.finder-result .contact-note {
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 14. Feature cards */
.feature-grid,
.plan-grid {
  display: grid;
  gap: 16px;
}

.feature-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(14px, 2vw, 22px);
}

.feature-card {
  --card-x: 0;
  --card-y: 0;
  --spot-x: 50%;
  --spot-y: 40%;
  --feature-a: rgba(217, 90, 27, 0.94);
  --feature-b: rgba(17, 17, 17, 0.34);
  --feature-c: rgba(217, 90, 27, 0.74);
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: clamp(390px, 31vw, 470px);
  padding: clamp(26px, 3vw, 44px);
  overflow: hidden;
  color: var(--ink);
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.95);
  border-radius: 34px;
  box-shadow:
    0 24px 64px rgba(36, 36, 36, 0.08),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  isolation: isolate;
  transform:
    perspective(900px)
    rotateX(calc(var(--card-y) * -5deg))
    rotateY(calc(var(--card-x) * 5deg))
    translateY(0);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

.feature-card:nth-child(2) {
  --feature-a: rgba(217, 90, 27, 0.88);
  --feature-b: rgba(17, 17, 17, 0.44);
  --feature-c: rgba(217, 90, 27, 0.78);
}

.feature-card:nth-child(3) {
  --feature-a: rgba(217, 90, 27, 0.92);
  --feature-b: rgba(17, 17, 17, 0.38);
  --feature-c: rgba(217, 90, 27, 0.68);
}

.feature-card:nth-child(4) {
  --feature-a: rgba(217, 90, 27, 0.96);
  --feature-b: rgba(17, 17, 17, 0.5);
  --feature-c: rgba(217, 90, 27, 0.62);
}

.feature-card:nth-child(5) {
  --feature-a: rgba(217, 90, 27, 0.92);
  --feature-b: rgba(17, 17, 17, 0.42);
  --feature-c: rgba(217, 90, 27, 0.6);
}

.feature-card:nth-child(6) {
  --feature-a: rgba(217, 90, 27, 0.94);
  --feature-b: rgba(17, 17, 17, 0.4);
  --feature-c: rgba(217, 90, 27, 0.76);
}

.feature-card::before {
  position: absolute;
  right: -16%;
  bottom: -12%;
  left: -16%;
  z-index: -2;
  height: 64%;
  content: "";
  background: var(--primary);
  filter: saturate(1.05);
  transform: translateY(0) scale(1);
  transition: transform 420ms cubic-bezier(0.2, 0.8, 0.2, 1), filter 220ms ease;
}

.feature-card::after {
  position: absolute;
  right: -42%;
  bottom: -40%;
  z-index: -1;
  width: 184%;
  aspect-ratio: 1;
  content: "";
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.58;
  pointer-events: none;
  transform:
    translateX(calc(var(--card-x) * 14px))
    translateY(calc(var(--card-y) * 10px))
    rotate(calc(var(--card-x) * 4deg));
  transition: opacity 180ms ease, transform 220ms ease;
}

.feature-card span {
  position: absolute;
  top: clamp(22px, 2.4vw, 32px);
  right: clamp(22px, 2.4vw, 32px);
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--purple);
  background: var(--lime);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(17, 17, 17, 0.12);
}

.feature-card span::after {
  position: absolute;
  inset: -8px;
  content: "";
  border: 1px solid rgba(217, 90, 27, 0.48);
  border-radius: 50%;
  opacity: 0.7;
}

.feature-card h3,
.plan-card h3 {
  font-family: "Inter", system-ui, sans-serif;
  line-height: 1.05;
}

.feature-card h3 {
  position: relative;
  z-index: 1;
  max-width: 82%;
  margin: clamp(72px, 6vw, 94px) 0 0;
  font-size: clamp(1.65rem, 2.5vw, 2.4rem);
  letter-spacing: 0;
}

.plan-card h3 {
  margin: 34px 0 10px;
  font-size: 1.35rem;
}

.feature-card p,
.plan-card p {
  margin: 0;
  color: var(--gray-600);
}

.feature-card p {
  position: relative;
  z-index: 1;
  max-width: 88%;
  margin-top: 16px;
  color: rgba(36, 36, 36, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.52;
}

.feature-card p::after {
  position: absolute;
  left: 0;
  top: calc(100% + 24px);
  display: block;
  width: 44px;
  height: 4px;
  content: "";
  background: var(--purple);
  border-radius: 999px;
  opacity: 0.22;
  transition: width 220ms ease, opacity 220ms ease, background 220ms ease;
}

.feature-card:hover,
.feature-card.is-hovered,
.feature-card:focus-within {
  background: var(--primary);
  border-color: rgba(217, 90, 27, 0.86);
  box-shadow:
    0 34px 82px rgba(17, 17, 17, 0.17),
    0 1px 0 rgba(255, 255, 255, 0.96) inset;
  transform:
    perspective(900px)
    rotateX(calc(var(--card-y) * -5deg))
    rotateY(calc(var(--card-x) * 5deg))
    translateY(-8px);
}

.feature-card:hover::before,
.feature-card.is-hovered::before,
.feature-card:focus-within::before {
  filter: saturate(1.2);
  transform: translateY(-16px) scale(1.06);
}

.feature-card:hover::after,
.feature-card.is-hovered::after,
.feature-card:focus-within::after {
  opacity: 0.86;
}

.feature-card:hover h3,
.feature-card.is-hovered h3,
.feature-card:focus-within h3 {
  color: var(--purple);
}

.feature-card:hover p,
.feature-card.is-hovered p,
.feature-card:focus-within p {
  color: var(--gray-600);
}

.feature-card:hover p::after,
.feature-card.is-hovered p::after,
.feature-card:focus-within p::after {
  width: 82px;
  background: var(--lime);
  opacity: 1;
}

.feature-card {
  --feature-panel: var(--primary);
  --feature-panel-text: var(--highlight-text);
  --feature-panel-muted: rgba(17, 17, 17, 0.7);
  --feature-panel-badge-bg: rgba(17, 17, 17, 0.1);
  --feature-panel-badge-color: var(--action);
  --feature-panel-ring: rgba(17, 17, 17, 0.16);
  display: block;
  min-height: clamp(356px, 30vw, 420px);
  padding: 0;
  overflow: visible;
  color: var(--feature-panel-text);
  background: transparent;
  border: 0;
  border-radius: 32px;
  box-shadow: none;
}

.feature-cooked {
  --feature-panel: var(--primary);
}

.feature-price {
  --feature-panel: var(--primary);
}

.feature-flex {
  --feature-panel: var(--primary);
}

.feature-pack {
  --feature-panel: var(--primary);
}

.feature-delivery {
  --feature-panel: var(--primary);
}

.feature-nutrition {
  --feature-panel: var(--primary);
}

.feature-card::before {
  inset: clamp(82px, 7.4vw, 104px) 0 0;
  z-index: 0;
  height: auto;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 28px;
  box-shadow:
    0 26px 64px rgba(36, 36, 36, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  filter: none;
  transform: none;
}

.feature-card::after {
  inset: clamp(82px, 7.4vw, 104px) 0 0;
  z-index: 1;
  width: auto;
  aspect-ratio: auto;
  background: var(--primary);
  border-radius: 28px;
  opacity: 0.46;
  transform: none;
}

.feature-card:hover,
.feature-card.is-hovered,
.feature-card:focus-within {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.feature-card:hover::before,
.feature-card.is-hovered::before,
.feature-card:focus-within::before {
  filter: saturate(1.12);
  transform: translateY(-6px);
}

.feature-card:hover::after,
.feature-card.is-hovered::after,
.feature-card:focus-within::after {
  opacity: 0.72;
}

.feature-illustration {
  position: absolute;
  top: clamp(-6px, -0.8vw, -2px);
  left: 50%;
  z-index: 4;
  display: grid;
  width: min(49%, 152px);
  min-height: clamp(116px, 10vw, 144px);
  place-items: center;
  pointer-events: none;
  transform:
    translateX(-50%)
    translateX(calc(var(--card-x) * 14px))
    translateY(calc(var(--card-y) * 9px));
  transition: transform 220ms ease;
}

.feature-illustration svg {
  width: 100%;
  height: auto;
  overflow: visible;
  filter:
    drop-shadow(0 18px 18px rgba(36, 36, 36, 0.18))
    drop-shadow(0 4px 0 rgba(255, 255, 255, 0.12));
}

.feature-illustration svg [fill="#111111"] {
  filter: drop-shadow(0 4px 0 rgba(17, 17, 17, 0.18));
}

.feature-illustration svg [fill="#F7A11B"] {
  filter: drop-shadow(0 3px 0 rgba(17, 17, 17, 0.14));
}

.feature-illustration svg circle[fill="#D9D9D9"],
.feature-illustration svg path[stroke="#D9D9D9"] {
  filter: drop-shadow(0 3px 0 rgba(17, 17, 17, 0.12));
}

.feature-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  min-height: clamp(356px, 30vw, 420px);
  padding: clamp(120px, 10.4vw, 144px) clamp(24px, 2.6vw, 34px) clamp(24px, 2.5vw, 32px);
}

.feature-card span {
  position: static;
  display: inline-grid;
  width: 54px;
  height: 36px;
  place-items: center;
  color: var(--feature-panel-badge-color);
  background: var(--feature-panel-badge-bg);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  box-shadow: none;
  font-size: 0.85rem;
  backdrop-filter: blur(12px);
}

.feature-card span::after {
  display: none;
}

.feature-card h3 {
  max-width: 100%;
  margin: auto 0 0;
  color: var(--feature-panel-text);
  font-size: clamp(1.7rem, 2.7vw, 2.35rem);
  line-height: 0.98;
}

.feature-card p {
  max-width: 100%;
  margin-top: 12px;
  color: var(--feature-panel-muted);
  font-size: clamp(0.98rem, 1.35vw, 1.12rem);
  line-height: 1.45;
}

.feature-card p::after {
  top: calc(100% + 20px);
  height: 3px;
  background: var(--lime);
  opacity: 0.72;
}

.feature-card:hover h3,
.feature-card.is-hovered h3,
.feature-card:focus-within h3 {
  color: var(--feature-panel-text);
}

.feature-card:hover p,
.feature-card.is-hovered p,
.feature-card:focus-within p {
  color: var(--feature-panel-muted);
}

.feature-card:hover p::after,
.feature-card.is-hovered p::after,
.feature-card:focus-within p::after {
  width: 78px;
  background: var(--lime);
}

.feature-card:hover .feature-illustration,
.feature-card.is-hovered .feature-illustration,
.feature-card:focus-within .feature-illustration {
  transform:
    translateX(-50%)
    translateX(calc(var(--card-x) * 18px))
    translateY(calc(var(--card-y) * 12px - 8px))
    rotate(calc(var(--card-x) * 2.4deg));
}

.feature-illustration .bob {
  animation: featureBob 3.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.feature-card:nth-child(2n) .feature-illustration .bob {
  animation-delay: -1.1s;
}

.feature-illustration .steam {
  stroke-dasharray: 38;
  stroke-dashoffset: 38;
  animation: steamRise 2.7s ease-in-out infinite;
}

.feature-illustration .steam-two {
  animation-delay: 0.35s;
}

.feature-illustration .steam-three {
  animation-delay: 0.7s;
}

.feature-illustration .spin,
.feature-illustration .wheel {
  animation: featureSpin 7s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.feature-illustration .wheel {
  animation-duration: 2.4s;
}

.feature-illustration .coin,
.feature-illustration .spark,
.feature-illustration .ingredient,
.feature-illustration .leaf {
  animation: featurePop 2.8s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.feature-illustration .coin-two,
.feature-illustration .spark-two,
.feature-illustration .ingredient-two,
.feature-illustration .leaf-two {
  animation-delay: -0.9s;
}

.feature-illustration .coin-three,
.feature-illustration .ingredient-three {
  animation-delay: -1.6s;
}

.feature-illustration .sway {
  animation: featureSway 3.2s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}

.feature-illustration .dash {
  stroke-dasharray: 24 18;
  animation: dashTravel 1.8s linear infinite;
}

.flow-section {
  display: grid;
  grid-template-columns: 0.95fr 1fr;
  gap: clamp(26px, 6vw, 72px);
  align-items: center;
}

.flow-media {
  position: relative;
}

.flow-media img {
  aspect-ratio: 0.9;
  object-fit: cover;
  border-radius: 34px;
}

.floating-label {
  position: absolute;
  min-height: 46px;
  padding: 8px 20px;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.7rem);
  font-weight: 900;
  box-shadow: 0 14px 34px rgba(36, 36, 36, 0.16);
}

.floating-label.lime {
  top: 8%;
  right: -18px;
  color: var(--action-accent);
  background: var(--action);
}

.floating-label.purple {
  bottom: 12%;
  left: -18px;
  color: var(--white);
  background: var(--purple);
}

.flow-steps {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.flow-steps li {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 74px;
  padding: 14px 18px;
  background: var(--gray-100);
  border-radius: 20px;
}

.flow-steps span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 50%;
  font-weight: 900;
}

/* 15. Scroll story section */
.scroll-story-section {
  --story-depth: 0;
  position: relative;
  min-height: 205vh;
}

.story-sticky {
  position: sticky;
  top: 120px;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(24px, 5vw, 66px);
  align-items: center;
  min-height: calc(100vh - 150px);
  padding: clamp(24px, 4vw, 54px);
  color: var(--white);
  background: var(--primary);
  border-radius: 34px;
  box-shadow: 0 34px 90px rgba(17, 17, 17, 0.2);
  overflow: hidden;
  isolation: isolate;
}

.story-sticky::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--primary);
  pointer-events: none;
}

.story-sticky::after {
  content: none;
}

.story-ribbon-snake {
  position: absolute;
  inset: -7% -10%;
  z-index: 1;
  width: 120%;
  height: 114%;
  overflow: visible;
  pointer-events: none;
  translate: 0 calc(var(--story-depth) * -34px);
}

.story-ribbon-snake-track,
.story-ribbon-snake-path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.story-ribbon-snake-track {
  stroke: rgba(17, 17, 17, 0.08);
  stroke-width: clamp(44px, 6vw, 82px);
}

.story-ribbon-snake-path {
  stroke: var(--action);
  stroke-width: clamp(48px, 6.4vw, 92px);
  stroke-dasharray: 245 755;
  stroke-dashoffset: 1000;
  filter: drop-shadow(0 22px 28px rgba(36, 36, 36, 0.12));
  animation: storySnakeTravel 8.5s linear infinite;
  will-change: stroke-dashoffset;
}

.story-copy,
.story-plate {
  position: relative;
  z-index: 2;
}

.story-copy {
  translate: 0 calc(var(--story-depth) * -18px);
}

.story-plate {
  translate: 0 calc(var(--story-depth) * 24px);
}

.story-copy h2 {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  font-weight: 900;
  line-height: 0.94;
}

.story-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.story-plate {
  display: grid;
  width: min(580px, 100%);
  place-items: center;
  min-height: 520px;
  margin-left: auto;
  border-radius: 34px;
}

.story-plate img {
  width: min(390px, 76vw);
  aspect-ratio: 1;
  object-fit: cover;
  border: 18px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow:
    0 34px 90px rgba(36, 36, 36, 0.2),
    0 0 0 26px rgba(255, 255, 255, 0.2),
    0 0 0 54px rgba(217, 90, 27, 0.12);
  transform:
    rotate(calc(var(--story-progress, 0) * 20deg))
    scale(calc(1 + var(--story-progress, 0) * 0.04));
  transition: transform 260ms ease;
  animation: storyPlateBreathe 6s ease-in-out infinite;
}

.story-orbit {
  position: absolute;
  display: grid;
  min-width: 110px;
  min-height: 44px;
  place-items: center;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  box-shadow: 0 18px 36px rgba(36, 36, 36, 0.12);
  transform: rotate(calc(var(--story-progress, 0) * -18deg));
  animation: storyLabelFloat 4.8s ease-in-out infinite;
}

.orbit-one {
  top: 12%;
  left: 8%;
}

.orbit-two {
  right: 4%;
  top: 42%;
  animation-delay: -1.4s;
}

.orbit-three {
  bottom: 10%;
  left: 26%;
  animation-delay: -2.7s;
}

.story-steps {
  position: absolute;
  top: 50%;
  right: clamp(24px, 4vw, 58px);
  z-index: 5;
  display: block;
  width: min(560px, 46%);
  height: min(580px, calc(100% - clamp(78px, 9vw, 136px)));
  margin: 0;
  padding: 0;
  pointer-events: none;
  translate: 0 calc(-50% + 32px);
}

.story-step {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  min-height: clamp(142px, 18vh, 188px);
  margin: 0;
  padding:
    clamp(22px, 2.4vw, 34px)
    clamp(30px, 3vw, 46px);
  overflow: hidden;
  color: rgba(36, 36, 36, 0.76);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(36, 36, 36, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  opacity: var(--step-opacity, 0);
  pointer-events: none;
  transform:
    translate3d(var(--step-x, 92px), calc(-50% + var(--step-y, 250px)), 0)
    scale(var(--step-scale, 0.9));
  filter: blur(var(--step-blur, 0px)) saturate(var(--step-saturation, 1));
  backdrop-filter: blur(16px);
  transition:
    opacity 140ms ease-out,
    transform 180ms ease-out,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease,
    filter 180ms ease-out;
  will-change: transform, opacity;
}

.story-step::before {
  position: absolute;
  inset: 0;
  z-index: 0;
  content: "";
  background: var(--primary);
  opacity: 0.65;
  pointer-events: none;
}

.story-step::after {
  position: absolute;
  right: -18%;
  bottom: -48%;
  z-index: 0;
  width: 54%;
  aspect-ratio: 1;
  content: "";
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(0, 16px, 0) scale(0.88);
  transition: opacity 260ms ease, transform 260ms ease;
  pointer-events: none;
}

.story-step > * {
  position: relative;
  z-index: 1;
}

.story-step:nth-child(3) {
  margin-top: 0;
}

.story-step.active {
  z-index: 4;
  color: var(--ink);
  background: var(--primary);
  border-color: rgba(217, 90, 27, 0.84);
  box-shadow:
    0 30px 90px rgba(36, 36, 36, 0.18),
    0 0 0 1px rgba(217, 90, 27, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  opacity: 1;
  pointer-events: auto;
  transform:
    translate3d(var(--step-x, 0px), calc(-50% + var(--step-y, 0px)), 0)
    scale(var(--step-scale, 1));
}

.story-step.near-before,
.story-step.near-after,
.story-step.far-before,
.story-step.far-after {
  opacity: var(--step-opacity, 0);
  transform:
    translate3d(var(--step-x, 0px), calc(-50% + var(--step-y, 0px)), 0)
    scale(var(--step-scale, 1));
  filter: blur(var(--step-blur, 0px)) saturate(var(--step-saturation, 1));
}

.story-step.active::after {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  animation: storyCardGlow 3.6s ease-in-out infinite;
}

.story-step span,
.ingredient-card span,
.product-pack span {
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.story-step span {
  display: inline-grid;
  min-width: 42px;
  min-height: 28px;
  place-items: center;
  padding: 0 10px;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(17, 17, 17, 0.12);
}

.story-step.active span {
  color: var(--purple);
  background: var(--lime);
  box-shadow:
    0 12px 26px rgba(217, 90, 27, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.38);
}

.story-step h3,
.ingredient-card h3,
.product-pack h3 {
  margin: 10px 0 8px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.2vw, 2.05rem);
  line-height: 1.02;
}

.story-step p {
  max-width: 560px;
  margin: 0;
  color: rgba(36, 36, 36, 0.66);
  font-size: clamp(0.92rem, 1.18vw, 1.04rem);
  line-height: 1.42;
}

.story-step.active p {
  color: rgba(36, 36, 36, 0.72);
}

@media (hover: hover) {
  .story-step.active:hover {
    transform:
      translate3d(var(--step-x, 0px), calc(-50% + var(--step-y, 0px) - 6px), 0)
      scale(calc(var(--step-scale, 1) + 0.01));
  }
}

/* 16. Plan cards */
.plan-grid {
  grid-template-columns: repeat(4, 1fr);
}

.plan-card {
  --liquid-x: 50%;
  --liquid-y: 50%;
  --liquid-size: 0px;
  --liquid-opacity: 0.14;
  position: relative;
  display: flex;
  min-height: 360px;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  color: var(--ink);
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.72);
  border-radius: 28px;
  box-shadow:
    0 18px 54px rgba(36, 36, 36, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  isolation: isolate;
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    border-color 0.6s ease;
  will-change: transform;
}

.plan-card::before {
  position: absolute;
  top: var(--liquid-y);
  left: var(--liquid-x);
  z-index: 0;
  width: var(--liquid-size);
  height: var(--liquid-size);
  content: "";
  background: var(--primary);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
  transition:
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.42s ease-out;
  pointer-events: none;
}

.plan-card::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: var(--primary);
  opacity: 0;
  transition: opacity 0.6s ease-out;
  pointer-events: none;
}

.plan-card > * {
  position: relative;
  z-index: 2;
}

.plan-card.featured {
  --liquid-opacity: 0.92;
  color: var(--highlight-text);
  background: var(--primary);
  border-color: rgba(17, 17, 17, 0.2);
}

.plan-card.featured::before {
  background: var(--primary);
}

.plan-card:hover,
.plan-card.is-liquid-active {
  border-color: rgba(217, 90, 27, 0.72);
  box-shadow:
    0 34px 96px rgba(17, 17, 17, 0.2),
    0 16px 40px rgba(36, 36, 36, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  transform: translateY(-8px);
}

.plan-card.is-liquid-active::before {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.plan-card.is-liquid-active::after {
  opacity: 1;
}

.plan-card span {
  width: max-content;
  padding: 8px 12px;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 900;
}

.plan-card strong {
  display: block;
  margin-top: auto;
  font-family: "Inter", system-ui, sans-serif;
}

.plan-card a {
  display: inline-flex;
  width: max-content;
  margin-top: 18px;
  color: var(--purple);
  font-weight: 900;
}

.plan-card.featured p {
  color: rgba(17, 17, 17, 0.72);
}

.plan-card.featured a {
  color: var(--action);
}

/* 17. Ingredient storytelling */
.ingredients-section {
  --ingredient-depth: 0;
  position: relative;
}

.ingredient-stage {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(20px, 5vw, 66px);
  align-items: center;
}

.ingredient-copy {
  display: grid;
  gap: 14px;
}

.ingredient-card {
  padding: 22px;
  background: var(--gray-100);
  border: 1px solid transparent;
  border-radius: 24px;
  opacity: 0.64;
  transform: translateY(14px);
  transition: opacity 260ms ease, transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.ingredient-card.active {
  background: var(--white);
  border-color: rgba(17, 17, 17, 0.24);
  box-shadow:
    0 24px 80px rgba(17, 17, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  opacity: 1;
  transform: translateY(0);
}

.ingredient-card p {
  margin: 0;
  color: var(--gray-600);
}

.ingredient-bowl {
  --bowl-card-radius: 34px;
  position: relative;
  min-height: 560px;
  overflow: hidden;
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--bowl-card-radius);
  box-shadow:
    0 34px 100px rgba(17, 17, 17, 0.18),
    0 16px 40px rgba(36, 36, 36, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  isolation: isolate;
}

.ingredient-bowl::before {
  position: absolute;
  inset: 14px;
  z-index: -1;
  content: "";
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: calc(var(--bowl-card-radius) - 8px);
  opacity: 0.9;
  translate: calc(var(--ingredient-depth) * 24px) calc(var(--ingredient-depth) * -18px);
  pointer-events: none;
}

.ingredient-bowl::after {
  position: absolute;
  inset: -22% -32%;
  z-index: 4;
  content: "";
  background: var(--primary);
  opacity: 0.58;
  transform: translateX(-18%) rotate(6deg);
  animation: ingredientSheen 8s ease-in-out infinite;
  pointer-events: none;
}

.ingredient-bowl img {
  position: absolute;
  left: 50%;
  bottom: 34px;
  z-index: 1;
  width: min(520px, 82%);
  aspect-ratio: 1;
  object-fit: cover;
  border: 16px solid var(--white);
  border-radius: 50%;
  box-shadow:
    0 36px 100px rgba(17, 17, 17, 0.2),
    0 12px 26px rgba(36, 36, 36, 0.1),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  transform: translateX(-50%) rotate(calc(var(--ingredient-progress, 0) * 28deg));
  scale: calc(0.98 + var(--ingredient-depth) * 0.035);
  translate: 0 calc(var(--ingredient-depth) * -30px);
  transition: transform 300ms ease, filter 300ms ease;
  filter: saturate(1.06) contrast(1.02);
}

.ingredient-item {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  min-height: 46px;
  padding: 0 20px;
  color: var(--action-accent);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.86rem, 1.4vw, 1.08rem);
  font-weight: 900;
  box-shadow:
    0 18px 42px rgba(17, 17, 17, 0.18),
    0 0 0 8px rgba(217, 90, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transition: transform 320ms ease, box-shadow 220ms ease;
  animation: ingredientPillPulse 4.8s ease-in-out infinite;
  white-space: nowrap;
}

.ingredient-item::before {
  width: 8px;
  height: 8px;
  margin-right: 9px;
  content: "";
  background: var(--action-accent);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(17, 17, 17, 0.1);
}

.item-one {
  top: 20%;
  left: 12%;
  transform: translateY(calc(var(--ingredient-progress, 0) * 28px));
  translate: 0 calc(var(--ingredient-depth) * -18px);
}

.item-two {
  top: 16%;
  right: 13%;
  transform: translateY(calc(var(--ingredient-progress, 0) * -24px));
  translate: calc(var(--ingredient-depth) * -18px) calc(var(--ingredient-depth) * 12px);
  animation-delay: -1.3s;
}

.item-three {
  left: 16%;
  bottom: 24%;
  transform: translateX(calc(var(--ingredient-progress, 0) * -24px));
  translate: calc(var(--ingredient-depth) * 16px) calc(var(--ingredient-depth) * -10px);
  animation-delay: -2.2s;
}

.item-four {
  right: 12%;
  bottom: 32%;
  transform: translateX(calc(var(--ingredient-progress, 0) * 26px));
  translate: calc(var(--ingredient-depth) * -22px) calc(var(--ingredient-depth) * 14px);
  animation-delay: -3s;
}

.ingredient-glow,
.ingredient-ring,
.ingredient-badge,
.ingredient-note {
  position: absolute;
  pointer-events: none;
}

.ingredient-glow {
  z-index: 0;
  width: 220px;
  aspect-ratio: 1;
  background: var(--primary);
  border-radius: 50%;
  filter: blur(8px);
  opacity: 0.62;
  animation: ingredientGlow 6s ease-in-out infinite;
}

.ingredient-glow-one {
  top: 7%;
  left: 7%;
}

.ingredient-glow-two {
  right: 6%;
  bottom: 11%;
  width: 280px;
  background: var(--primary);
  animation-delay: -2.8s;
}

.ingredient-ring {
  left: 50%;
  bottom: 10px;
  z-index: 0;
  width: min(620px, 98%);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 17, 17, 0.13);
  border-radius: 50%;
  box-shadow:
    0 0 0 38px rgba(255, 255, 255, 0.34),
    0 0 0 66px rgba(217, 90, 27, 0.13),
    0 0 0 104px rgba(17, 17, 17, 0.06);
  transform: translateX(-50%);
  translate: 0 calc(var(--ingredient-depth) * -20px);
}

.ingredient-badge {
  top: 28px;
  left: 28px;
  z-index: 3;
  display: grid;
  gap: 3px;
  min-width: 142px;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(16px);
  translate: calc(var(--ingredient-depth) * -16px) calc(var(--ingredient-depth) * 12px);
}

.ingredient-badge span,
.ingredient-note span {
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ingredient-badge strong,
.ingredient-note strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.05;
}

.ingredient-note {
  right: 26px;
  bottom: 26px;
  z-index: 3;
  display: grid;
  max-width: 250px;
  gap: 5px;
  padding: 16px 18px;
  color: var(--white);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(36, 36, 36, 0.2);
  backdrop-filter: blur(18px);
  translate: calc(var(--ingredient-depth) * 18px) calc(var(--ingredient-depth) * -10px);
}

/* 18. Product experience */
.product-experience {
  --product-depth: 0;
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 5vw, 62px) !important;
  color: var(--white);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 34px;
  box-shadow:
    0 34px 100px rgba(36, 36, 36, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
  overflow: hidden;
  isolation: isolate;
}

.product-experience::before {
  position: absolute;
  inset: -20% -16%;
  z-index: 0;
  content: "";
  background: var(--primary);
  translate: calc(var(--product-depth) * 52px) calc(var(--product-depth) * -34px);
  pointer-events: none;
}

.product-copy,
.product-stage {
  position: relative;
  z-index: 1;
}

.product-copy {
  translate: 0 calc(var(--product-depth) * -14px);
}

.product-copy h2 {
  margin: 0;
  color: var(--white);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.94;
}

.product-copy p:not(.eyebrow) {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.76);
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-actions button {
  min-height: 46px;
  padding: 0 18px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: transparent;
  font-weight: 900;
  cursor: pointer;
  transition: color 220ms ease, background 220ms ease, transform 220ms ease;
}

.product-actions button.active,
.product-actions button:hover {
  color: var(--action-accent);
  background: var(--action);
  transform: translateY(-2px);
}

.product-stage {
  position: relative;
  display: grid;
  min-height: 560px;
  place-items: center;
  translate: 0 calc(var(--product-depth) * 18px);
}

.product-halo {
  position: absolute;
  width: min(520px, 90%);
  aspect-ratio: 1;
  background: var(--highlight);
  border-radius: 50%;
  opacity: 0.92;
  filter: blur(0.2px);
  transform: rotate(-8deg);
  scale: calc(1 + var(--product-depth) * 0.08);
  translate: calc(var(--product-depth) * -22px) calc(var(--product-depth) * -18px);
}

.product-stage img {
  position: relative;
  z-index: 2;
  width: min(430px, 86%);
  aspect-ratio: 0.82;
  object-fit: cover;
  border: 14px solid rgba(255, 255, 255, 0.28);
  border-radius: 36px;
  box-shadow: 0 42px 110px rgba(0, 0, 0, 0.36);
  transform: rotate(4deg);
  translate: 0 calc(var(--product-depth) * -24px);
  transition: transform 360ms ease, filter 360ms ease;
}

.product-experience:hover .product-stage img,
.product-stage.switching img {
  filter: saturate(1.08);
  transform: rotate(-2deg) translateY(-10px);
}

.product-pack {
  position: absolute;
  left: 2%;
  bottom: 12%;
  z-index: 3;
  width: min(280px, 62%);
  padding: 22px;
  color: var(--ink);
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
  translate: calc(var(--product-depth) * 24px) calc(var(--product-depth) * -18px);
  backdrop-filter: blur(14px);
}

.product-pack strong {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  color: var(--action-accent);
  background: var(--action);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
}

/* 19. FAQ accordion */
section.faq-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1fr);
  gap: clamp(42px, 5vw, 84px);
  align-items: center;
  padding: clamp(76px, 7.2vw, 116px) clamp(58px, 6.2vw, 104px);
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: visible;
}

section.faq-section::before {
  position: absolute;
  right: clamp(-40px, -2vw, 0px);
  top: 50%;
  z-index: 0;
  width: min(560px, 44vw);
  aspect-ratio: 1;
  content: "";
  border: clamp(30px, 5vw, 72px) solid rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 30px rgba(217, 90, 27, 0.06),
    0 0 0 1px rgba(255, 255, 255, 0.38);
  opacity: 0.8;
  transform: translateY(-50%) rotate(-10deg);
  pointer-events: none;
}

section.faq-section::after {
  position: absolute;
  left: clamp(26px, 5vw, 82px);
  bottom: clamp(28px, 4vw, 72px);
  z-index: 0;
  width: min(380px, 36vw);
  height: min(380px, 36vw);
  content: "";
  background: var(--primary);
  border-radius: 50%;
  opacity: 0.62;
  transform: rotate(-12deg);
  pointer-events: none;
}

.faq-heading {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
}

.faq-heading h2 {
  margin: 0;
  font-size: clamp(3rem, 6vw, 5.8rem);
  line-height: 0.9;
}

.faq-summary {
  max-width: 520px;
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  color: rgba(36, 36, 36, 0.68);
  font-size: clamp(1rem, 1.45vw, 1.15rem);
  line-height: 1.6;
}

.faq-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 36px);
}

.faq-meta span {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 15px;
  color: var(--purple);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 32px rgba(17, 17, 17, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.faq-list {
  position: relative;
  z-index: 1;
  display: grid;
  width: 100%;
  max-width: 860px;
  gap: 0;
  justify-self: end;
  padding: 4px 0;
}

.faq-list article {
  position: relative;
  overflow: visible;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 0;
  box-shadow: none;
  transition: transform 220ms ease;
}

.faq-list article + article {
  border-top: 0;
}

.faq-list article::before {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  z-index: 0;
  width: 4px;
  content: "";
  background: var(--primary);
  border-radius: 999px;
  box-shadow: 0 0 0 8px rgba(17, 17, 17, 0.08);
  opacity: 0;
  transform: scaleY(0.42);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease, box-shadow 220ms ease;
  pointer-events: none;
}

.faq-list article:hover {
  transform: translateY(-2px);
}

.faq-list article:hover::before {
  opacity: 0.45;
  transform: scaleY(1);
}

.faq-list button {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: 100%;
  min-height: 88px;
  padding: 24px clamp(10px, 1.2vw, 18px) 24px clamp(24px, 2.8vw, 36px);
  color: var(--ink);
  border: 0;
  background: transparent;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-number {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--purple);
  background: rgba(217, 90, 27, 0.28);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

.faq-question {
  min-width: 0;
  font-size: clamp(1.05rem, 1.45vw, 1.26rem);
  line-height: 1.22;
}

.faq-toggle {
  position: relative;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  background: rgba(17, 17, 17, 0.08);
  border-radius: 50%;
  transition: background 220ms ease, transform 220ms ease;
}

.faq-toggle::before,
.faq-toggle::after {
  position: absolute;
  width: 16px;
  height: 3px;
  content: "";
  background: currentColor;
  border-radius: 999px;
  transition: opacity 180ms ease, transform 220ms ease;
}

.faq-toggle::after {
  transform: rotate(90deg);
}

.faq-list p {
  position: relative;
  z-index: 1;
  max-height: 0;
  margin: 0;
  padding: 0 clamp(18px, 2.4vw, 30px) 0 clamp(96px, 7.4vw, 118px);
  overflow: hidden;
  color: rgba(36, 36, 36, 0.64);
  font-size: clamp(0.98rem, 1.3vw, 1.08rem);
  line-height: 1.65;
  opacity: 0;
  transition: max-height 260ms ease, padding 260ms ease, opacity 180ms ease;
}

.faq-list article.open {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.faq-list article.open::before {
  background: var(--primary);
  box-shadow:
    0 0 0 8px rgba(17, 17, 17, 0.1),
    0 18px 34px rgba(17, 17, 17, 0.18);
  opacity: 1;
  transform: scaleY(1);
}

.faq-list article.open button {
  color: var(--ink);
}

.faq-list article.open .faq-question {
  color: var(--purple);
}

.faq-list article.open p {
  color: rgba(36, 36, 36, 0.7);
}

.faq-list article.open .faq-number {
  color: var(--action-accent);
  background: var(--action);
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.18);
}

.faq-list article.open .faq-toggle {
  color: var(--action-accent);
  background: var(--action);
  transform: rotate(180deg);
}

.faq-list article.open .faq-toggle::after {
  opacity: 0;
  transform: rotate(90deg) scaleX(0.2);
}

.faq-list article.open p {
  max-height: 180px;
  padding-bottom: 30px;
  opacity: 1;
}

/* 23. Waitlist form */
section.waitlist-section {
  position: relative;
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
  gap: clamp(58px, 5.8vw, 92px);
  align-items: center;
  justify-items: center;
  padding: clamp(92px, 8.2vw, 136px) clamp(88px, 8.4vw, 148px);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 38px;
  box-shadow:
    0 34px 100px rgba(17, 17, 17, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  overflow: hidden;
  isolation: isolate;
}

.waitlist-section::before {
  position: absolute;
  inset: clamp(34px, 3.7vw, 56px);
  z-index: -1;
  content: "";
  border: 2px solid rgba(17, 17, 17, 0.12);
  border-radius: 28px;
  background: var(--primary);
  pointer-events: none;
}

.waitlist-art {
  position: absolute;
  left: clamp(70px, 7vw, 124px);
  bottom: clamp(64px, 6vw, 110px);
  z-index: -1;
  width: min(340px, 30vw);
  opacity: 0.34;
  pointer-events: none;
  transform: rotate(-8deg);
}

.waitlist-art svg {
  overflow: visible;
}

.waitlist-art .art-sun {
  fill: rgba(217, 90, 27, 0.36);
  stroke: rgba(17, 17, 17, 0.42);
  stroke-width: 3;
  stroke-dasharray: 8 8;
}

.waitlist-art .art-dots {
  fill: url("#madhubani-dots");
  stroke: rgba(17, 17, 17, 0.16);
}

.waitlist-art .art-line,
.waitlist-art .art-leaf {
  fill: none;
  stroke: rgba(17, 17, 17, 0.78);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.waitlist-art .art-leaf {
  fill: rgba(217, 90, 27, 0.34);
  stroke-width: 5;
}

.waitlist-copy {
  position: relative;
  z-index: 1;
  width: min(100%, 620px);
  min-width: 0;
  justify-self: center;
  align-self: center;
  padding: 0;
}

.waitlist-section h2 {
  max-width: 660px;
  font-size: clamp(3.2rem, 5.6vw, 5.7rem);
  line-height: 0.9;
}

.waitlist-lede {
  max-width: 560px;
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  color: rgba(36, 36, 36, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.58;
}

.waitlist-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(24px, 3vw, 36px);
}

.waitlist-points span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  color: var(--purple);
  border: 1px solid rgba(17, 17, 17, 0.12);
  background: rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(17, 17, 17, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  backdrop-filter: blur(14px);
}

.waitlist-form {
  --form-glow-x: 88%;
  --form-glow-y: 4%;
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100%, 780px);
  min-width: 0;
  justify-self: center;
  align-self: center;
  translate: 0 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding: clamp(34px, 4.2vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--primary);
  border-radius: 32px;
  box-shadow:
    0 30px 90px rgba(17, 17, 17, 0.13),
    0 1px 0 rgba(255, 255, 255, 0.88) inset,
    0 0 0 1px rgba(17, 17, 17, 0.03) inset;
  backdrop-filter: blur(18px);
}

.waitlist-form::before {
  position: absolute;
  top: clamp(18px, 2vw, 28px);
  right: clamp(18px, 2vw, 28px);
  width: 82px;
  aspect-ratio: 1;
  content: "";
  border: 11px double rgba(217, 90, 27, 0.7);
  border-radius: 50%;
  opacity: 0.64;
  pointer-events: none;
}

.waitlist-form::after {
  position: absolute;
  inset: 12px;
  z-index: -1;
  content: "";
  border: 1px solid rgba(17, 17, 17, 0.06);
  border-radius: 24px;
  pointer-events: none;
}

.waitlist-form-heading,
.form-section-label,
.wide-field {
  grid-column: 1 / -1;
}

.waitlist-form-heading {
  display: grid;
  gap: 8px;
  max-width: calc(100% - 112px);
  padding-bottom: 10px;
}

.waitlist-form-heading span {
  width: max-content;
  max-width: 100%;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--purple);
  background: rgba(17, 17, 17, 0.08);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.waitlist-form-heading strong {
  color: var(--ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.45rem, 2.2vw, 2rem);
  line-height: 1.04;
  text-wrap: balance;
}

.waitlist-form-heading p {
  max-width: 34rem;
  margin: 0;
  color: rgba(36, 36, 36, 0.64);
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-section-label {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 8px 0 -2px;
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-section-label::after {
  flex: 1;
  height: 1px;
  content: "";
  background: var(--primary);
}

.waitlist-form label {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  min-width: 0;
  padding: 14px;
  color: rgba(36, 36, 36, 0.9);
  background: var(--primary);
  border: 1px solid rgba(216, 216, 216, 0.58);
  border-radius: 22px;
  box-shadow:
    0 14px 34px rgba(17, 17, 17, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transition: color 180ms ease, transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.waitlist-form label:hover {
  border-color: rgba(17, 17, 17, 0.18);
  box-shadow:
    0 18px 40px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.waitlist-form label:focus-within {
  color: var(--purple);
  border-color: rgba(17, 17, 17, 0.28);
  background: var(--primary);
  transform: translateY(-1px);
}

.waitlist-form input:not([type="radio"]):not([type="checkbox"]),
.waitlist-form select,
.waitlist-form textarea {
  min-height: 54px;
  margin-top: 0;
  padding-inline: 16px;
  border-color: rgba(216, 216, 216, 0.78);
  background: var(--primary);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
  font-weight: 800;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.waitlist-form select {
  padding-right: 42px;
  cursor: pointer;
}

.waitlist-form input:hover,
.waitlist-form select:hover,
.waitlist-form textarea:hover {
  border-color: rgba(17, 17, 17, 0.24);
  background: var(--primary);
  box-shadow:
    0 10px 28px rgba(17, 17, 17, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.waitlist-form textarea {
  min-height: 132px;
  padding-top: 16px;
  line-height: 1.45;
}

.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  border-color: rgba(17, 17, 17, 0.52);
  outline: 0;
  box-shadow:
    0 0 0 4px rgba(217, 90, 27, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

.waitlist-form button,
.form-note {
  grid-column: 1 / -1;
}

.honeypot-field {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.waitlist-form button {
  min-height: 62px;
  margin-top: 8px;
  font-size: 0.95rem;
  box-shadow:
    0 16px 36px rgba(17, 17, 17, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.waitlist-form button::after {
  content: "→";
  margin-left: 10px;
  font-size: 1.1em;
  transition: transform 180ms ease;
}

.waitlist-form button:hover::after {
  transform: translateX(4px);
}

.form-note {
  margin: 0;
  padding: 0 4px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.55;
}

.form-note.loading {
  color: #7A4A12;
}

.form-note.success {
  color: #1F6B3A;
}

.form-note.error {
  color: #A3311E;
}

.waitlist-form button:disabled {
  opacity: 0.72;
  pointer-events: none;
  transform: none;
}

.waitlist-form .contact-note {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  margin-top: -2px;
  padding: 10px 14px;
  color: var(--purple);
  background: rgba(217, 90, 27, 0.24);
  border: 1px solid rgba(217, 90, 27, 0.42);
  border-radius: 16px;
  font-weight: 800;
}

.waitlist-form .contact-note::before {
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  content: "";
  background: var(--action);
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(17, 17, 17, 0.12);
}

/* 24. Footer */
.site-footer {
  position: relative;
  display: grid;
  grid-template-columns: minmax(248px, 0.38fr) minmax(0, 1fr) minmax(230px, 0.34fr);
  gap: clamp(30px, 4.2vw, 64px);
  align-items: stretch;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: var(--section-gap) auto 0;
  padding: clamp(42px, 5.2vw, 68px);
  color: var(--white);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 0;
  border-radius: clamp(30px, 4vw, 46px) clamp(30px, 4vw, 46px) 0 0;
  box-shadow:
    0 -16px 60px rgba(17, 17, 17, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  overflow: hidden;
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  left: 0.02em;
  bottom: -0.24em;
  z-index: 0;
  content: "GRATASTE";
  color: transparent;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(5rem, 11.5vw, 12.5rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  opacity: 0.12;
  pointer-events: none;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.5);
}

.site-footer::after {
  position: absolute;
  right: clamp(-88px, -4.6vw, -42px);
  top: clamp(-96px, -5vw, -48px);
  z-index: 0;
  width: min(360px, 28vw);
  aspect-ratio: 1;
  content: "";
  border: clamp(28px, 3.8vw, 56px) solid rgba(217, 90, 27, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 0 0 22px rgba(255, 255, 255, 0.06),
    0 0 70px rgba(217, 90, 27, 0.12);
  pointer-events: none;
}

.site-footer > * {
  position: relative;
  z-index: 2;
}

.footer-brand-panel {
  display: flex;
  min-height: 240px;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(20px, 2.5vw, 28px);
  background: var(--primary);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.footer-brand {
  display: inline-flex;
  width: min(230px, 100%);
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(36, 36, 36, 0.14);
}

.footer-brand img {
  width: 100%;
  max-width: 190px;
  height: auto;
}

.footer-brand-visual {
  position: relative;
  min-height: clamp(180px, 16vw, 230px);
  margin: 2px 0;
  overflow: hidden;
  border-radius: 24px;
  background: var(--primary);
}

.footer-brand-visual::before {
  position: absolute;
  inset: 22px;
  content: "";
  border: 1px dashed rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  opacity: 0.82;
}

.footer-brand-visual::after {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: 74px;
  height: 74px;
  content: "";
  background: var(--primary);
  border: 10px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  box-shadow: 0 18px 34px rgba(36, 36, 36, 0.14);
}

.footer-map-line {
  position: absolute;
  left: 18px;
  top: 50%;
  width: calc(100% - 36px);
  height: 86px;
  border: 3px solid rgba(217, 90, 27, 0.52);
  border-right: 0;
  border-bottom: 0;
  border-radius: 999px 0 0 0;
  transform: translateY(-28%) rotate(-10deg);
}

.footer-plate-orbit {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 128px;
  height: 128px;
  border: 18px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.footer-plate-core {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 74px;
  height: 74px;
  background: var(--primary);
  border: 8px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  box-shadow:
    0 20px 44px rgba(36, 36, 36, 0.16),
    inset 0 0 0 1px rgba(17, 17, 17, 0.1);
  transform: translate(-50%, -50%);
}

.footer-meal-chip {
  position: absolute;
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 13px;
  color: var(--purple);
  background: var(--lime);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(36, 36, 36, 0.12);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  transform: rotate(var(--chip-rotate, 0deg));
}

.chip-breakfast {
  --chip-rotate: -8deg;
  left: 10px;
  top: 26px;
}

.chip-lunch {
  --chip-rotate: 8deg;
  right: 12px;
  top: 76px;
}

.chip-dinner {
  --chip-rotate: -10deg;
  left: 34px;
  bottom: 32px;
}

.footer-map-dot {
  position: absolute;
  width: 16px;
  height: 16px;
  background: var(--lime);
  border-radius: 50%;
  box-shadow: 0 0 0 9px rgba(217, 90, 27, 0.14);
}

.dot-one {
  right: 32px;
  top: 36px;
}

.dot-two {
  left: 28px;
  bottom: 74px;
}

.footer-brand-panel p {
  max-width: 240px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-main {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding-block: 8px;
}

.footer-eyebrow {
  width: max-content;
  margin-bottom: clamp(18px, 2.2vw, 28px);
  color: var(--purple);
  background: var(--lime);
}

.site-footer h2 {
  max-width: 820px;
  margin: 0;
  color: var(--white);
  font-size: clamp(3rem, 5.7vw, 6rem);
  line-height: 0.9;
}

.footer-main > p:not(.footer-eyebrow) {
  max-width: 700px;
  margin: clamp(20px, 2.4vw, 30px) 0 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(1rem, 1.4vw, 1.16rem);
  line-height: 1.65;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(26px, 3vw, 40px);
}

.footer-ghost-link {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-ghost-link:hover {
  border-color: rgba(255, 255, 255, 0.48);
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-3px);
}

.footer-side {
  display: grid;
  align-content: space-between;
  gap: 28px;
}

.footer-status {
  display: grid;
  gap: 6px;
  padding: 18px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.88);
  border-radius: 24px;
  box-shadow: 0 20px 56px rgba(36, 36, 36, 0.14);
}

.footer-status span {
  color: var(--purple);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer-status strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  line-height: 1;
}

.footer-links {
  display: grid;
  gap: 12px;
  color: var(--lime);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
}

.footer-links a {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  color: var(--lime);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.footer-links a::after {
  content: "->";
  font-size: 0.88em;
}

.footer-links a:hover {
  border-color: rgba(217, 90, 27, 0.42);
  background: rgba(255, 255, 255, 0.14);
  transform: translateX(4px);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(10px, 1.6vw, 22px);
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

/* 25. Reveal and motion animations */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition:
    opacity 0.8s ease-out var(--reveal-delay, 0ms),
    transform 0.8s ease-out var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal.in-view,
.reveal-item.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal.reveal-complete {
  opacity: 1;
  transform: none;
  transition: none;
  will-change: auto;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: scale(0.985) translateY(18px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes heroContentRise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes storySnakeTravel {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes storyPlateBreathe {
  0%,
  100% {
    filter: saturate(1);
  }
  50% {
    filter: saturate(1.08) brightness(1.04);
  }
}

@keyframes storyLabelFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -10px;
  }
}

@keyframes storyCardGlow {
  0%,
  100% {
    opacity: 0.72;
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    opacity: 1;
    transform: translate3d(-8px, -8px, 0) scale(1.08);
  }
}

@keyframes ingredientSheen {
  0%,
  100% {
    opacity: 0.38;
    transform: translateX(-26%) rotate(6deg);
  }
  50% {
    opacity: 0.72;
    transform: translateX(18%) rotate(6deg);
  }
}

@keyframes ingredientGlow {
  0%,
  100% {
    opacity: 0.52;
    scale: 0.96;
  }
  50% {
    opacity: 0.78;
    scale: 1.08;
  }
}

@keyframes ingredientPillPulse {
  0%,
  100% {
    filter: saturate(1);
    box-shadow:
      0 18px 42px rgba(17, 17, 17, 0.18),
      0 0 0 8px rgba(217, 90, 27, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.46);
  }
  50% {
    filter: saturate(1.12) brightness(1.03);
    box-shadow:
      0 22px 52px rgba(17, 17, 17, 0.22),
      0 0 0 12px rgba(217, 90, 27, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.6);
  }
}

@keyframes productPop {
  0% {
    opacity: 0.35;
    transform: scale(0.96) rotate(-2deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@keyframes featureBob {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-9px) rotate(-1.6deg);
  }
}

@keyframes steamRise {
  0% {
    opacity: 0;
    stroke-dashoffset: 38;
    transform: translateY(8px);
  }
  38% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    stroke-dashoffset: 0;
    transform: translateY(-14px);
  }
}

@keyframes featureSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes featurePop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

@keyframes featureSway {
  0%,
  100% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(7deg);
  }
}

@keyframes dashTravel {
  to {
    stroke-dashoffset: -84;
  }
}

/* 26. Tablet layout */
@media (max-width: 1060px) {
  :root {
    --section-gap: clamp(30px, 5vw, 52px);
  }

  .section-pagination {
    right: 10px;
    gap: 8px;
    padding: 8px 6px;
  }

  .section-pagination button {
    width: 8px;
    height: 8px;
  }

  .section-pagination button.active {
    height: 28px;
  }

  .site-header {
    grid-template-columns: 1fr auto 1fr;
    padding-inline: clamp(16px, 3vw, 28px);
  }

  .desktop-nav,
  .ghost-link {
    display: none;
  }

  .brand {
    grid-column: 2;
  }

  .brand img {
    width: clamp(150px, 22vw, 178px);
  }

  .header-actions {
    grid-column: 3;
  }

  .header-actions .header-icon {
    display: none;
  }

  .site-header.menu-open .mobile-nav {
    display: block;
  }

  .mega-inner {
    grid-template-columns: 1fr;
  }

  .mega-copy {
    min-height: auto;
  }

  .mega-inner h2 {
    max-width: 14ch;
  }

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

  .menu-overlay {
    padding: clamp(48px, 7vw, 76px) clamp(30px, 6vw, 72px);
  }

  .menu-overlay-note {
    right: clamp(82px, 9vw, 118px);
  }

  .menu-ribbon {
    inset: auto -2vw -5vh -2vw;
    width: 104vw;
    height: min(58vh, 520px);
  }

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

  .hero-card,
  .finder-card,
  .story-sticky,
  .ingredient-stage,
  .product-experience,
  .waitlist-section {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    min-height: auto;
    flex-direction: row;
    align-items: center;
  }

  .footer-brand-visual {
    flex: 1 1 260px;
    min-height: 170px;
  }

  .footer-side {
    grid-template-columns: minmax(220px, 0.4fr) 1fr;
    align-items: end;
  }

  .hero-card {
    min-height: 900px;
    padding-top: clamp(176px, 20vw, 220px);
  }

  .hero-media {
    margin: 28px auto 108px;
  }

  .hero-float-card {
    right: auto;
    left: 28px;
    bottom: 112px;
  }

  .meal-mode-switch {
    right: auto;
    left: 28px;
    bottom: 42px;
    max-width: calc(100% - 56px);
  }

  .countdown-section {
    grid-template-columns: 1fr;
  }

  .story-sticky {
    position: relative;
    top: auto;
    min-height: auto;
  }

  .scroll-story-section {
    min-height: auto;
  }

  .story-steps {
    position: relative;
    top: auto;
    right: auto;
    display: grid;
    width: 100%;
    height: auto;
    gap: 14px;
    grid-column: 1 / -1;
    max-width: none;
    margin: 28px 0 0;
    padding: 0;
    pointer-events: auto;
    translate: none;
  }

  .story-step {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    min-height: 128px;
    opacity: 0.82;
    pointer-events: auto;
    transform: none;
  }

  .story-step.near-before,
  .story-step.near-after,
  .story-step.far-before,
  .story-step.far-after,
  .story-step.active {
    opacity: 1;
    filter: none;
    transform: none;
  }

  .product-stage,
  .ingredient-bowl {
    min-height: 480px;
  }

  .ingredient-bowl img {
    bottom: 42px;
    width: min(500px, 70%);
  }

  .ingredient-ring {
    bottom: 34px;
    width: min(560px, 82%);
  }

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

  .feature-grid {
    gap: 34px 18px;
  }

  .feature-card,
  .feature-content {
    min-height: 390px;
  }

  .feature-illustration {
    width: min(49%, 142px);
    min-height: 120px;
  }

  .feature-content {
    padding-top: 126px;
  }

  section.faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: clamp(58px, 7vw, 84px);
  }

  .faq-heading {
    max-width: 760px;
  }

  .faq-list {
    max-width: 100%;
    justify-self: stretch;
  }

  .waitlist-art {
    width: min(300px, 52vw);
    opacity: 0.28;
  }

  .waitlist-copy {
    width: min(100%, 760px);
    justify-self: center;
    padding: 0;
  }

  .waitlist-form {
    width: min(100%, 860px);
    justify-self: center;
    padding: clamp(34px, 4vw, 48px);
  }

  .waitlist-form-heading {
    max-width: calc(100% - 96px);
  }

}

/* 27. Mobile layout */
@media (max-width: 720px) {
  :root {
    --page-gutter: 53px;
    --page-gutter-total: 106px;
    --section-gap: 30px;
  }

  .page-background {
    opacity: 0.94;
  }

  .bg-shape-one {
    width: 82vw;
  }

  .bg-shape-two {
    width: 72vw;
  }

  .bg-shape-three {
    width: 68vw;
    border-width: 28px;
  }

  .section-pagination {
    right: 6px;
    gap: 7px;
    padding: 7px 5px;
    background: rgba(255, 255, 255, 0.46);
  }

  .section-pagination button {
    width: 7px;
    height: 7px;
  }

  .section-pagination button.active {
    height: 24px;
    box-shadow:
      0 0 0 4px rgba(var(--page-accent-r), var(--page-accent-g), var(--page-accent-b), 0.16),
      0 10px 22px rgba(36, 36, 36, 0.12);
  }

  .site-header {
    top: 10px;
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    min-height: 64px;
    padding: 8px 10px 8px 14px;
    border-radius: 24px;
    transform: translate3d(-50%, calc((1 - var(--hero-reveal)) * 8px), 0);
  }

  .site-header.scrolled,
  .site-header.menu-open {
    top: 10px;
    border-radius: 22px;
  }

  .mega-menu {
    top: 78px;
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    border-radius: 24px;
  }

  .mega-inner {
    gap: 16px;
    padding: 16px;
  }

  .mega-copy {
    min-height: auto;
    gap: 10px;
    padding: 18px;
    border-radius: 18px;
  }

  .mega-eyebrow {
    padding: 7px 11px;
    font-size: 0.64rem;
  }

  .mega-inner h2 {
    max-width: 13ch;
    font-size: clamp(1.55rem, 8.8vw, 2.5rem);
  }

  .mega-copy p:not(.mega-eyebrow) {
    font-size: 0.88rem;
  }

  .mega-cta {
    min-height: 38px;
    padding-inline: 14px;
    font-size: 0.76rem;
  }

  .mega-cards {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding: 2px 2px 12px;
    scroll-snap-type: x mandatory;
  }

  .mega-card {
    flex: 0 0 min(72vw, 240px);
    padding: 10px;
    border-radius: 18px;
    scroll-snap-align: start;
  }

  .mega-card:nth-child(n+5) {
    display: grid;
  }

  .mega-card img {
    border-radius: 12px;
  }

  .mega-card small {
    font-size: 0.72rem;
  }

  .menu-overlay {
    inset: 8px;
    padding: 86px 24px 28px;
    border-radius: 28px;
  }

  .menu-overlay::before {
    right: -42px;
    bottom: 34px;
    font-size: 5.6rem;
    writing-mode: vertical-rl;
    opacity: 0.8;
  }

  .menu-overlay-nav {
    gap: 12px;
    width: min(100%, 300px);
    margin-top: 0;
  }

  .menu-overlay-nav a {
    gap: 12px;
    font-size: clamp(1.3rem, 8.8vw, 2.25rem);
    line-height: 1;
  }

  .menu-overlay-nav a span {
    width: 34px;
    height: 34px;
  }

  .menu-overlay-note {
    top: 22px;
    right: 86px;
    justify-items: start;
    text-align: left;
  }

  .menu-overlay-note img {
    width: 128px;
    padding: 8px 12px;
  }

  .menu-overlay-note p {
    display: none;
  }

  .menu-close {
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
  }

  .menu-ribbon {
    inset: auto -24vw -2vh -28vw;
    width: 152vw;
    height: 48vh;
  }

  .menu-ribbon-stroke {
    stroke-width: clamp(40px, 13vw, 58px);
  }

  .menu-ribbon-text {
    font-size: clamp(18px, 5.8vw, 25px);
  }

  .brand {
    font-size: 1.15rem;
    padding: 8px 12px;
  }

  .brand img {
    width: clamp(126px, 36vw, 148px);
  }

  .header-actions .btn {
    display: none;
  }

  .hero-section {
    min-height: auto;
    padding: 12px var(--page-gutter) 0;
  }

  .countdown-section {
    min-height: 640px;
    padding: 82px 24px;
  }

  .countdown-ribbon {
    inset: -72px 0 -88px;
  }

  .countdown-ribbon-svg {
    width: 100%;
    transform: scaleX(1);
  }

  .countdown-ribbon-path {
    stroke-width: 68px;
  }

  .countdown-ribbon-text {
    font-size: 18px;
  }

  .hero-card {
    position: relative;
    top: auto;
    min-height: 880px;
    padding: 176px 18px 28px;
    border-radius: 28px;
  }

  .hero-copy h1 {
    max-width: 7.2ch;
    font-size: clamp(2.35rem, 12.8vw, 3.45rem);
    line-height: 0.98;
    text-wrap: balance;
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 24ch;
    font-size: 1rem;
    line-height: 1.45;
  }

  .hero-media {
    width: min(320px, 100%);
  }

  .meal-pack-large {
    right: -4px;
    bottom: 36px;
  }

  .meal-pack-small {
    left: -6px;
    top: 36px;
  }

  .hero-float-card {
    width: calc(100% - 36px);
    left: 18px;
    bottom: 112px;
  }

  .meal-mode-switch {
    left: 18px;
    bottom: 28px;
    width: calc(100% - 36px);
    grid-template-columns: repeat(3, 1fr);
  }

  .meal-mode-switch button {
    min-height: 48px;
    padding: 0 8px;
  }

  .meal-mode-switch button small {
    display: none;
  }

  section:not(.hero-section) {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    padding: 56px 0;
    scroll-margin-top: 96px;
  }

  section.countdown-section {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    padding: 82px 0;
  }

  section.faq-section {
    padding: 32px !important;
    border-radius: 0;
  }

  section.faq-section::before {
    right: -100px;
    top: 24px;
    width: 280px;
    border-width: 30px;
  }

  section.faq-section::after {
    left: -80px;
    bottom: 24px;
    width: 240px;
    height: 240px;
  }

  .faq-heading h2 {
    font-size: clamp(2.75rem, 13vw, 4.3rem);
  }

  .faq-summary {
    font-size: 0.98rem;
  }

  .faq-meta span {
    min-height: 36px;
    font-size: 0.68rem;
  }

  .faq-list {
    gap: 0;
  }

  .faq-list button {
    grid-template-columns: 40px minmax(0, 1fr) 38px;
    gap: 12px;
    min-height: 78px;
    padding: 18px;
  }

  .faq-number {
    width: 40px;
    height: 40px;
    font-size: 0.75rem;
  }

  .faq-toggle {
    width: 38px;
    height: 38px;
  }

  .faq-list p {
    padding-inline: 70px 18px;
  }

  .faq-list article.open p {
    padding-bottom: 22px;
  }

  .countdown-grid,
  .feature-grid,
  .plan-grid,
  .waitlist-form,
  .form-row,
  .ingredient-stage,
  .product-experience,
  .story-sticky {
    grid-template-columns: 1fr;
  }

  .feature-grid {
    gap: 38px;
  }

  .feature-card,
  .feature-content {
    min-height: 344px;
  }

  .feature-card::before,
  .feature-card::after {
    top: 72px;
  }

  .feature-illustration {
    top: -2px;
    width: min(134px, 49%);
    min-height: 108px;
  }

  .feature-content {
    padding: 110px 24px 28px;
  }

  .finder-card,
  .waitlist-section,
  .product-experience,
  .story-sticky {
    padding: 12px !important;
    border-radius: 28px;
  }

  .site-footer {
    padding: 34px 24px 30px !important;
    border-radius: 28px 28px 0 0;
  }

  .site-footer::before {
    font-size: 5.8rem;
    bottom: -0.18em;
  }

  .site-footer::after {
    right: -150px;
    top: -110px;
    width: 300px;
    border-width: 38px;
  }

  .footer-brand-panel,
  .footer-side,
  .footer-actions,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    min-height: auto;
    gap: 16px;
    padding: 18px;
  }

  .footer-brand-visual {
    min-height: 168px;
  }

  .footer-plate-orbit {
    width: 112px;
    height: 112px;
    border-width: 14px;
  }

  .footer-plate-core {
    width: 66px;
    height: 66px;
    border-width: 7px;
  }

  .footer-meal-chip {
    min-height: 30px;
    padding: 0 10px;
    font-size: 0.66rem;
  }

  .footer-brand {
    width: min(220px, 100%);
  }

  .site-footer h2 {
    font-size: clamp(2.45rem, 11vw, 3.7rem);
  }

  .footer-main > p:not(.footer-eyebrow) {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .footer-links {
    grid-template-columns: 1fr 1fr;
  }

  .waitlist-section {
    padding: 32px !important;
  }

  .waitlist-section::before {
    inset: 14px;
    border-radius: 22px;
  }

  .waitlist-art {
    right: -42px;
    left: auto;
    bottom: -40px;
    width: 260px;
    opacity: 0.2;
  }

  .waitlist-copy {
    width: 100%;
    padding: 0;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    width: 100%;
    justify-self: center;
    padding: 26px;
    border-radius: 24px;
  }

  .waitlist-form-heading {
    max-width: none;
    padding-right: 76px;
  }

  .form-section-label {
    margin-top: 8px;
  }

  .waitlist-form::before {
    width: 70px;
    border-width: 10px;
  }

  .waitlist-points span {
    min-height: 38px;
    font-size: 0.7rem;
  }

  .countdown-grid div {
    min-height: 112px;
  }

  .floating-label.lime {
    right: 8px;
  }

  .floating-label.purple {
    left: 8px;
  }

  .story-copy h2,
  .product-copy h2 {
    font-size: clamp(2.4rem, 12vw, 4rem);
  }

  .story-plate {
    min-height: 360px;
    width: 100%;
  }

  .story-plate img {
    width: min(260px, 72vw);
    border-width: 10px;
    box-shadow:
      0 24px 60px rgba(36, 36, 36, 0.18),
      0 0 0 18px rgba(255, 255, 255, 0.18);
  }

  .story-orbit {
    min-width: 86px;
    min-height: 38px;
    font-size: 0.78rem;
  }

  .story-step,
  .ingredient-card {
    padding: 18px;
    transform: none;
  }

  .story-step.active,
  .ingredient-card.active {
    transform: none;
  }

  .story-step:nth-child(3) {
    margin-top: 0;
  }

  .ingredient-bowl,
  .product-stage {
    min-height: 430px;
  }

  .ingredient-bowl img {
    bottom: 54px;
    width: min(330px, 72%);
    border-width: 10px;
  }

  .ingredient-item {
    min-width: 74px;
    min-height: 36px;
    padding: 0 11px;
    font-size: 0.72rem;
    box-shadow:
      0 12px 28px rgba(17, 17, 17, 0.16),
      0 0 0 5px rgba(217, 90, 27, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }

  .ingredient-item::before {
    width: 6px;
    height: 6px;
    margin-right: 6px;
    box-shadow: 0 0 0 3px rgba(17, 17, 17, 0.1);
  }

  .item-one {
    top: 26%;
    left: 7%;
  }

  .item-two {
    top: 18%;
    right: 7%;
  }

  .item-three {
    left: 8%;
    bottom: 34%;
  }

  .item-four {
    right: 7%;
    bottom: 30%;
  }

  .ingredient-ring {
    bottom: 42px;
    width: min(420px, 92%);
    box-shadow:
      0 0 0 22px rgba(255, 255, 255, 0.3),
      0 0 0 42px rgba(217, 90, 27, 0.11),
      0 0 0 70px rgba(17, 17, 17, 0.05);
  }

  .ingredient-badge {
    top: 18px;
    left: 18px;
    min-width: 124px;
    padding: 11px 13px;
    border-radius: 17px;
  }

  .ingredient-badge strong,
  .ingredient-note strong {
    font-size: 0.88rem;
  }

  .ingredient-note {
    right: 16px;
    bottom: 16px;
    max-width: calc(100% - 32px);
    padding: 13px 14px;
    border-radius: 18px;
  }

  .product-pack {
    left: 12px;
    bottom: 12px;
    width: calc(100% - 24px);
  }

  .product-stage img {
    width: min(280px, 76%);
    border-width: 10px;
  }

  .site-footer {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    margin-top: var(--section-gap);
  }
}

/* 28. Responsive hardening */
@media (max-width: 1180px) {
  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-side {
    min-width: 0;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(24px, 4vw, 44px);
    --page-gutter-total: clamp(48px, 8vw, 88px);
    --section-gap: clamp(28px, 5vw, 48px);
  }

  .site-header,
  .mega-menu,
  section:not(.hero-section),
  section.countdown-section,
  .site-footer {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
  }

  .hero-section {
    min-height: auto;
    padding: 12px var(--page-gutter) 0;
  }

  .hero-card {
    position: relative;
    top: auto;
    grid-template-columns: 1fr;
    gap: clamp(22px, 5vw, 42px);
    min-height: auto;
    padding: clamp(112px, 16vw, 176px) clamp(22px, 5vw, 44px) clamp(30px, 6vw, 48px);
  }

  .hero-copy,
  .hero-media,
  .hero-float-card,
  .meal-mode-switch {
    opacity: 1;
    translate: 0 0;
  }

  .hero-word {
    top: clamp(96px, 16vw, 140px);
    font-size: clamp(4rem, 18vw, 9rem);
    opacity: 0.18;
    translate: 0 0;
  }

  .hero-copy {
    max-width: 100%;
  }

  .hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.8rem, 9vw, 5rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 34rem;
  }

  .hero-media {
    width: min(330px, 80vw);
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-float-card,
  .meal-mode-switch {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
  }

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

  .countdown-section,
  .finder-card,
  .story-sticky,
  .ingredient-stage,
  .product-experience,
  .waitlist-section,
  .site-footer {
    grid-template-columns: 1fr;
  }

  section.waitlist-section {
    grid-template-columns: 1fr;
    gap: clamp(30px, 6vw, 52px);
  }

  .form-row,
  .waitlist-form {
    grid-template-columns: 1fr;
  }

  .footer-side {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --page-gutter: clamp(16px, 5vw, 28px);
    --page-gutter-total: clamp(32px, 10vw, 56px);
    --section-gap: clamp(24px, 7vw, 38px);
  }

  .section-pagination {
    display: none;
  }

  .site-header {
    min-height: 58px;
    padding: 8px 10px;
    border-radius: 24px;
  }

  .brand img {
    width: clamp(116px, 38vw, 146px);
  }

  .menu-button {
    width: 48px;
    height: 48px;
  }

  .hero-card {
    padding: clamp(88px, 18vw, 132px) clamp(18px, 5vw, 28px) clamp(22px, 7vw, 34px);
    border-radius: 28px;
  }

  .hero-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.25rem, 11vw, 3.6rem);
  }

  .hero-copy p:not(.eyebrow) {
    max-width: 100%;
    font-size: clamp(0.92rem, 4.1vw, 1.02rem);
  }

  .hero-ctas .btn {
    flex: 1 1 150px;
    min-height: 48px;
    padding-inline: 16px;
  }

  .hero-media {
    width: min(300px, 86vw);
    margin-top: 6px;
  }

  .iphone-prototype {
    flex-basis: min(218px, 68vw);
    width: min(218px, 68vw);
    padding: 8px;
    border-radius: 38px;
  }

  .iphone-prototype::before {
    top: 18px;
    width: 92px;
    height: 26px;
  }

  .iphone-screen {
    border-width: 6px;
    border-radius: 30px;
  }

  .app-placeholder {
    gap: 12px;
    padding: 50px 14px 20px;
  }

  .app-hero-card {
    padding: 13px;
    border-radius: 18px;
  }

  .app-hero-card strong {
    font-size: clamp(1.22rem, 7vw, 1.5rem);
  }

  .app-bowl-preview {
    width: min(168px, 68vw);
  }

  .app-plan-list span {
    min-height: 40px;
    padding: 10px 12px;
  }

  .meal-pack {
    gap: 5px;
    padding: 11px 12px;
    border-radius: 16px;
  }

  .meal-pack-small {
    top: 28px;
    left: 0;
  }

  .meal-pack-large {
    right: 0;
    bottom: 26px;
  }

  .hero-float-card {
    padding: 16px;
    border-radius: 20px;
  }

  .meal-mode-switch {
    gap: 3px;
    padding: 6px;
    border-radius: 28px;
  }

  .meal-mode-switch button {
    min-width: 0;
    min-height: 44px;
    padding: 0 6px;
    font-size: 0.76rem;
  }

  section:not(.hero-section) {
    padding-block: clamp(38px, 10vw, 58px);
    scroll-margin-top: 86px;
  }

  section.countdown-section {
    min-height: auto;
    padding-block: clamp(50px, 12vw, 72px);
    overflow: hidden;
  }

  .countdown-section h2,
  .section-heading h2,
  .waitlist-section h2,
  .site-footer h2 {
    font-size: clamp(2.3rem, 12vw, 4rem);
  }

  .countdown-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .countdown-grid div {
    min-height: 96px;
    padding: 14px 10px;
    border-radius: 20px;
  }

  .countdown-grid strong {
    font-size: clamp(2.2rem, 14vw, 3.4rem);
  }

  .countdown-grid span {
    font-size: 0.86rem;
  }

  .finder-card,
  .product-experience,
  .story-sticky,
  .ingredient-stage,
  .waitlist-section {
    padding: clamp(14px, 4vw, 22px) !important;
    border-radius: 28px;
  }

  section.waitlist-section {
    grid-template-columns: 1fr;
    justify-items: stretch;
  }

  .finder-form,
  .finder-result {
    padding: clamp(20px, 6vw, 28px);
    border-radius: 22px;
  }

  .finder-form-heading {
    max-width: none;
  }

  .finder-form::before {
    display: none;
  }

  .finder-form fieldset,
  .finder-form .form-row {
    grid-template-columns: 1fr;
  }

  fieldset {
    grid-template-columns: 1fr;
  }

  fieldset label {
    min-height: 54px;
    padding-inline: 16px;
  }

  .finder-result h3 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .feature-grid,
  .plan-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .feature-content {
    min-height: 320px;
  }

  .feature-content {
    padding: 108px 20px 24px;
  }

  .feature-card h3,
  .feature-card p {
    max-width: 100%;
  }

  .story-copy h2,
  .product-copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.4rem);
  }

  .story-plate {
    min-height: 320px;
  }

  .story-ribbon-snake {
    inset: auto -24% 16% -24%;
    height: 56%;
    opacity: 0.68;
  }

  .story-steps {
    gap: 12px;
    margin-top: 22px;
  }

  .story-step {
    min-height: auto;
  }

  .ingredient-bowl,
  .product-stage {
    min-height: 360px;
    overflow: hidden;
  }

  .ingredient-bowl img {
    width: min(290px, 74vw);
  }

  .ingredient-ring {
    width: min(350px, 92%);
  }

  .ingredient-item {
    min-width: 68px;
    min-height: 34px;
    padding-inline: 10px;
    font-size: 0.68rem;
  }

  .product-stage img {
    width: min(250px, 74vw);
  }

  .product-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .product-actions button {
    width: 100%;
  }

  section.faq-section {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
    padding: clamp(34px, 8vw, 54px) 0 !important;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .faq-list button {
    grid-template-columns: 38px minmax(0, 1fr) 36px;
    min-height: 72px;
    padding: 16px;
  }

  .faq-question {
    font-size: clamp(0.95rem, 4.2vw, 1.08rem);
    line-height: 1.25;
  }

  .faq-list p {
    padding-inline: 66px 16px;
  }

  .waitlist-copy {
    overflow-wrap: anywhere;
  }

  .waitlist-form {
    padding: clamp(20px, 6vw, 28px);
    border-radius: 22px;
  }

  .waitlist-form-heading {
    max-width: none;
    padding-right: 0;
  }

  .waitlist-form::before {
    display: none;
  }

  input:not([type="radio"]):not([type="checkbox"]),
  select,
  textarea {
    min-height: 50px;
    font-size: 16px;
  }

  .site-footer {
    padding: clamp(28px, 7vw, 40px) clamp(18px, 5vw, 28px) 28px !important;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .menu-overlay {
    inset: 6px;
    padding-inline: 18px;
  }

  .menu-overlay-nav a {
    font-size: clamp(1.55rem, 10vw, 2.4rem);
  }

  .hero-card {
    padding-inline: 16px;
  }

  .hero-ctas {
    gap: 10px;
  }

  .hero-ctas .btn {
    flex: 1 1 0;
    min-width: 0;
    justify-content: center;
    padding-inline: 12px;
  }

  .meal-pack-large {
    display: none;
  }

  .section-heading p:not(.eyebrow),
  .product-copy p:not(.eyebrow),
  .waitlist-lede,
  .faq-summary {
    max-width: 100%;
    font-size: 0.95rem;
  }

  .countdown-grid {
    gap: 8px;
  }

  .finder-form,
  .finder-result,
  .waitlist-form {
    padding: 20px;
  }

  .waitlist-points,
  .faq-meta {
    grid-template-columns: 1fr;
  }

  .site-footer h2 {
    max-width: 10ch;
  }
}

@media (max-width: 380px) {
  :root {
    --page-gutter: 14px;
    --page-gutter-total: 28px;
    --section-gap: 22px;
  }

  .brand img {
    width: 108px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
  }

  .hero-copy h1,
  .countdown-section h2,
  .section-heading h2,
  .waitlist-section h2 {
    font-size: clamp(2.05rem, 11.5vw, 2.65rem);
  }

  .iphone-prototype {
    width: min(188px, 62vw);
    flex-basis: min(188px, 62vw);
  }

  .countdown-grid strong {
    font-size: 2.2rem;
  }

  .countdown-grid div {
    min-height: 88px;
  }

  .finder-card,
  .product-experience,
  .story-sticky,
  .ingredient-stage,
  .waitlist-section {
    border-radius: 24px;
  }

  .site-footer {
    border-radius: 24px 24px 0 0;
  }
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot {
    display: none !important;
  }

  body.cursor-ready,
  body.cursor-ready a,
  body.cursor-ready button,
  body.cursor-ready input,
  body.cursor-ready select {
    cursor: auto;
  }
}

/* 29. VolDog-inspired design system layer */
:root {
  --ds-forest: #D95A1B;
  --ds-forest-900: #241812;
  --ds-forest-700: #3A3A3A;
  --ds-lime: #F7B733;
  --ds-lime-soft: #FFE9AA;
  --ds-cream: #F7F2E8;
  --ds-paper: #FFFDF7;
  --ds-sand: #E9E1D2;
  --ds-clay: #F7B733;
  --ds-ink: #241812;
  --ds-muted: #5F5F5F;
  --ds-line: rgba(217, 90, 27, 0.2);
  --ds-line-strong: rgba(247, 183, 51, 0.38);
  --ds-panel-shadow: 0 22px 70px rgba(34, 34, 34, 0.13);
  --ds-panel-shadow-hover: 0 34px 88px rgba(34, 34, 34, 0.2);
  --ds-inner-light: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  --ds-radius-sm: 18px;
  --ds-radius-md: 29px;
  --ds-radius-lg: 38px;
  --ds-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ds-ease-elastic: cubic-bezier(0.18, 0.9, 0.18, 1.12);
  --ds-motion-fast: 180ms;
  --ds-motion: 340ms;
  --ds-motion-slow: 780ms;
}

body {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.82), rgba(247, 242, 232, 0.92)),
    rgb(var(--site-bg-r), var(--site-bg-g), var(--site-bg-b));
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  content: "";
  background-image:
    linear-gradient(rgba(247, 183, 51, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 183, 51, 0.03) 1px, transparent 1px);
  background-size: 38px 38px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.08));
  pointer-events: none;
}

::selection {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

:focus-visible {
  outline-color: var(--ds-lime);
}

.cursor-dot {
  background: var(--ds-lime);
  box-shadow:
    0 0 0 8px rgba(217, 90, 27, 0.2),
    0 12px 24px rgba(34, 34, 34, 0.18);
}

.site-loader::before {
  border-color: rgba(247, 183, 51, 0.12);
  box-shadow:
    inset 0 0 0 42px rgba(217, 90, 27, 0.13),
    0 32px 110px rgba(34, 34, 34, 0.14);
}

.site-loader::after,
.loader-screen-cover,
.loader-reveal-rim,
.loader-reveal-glow,
.loader-card,
.loader-card::after {
  background: var(--ds-forest);
}

.loader-card {
  border-color: rgba(255, 253, 247, 0.24);
  box-shadow:
    0 38px 100px rgba(34, 34, 34, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.loader-logo-pill,
.loader-meal-dots span,
.loader-lid-line {
  background: var(--ds-lime);
}

.loader-caption {
  color: var(--ds-paper);
}

.page-background {
  opacity: 0.85;
}

.page-background::before {
  background:
    linear-gradient(120deg, rgba(var(--page-bg-a-r), var(--page-bg-a-g), var(--page-bg-a-b), 0.94), rgba(var(--page-bg-b-r), var(--page-bg-b-g), var(--page-bg-b-b), 0.9)),
    linear-gradient(90deg, rgba(34, 34, 34, 0.06), transparent);
}

.bg-shape {
  background: transparent;
  border: 28px solid rgba(217, 90, 27, 0.2);
  filter: none;
  opacity: 0.75;
}

.bg-shape-two {
  border-color: rgba(241, 94, 66, 0.12);
}

.bg-shape-three {
  border-color: rgba(247, 183, 51, 0.1);
}

.site-header {
  color: var(--ds-forest-900);
  background: rgba(255, 253, 247, calc(0.1 + var(--hero-reveal) * 0.82));
  border-color: rgba(255, 253, 247, calc(0.44 + var(--hero-reveal) * 0.28));
  border-radius: 100px;
  box-shadow: 0 22px 60px rgba(34, 34, 34, calc(var(--hero-reveal) * 0.14));
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ds-forest-900);
  background: rgba(255, 253, 247, 0.94);
  border-color: rgba(247, 183, 51, 0.12);
  box-shadow: 0 18px 54px rgba(34, 34, 34, 0.14);
}

.brand {
  background: rgba(255, 253, 247, 0.82);
  border-color: rgba(247, 183, 51, 0.12);
  box-shadow:
    0 14px 32px rgba(247, 183, 51, 0.12),
    var(--ds-inner-light);
}

.desktop-nav a,
.ghost-link,
.menu-overlay-nav a,
.btn,
.mega-cta,
.product-actions button,
.plan-card a {
  transition:
    color var(--ds-motion-fast) ease,
    background var(--ds-motion-fast) ease,
    border-color var(--ds-motion-fast) ease,
    box-shadow var(--ds-motion) var(--ds-ease-out),
    transform var(--ds-motion) var(--ds-ease-out),
    opacity var(--ds-motion-fast) ease;
}

.desktop-nav a,
.ghost-link {
  position: relative;
  color: currentColor;
  opacity: 1;
}

.desktop-nav a::after,
.ghost-link::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 3px;
  content: "";
  background: var(--ds-lime);
  border-radius: 999px;
  opacity: 0;
  transform: scaleX(0.34);
  transition: opacity var(--ds-motion-fast) ease, transform var(--ds-motion) var(--ds-ease-out);
}

.desktop-nav a:hover::after,
.ghost-link:hover::after {
  opacity: 1;
  transform: scaleX(1);
}

.btn,
.mega-cta,
.product-actions button,
.plan-card a {
  position: relative;
  overflow: hidden;
  letter-spacing: 0;
}

.btn::after,
.mega-cta::after,
.plan-card a::after {
  content: ">";
  display: inline-grid;
  width: 24px;
  height: 24px;
  place-items: center;
  margin-left: 10px;
  color: var(--ds-lime);
  background: var(--ds-forest);
  border-radius: 50%;
  font-size: 0.78rem;
  line-height: 1;
  transition: transform var(--ds-motion) var(--ds-ease-out);
}

.btn:hover::after,
.mega-cta:hover::after,
.plan-card a:hover::after {
  transform: translateX(3px) rotate(-12deg);
}

.btn-lime,
.menu-button {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
  box-shadow:
    0 14px 30px rgba(217, 90, 27, 0.26),
    0 10px 26px rgba(34, 34, 34, 0.14),
    var(--ds-inner-light);
}

.btn-white {
  color: var(--ds-forest-900);
  background: var(--ds-paper);
  border: 1px solid rgba(247, 183, 51, 0.12);
}

.btn:hover,
.menu-button:hover {
  box-shadow:
    0 22px 42px rgba(34, 34, 34, 0.18),
    0 10px 28px rgba(217, 90, 27, 0.22);
}

.menu-button span {
  background: var(--ds-forest);
}

.mega-menu {
  color: var(--ds-ink);
  background: rgba(255, 253, 247, 0.94);
  border-color: rgba(247, 183, 51, 0.12);
  border-radius: var(--ds-radius-md);
  box-shadow: var(--ds-panel-shadow-hover);
}

.mega-inner::after {
  border-color: rgba(217, 90, 27, 0.28);
}

.mega-copy,
.menu-overlay,
.story-sticky,
.product-experience,
.finder-result,
.ingredient-note,
.site-footer {
  background:
    linear-gradient(145deg, rgba(217, 90, 27, 0.96), rgba(217, 90, 27, 0.98)),
    var(--ds-forest);
}

.mega-copy,
.story-sticky,
.product-experience,
.site-footer {
  color: var(--ds-forest-900);
  box-shadow: 0 34px 100px rgba(34, 34, 34, 0.18);
}

.mega-eyebrow,
.eyebrow,
.plan-card span,
.story-orbit,
.product-pack strong,
.feature-card span,
.faq-list article.open .faq-number,
.faq-list article.open .faq-toggle {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

.btn-lime {
  color: var(--ds-forest-900);
}

.mega-card,
.finder-form,
.waitlist-form,
.ingredient-card,
.story-step,
.plan-card,
.feature-card::before {
  background: var(--ds-paper);
  border-color: var(--ds-line);
  box-shadow:
    var(--ds-panel-shadow),
    var(--ds-inner-light);
}

.mega-card:hover,
.mega-card.active,
.plan-card:hover,
.plan-card.is-liquid-active,
.ingredient-card.active,
.story-step.active {
  border-color: var(--ds-line-strong);
  box-shadow:
    var(--ds-panel-shadow-hover),
    var(--ds-inner-light);
}

.mega-card::after {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

.mega-card:hover,
.mega-card.active {
  background: var(--ds-lime-soft);
}

.hero-card {
  color: var(--ds-forest-900);
  background:
    linear-gradient(145deg, rgba(217, 90, 27, 0.98), rgba(217, 90, 27, 0.98)),
    var(--ds-forest);
  box-shadow:
    0 42px 120px rgba(34, 34, 34, 0.18),
    0 20px 70px rgba(247, 183, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hero-card::before,
.hero-card::after,
.product-experience::after,
.story-sticky::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.hero-card::before {
  top: 10%;
  right: -9%;
  width: 48%;
  aspect-ratio: 1.18;
  border: clamp(18px, 3vw, 42px) solid rgba(247, 183, 51, 0.26);
  border-radius: 47% 53% 44% 56% / 54% 40% 60% 46%;
  transform: rotate(-13deg);
  animation: dsOrganicDrift 11s ease-in-out infinite;
}

.hero-card::after {
  left: -12%;
  bottom: -18%;
  width: 56%;
  aspect-ratio: 1.36;
  border: clamp(22px, 3vw, 48px) solid rgba(34, 34, 34, 0.14);
  border-radius: 58% 42% 54% 46% / 44% 55% 45% 56%;
  transform: rotate(9deg);
  animation: dsOrganicDrift 13s ease-in-out infinite reverse;
}

.hero-word {
  color: rgba(34, 34, 34, 0.08);
}

.hero-copy h1,
.section-heading h2,
.countdown-section h2,
.flow-copy h2,
.waitlist-section h2,
.site-footer h2,
.product-copy h2,
.story-copy h2 {
  letter-spacing: 0;
}

.hero-copy p:not(.eyebrow),
.product-copy p:not(.eyebrow),
.story-copy p:not(.eyebrow) {
  color: rgba(34, 34, 34, 0.76);
}

.hero-noise,
.app-placeholder,
.finder-result::before,
.story-sticky::before,
.product-experience::before,
.ingredient-bowl::before {
  background-image:
    linear-gradient(120deg, rgba(255, 255, 255, 0.04), transparent 42%),
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.iphone-prototype,
.meal-pack,
.hero-float-card,
.product-pack,
.ingredient-badge,
.ingredient-note {
  animation: dsFloat 6.2s ease-in-out infinite;
}

.meal-pack-small,
.ingredient-note {
  animation-delay: -2.1s;
}

.meal-pack-large {
  --float-rotate: -7deg;
}

.meal-pack-small {
  --float-rotate: 9deg;
}

.hero-float-card,
.ingredient-badge {
  animation-delay: -3.4s;
}

.iphone-prototype,
.iphone-prototype::before,
.iphone-side-button,
.iphone-screen,
.app-placeholder,
.app-bowl-preview {
  background: var(--ds-forest-900);
}

.iphone-screen {
  border-color: #241812;
}

.app-hero-card strong,
.app-plan-list b,
.app-bowl-preview strong {
  color: var(--ds-lime);
}

/* 41. Final attached-to-hero navigation behavior */
.site-header {
  top: clamp(12px, 1.8vw, 24px);
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  color: var(--ds-ink);
  transform: translate3d(-50%, 0, 0);
  transition:
    top 520ms cubic-bezier(0.16, 1, 0.3, 1),
    width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 520ms ease,
    border-color 520ms ease,
    border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms ease,
    color 520ms ease,
    backdrop-filter 520ms ease,
    -webkit-backdrop-filter 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header:not(.scrolled):not(.menu-open) {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.035)),
    radial-gradient(circle at 74% 8%, rgba(247, 183, 51, 0.24), transparent 34%),
    rgba(217, 90, 27, 0.34);
  border-color: rgba(255, 253, 247, 0.36);
  border-radius: calc(var(--radius-hero) - 4px) calc(var(--radius-hero) - 4px) 30px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.45),
    inset 0 -1px 0 rgba(143, 47, 23, 0.22);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.site-header.scrolled,
.site-header.menu-open {
  top: 14px;
  width: min(calc(100% - var(--page-gutter-total) - 32px), calc(var(--container) - 48px));
  color: var(--ds-ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.9)),
    var(--ds-paper);
  border-color: rgba(217, 90, 27, 0.16);
  border-radius: 999px;
  box-shadow:
    0 20px 58px rgba(36, 24, 18, 0.16),
    0 4px 16px rgba(143, 47, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.site-header:not(.scrolled):not(.menu-open) .brand {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(255, 242, 224, 0.78));
  border-color: rgba(255, 253, 247, 0.66);
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.88));
  border-color: rgba(217, 90, 27, 0.14);
  box-shadow:
    0 10px 24px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.site-header .desktop-nav a {
  color: var(--ds-paper);
  text-shadow: 0 2px 16px rgba(36, 24, 18, 0.24);
}

.site-header:not(.scrolled):not(.menu-open) .desktop-nav a:hover,
.site-header:not(.scrolled):not(.menu-open) .desktop-nav a:focus-visible {
  color: var(--ds-paper);
  background: rgba(255, 253, 247, 0.16);
}

.site-header .btn-lime,
.site-header .menu-button {
  color: var(--ds-ink);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.98), rgba(255, 204, 71, 0.94));
  border-color: rgba(255, 253, 247, 0.42);
  box-shadow:
    0 13px 30px rgba(143, 47, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-header.scrolled .btn-lime,
.site-header.scrolled .menu-button,
.site-header.menu-open .btn-lime,
.site-header.menu-open .menu-button {
  box-shadow:
    0 12px 30px rgba(143, 47, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 40px), var(--container));
    min-height: 68px;
    padding: 8px 10px 8px 14px;
    border-radius: 26px;
  }

  .site-header:not(.scrolled):not(.menu-open) {
    border-radius: 28px 28px 24px 24px;
  }

  .site-header.scrolled,
  .site-header.menu-open {
    top: 10px;
    width: min(calc(100% - 52px), var(--container));
    border-radius: 999px;
  }
}

/* 37. Hero-blended navigation */
.site-header {
  color: var(--ds-ink);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.1), rgba(255, 253, 247, 0.03)),
    radial-gradient(circle at 72% 18%, rgba(247, 183, 51, 0.2), transparent 34%),
    rgba(217, 90, 27, 0.28);
  border: 1px solid rgba(255, 253, 247, 0.42);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.44),
    inset 0 -1px 0 rgba(143, 47, 23, 0.2),
    0 18px 56px rgba(36, 24, 18, 0.08);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
}

.site-header.scrolled,
.site-header.menu-open {
  color: var(--ds-ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.9)),
    var(--ds-paper);
  border-color: rgba(217, 90, 27, 0.16);
  box-shadow:
    0 18px 54px rgba(36, 24, 18, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.brand {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.88), rgba(255, 247, 234, 0.78));
  border: 1px solid rgba(255, 253, 247, 0.72);
  box-shadow:
    0 12px 30px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  background: rgba(255, 253, 247, 0.9);
  border-color: rgba(217, 90, 27, 0.14);
}

.desktop-nav a {
  color: var(--ds-ink);
  text-shadow: 0 1px 16px rgba(255, 253, 247, 0.22);
}

.site-header .btn-lime,
.site-header .menu-button {
  color: var(--ds-ink);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.96), rgba(255, 204, 71, 0.92));
  border: 1px solid rgba(255, 253, 247, 0.38);
  box-shadow:
    0 12px 28px rgba(143, 47, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.site-header .btn-lime::after {
  background: var(--ds-clay);
}

.menu-button span {
  background: var(--ds-clay);
}

@media (max-width: 720px) {
  .site-header {
    border-radius: 28px;
    background:
      linear-gradient(120deg, rgba(255, 253, 247, 0.14), rgba(255, 253, 247, 0.05)),
      rgba(217, 90, 27, 0.28);
  }
}

/* 36. Elegant premium palette refinement */
:root {
  --brand-primary: #B84A24;
  --brand-accent: #D9A441;
  --brand-neutral: #FFF8ED;
  --brand-purple: var(--brand-primary);
  --brand-yellow: var(--brand-accent);
  --brand-mint: var(--brand-accent);
  --brand-blue: #211610;
  --primary: #B84A24;
  --secondary: #D9A441;
  --background: #FFF8ED;
  --accent: #D9A441;
  --accent-deep: #211610;
  --highlight: #D9A441;
  --text-primary: #211610;
  --warm-ivory: #FFFDF7;
  --soft-beige: #FFF8ED;
  --light-gray: #E9D9C7;
  --warm-gray: #5D4A3F;
  --primary-soft: #F4CDB8;
  --secondary-soft: #F8E3A4;
  --action: #D9A441;
  --action-2: #B84A24;
  --action-dark: #211610;
  --action-text: #211610;
  --action-accent: #211610;
  --highlight-soft: #F9EAC0;
  --highlight-text: #211610;
  --purple: var(--primary);
  --purple-2: var(--secondary);
  --purple-soft: var(--primary-soft);
  --lime: var(--accent);
  --lime-soft: var(--secondary-soft);
  --ink: var(--text-primary);
  --gray-600: var(--warm-gray);
  --gray-300: #DDC7B2;
  --gray-200: var(--light-gray);
  --gray-100: var(--warm-ivory);
  --shadow: 0 26px 86px rgba(33, 22, 16, 0.16);
  --site-bg-r: 255;
  --site-bg-g: 248;
  --site-bg-b: 237;
  --page-bg-a-r: 255;
  --page-bg-a-g: 248;
  --page-bg-a-b: 237;
  --page-bg-b-r: 255;
  --page-bg-b-g: 253;
  --page-bg-b-b: 247;
  --page-accent-r: 217;
  --page-accent-g: 164;
  --page-accent-b: 65;
  --page-alt-r: 184;
  --page-alt-g: 74;
  --page-alt-b: 36;
  --ds-forest: #B84A24;
  --ds-forest-900: #211610;
  --ds-forest-700: #74301F;
  --ds-lime: #D9A441;
  --ds-lime-soft: #F8E3A4;
  --ds-cream: #FFF8ED;
  --ds-paper: #FFFDF7;
  --ds-sand: #E9D9C7;
  --ds-clay: #8E3822;
  --ds-ink: #211610;
  --ds-muted: #5D4A3F;
  --ds-line: rgba(184, 74, 36, 0.16);
  --ds-line-strong: rgba(33, 22, 16, 0.28);
  --ds-panel-shadow: 0 24px 74px rgba(33, 22, 16, 0.14);
  --ds-panel-shadow-hover: 0 36px 94px rgba(33, 22, 16, 0.2);
  --readable-ink: #211610;
  --readable-muted: #4D3E35;
  --readable-brand: #8E3822;
  --readable-paper: #FFFDF7;
  --readable-soft: #FFF2DC;
}

body {
  background:
    radial-gradient(circle at 18% 8%, rgba(217, 164, 65, 0.14), transparent 34%),
    radial-gradient(circle at 86% 16%, rgba(184, 74, 36, 0.08), transparent 32%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 248, 237, 0.96)),
    var(--ds-cream);
}

.hero-card,
.mega-copy,
.menu-overlay,
.story-sticky,
.product-experience,
.finder-result,
.site-footer {
  background:
    radial-gradient(circle at 78% 24%, rgba(217, 164, 65, 0.34), transparent 34%),
    linear-gradient(145deg, #CB5A2B 0%, #B84A24 48%, #74301F 100%);
}

.hero-card::before,
.story-sticky::before,
.product-experience::before,
.site-footer::before {
  opacity: 0.52;
}

.btn-lime,
.eyebrow,
.mega-eyebrow,
.plan-card span,
.story-orbit,
.product-pack strong,
.feature-card span,
.faq-list article.open .faq-number,
.faq-list article.open .faq-toggle,
.meal-mode-switch button.active,
.product-actions button.active,
.product-actions button:hover,
.menu-close,
.waitlist-copy .eyebrow {
  color: var(--ds-ink);
  background: var(--ds-lime);
}

.btn::after,
.mega-cta::after,
.plan-card a::after {
  color: var(--ds-paper);
  background: var(--ds-clay);
}

.feature-grid .feature-card::before {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.76), rgba(255, 248, 237, 0.56)),
    radial-gradient(circle at 18% 12%, rgba(217, 164, 65, 0.22), transparent 30%);
  border-color: rgba(255, 253, 247, 0.78);
}

.feature-grid .feature-card span {
  background:
    linear-gradient(145deg, rgba(217, 164, 65, 0.98), rgba(244, 205, 116, 0.94));
}

.feature-grid .feature-card p::after,
.feature-grid .feature-card:hover p::after,
.feature-grid .feature-card.is-hovered p::after,
.feature-grid .feature-card:focus-within p::after {
  background: linear-gradient(90deg, var(--ds-lime), rgba(184, 74, 36, 0.42));
}

section.waitlist-section {
  background:
    radial-gradient(circle at 18% 18%, rgba(217, 164, 65, 0.18), transparent 26%),
    linear-gradient(135deg, #C65429 0%, #B84A24 54%, #74301F 100%);
}

section.waitlist-section::before {
  background:
    radial-gradient(circle at 18% 78%, rgba(217, 164, 65, 0.15), transparent 20%),
    linear-gradient(135deg, #F6D7C6 0%, #FFF4E6 52%, #FFFDF7 100%);
}

.waitlist-form,
.finder-form,
.plan-card,
.ingredient-card,
.story-step,
.countdown-grid div {
  border-color: rgba(184, 74, 36, 0.14);
}

.ingredients-section .ingredient-bowl {
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 253, 247, 0.16), transparent 31%),
    radial-gradient(circle at 82% 18%, rgba(217, 164, 65, 0.2), transparent 30%),
    linear-gradient(145deg, #211610 0%, #74301F 42%, #B84A24 100%);
}

.ingredients-section .ingredient-item::before,
.waitlist-form .contact-note::before {
  background: var(--ds-lime);
}

.ingredient-note {
  background:
    linear-gradient(145deg, rgba(33, 22, 16, 0.78), rgba(116, 48, 31, 0.82)),
    var(--readable-brand);
}

.app-hero-card strong,
.app-plan-list b,
.app-bowl-preview strong,
.finder-result span,
.product-pack span {
  color: var(--ds-lime);
}

/* 34. Final glass card polish */
.feature-grid .feature-card {
  --feature-panel-text: var(--readable-ink);
  --feature-panel-muted: var(--readable-muted);
  --feature-panel-badge-bg: rgba(247, 183, 51, 0.92);
  --feature-panel-badge-color: var(--readable-ink);
  color: var(--readable-ink);
  filter: drop-shadow(0 24px 46px rgba(36, 24, 18, 0.1));
}

.feature-grid .feature-card::before {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.74), rgba(255, 247, 234, 0.54)),
    radial-gradient(circle at 18% 12%, rgba(247, 183, 51, 0.26), transparent 30%);
  border: 1px solid rgba(255, 253, 247, 0.78);
  box-shadow:
    0 26px 70px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(182, 64, 28, 0.08);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
  filter: none;
}

.feature-grid .feature-card::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 34%),
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(247, 183, 51, 0.2), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.22);
  opacity: 0.88;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature-grid .feature-card:hover::before,
.feature-grid .feature-card.is-hovered::before,
.feature-grid .feature-card:focus-within::before {
  border-color: rgba(247, 183, 51, 0.5);
  box-shadow:
    0 34px 86px rgba(36, 24, 18, 0.16),
    0 0 0 1px rgba(247, 183, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(182, 64, 28, 0.12);
  filter: saturate(1.06);
}

.feature-grid .feature-card:hover::after,
.feature-grid .feature-card.is-hovered::after,
.feature-grid .feature-card:focus-within::after {
  opacity: 1;
}

.feature-grid .feature-card span {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.96), rgba(255, 220, 111, 0.92));
  border: 1px solid rgba(255, 253, 247, 0.62);
  box-shadow:
    0 12px 28px rgba(217, 90, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.feature-grid .feature-card h3,
.feature-grid .feature-card:hover h3,
.feature-grid .feature-card.is-hovered h3,
.feature-grid .feature-card:focus-within h3 {
  color: var(--readable-ink);
  text-shadow: none;
}

.feature-grid .feature-card p,
.feature-grid .feature-card:hover p,
.feature-grid .feature-card.is-hovered p,
.feature-grid .feature-card:focus-within p {
  color: var(--readable-muted);
}

.feature-grid .feature-card p::after,
.feature-grid .feature-card:hover p::after,
.feature-grid .feature-card.is-hovered p::after,
.feature-grid .feature-card:focus-within p::after {
  background: linear-gradient(90deg, var(--ds-lime), rgba(217, 90, 27, 0.42));
  opacity: 1;
}

.feature-grid .feature-illustration svg {
  filter:
    drop-shadow(0 18px 24px rgba(36, 24, 18, 0.14))
    drop-shadow(0 8px 0 rgba(255, 253, 247, 0.38));
}

/* 35. Premium ingredient showcase */
.ingredients-section .ingredient-bowl {
  --bowl-card-radius: 36px;
  overflow: hidden;
  background:
    radial-gradient(circle at 48% 44%, rgba(255, 253, 247, 0.16), transparent 31%),
    radial-gradient(circle at 82% 18%, rgba(247, 183, 51, 0.22), transparent 30%),
    linear-gradient(145deg, #2B1711 0%, #6F2518 42%, #D95A1B 100%);
  border: 1px solid rgba(255, 253, 247, 0.44);
  box-shadow:
    0 34px 90px rgba(36, 24, 18, 0.2),
    0 12px 36px rgba(217, 90, 27, 0.12),
    inset 0 1px 0 rgba(255, 253, 247, 0.48);
}

.ingredients-section .ingredient-bowl::before {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.1), rgba(255, 253, 247, 0.02)),
    radial-gradient(circle at 50% 50%, rgba(255, 253, 247, 0.1), transparent 44%);
  border: 1px solid rgba(255, 253, 247, 0.26);
  box-shadow:
    inset 0 0 0 1px rgba(255, 253, 247, 0.08),
    inset 0 -90px 140px rgba(36, 24, 18, 0.16);
  opacity: 1;
}

.ingredients-section .ingredient-bowl::after {
  inset: -42% -22% auto;
  z-index: 5;
  height: 70%;
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.32), rgba(255, 253, 247, 0.02) 46%, transparent 68%);
  opacity: 0.62;
  transform: translateX(-16%) rotate(8deg);
  mix-blend-mode: screen;
}

.ingredients-section .ingredient-glow {
  background: rgba(247, 183, 51, 0.2);
  filter: blur(28px);
  opacity: 0.84;
}

.ingredients-section .ingredient-glow-two {
  background: rgba(255, 253, 247, 0.12);
}

.ingredients-section .ingredient-ring {
  z-index: 1;
  border: 1px solid rgba(255, 253, 247, 0.42);
  box-shadow:
    0 0 0 18px rgba(255, 253, 247, 0.1),
    0 0 0 52px rgba(247, 183, 51, 0.13),
    0 0 0 92px rgba(255, 253, 247, 0.08),
    0 30px 80px rgba(36, 24, 18, 0.24);
}

.ingredients-section .ingredient-bowl img {
  z-index: 2;
  width: min(500px, 78%);
  border: 14px solid rgba(255, 253, 247, 0.9);
  box-shadow:
    0 44px 110px rgba(36, 24, 18, 0.36),
    0 0 0 12px rgba(255, 253, 247, 0.12),
    inset 0 0 0 1px rgba(255, 253, 247, 0.54);
  filter: saturate(1.18) contrast(1.08) brightness(1.04);
}

.ingredients-section .ingredient-badge,
.ingredients-section .ingredient-item,
.ingredients-section .ingredient-note {
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.ingredients-section .ingredient-badge {
  z-index: 4;
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 253, 247, 0.72);
  box-shadow:
    0 18px 44px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.ingredients-section .ingredient-badge span {
  color: var(--readable-brand);
}

.ingredients-section .ingredient-item {
  z-index: 4;
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(255, 253, 247, 0.62);
  box-shadow:
    0 18px 44px rgba(36, 24, 18, 0.2),
    0 0 0 6px rgba(255, 253, 247, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.ingredients-section .ingredient-item::before {
  background: var(--ds-lime);
  box-shadow:
    0 0 0 4px rgba(217, 90, 27, 0.14),
    0 0 16px rgba(247, 183, 51, 0.74);
}

.ingredients-section .ingredient-note {
  z-index: 4;
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(36, 24, 18, 0.82), rgba(143, 47, 23, 0.78)),
    rgba(36, 24, 18, 0.72);
  border: 1px solid rgba(255, 253, 247, 0.2);
  box-shadow:
    0 22px 56px rgba(36, 24, 18, 0.3),
    inset 0 1px 0 rgba(255, 253, 247, 0.18);
}

.ingredients-section .ingredient-note span,
.ingredients-section .ingredient-note strong {
  color: var(--readable-paper);
}

@media (max-width: 720px) {
  .ingredients-section .ingredient-bowl img {
    width: min(300px, 76vw);
    border-width: 10px;
  }

  .ingredients-section .ingredient-item {
    min-width: 76px;
    min-height: 36px;
    padding-inline: 12px;
  }
}

/* 33. Premium glass feature cards */
.feature-card {
  --feature-glass-bg: rgba(255, 253, 247, 0.58);
  --feature-glass-edge: rgba(255, 253, 247, 0.78);
  --feature-glass-line: rgba(182, 64, 28, 0.18);
  --feature-panel-text: var(--readable-ink);
  --feature-panel-muted: var(--readable-muted);
  --feature-panel-badge-bg: rgba(247, 183, 51, 0.88);
  --feature-panel-badge-color: var(--readable-ink);
  color: var(--readable-ink);
  filter: drop-shadow(0 24px 46px rgba(36, 24, 18, 0.1));
}

.feature-card::before {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.74), rgba(255, 247, 234, 0.5)),
    radial-gradient(circle at 18% 12%, rgba(247, 183, 51, 0.28), transparent 30%),
    var(--feature-glass-bg);
  border: 1px solid var(--feature-glass-edge);
  box-shadow:
    0 26px 70px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    inset 0 -1px 0 rgba(182, 64, 28, 0.08);
  backdrop-filter: blur(24px) saturate(1.18);
  -webkit-backdrop-filter: blur(24px) saturate(1.18);
}

.feature-card::after {
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 34%),
    radial-gradient(circle at var(--spot-x) var(--spot-y), rgba(247, 183, 51, 0.2), transparent 34%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: inset 0 0 0 1px rgba(255, 253, 247, 0.22);
  opacity: 0.88;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.feature-card:hover::before,
.feature-card.is-hovered::before,
.feature-card:focus-within::before {
  border-color: rgba(247, 183, 51, 0.48);
  box-shadow:
    0 34px 86px rgba(36, 24, 18, 0.16),
    0 0 0 1px rgba(247, 183, 51, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -1px 0 rgba(182, 64, 28, 0.12);
  filter: saturate(1.06);
}

.feature-card:hover::after,
.feature-card.is-hovered::after,
.feature-card:focus-within::after {
  opacity: 1;
}

.feature-content {
  padding: clamp(124px, 10.6vw, 148px) clamp(26px, 2.7vw, 38px) clamp(26px, 2.6vw, 36px);
}

.feature-card span {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.96), rgba(255, 220, 111, 0.92));
  border: 1px solid rgba(255, 253, 247, 0.62);
  box-shadow:
    0 12px 28px rgba(217, 90, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.feature-card h3,
.feature-card:hover h3,
.feature-card.is-hovered h3,
.feature-card:focus-within h3 {
  color: var(--readable-ink);
  text-shadow: none;
}

.feature-card p,
.feature-card:hover p,
.feature-card.is-hovered p,
.feature-card:focus-within p {
  color: var(--readable-muted);
}

.feature-card p::after,
.feature-card:hover p::after,
.feature-card.is-hovered p::after,
.feature-card:focus-within p::after {
  background: linear-gradient(90deg, var(--ds-lime), rgba(217, 90, 27, 0.42));
  opacity: 1;
}

.feature-illustration svg {
  filter:
    drop-shadow(0 18px 24px rgba(36, 24, 18, 0.14))
    drop-shadow(0 8px 0 rgba(255, 253, 247, 0.38));
}

@media (max-width: 720px) {
  .feature-content {
    padding: 108px 22px 26px;
  }

  .feature-card::before,
  .feature-card::after {
    border-radius: 24px;
  }
}

/* 32. Premium waitlist section redesign */
section.waitlist-section {
  grid-template-columns: minmax(310px, 0.78fr) minmax(460px, 0.9fr);
  gap: clamp(36px, 5vw, 86px);
  align-items: center;
  padding: clamp(64px, 7vw, 108px) clamp(54px, 7vw, 112px);
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 18% 18%, rgba(247, 183, 51, 0.22), transparent 26%),
    linear-gradient(135deg, #EA5C1C 0%, #D94E16 54%, #A93417 100%);
  border: 0;
  border-radius: 44px;
  box-shadow:
    0 34px 96px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 253, 247, 0.34);
}

section.waitlist-section::before {
  inset: clamp(28px, 3.2vw, 48px);
  z-index: 0;
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 30px;
  background:
    radial-gradient(circle at 18% 78%, rgba(247, 183, 51, 0.18), transparent 20%),
    linear-gradient(135deg, #F9D8C4 0%, #FFF5EA 52%, #FFFDF7 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.92),
    0 26px 70px rgba(36, 24, 18, 0.1);
}

.waitlist-copy,
.waitlist-form {
  position: relative;
  z-index: 2;
}

.waitlist-copy {
  justify-self: start;
  max-width: 560px;
  padding-left: clamp(18px, 2.4vw, 36px);
}

.waitlist-copy .eyebrow {
  color: var(--readable-ink);
  background: var(--ds-lime);
  box-shadow: 0 14px 28px rgba(217, 90, 27, 0.14);
}

.waitlist-section h2 {
  max-width: 9.2ch;
  margin: clamp(18px, 2vw, 26px) 0 0;
  color: var(--readable-ink);
  font-size: clamp(3.25rem, 6.2vw, 6.25rem);
  line-height: 0.86;
  letter-spacing: 0;
  text-wrap: balance;
}

.waitlist-lede {
  max-width: 470px;
  margin-top: clamp(22px, 2.8vw, 34px);
  color: var(--readable-muted);
  font-size: clamp(1rem, 1.2vw, 1.16rem);
  line-height: 1.55;
}

.waitlist-points {
  gap: 12px;
  margin-top: clamp(24px, 3vw, 38px);
}

.waitlist-points span {
  min-height: 42px;
  padding-inline: 17px;
  color: var(--readable-brand);
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(182, 64, 28, 0.14);
  box-shadow: 0 16px 34px rgba(36, 24, 18, 0.08);
  backdrop-filter: blur(12px);
}

.waitlist-art {
  left: clamp(90px, 13vw, 210px);
  bottom: clamp(72px, 6vw, 112px);
  z-index: 1;
  width: min(260px, 22vw);
  opacity: 0.16;
  transform: rotate(-6deg);
}

.waitlist-art .art-sun {
  fill: rgba(247, 183, 51, 0.5);
  stroke: rgba(36, 24, 18, 0.42);
}

.waitlist-art .art-line,
.waitlist-art .art-leaf {
  stroke: rgba(36, 24, 18, 0.66);
}

.waitlist-form {
  justify-self: end;
  width: min(100%, 560px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  padding: clamp(34px, 4vw, 48px);
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 247, 234, 0.98)),
    var(--readable-paper);
  border: 1px solid rgba(255, 253, 247, 0.9);
  border-radius: 28px;
  box-shadow:
    0 26px 70px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.waitlist-form::before {
  top: 30px;
  right: 28px;
  width: 74px;
  border: 10px double rgba(217, 90, 27, 0.42);
  opacity: 0.72;
}

.waitlist-form::after {
  inset: 12px;
  border-color: rgba(182, 64, 28, 0.14);
  border-radius: 22px;
}

.waitlist-form-heading {
  max-width: calc(100% - 94px);
  gap: 9px;
  padding-bottom: 12px;
}

.waitlist-form-heading span {
  color: var(--readable-brand);
  background: #FFF0DF;
  border-color: rgba(182, 64, 28, 0.14);
}

.waitlist-form-heading strong {
  color: var(--readable-ink);
  font-size: clamp(1.7rem, 2.5vw, 2.35rem);
  line-height: 0.98;
  max-width: 13ch;
}

.waitlist-form-heading p {
  color: var(--readable-muted);
}

.form-section-label {
  margin: 10px 0 -1px;
  color: var(--readable-brand);
}

.form-section-label::after {
  background: rgba(182, 64, 28, 0.3);
}

.waitlist-form label {
  gap: 11px;
  padding: 14px;
  color: var(--readable-ink);
  background: #FFF9F0;
  border-color: rgba(182, 64, 28, 0.16);
  border-radius: 18px;
  box-shadow:
    0 12px 26px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.waitlist-form label:hover,
.waitlist-form label:focus-within {
  color: var(--readable-ink);
  background: var(--readable-paper);
  border-color: rgba(182, 64, 28, 0.34);
  box-shadow:
    0 18px 40px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.waitlist-form input:not([type="radio"]):not([type="checkbox"]),
.waitlist-form select,
.waitlist-form textarea {
  color: var(--readable-ink);
  min-height: 50px;
  background: var(--readable-paper);
  border: 1px solid rgba(182, 64, 28, 0.24);
  border-radius: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.waitlist-form input::placeholder,
.waitlist-form textarea::placeholder {
  color: rgba(79, 64, 56, 0.58);
}

.waitlist-form input:hover,
.waitlist-form select:hover,
.waitlist-form textarea:hover,
.waitlist-form input:focus,
.waitlist-form select:focus,
.waitlist-form textarea:focus {
  background: #FFFFFF;
  border-color: rgba(182, 64, 28, 0.52);
  box-shadow:
    0 0 0 4px rgba(247, 183, 51, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.waitlist-form button {
  min-height: 62px;
  margin-top: 10px;
  border-radius: 999px;
  box-shadow:
    0 18px 38px rgba(217, 90, 27, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.waitlist-form .form-note:not(.contact-note) {
  color: var(--readable-muted);
  max-width: 440px;
  padding-inline: 4px;
}

.waitlist-form .form-note.loading:not(.contact-note) {
  color: #7A4A12;
}

.waitlist-form .form-note.success:not(.contact-note) {
  color: #1F6B3A;
}

.waitlist-form .form-note.error:not(.contact-note) {
  color: #A3311E;
}

.waitlist-form .form-note a {
  color: var(--readable-brand);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.waitlist-form .contact-note,
.form-note.contact-note {
  align-items: flex-start;
  min-height: 54px;
  padding: 12px 14px;
  color: var(--readable-ink);
  background: #FFF3DD;
  border: 1px solid rgba(182, 64, 28, 0.22);
  border-radius: 16px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.waitlist-form .contact-note::before {
  margin-top: 6px;
  background: var(--ds-lime);
  box-shadow: 0 0 0 6px rgba(247, 183, 51, 0.18);
}

@media (max-width: 1020px) {
  section.waitlist-section {
    grid-template-columns: 1fr;
    padding: clamp(42px, 7vw, 72px);
  }

  .waitlist-copy,
  .waitlist-form {
    justify-self: stretch;
  }

  .waitlist-copy {
    max-width: 720px;
    padding-left: 0;
  }

  .waitlist-section h2 {
    max-width: 11ch;
  }

  .waitlist-art {
    left: auto;
    right: 8%;
    bottom: auto;
    top: 18%;
    width: 240px;
  }
}

@media (max-width: 720px) {
  section.waitlist-section {
    padding: 18px !important;
    border-radius: 30px;
  }

  section.waitlist-section::before {
    inset: 10px;
    border-radius: 22px;
  }

  .waitlist-copy {
    padding: 28px 14px 4px;
  }

  .waitlist-section h2 {
    max-width: 9.5ch;
    font-size: clamp(2.7rem, 13vw, 4rem);
  }

  .waitlist-lede {
    font-size: 0.98rem;
  }

  .waitlist-art {
    display: none;
  }

  .waitlist-form {
    grid-template-columns: 1fr;
    padding: 24px;
    border-radius: 24px;
  }

  .waitlist-form-heading {
    max-width: none;
    padding-right: 0;
  }

  .waitlist-form-heading strong {
    max-width: 12ch;
  }

  .waitlist-form::before {
    display: none;
  }
}

.app-food-one,
.app-food-three {
  background: var(--ds-lime);
}

.app-food-two {
  background: var(--ds-clay);
}

.app-food-four {
  background: var(--ds-paper);
}

.meal-pack,
.hero-float-card,
.product-pack,
.ingredient-badge {
  color: var(--ds-forest-900);
  background: rgba(255, 253, 247, 0.92);
  border: 1px solid rgba(247, 183, 51, 0.12);
  box-shadow: var(--ds-panel-shadow);
}

.meal-pack-small {
  background: var(--ds-lime);
}

.meal-mode-switch {
  background: rgba(255, 253, 247, 0.94);
  border: 1px solid rgba(247, 183, 51, 0.12);
}

.mode-thumb {
  background: var(--ds-lime);
}

.meal-mode-switch button.active {
  color: var(--ds-forest-900);
}

section.countdown-section {
  grid-template-columns: minmax(320px, 0.72fr) minmax(420px, 1fr);
  gap: clamp(28px, 5vw, 76px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(247, 242, 232, 0.95)),
    var(--ds-cream);
  border: 1px solid rgba(247, 183, 51, 0.1);
  border-radius: var(--ds-radius-lg);
  box-shadow: var(--ds-panel-shadow);
  padding-inline: clamp(28px, 5.4vw, 82px);
}

.countdown-ribbon-path,
.story-ribbon-snake-path {
  stroke: var(--ds-lime);
}

.countdown-ribbon {
  inset: auto -8% -24%;
  height: 82%;
  opacity: 0.5;
}

.countdown-ribbon-path {
  stroke-width: clamp(42px, 5vw, 68px);
}

.countdown-ribbon-text {
  fill: var(--ds-forest-900);
  font-size: clamp(16px, 1.5vw, 21px);
  opacity: 0.7;
}

.countdown-section h2 {
  max-width: 9.5ch;
  font-size: clamp(2.8rem, 5.8vw, 5.9rem);
}

.countdown-grid div {
  background: var(--ds-paper);
  border-color: var(--ds-line);
  box-shadow: var(--ds-panel-shadow);
  transition:
    transform var(--ds-motion) var(--ds-ease-out),
    box-shadow var(--ds-motion) var(--ds-ease-out),
    background var(--ds-motion-fast) ease;
}

.countdown-grid div:hover {
  background: var(--ds-lime-soft);
  box-shadow: var(--ds-panel-shadow-hover);
  transform: translateY(-6px) rotate(-1deg);
}

.countdown-grid strong,
.section-heading h2,
.countdown-section h2,
.flow-copy h2,
.waitlist-section h2,
.faq-heading h2,
.plan-card h3,
.feature-card h3,
.ingredient-card h3,
.story-step h3,
.product-pack h3 {
  color: var(--ds-forest-900);
}

.feature-card h3 {
  color: var(--ds-forest-900);
}

.section-heading p:not(.eyebrow),
.feature-card p,
.plan-card p,
.ingredient-card p,
.faq-summary,
.faq-list p,
.waitlist-lede {
  color: var(--ds-muted);
}

.finder-card,
.waitlist-section,
.ingredient-bowl {
  background: var(--ds-forest);
  border-color: rgba(247, 183, 51, 0.16);
  box-shadow:
    0 34px 100px rgba(247, 183, 51, 0.16),
    var(--ds-inner-light);
}

.finder-form fieldset,
.finder-form .form-row label {
  background: rgba(255, 253, 247, 0.66);
  border-color: var(--ds-line);
}

.finder-form fieldset label {
  background: var(--ds-paper);
  border-color: var(--ds-line);
  border-radius: 18px;
}

.finder-form fieldset label:hover,
.finder-form .form-row label:hover,
.finder-form .form-row label:focus-within {
  background: var(--ds-lime-soft);
  border-color: var(--ds-line-strong);
}

fieldset label:has(input:checked),
.finder-form fieldset label:has(input:checked) {
  color: var(--ds-paper);
  background: var(--ds-lime);
  border-color: rgba(247, 183, 51, 0.5);
  box-shadow:
    0 16px 34px rgba(247, 183, 51, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

fieldset input:checked {
  border-color: var(--ds-lime);
  background: var(--ds-lime);
  box-shadow: inset 0 0 0 4px var(--ds-paper);
}

input:not([type="radio"]):not([type="checkbox"]),
select,
textarea,
.finder-form .form-row input,
.finder-form .form-row select {
  color: var(--ds-ink);
  background: var(--ds-paper);
  border-color: var(--ds-line);
  transition:
    border-color var(--ds-motion-fast) ease,
    box-shadow var(--ds-motion-fast) ease,
    background var(--ds-motion-fast) ease,
    transform var(--ds-motion-fast) ease;
}

input:not([type="radio"]):not([type="checkbox"]):focus,
select:focus,
textarea:focus,
.finder-form .form-row input:focus,
.finder-form .form-row select:focus {
  border-color: rgba(247, 183, 51, 0.44);
  outline: 0;
  box-shadow: 0 0 0 4px rgba(217, 90, 27, 0.36);
}

.finder-result span {
  color: var(--ds-lime);
  background: rgba(247, 183, 51, 0.12);
  border-color: rgba(247, 183, 51, 0.24);
}

.finder-result .btn {
  background: var(--ds-lime);
}

.feature-card {
  --feature-panel: var(--ds-forest);
  --feature-panel-text: var(--ds-forest-900);
  --feature-panel-muted: rgba(34, 34, 34, 0.72);
  --feature-panel-badge-bg: rgba(247, 183, 51, 0.12);
  --feature-panel-badge-color: var(--ds-lime);
}

.feature-card::before,
.feature-card::after {
  background:
    linear-gradient(145deg, rgba(217, 90, 27, 0.98), rgba(217, 90, 27, 0.98)),
    var(--ds-forest);
}

.feature-card p {
  color: var(--feature-panel-muted);
}

.feature-card p::after,
.feature-card:hover p::after,
.feature-card.is-hovered p::after,
.feature-card:focus-within p::after {
  background: var(--ds-lime);
}

.feature-card:hover::before,
.feature-card.is-hovered::before,
.feature-card:focus-within::before,
.plan-card:hover,
.plan-card.is-liquid-active,
.mega-card:hover,
.mega-card:focus-visible,
.mega-card.active,
.ingredient-card.active {
  transform: translateY(-8px);
}

.feature-illustration svg [fill="#F7A11B"],
.feature-illustration svg circle[fill="#F7A11B"],
.feature-illustration svg path[fill="#F7A11B"] {
  fill: var(--ds-lime);
}

.feature-illustration svg [stroke="#F7A11B"],
.feature-illustration svg path[stroke="#F7A11B"],
.feature-illustration svg circle[stroke="#F7A11B"] {
  stroke: var(--ds-lime);
}

.feature-illustration svg [fill="#111111"],
.feature-illustration svg circle[fill="#111111"],
.feature-illustration svg path[fill="#111111"] {
  fill: var(--ds-forest-900);
}

.feature-illustration svg [stroke="#111111"],
.feature-illustration svg path[stroke="#111111"],
.feature-illustration svg circle[stroke="#111111"] {
  stroke: var(--ds-forest-900);
}

.plan-card {
  background: var(--ds-paper);
}

.plan-card::before {
  background: var(--ds-lime-soft);
}

.plan-card::after {
  background: linear-gradient(145deg, rgba(217, 90, 27, 0.42), rgba(255, 253, 247, 0.1));
}

.plan-card.featured {
  color: var(--ds-forest-900);
  background:
    linear-gradient(145deg, rgba(217, 90, 27, 0.98), rgba(217, 90, 27, 0.98)),
    var(--ds-forest);
}

.plan-card.featured h3,
.plan-card.featured strong {
  color: var(--ds-forest-900);
}

.plan-card.featured p {
  color: rgba(34, 34, 34, 0.72);
}

.plan-card.featured a {
  color: var(--ds-lime);
}

.ingredient-card {
  background: rgba(255, 253, 247, 0.62);
}

.ingredient-bowl,
.ingredient-bowl::before,
.ingredient-bowl::after,
.ingredient-glow {
  background:
    linear-gradient(145deg, rgba(217, 90, 27, 0.96), rgba(217, 90, 27, 0.98)),
    var(--ds-forest);
}

.ingredient-ring {
  border-color: rgba(217, 90, 27, 0.34);
  box-shadow:
    0 0 0 38px rgba(255, 253, 247, 0.13),
    0 0 0 66px rgba(217, 90, 27, 0.15),
    0 0 0 104px rgba(247, 183, 51, 0.16);
}

.ingredient-item {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
  border-color: rgba(255, 253, 247, 0.34);
  box-shadow:
    0 18px 42px rgba(34, 34, 34, 0.18),
    0 0 0 8px rgba(217, 90, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.ingredient-item::before {
  background: var(--ds-forest);
}

.product-halo {
  background: var(--ds-lime);
  animation: dsHaloBreath 5.8s ease-in-out infinite;
}

.product-stage img,
.story-plate img,
.ingredient-bowl img {
  border-color: rgba(255, 253, 247, 0.78);
}

.product-actions button {
  color: var(--ds-paper);
  border-color: rgba(255, 253, 247, 0.3);
}

.product-actions button.active,
.product-actions button:hover {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

section.faq-section::before {
  border-color: rgba(247, 183, 51, 0.1);
  box-shadow:
    inset 0 0 0 30px rgba(217, 90, 27, 0.08),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

section.faq-section::after {
  background: rgba(217, 90, 27, 0.26);
}

.faq-meta span,
.waitlist-points span {
  color: var(--ds-forest);
  background: rgba(255, 253, 247, 0.68);
  border-color: var(--ds-line);
}

.faq-list article {
  border-bottom-color: rgba(247, 183, 51, 0.16);
}

.faq-number {
  color: var(--ds-forest);
  background: rgba(217, 90, 27, 0.28);
  border-color: var(--ds-line);
}

.faq-list article::before,
.faq-list article.open::before {
  background: var(--ds-lime);
}

.faq-list article.open .faq-question {
  color: var(--ds-forest);
}

.waitlist-section {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.72), rgba(247, 242, 232, 0.94)),
    var(--ds-cream);
}

.waitlist-section::before,
.waitlist-form {
  background: rgba(255, 253, 247, 0.72);
  border-color: rgba(247, 183, 51, 0.12);
}

.waitlist-form::before,
.finder-form::before {
  border-color: rgba(217, 90, 27, 0.8);
}

.waitlist-art .art-sun,
.waitlist-art .art-leaf {
  fill: rgba(217, 90, 27, 0.34);
}

.waitlist-art .art-line,
.waitlist-art .art-leaf {
  stroke: rgba(247, 183, 51, 0.72);
}

.menu-overlay {
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: var(--ds-radius-lg);
  box-shadow: 0 40px 120px rgba(34, 34, 34, 0.34);
}

.menu-overlay.open {
  animation: dsMenuBloom 640ms var(--ds-ease-out) both;
}

.menu-overlay-nav a:hover,
.menu-overlay-nav a:focus-visible,
.menu-overlay-nav a.active {
  color: var(--ds-lime);
}

.menu-overlay-nav a.active {
  background: transparent;
  box-shadow: none;
}

.menu-overlay-nav a:hover,
.menu-overlay-nav a:focus-visible {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

.menu-overlay-nav a span,
.menu-overlay-nav a:hover span,
.menu-overlay-nav a:focus-visible span,
.menu-overlay-nav a.active span {
  background: var(--ds-lime);
}

.menu-overlay-nav a span::after {
  border-color: var(--ds-forest-900);
}

.menu-overlay-nav a:hover span,
.menu-overlay-nav a:focus-visible span {
  background: rgba(247, 183, 51, 0.12);
}

.menu-overlay-nav a:hover span::after,
.menu-overlay-nav a:focus-visible span::after {
  border-color: var(--ds-forest-900);
}

.menu-close {
  color: var(--ds-forest-900);
  background: var(--ds-lime);
}

.menu-close:hover,
.menu-close:focus-visible {
  background: var(--ds-lime);
  transform: rotate(6deg) scale(1.04);
}

.menu-ribbon-stroke {
  stroke: rgba(217, 90, 27, 0.62);
}

.menu-ribbon-text {
  fill: var(--ds-lime);
}

.section-pagination button {
  background: rgba(247, 183, 51, 0.22);
}

.section-pagination button.active {
  background: var(--ds-lime);
}

.reveal {
  transition:
    opacity 760ms var(--ds-ease-out),
    transform 760ms var(--ds-ease-out),
    filter 760ms var(--ds-ease-out);
}

.feature-card,
.plan-card,
.mega-card,
.ingredient-card,
.countdown-grid div,
.faq-list article,
.finder-form fieldset label,
.waitlist-form,
.product-stage img {
  will-change: transform;
}

@keyframes dsFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--float-rotate, 0deg));
  }

  50% {
    transform: translate3d(0, -10px, 0) rotate(calc(var(--float-rotate, 0deg) + 1.2deg));
  }
}

@keyframes dsOrganicDrift {
  0%,
  100% {
    translate: 0 0;
    scale: 1;
  }

  50% {
    translate: 18px -14px;
    scale: 1.035;
  }
}

@keyframes dsHaloBreath {
  0%,
  100% {
    transform: rotate(-8deg) scale(1);
  }

  50% {
    transform: rotate(-4deg) scale(1.045);
  }
}

@keyframes dsMenuBloom {
  0% {
    clip-path: inset(50% 50% 50% 50% round 44px);
  }

  100% {
    clip-path: inset(0 0 0 0 round var(--ds-radius-lg));
  }
}

@media (max-width: 980px) {
  .site-header {
    border-radius: 28px;
  }

  .hero-card::before,
  .hero-card::after {
    opacity: 0.62;
  }

  .btn::after,
  .mega-cta::after,
  .plan-card a::after {
    width: 22px;
    height: 22px;
    margin-left: 8px;
  }
}

@media (max-width: 640px) {
  .site-header,
  .mega-menu,
  .menu-overlay,
  .hero-card,
  .finder-card,
  .story-sticky,
  .ingredient-bowl,
  .product-experience,
  .waitlist-section {
    border-radius: 24px;
  }

  .btn::after {
    display: none;
  }

  .hero-card::before {
    right: -28%;
    width: 78%;
  }

  .hero-card::after {
    left: -34%;
    width: 86%;
  }
}

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

  .reveal,
  .reveal-item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .page-background::before,
  .bg-shape,
  .section-pagination button,
  .menu-overlay,
  .menu-overlay-nav a,
  .menu-overlay-note,
  .menu-ribbon-stroke,
  .menu-ribbon-text {
    animation: none !important;
    transition: none !important;
  }

  .menu-overlay {
    transform: none !important;
  }

  .menu-overlay-nav a,
  .menu-overlay-note,
  .menu-ribbon-text {
    opacity: 1 !important;
    transform: none !important;
  }

  .menu-ribbon-stroke {
    stroke-dashoffset: 0 !important;
  }

  .site-header {
    transform: translate3d(-50%, 0, 0) !important;
  }

  .hero-section {
    min-height: auto !important;
  }

  .hero-card {
    position: relative !important;
    top: auto !important;
  }

  .hero-noise,
  .hero-copy,
  .hero-word,
  .hero-media,
  .meal-pack,
  .hero-float-card,
  .meal-mode-switch,
  .story-ribbon-snake,
  .story-copy,
  .story-plate,
  .story-steps,
  .ingredient-bowl::before,
  .ingredient-bowl::after,
  .ingredient-glow,
  .ingredient-ring,
  .ingredient-badge,
  .ingredient-bowl img,
  .ingredient-item,
  .ingredient-note,
  .product-experience::before,
  .product-copy,
  .product-stage,
  .product-halo,
  .product-stage img,
  .product-pack,
  .countdown-grid,
  .finder-card,
  .feature-card,
  .plan-card,
  .waitlist-section,
  .finder-result::before,
  .feature-illustration,
  .waitlist-form {
    scale: 1 !important;
    translate: 0 0 !important;
  }
}

/* 60. Production footer */
.site-footer {
  --footer-cream: #FFFDF7;
  --footer-cream-soft: #FFF2DC;
  --footer-yellow: #FFD35A;
  --footer-ink: #241812;
  --footer-orange: #F06A22;
  --footer-burnt: #8F2F17;
  position: relative;
  display: block;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  min-height: 0;
  margin: clamp(56px, 7vw, 104px) auto 0;
  padding: clamp(30px, 4.4vw, 64px);
  overflow: hidden;
  color: var(--footer-cream);
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 211, 90, 0.36), transparent 22%),
    radial-gradient(circle at 10% 88%, rgba(255, 253, 247, 0.14), transparent 28%),
    linear-gradient(132deg, var(--footer-orange) 0%, #D95A1B 48%, var(--footer-burnt) 100%);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: clamp(30px, 3.2vw, 42px) clamp(30px, 3.2vw, 42px) 0 0;
  box-shadow:
    0 -20px 72px rgba(36, 24, 18, 0.1),
    0 30px 92px rgba(36, 24, 18, 0.14),
    inset 0 1px 0 rgba(255, 253, 247, 0.3);
  isolation: isolate;
  transition: opacity 620ms cubic-bezier(0.22, 1, 0.36, 1), transform 620ms cubic-bezier(0.22, 1, 0.36, 1);
}

.site-footer::before {
  left: clamp(20px, 3vw, 56px);
  bottom: clamp(-22px, -1vw, -10px);
  z-index: -1;
  content: "GRATASTE";
  color: transparent;
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 0.76;
  opacity: 0.16;
  -webkit-text-stroke: 1px rgba(255, 253, 247, 0.64);
}

.site-footer::after {
  right: clamp(-86px, -5vw, -34px);
  top: clamp(-112px, -7vw, -44px);
  z-index: -1;
  width: min(410px, 32vw);
  border: clamp(28px, 3.5vw, 54px) solid rgba(255, 253, 247, 0.1);
  box-shadow:
    inset 0 0 0 clamp(12px, 1.5vw, 22px) rgba(255, 211, 90, 0.1),
    0 0 78px rgba(255, 211, 90, 0.16);
}

.site-footer.footer-reveal-ready {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
}

.site-footer.footer-in-view {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.site-footer > * {
  position: relative;
  z-index: 1;
}

.site-footer .footer-decor {
  position: absolute;
  z-index: -1;
  pointer-events: none;
}

.site-footer .footer-decor-grid {
  inset: 0;
  opacity: 0.34;
  background-image:
    linear-gradient(rgba(255, 253, 247, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.12) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.84), transparent 88%);
}

.site-footer .footer-decor-rings {
  right: clamp(-110px, -5vw, -42px);
  bottom: clamp(-150px, -8vw, -82px);
  width: min(510px, 42vw);
  aspect-ratio: 1;
  border: clamp(22px, 2.5vw, 40px) solid rgba(255, 211, 90, 0.16);
  border-radius: 50%;
  box-shadow:
    0 0 0 clamp(24px, 3vw, 46px) rgba(255, 253, 247, 0.05),
    0 0 0 clamp(52px, 5vw, 84px) rgba(255, 211, 90, 0.08);
}

.site-footer .footer-primary {
  display: grid;
  grid-template-columns: minmax(242px, 0.72fr) minmax(0, 1.45fr) minmax(250px, 0.72fr);
  gap: clamp(22px, 3.4vw, 52px);
  align-items: stretch;
}

.site-footer .footer-brand-panel,
.site-footer .footer-main,
.site-footer .footer-side {
  min-width: 0;
}

.site-footer .footer-brand-panel {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  gap: 18px;
  padding: clamp(20px, 2.3vw, 28px);
  color: var(--footer-cream);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.16), rgba(255, 253, 247, 0.045)),
    rgba(143, 47, 23, 0.18);
  border: 1px solid rgba(255, 253, 247, 0.26);
  border-radius: 28px;
  box-shadow:
    0 22px 58px rgba(36, 24, 18, 0.14),
    inset 0 1px 0 rgba(255, 253, 247, 0.3);
  backdrop-filter: blur(14px) saturate(1.04);
  -webkit-backdrop-filter: blur(14px) saturate(1.04);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-footer .footer-brand-panel:hover {
  border-color: rgba(255, 253, 247, 0.46);
  box-shadow:
    0 28px 68px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.34);
  transform: translateY(-5px);
}

.site-footer .footer-brand {
  width: min(218px, 100%);
  padding: 11px 14px;
  background: linear-gradient(135deg, #FFFDF7, #FFF0DD);
  border: 1px solid rgba(255, 253, 247, 0.72);
  box-shadow:
    0 16px 34px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.site-footer .footer-brand-visual {
  min-height: clamp(180px, 15vw, 220px);
  margin: 0;
  background:
    radial-gradient(circle at 52% 50%, rgba(255, 211, 90, 0.26), transparent 25%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.1), rgba(255, 253, 247, 0.025));
  border: 1px solid rgba(255, 253, 247, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.12);
}

.site-footer .footer-brand-visual::before {
  border-color: rgba(255, 253, 247, 0.28);
}

.site-footer .footer-brand-visual::after,
.site-footer .footer-plate-core {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 211, 90, 0.34), transparent 30%),
    #B6401C;
  border-color: rgba(255, 253, 247, 0.24);
}

.site-footer .footer-plate-orbit {
  border-color: rgba(255, 253, 247, 0.16);
}

.site-footer .footer-map-line {
  border-color: rgba(255, 211, 90, 0.62);
}

.site-footer .footer-meal-chip {
  color: var(--footer-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.52);
  box-shadow:
    0 12px 24px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-footer .footer-map-dot {
  background: #FFD35A;
  box-shadow: 0 0 0 8px rgba(255, 211, 90, 0.14);
}

.site-footer .footer-brand-panel p {
  max-width: 19ch;
  margin: 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1.45;
}

.site-footer .footer-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(12px, 1.8vw, 24px) 0;
}

.site-footer .footer-eyebrow {
  width: max-content;
  margin: 0 0 clamp(16px, 2vw, 24px);
  color: var(--footer-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.5);
  box-shadow:
    0 12px 26px rgba(36, 24, 18, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.site-footer h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--footer-cream);
  font-size: clamp(3.15rem, 5.15vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.9;
  text-shadow: 0 4px 30px rgba(36, 24, 18, 0.18);
}

.site-footer .footer-main > p:not(.footer-eyebrow) {
  max-width: 56ch;
  margin: clamp(20px, 2.2vw, 28px) 0 0;
  color: rgba(255, 253, 247, 0.88);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 600;
  line-height: 1.58;
}

.site-footer .footer-actions {
  gap: 12px;
  margin-top: clamp(24px, 2.8vw, 34px);
}

.site-footer .footer-actions .btn-lime,
.site-footer .footer-ghost-link {
  min-height: 54px;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-footer .footer-actions .btn-lime {
  color: var(--footer-ink);
  background: linear-gradient(120deg, #FFD35A, #F7B733 58%, #FFD35A);
  background-size: 180% 100%;
  border: 1px solid rgba(255, 253, 247, 0.5);
  box-shadow:
    0 18px 34px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-footer .footer-actions .btn-lime:hover {
  background-position: 100% 0;
  box-shadow:
    0 24px 40px rgba(36, 24, 18, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translateY(-4px);
}

.site-footer .footer-actions .btn-lime::after {
  color: var(--footer-cream);
  background: #B6401C;
}

.site-footer .footer-ghost-link {
  color: var(--footer-cream);
  background: rgba(255, 253, 247, 0.1);
  border-color: rgba(255, 253, 247, 0.3);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.26);
}

.site-footer .footer-ghost-link:hover {
  color: var(--footer-cream);
  background: rgba(255, 253, 247, 0.18);
  border-color: rgba(255, 253, 247, 0.54);
  transform: translateY(-4px);
}

.site-footer .footer-side {
  display: grid;
  align-content: center;
  gap: 16px;
  padding: clamp(18px, 2vw, 24px);
  color: var(--footer-ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 239, 215, 0.84)),
    rgba(255, 253, 247, 0.78);
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 28px;
  box-shadow:
    0 26px 62px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(16px) saturate(1.06);
  -webkit-backdrop-filter: blur(16px) saturate(1.06);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.site-footer .footer-side:hover {
  box-shadow:
    0 30px 72px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transform: translateY(-5px);
}

.site-footer .footer-status {
  gap: 5px;
  padding: 16px 18px;
  color: var(--footer-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 20px;
  box-shadow:
    0 12px 26px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-footer .footer-status span,
.site-footer .footer-status strong {
  color: var(--footer-ink);
}

.site-footer .footer-status span {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
}

.site-footer .footer-status strong {
  font-size: clamp(1.25rem, 1.8vw, 1.55rem);
}

.site-footer .footer-links {
  gap: 8px;
  color: var(--footer-ink);
}

.site-footer .footer-links a {
  min-height: 46px;
  padding: 0 14px;
  color: var(--footer-ink);
  background: rgba(255, 253, 247, 0.52);
  border: 1px solid rgba(143, 47, 23, 0.1);
  border-radius: 15px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
}

.site-footer .footer-links a::after {
  content: "\2192";
  color: #B6401C;
  font-size: 1.08rem;
  transition: transform 180ms ease;
}

.site-footer .footer-links a:hover {
  color: var(--footer-ink);
  background: rgba(255, 253, 247, 0.88);
  border-color: rgba(182, 64, 28, 0.28);
  transform: none;
}

.site-footer .footer-links a:hover::after {
  transform: translateX(4px);
}

.site-footer .footer-directory-wrap {
  margin-top: clamp(30px, 4vw, 50px);
  padding-top: clamp(24px, 3vw, 36px);
  border-top: 1px solid rgba(255, 253, 247, 0.22);
}

.site-footer .footer-directory {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}

.site-footer .footer-directory-group h3 {
  margin: 0 0 14px;
  color: var(--footer-yellow);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer .footer-directory-group ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.site-footer .footer-directory-group a,
.site-footer .footer-link-unavailable {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  gap: 8px;
  color: rgba(255, 253, 247, 0.88);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.35;
}

.site-footer .footer-directory-group a::after {
  content: "\2192";
  color: var(--footer-yellow);
  font-size: 0.98em;
  opacity: 0;
  transform: translateX(-6px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.site-footer .footer-directory-group a:hover {
  color: #FFFDF7;
}

.site-footer .footer-directory-group a:hover::after {
  opacity: 1;
  transform: translateX(0);
}

.site-footer .footer-link-unavailable {
  color: rgba(255, 253, 247, 0.52);
  cursor: not-allowed;
}

.site-footer .footer-link-unavailable::after {
  margin-left: 2px;
  content: "Coming soon";
  color: rgba(255, 211, 90, 0.72);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.site-footer .footer-contact-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: clamp(26px, 3vw, 38px);
  padding: clamp(18px, 2vw, 22px) clamp(18px, 2.5vw, 28px);
  background: rgba(255, 253, 247, 0.1);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.18);
}

.site-footer .footer-contact-details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 18px;
  color: var(--footer-cream);
  font-style: normal;
}

.site-footer .footer-contact-label {
  color: var(--footer-yellow);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.site-footer .footer-contact-details a {
  color: var(--footer-cream);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-color: rgba(255, 211, 90, 0.64);
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.site-footer .footer-contact-details a:hover {
  color: var(--footer-yellow);
}

.site-footer .footer-social-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 16px;
  color: var(--footer-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.5);
  border-radius: 999px;
  box-shadow:
    0 12px 25px rgba(36, 24, 18, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  font-size: 0.86rem;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.site-footer .footer-social-link:hover {
  box-shadow:
    0 18px 32px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
  transform: translateY(-3px);
}

.site-footer .footer-social-link span {
  font-size: 1.05rem;
  transition: transform 180ms ease;
}

.site-footer .footer-social-link:hover span {
  transform: translate3d(2px, -2px, 0);
}

.site-footer .footer-bottom {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr) auto max-content;
  grid-column: auto;
  align-items: center;
  gap: 12px 20px;
  margin-top: clamp(20px, 2.4vw, 28px);
  padding-top: clamp(20px, 2.4vw, 28px);
  color: rgba(255, 253, 247, 0.78);
  border-top: 1px solid rgba(255, 253, 247, 0.2);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 750;
  text-transform: none;
}

.site-footer .footer-bottom > span {
  color: rgba(255, 253, 247, 0.84);
  font-weight: 750;
}

.site-footer .footer-bottom > span:nth-child(2) {
  color: var(--footer-yellow);
}

.site-footer .footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.site-footer .footer-legal-links a,
.site-footer .footer-legal-links span {
  color: rgba(255, 253, 247, 0.84);
}

.site-footer .footer-legal-links a:hover {
  color: var(--footer-yellow);
}

.site-footer .footer-legal-links span[aria-disabled="true"] {
  color: rgba(255, 253, 247, 0.48);
  cursor: not-allowed;
}

.site-footer .footer-routine-line {
  justify-self: end;
  text-align: right;
}

.site-footer a:focus-visible {
  outline: 3px solid var(--footer-yellow);
  outline-offset: 3px;
}

.site-footer.footer-in-view .footer-primary > *,
.site-footer.footer-in-view .footer-directory-wrap,
.site-footer.footer-in-view .footer-contact-row,
.site-footer.footer-in-view .footer-bottom {
  animation: gratasteFooterEnter 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-footer.footer-in-view .footer-primary > *:nth-child(2) {
  animation-delay: 80ms;
}

.site-footer.footer-in-view .footer-primary > *:nth-child(3) {
  animation-delay: 150ms;
}

.site-footer.footer-in-view .footer-directory-wrap {
  animation-delay: 190ms;
}

.site-footer.footer-in-view .footer-contact-row {
  animation-delay: 250ms;
}

.site-footer.footer-in-view .footer-bottom {
  animation-delay: 300ms;
}

@keyframes gratasteFooterEnter {
  from {
    opacity: 0;
    transform: translate3d(0, 16px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 1100px) {
  .site-footer .footer-primary {
    grid-template-columns: minmax(240px, 0.82fr) minmax(0, 1.18fr);
  }

  .site-footer .footer-side {
    grid-column: 1 / -1;
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
    align-items: start;
  }

  .site-footer .footer-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-directory {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 32px;
  }

  .site-footer .footer-bottom {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer .footer-routine-line {
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 720px) {
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 48px;
    padding: 26px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  .site-footer::before {
    left: 18px;
    bottom: 6px;
    font-size: clamp(4.5rem, 21vw, 6.7rem);
  }

  .site-footer::after {
    width: 260px;
  }

  .site-footer .footer-primary {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .site-footer .footer-main {
    order: -2;
    padding: 4px 2px 8px;
  }

  .site-footer .footer-brand-panel {
    min-height: 0;
  }

  .site-footer .footer-brand-visual {
    min-height: 190px;
  }

  .site-footer .footer-side {
    grid-column: auto;
    grid-template-columns: 1fr;
  }

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

  .site-footer h2 {
    max-width: 9ch;
    font-size: clamp(3.05rem, 15.2vw, 4.35rem);
    line-height: 0.91;
  }

  .site-footer .footer-main > p:not(.footer-eyebrow) {
    max-width: 35ch;
    font-size: 1rem;
  }

  .site-footer .footer-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .site-footer .footer-actions .btn-lime,
  .site-footer .footer-ghost-link {
    width: 100%;
  }

  .site-footer .footer-directory-wrap {
    margin-top: 28px;
  }

  .site-footer .footer-directory {
    gap: 26px 18px;
  }

  .site-footer .footer-directory-group a,
  .site-footer .footer-link-unavailable {
    min-height: 36px;
    font-size: 0.88rem;
  }

  .site-footer .footer-contact-row {
    align-items: stretch;
    flex-direction: column;
  }

  .site-footer .footer-contact-details {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer .footer-social-link {
    width: 100%;
  }

  .site-footer .footer-bottom {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .site-footer .footer-routine-line {
    justify-self: start;
  }
}

@media (max-width: 390px) {
  .site-footer .footer-directory {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer,
  .site-footer .footer-brand-panel,
  .site-footer .footer-side,
  .site-footer .footer-actions .btn-lime,
  .site-footer .footer-ghost-link,
  .site-footer .footer-social-link,
  .site-footer .footer-links a,
  .site-footer .footer-directory-group a,
  .site-footer .footer-social-link span {
    transition: none;
  }

  .site-footer.footer-reveal-ready {
    opacity: 1;
    transform: none;
  }

  .site-footer.footer-in-view .footer-primary > *,
  .site-footer.footer-in-view .footer-directory-wrap,
  .site-footer.footer-in-view .footer-contact-row,
  .site-footer.footer-in-view .footer-bottom {
    animation: none;
  }
}

/* 30. Premium Grataste warm palette reset */
:root {
  --brand-primary: #D95A1B;
  --brand-accent: #F7B733;
  --brand-neutral: #FFF7EA;
  --brand-purple: var(--brand-primary);
  --brand-yellow: var(--brand-accent);
  --brand-mint: var(--brand-accent);
  --brand-blue: #241812;
  --primary: #D95A1B;
  --secondary: #F7B733;
  --background: #FFF7EA;
  --accent: #F7B733;
  --accent-deep: #241812;
  --highlight: #F7B733;
  --text-primary: #241812;
  --warm-ivory: #FFFDF7;
  --soft-beige: #FFF7EA;
  --light-gray: #EFE2D2;
  --warm-gray: #6B5A50;
  --primary-soft: #FFE1C7;
  --secondary-soft: #FFE9AA;
  --action: #F7B733;
  --action-2: #D95A1B;
  --action-dark: #241812;
  --action-text: #241812;
  --action-accent: #241812;
  --highlight-soft: #FFF0BF;
  --highlight-text: #241812;
  --purple: var(--primary);
  --purple-2: var(--secondary);
  --purple-soft: var(--primary-soft);
  --lime: var(--accent);
  --lime-soft: var(--secondary-soft);
  --ink: var(--text-primary);
  --gray-600: var(--warm-gray);
  --gray-300: #E4D1BE;
  --gray-200: var(--light-gray);
  --gray-100: var(--warm-ivory);
  --shadow: 0 24px 80px rgba(36, 24, 18, 0.16);
  --site-bg-r: 255;
  --site-bg-g: 247;
  --site-bg-b: 234;
  --page-bg-a-r: 255;
  --page-bg-a-g: 247;
  --page-bg-a-b: 234;
  --page-bg-b-r: 255;
  --page-bg-b-g: 253;
  --page-bg-b-b: 247;
  --page-accent-r: 247;
  --page-accent-g: 183;
  --page-accent-b: 51;
  --page-alt-r: 217;
  --page-alt-g: 90;
  --page-alt-b: 27;

  --ds-forest: #D95A1B;
  --ds-forest-900: #241812;
  --ds-forest-700: #8F2F17;
  --ds-lime: #F7B733;
  --ds-lime-soft: #FFE9AA;
  --ds-cream: #FFF7EA;
  --ds-paper: #FFFDF7;
  --ds-sand: #EFE2D2;
  --ds-clay: #B6401C;
  --ds-ink: #241812;
  --ds-muted: #6B5A50;
  --ds-line: rgba(217, 90, 27, 0.18);
  --ds-line-strong: rgba(36, 24, 18, 0.28);
  --ds-panel-shadow: 0 22px 70px rgba(36, 24, 18, 0.14);
  --ds-panel-shadow-hover: 0 34px 88px rgba(36, 24, 18, 0.2);
}

body {
  color: var(--ds-ink);
  background:
    radial-gradient(circle at 20% 10%, rgba(247, 183, 51, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(255, 247, 234, 0.94)),
    var(--ds-cream);
}

.site-header {
  color: var(--ds-ink);
  border-color: rgba(255, 253, 247, 0.55);
}

.hero-card,
.mega-copy,
.menu-overlay,
.story-sticky,
.product-experience,
.finder-result,
.ingredient-note,
.site-footer {
  color: var(--ds-paper);
  background:
    radial-gradient(circle at 76% 28%, rgba(247, 183, 51, 0.36), transparent 34%),
    linear-gradient(145deg, #F06A22 0%, #D95A1B 48%, #8F2F17 100%);
}

.hero-copy h1,
.hero-copy p:not(.eyebrow),
.product-copy h2,
.product-copy p:not(.eyebrow),
.story-copy h2,
.story-copy p:not(.eyebrow),
.site-footer h2 {
  color: var(--ds-paper);
}

.hero-word {
  color: rgba(255, 247, 234, 0.11);
}

.btn-lime,
.eyebrow,
.mega-eyebrow,
.plan-card span,
.story-orbit,
.product-pack strong,
.feature-card span,
.faq-list article.open .faq-number,
.faq-list article.open .faq-toggle,
.meal-mode-switch button.active,
.product-actions button.active,
.product-actions button:hover,
.menu-close {
  color: var(--ds-ink);
  background: var(--ds-lime);
}

.btn-white {
  color: var(--ds-ink);
  background: var(--ds-paper);
}

.section-heading h2,
.countdown-section h2,
.flow-copy h2,
.waitlist-section h2,
.faq-heading h2,
.plan-card h3,
.feature-card h3,
.ingredient-card h3,
.story-step h3,
.product-pack h3,
.countdown-grid strong {
  color: var(--ds-ink);
}

.feature-card {
  --feature-panel-text: var(--ds-paper);
  --feature-panel-muted: rgba(255, 253, 247, 0.72);
}

.feature-card h3 {
  color: var(--ds-paper);
}

.feature-card::before,
.feature-card::after,
.plan-card.featured,
.ingredient-bowl,
.ingredient-bowl::before,
.ingredient-bowl::after,
.ingredient-glow {
  background:
    radial-gradient(circle at 82% 12%, rgba(247, 183, 51, 0.3), transparent 32%),
    linear-gradient(145deg, #E76625 0%, #B6401C 100%);
}

.plan-card.featured,
.plan-card.featured h3,
.plan-card.featured strong,
.plan-card.featured p {
  color: var(--ds-paper);
}

.finder-card,
.waitlist-section {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.86), rgba(255, 247, 234, 0.96)),
    var(--ds-cream);
  border-color: rgba(217, 90, 27, 0.14);
}

.finder-form,
.waitlist-form,
.mega-card,
.plan-card,
.ingredient-card,
.story-step,
.countdown-grid div {
  background: rgba(255, 253, 247, 0.9);
  border-color: rgba(217, 90, 27, 0.14);
}

.iphone-screen,
.iphone-prototype,
.iphone-prototype::before,
.iphone-side-button,
.app-placeholder,
.app-bowl-preview {
  background: #241812;
  border-color: #241812;
}

.app-hero-card strong,
.app-plan-list b,
.app-bowl-preview strong,
.finder-result span,
.product-pack span,
.story-step span,
.ingredient-card span {
  color: var(--ds-lime);
}

/* 31. Readability guardrails */
:root {
  --readable-ink: #241812;
  --readable-muted: #4F4038;
  --readable-brand: #B6401C;
  --readable-paper: #FFFDF7;
  --readable-soft: #FFF3DD;
}

.hero-copy h1,
.hero-copy p:not(.eyebrow),
.story-copy h2,
.story-copy p:not(.eyebrow),
.product-copy h2,
.product-copy p:not(.eyebrow),
.site-footer h2,
.site-footer p {
  text-shadow: 0 2px 18px rgba(36, 24, 18, 0.18);
}

.btn-lime,
.finder-result .btn.btn-lime,
.waitlist-form .btn.btn-lime,
.meal-mode-switch button.active,
.meal-mode-switch button.active small,
.product-actions button.active,
.product-actions button:hover,
.plan-card a {
  color: var(--readable-ink);
}

.btn::after,
.mega-cta::after,
.plan-card a::after {
  color: var(--readable-paper);
  background: var(--readable-brand);
}

.finder-form label:has(input:checked),
.finder-form fieldset label:has(input:checked),
.finder-form label:has(input:checked) *,
.finder-form fieldset label:has(input:checked) *,
.finder-form label:has(input:checked)::before,
.finder-form fieldset label:has(input:checked)::before {
  color: var(--readable-ink);
}

.finder-result > span,
.plan-card span,
.story-orbit,
.feature-card span,
.faq-list article.open .faq-number,
.faq-list article.open .faq-toggle {
  color: var(--readable-ink);
  background: var(--ds-lime);
}

.story-step,
.story-step.near-before,
.story-step.near-after,
.story-step.far-before,
.story-step.far-after {
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.93);
  border-color: rgba(36, 24, 18, 0.2);
  opacity: 1;
}

.story-step.active {
  background: var(--readable-paper);
  box-shadow:
    0 22px 52px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.story-step h3,
.story-step.active h3 {
  color: var(--readable-ink);
}

.story-step p,
.story-step.active p {
  color: var(--readable-muted);
}

.story-step span,
.ingredient-card span,
.product-pack span,
.app-hero-card strong,
.app-plan-list b {
  color: var(--readable-brand);
}

.story-step span {
  color: var(--readable-ink);
  background: var(--ds-lime);
}

.ingredient-card p,
.plan-card p,
.product-pack p,
.waitlist-form-heading p,
.finder-form-heading p,
.section-heading p:not(.eyebrow),
.faq-summary,
.waitlist-lede {
  color: var(--readable-muted);
}

.feature-card p {
  color: rgba(255, 253, 247, 0.94);
}

.feature-card h3 {
  color: var(--readable-paper);
  text-shadow: 0 2px 14px rgba(36, 24, 18, 0.22);
}

.product-actions button:not(.active) {
  color: var(--readable-paper);
  background: rgba(36, 24, 18, 0.14);
  border-color: rgba(255, 253, 247, 0.46);
}

.faq-number {
  color: var(--readable-ink);
  background: #FFE1C7;
  border-color: rgba(182, 64, 28, 0.24);
}

.faq-list article.open .faq-question,
.faq-list article.open .faq-toggle {
  color: var(--readable-ink);
}

.waitlist-points span,
.faq-meta span {
  color: var(--readable-brand);
  background: var(--readable-paper);
  border-color: rgba(182, 64, 28, 0.18);
}

.waitlist-form .contact-note,
.form-note.contact-note,
.finder-result .contact-note {
  color: var(--readable-ink);
  background: var(--readable-soft);
  border-color: rgba(182, 64, 28, 0.24);
  text-shadow: none;
}

.footer-links a,
.footer-ghost-link {
  color: var(--readable-paper);
  background: rgba(255, 253, 247, 0.14);
  border-color: rgba(255, 253, 247, 0.32);
  text-shadow: 0 1px 10px rgba(36, 24, 18, 0.18);
}

.footer-links a:hover,
.footer-ghost-link:hover {
  color: var(--readable-ink);
  background: var(--ds-lime);
  border-color: var(--ds-lime);
  text-shadow: none;
}

.footer-bottom,
.footer-bottom span {
  color: rgba(255, 253, 247, 0.92);
}

.footer-meal-chip {
  color: var(--readable-ink);
}

.ingredient-note {
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(36, 24, 18, 0.76), rgba(143, 47, 23, 0.82)),
    var(--readable-brand);
  border-color: rgba(255, 253, 247, 0.22);
  text-shadow: 0 1px 12px rgba(36, 24, 18, 0.28);
}

.ingredient-note span,
.ingredient-note strong {
  color: var(--readable-paper);
}

.app-hero-card strong,
.app-plan-list b,
.app-bowl-preview strong {
  color: var(--ds-lime);
}

/* 42. True final attached-to-hero sliding navigation behavior */
.site-header {
  top: clamp(12px, 1.8vw, 24px);
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  color: var(--ds-ink);
  transform: translate3d(-50%, calc(var(--hero-reveal) * -18px), 0);
  transition:
    top 520ms cubic-bezier(0.16, 1, 0.3, 1),
    width 520ms cubic-bezier(0.16, 1, 0.3, 1),
    background 520ms ease,
    border-color 520ms ease,
    border-radius 520ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 520ms ease,
    color 520ms ease,
    backdrop-filter 520ms ease,
    -webkit-backdrop-filter 520ms ease,
    transform 520ms cubic-bezier(0.16, 1, 0.3, 1);
}

.site-header:not(.scrolled):not(.menu-open) {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.035)),
    radial-gradient(circle at 74% 8%, rgba(247, 183, 51, 0.24), transparent 34%),
    rgba(217, 90, 27, 0.34);
  border-color: rgba(255, 253, 247, 0.36);
  border-radius: calc(var(--radius-hero) - 4px) calc(var(--radius-hero) - 4px) 30px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.45),
    inset 0 -1px 0 rgba(143, 47, 23, 0.22);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

.site-header.scrolled,
.site-header.menu-open {
  top: clamp(12px, 1.8vw, 24px);
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  color: var(--ds-ink);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.16), rgba(255, 253, 247, 0.055)),
    radial-gradient(circle at 74% 8%, rgba(247, 183, 51, 0.26), transparent 34%),
    rgba(217, 90, 27, 0.38);
  border-color: rgba(255, 253, 247, 0.4);
  border-radius: calc(var(--radius-hero) - 4px) calc(var(--radius-hero) - 4px) 30px 30px;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.5),
    inset 0 -1px 0 rgba(143, 47, 23, 0.22),
    0 14px 38px rgba(36, 24, 18, 0.08);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
}

.site-header:not(.scrolled):not(.menu-open) .brand {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.9), rgba(255, 242, 224, 0.78));
  border-color: rgba(255, 253, 247, 0.66);
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header.scrolled .brand,
.site-header.menu-open .brand {
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 242, 224, 0.82));
  border-color: rgba(255, 253, 247, 0.68);
  box-shadow:
    0 12px 28px rgba(36, 24, 18, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.site-header .desktop-nav a {
  color: var(--ds-paper);
  text-shadow: 0 2px 16px rgba(36, 24, 18, 0.24);
}

.site-header:not(.scrolled):not(.menu-open) .desktop-nav a:hover,
.site-header:not(.scrolled):not(.menu-open) .desktop-nav a:focus-visible {
  color: var(--ds-paper);
  background: rgba(255, 253, 247, 0.16);
}

.site-header .btn-lime,
.site-header .menu-button {
  color: var(--ds-ink);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.98), rgba(255, 204, 71, 0.94));
  border-color: rgba(255, 253, 247, 0.42);
  box-shadow:
    0 13px 30px rgba(143, 47, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.site-header.scrolled .btn-lime,
.site-header.scrolled .menu-button,
.site-header.menu-open .btn-lime,
.site-header.menu-open .menu-button {
  box-shadow:
    0 12px 30px rgba(143, 47, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

@media (max-width: 860px) {
  .site-header {
    top: 10px;
    width: min(calc(100% - 40px), var(--container));
    min-height: 68px;
    padding: 8px 10px 8px 14px;
    border-radius: 26px;
  }

  .site-header:not(.scrolled):not(.menu-open) {
    border-radius: 28px 28px 24px 24px;
  }

  .site-header.scrolled,
  .site-header.menu-open {
    top: 10px;
    width: min(calc(100% - 40px), var(--container));
    border-radius: 28px 28px 24px 24px;
  }
}

/* 43. Premium story stack cards and header CTA contrast */
.story-steps {
  perspective: 1200px;
}

.story-step,
.story-step.near-before,
.story-step.near-after,
.story-step.far-before,
.story-step.far-after {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.68), rgba(255, 225, 199, 0.46)),
    rgba(255, 253, 247, 0.34);
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(36, 24, 18, 0.18),
    0 1px 0 rgba(255, 253, 247, 0.62) inset,
    0 -1px 0 rgba(182, 64, 28, 0.12) inset;
  backdrop-filter: blur(22px) saturate(1.18);
  -webkit-backdrop-filter: blur(22px) saturate(1.18);
}

.story-step::before {
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.22), transparent 46%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 253, 247, 0.08) 0,
      rgba(255, 253, 247, 0.08) 1px,
      transparent 1px,
      transparent 34px
    );
  opacity: 0.78;
}

.story-step::after {
  right: -13%;
  bottom: -34%;
  width: 42%;
  background:
    radial-gradient(circle at 34% 30%, rgba(247, 183, 51, 0.94), rgba(239, 79, 0, 0.74) 58%, rgba(182, 64, 28, 0.86));
  opacity: 0.36;
  filter: blur(0.2px);
}

.story-step.active {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.76), rgba(255, 232, 211, 0.54)),
    rgba(255, 253, 247, 0.42);
  border-color: rgba(255, 253, 247, 0.72);
  box-shadow:
    0 34px 92px rgba(36, 24, 18, 0.24),
    0 0 0 1px rgba(247, 183, 51, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.82) inset,
    0 -1px 0 rgba(182, 64, 28, 0.12) inset;
}

.story-step.active::after {
  opacity: 0.62;
}

.story-step h3,
.story-step.active h3 {
  color: var(--readable-ink);
  text-shadow: none;
}

.story-step p,
.story-step.active p {
  color: var(--readable-muted);
}

.story-step span {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.62);
  box-shadow:
    0 12px 24px rgba(143, 47, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.52);
}

.story-step.active span {
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, #FFE07A, #F7B733);
  border-color: rgba(255, 253, 247, 0.74);
}

.site-header .btn-lime {
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(247, 183, 51, 0.98), rgba(255, 204, 71, 0.94));
  border-color: rgba(255, 253, 247, 0.44);
  text-shadow:
    0 1px 3px rgba(36, 24, 18, 0.48),
    0 2px 14px rgba(143, 47, 23, 0.24);
}

.site-header .btn-lime::after {
  color: var(--readable-paper);
  background: #B6401C;
}

/* 44. Compact waitlist assurance card and orange CTA text */
.waitlist-form .contact-note,
.form-note.contact-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: 100%;
  min-height: auto;
  margin: 2px 0 0;
  padding: 14px 16px;
  color: var(--readable-ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.72), rgba(255, 236, 211, 0.44)),
    rgba(255, 253, 247, 0.34);
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 18px;
  box-shadow:
    0 16px 34px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(182, 64, 28, 0.1);
  backdrop-filter: blur(18px) saturate(1.16);
  -webkit-backdrop-filter: blur(18px) saturate(1.16);
  font-size: clamp(0.82rem, 0.92vw, 0.96rem);
  font-weight: 800;
  line-height: 1.38;
  text-wrap: pretty;
}

.waitlist-form .contact-note::before,
.form-note.contact-note::before {
  display: grid;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  place-items: center;
  content: "";
  background:
    radial-gradient(circle, #FFFDF7 0 3px, transparent 3.5px),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 999px;
  box-shadow:
    0 8px 16px rgba(143, 47, 23, 0.16),
    0 0 0 5px rgba(247, 183, 51, 0.14);
}

.btn.btn-lime,
.site-header .btn-lime,
.hero-card .btn-lime,
.waitlist-form .btn.btn-lime,
.finder-result .btn.btn-lime {
  color: var(--readable-brand);
  text-shadow: none;
}

.btn.btn-lime:hover,
.site-header .btn-lime:hover,
.hero-card .btn-lime:hover,
.waitlist-form .btn.btn-lime:hover,
.finder-result .btn.btn-lime:hover {
  color: #8F2F17;
}

/* 45. Premium meal finder recommendation card */
.finder-result {
  position: relative;
  justify-content: flex-end;
  gap: 0;
  min-height: clamp(520px, 58vw, 760px);
  padding: clamp(42px, 5.2vw, 72px) clamp(34px, 4.8vw, 68px);
  overflow: hidden;
  color: var(--readable-paper);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 211, 90, 0.36), transparent 30%),
    radial-gradient(circle at 20% 88%, rgba(255, 253, 247, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(239, 79, 0, 0.98) 0%, rgba(217, 90, 27, 0.96) 48%, rgba(143, 47, 23, 0.96) 100%);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 30px;
  box-shadow:
    0 30px 86px rgba(36, 24, 18, 0.22),
    inset 0 1px 0 rgba(255, 253, 247, 0.34),
    inset 0 -1px 0 rgba(143, 47, 23, 0.26);
  isolation: isolate;
}

.finder-result::before {
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(120deg, rgba(255, 253, 247, 0.11), transparent 38%),
    linear-gradient(rgba(255, 253, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.055) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  opacity: 0.92;
}

.finder-result::after {
  position: absolute;
  right: -18%;
  top: 6%;
  z-index: 0;
  width: 56%;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at 32% 30%, rgba(255, 253, 247, 0.28), transparent 12%),
    radial-gradient(circle, rgba(255, 198, 65, 0.58), rgba(239, 79, 0, 0.08) 62%, transparent 70%);
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 999px;
  filter: blur(0.2px);
  opacity: 0.88;
}

.finder-result > * {
  position: relative;
  z-index: 1;
}

.finder-result > span {
  min-height: 34px;
  padding: 0 16px;
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.44);
  box-shadow:
    0 14px 30px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
  letter-spacing: 0.06em;
}

.finder-result h3 {
  max-width: 10ch;
  margin: 24px 0 18px;
  color: var(--readable-paper);
  font-size: clamp(3.1rem, 5.3vw, 5.6rem);
  line-height: 0.92;
  text-shadow: 0 4px 28px rgba(36, 24, 18, 0.22);
}

.finder-result p:not(.contact-note) {
  max-width: 580px;
  color: rgba(255, 253, 247, 0.92);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.48;
  text-shadow: 0 2px 18px rgba(36, 24, 18, 0.16);
}

.finder-result .btn.btn-lime {
  width: min(100%, 540px);
  min-height: 62px;
  margin-top: clamp(28px, 4vw, 42px);
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.96));
  border: 1px solid rgba(255, 253, 247, 0.48);
  box-shadow:
    0 18px 44px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.finder-result .btn.btn-lime::after {
  color: var(--readable-paper);
  background: #B6401C;
}

.finder-result .contact-note {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  width: min(100%, 540px);
  min-height: auto;
  margin-top: 14px;
  padding: 12px 16px;
  color: var(--readable-ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.78), rgba(255, 242, 224, 0.6)),
    rgba(255, 253, 247, 0.5);
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 18px;
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
  font-size: clamp(0.78rem, 0.9vw, 0.94rem);
  font-weight: 850;
  line-height: 1.34;
}

.finder-result .contact-note::before {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  content: "";
  background:
    radial-gradient(circle, #FFFDF7 0 3px, transparent 3.5px),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.72);
  border-radius: 999px;
  box-shadow:
    0 8px 16px rgba(143, 47, 23, 0.16),
    0 0 0 5px rgba(247, 183, 51, 0.16);
}

@media (max-width: 760px) {
  .finder-result {
    min-height: 500px;
    padding: 34px 24px;
    border-radius: 26px;
  }

  .finder-result h3 {
    font-size: clamp(2.65rem, 14vw, 4rem);
  }
}

/* 46. Premium footer closing panel */
.site-footer {
  grid-template-columns: minmax(280px, 0.34fr) minmax(0, 1fr) minmax(250px, 0.3fr);
  gap: clamp(28px, 4vw, 58px);
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: clamp(44px, 6vw, 86px) auto 0;
  padding: clamp(34px, 4.6vw, 62px);
  color: var(--readable-paper);
  background:
    radial-gradient(circle at 82% 14%, rgba(255, 211, 90, 0.28), transparent 28%),
    radial-gradient(circle at 9% 86%, rgba(255, 253, 247, 0.13), transparent 26%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 48%, #8F2F17 100%);
  border: 1px solid rgba(255, 253, 247, 0.24);
  border-bottom: 0;
  border-radius: clamp(30px, 4vw, 46px) clamp(30px, 4vw, 46px) 0 0;
  box-shadow:
    0 -18px 62px rgba(36, 24, 18, 0.12),
    0 28px 90px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 253, 247, 0.28);
}

.site-footer::before {
  left: 0.04em;
  bottom: -0.2em;
  opacity: 0.12;
  -webkit-text-stroke: 1px rgba(255, 253, 247, 0.42);
}

.site-footer::after {
  right: clamp(-72px, -3vw, -36px);
  top: clamp(-72px, -3.5vw, -32px);
  width: min(330px, 24vw);
  border-color: rgba(255, 253, 247, 0.08);
  box-shadow:
    inset 0 0 0 26px rgba(255, 253, 247, 0.045),
    0 0 80px rgba(255, 211, 90, 0.12);
}

.footer-brand-panel {
  position: relative;
  min-height: 430px;
  padding: clamp(22px, 2.6vw, 30px);
  background:
    linear-gradient(160deg, rgba(255, 253, 247, 0.13), rgba(255, 253, 247, 0.045)),
    rgba(143, 47, 23, 0.16);
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 253, 247, 0.28);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
}

.footer-brand {
  width: min(232px, 100%);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.96), rgba(255, 242, 224, 0.86));
  border: 1px solid rgba(255, 253, 247, 0.72);
  box-shadow:
    0 18px 40px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.footer-brand-visual {
  min-height: clamp(200px, 17vw, 250px);
  background:
    radial-gradient(circle at 54% 54%, rgba(239, 79, 0, 0.42), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.1), rgba(255, 253, 247, 0.035));
  border: 1px solid rgba(255, 253, 247, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.14),
    0 18px 42px rgba(36, 24, 18, 0.08);
}

.footer-brand-visual::before {
  border-color: rgba(255, 253, 247, 0.2);
}

.footer-brand-visual::after,
.footer-plate-core {
  background:
    radial-gradient(circle at 32% 28%, rgba(255, 211, 90, 0.26), transparent 30%),
    rgba(239, 79, 0, 0.62);
  border-color: rgba(255, 253, 247, 0.2);
}

.footer-plate-orbit {
  border-color: rgba(255, 253, 247, 0.16);
}

.footer-map-line {
  border-color: rgba(255, 211, 90, 0.5);
}

.footer-meal-chip {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.5);
  box-shadow:
    0 14px 28px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.footer-map-dot {
  background: #FFD35A;
  box-shadow: 0 0 0 8px rgba(255, 211, 90, 0.12);
}

.footer-brand-panel p {
  max-width: 250px;
  color: rgba(255, 253, 247, 0.86);
  font-weight: 760;
}

.footer-main {
  justify-content: center;
  padding-block: clamp(8px, 1.4vw, 18px);
}

.footer-eyebrow {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.46);
  box-shadow:
    0 14px 28px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.site-footer h2 {
  max-width: 620px;
  color: var(--readable-paper);
  font-size: clamp(3.25rem, 5vw, 5.65rem);
  line-height: 0.9;
  text-shadow: 0 4px 32px rgba(36, 24, 18, 0.2);
}

.footer-main > p:not(.footer-eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 247, 0.84);
  text-shadow: 0 2px 18px rgba(36, 24, 18, 0.14);
}

.footer-actions .btn-lime {
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.96));
  border: 1px solid rgba(255, 253, 247, 0.48);
  text-shadow: none;
}

.footer-actions .btn-lime::after {
  color: var(--readable-paper);
  background: #B6401C;
}

.footer-ghost-link {
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.13), rgba(255, 253, 247, 0.06));
  border-color: rgba(255, 253, 247, 0.28);
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-ghost-link:hover {
  color: var(--readable-paper);
  background: rgba(255, 253, 247, 0.18);
  border-color: rgba(255, 253, 247, 0.44);
}

.footer-side {
  align-content: center;
  gap: 22px;
  position: relative;
  z-index: 3;
}

.footer-status {
  padding: 20px 22px;
  color: var(--readable-ink);
  background:
    linear-gradient(135deg, rgba(255, 253, 247, 0.92), rgba(255, 236, 211, 0.86));
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 24px;
  box-shadow:
    0 20px 54px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.footer-status span {
  color: var(--readable-brand);
}

.footer-links {
  gap: 12px;
}

.footer-links a {
  min-height: 52px;
  padding: 0 18px;
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.14), rgba(255, 253, 247, 0.07));
  border-color: rgba(255, 253, 247, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.2),
    0 12px 28px rgba(36, 24, 18, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.footer-links a::after {
  content: "->";
  color: #FFD35A;
}

.footer-links a:hover {
  color: var(--readable-paper);
  background: rgba(255, 253, 247, 0.18);
  border-color: rgba(255, 253, 247, 0.4);
  transform: translateX(5px);
}

.footer-bottom {
  align-items: center;
  margin-top: clamp(18px, 2vw, 30px);
  padding-top: 24px;
  color: rgba(255, 253, 247, 0.84);
  border-top-color: rgba(255, 253, 247, 0.18);
}

.footer-bottom span {
  color: rgba(255, 253, 247, 0.9);
  font-weight: 850;
}

@media (max-width: 1060px) {
  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand-panel {
    min-height: 320px;
  }

  .footer-side {
    grid-template-columns: minmax(220px, 0.36fr) 1fr;
    align-items: stretch;
  }
}

@media (max-width: 720px) {
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
    padding: 24px;
  }

  .footer-brand-panel {
    display: flex;
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-brand {
    align-self: center;
  }

  .footer-brand-visual {
    min-height: 220px;
  }

  .footer-side {
    grid-template-columns: 1fr;
  }

  .site-footer h2 {
    max-width: 100%;
    font-size: 3.08rem;
    line-height: 0.94;
  }
}

/* 47. Premium all-packages configurator */
.plans-section {
  position: relative;
}

.package-builder {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(390px, 0.48fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  width: 100%;
  margin: clamp(26px, 4vw, 44px) auto 0;
}

.package-config,
.package-price-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 32px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.48), transparent 38%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.88), rgba(255, 247, 234, 0.76)),
    rgba(255, 253, 247, 0.86);
  box-shadow:
    0 30px 90px rgba(36, 24, 18, 0.11),
    0 8px 26px rgba(143, 47, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.08);
}

.package-config {
  display: grid;
  align-self: stretch;
  align-content: start;
  align-items: start;
  grid-auto-rows: max-content;
  gap: 16px;
  padding: clamp(18px, 2.5vw, 30px);
}

.package-config::before,
.package-price-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 16% 10%, rgba(247, 183, 51, 0.18), transparent 26%),
    linear-gradient(rgba(217, 90, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.025) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
  pointer-events: none;
}

.package-config > *,
.package-price-card > * {
  position: relative;
  z-index: 1;
}

.package-config-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 2px 2px;
}

.package-config-head span,
.price-card-top span {
  display: inline-flex;
  width: max-content;
  min-height: 34px;
  align-items: center;
  padding: 0 14px;
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.56);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(143, 47, 23, 0.12);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-config-head strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.4vw, 1.3rem);
}

.builder-step {
  display: grid;
  align-content: start;
  align-self: start;
  width: 100%;
  margin: 0;
  gap: 14px;
  padding: clamp(16px, 2vw, 22px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(255, 236, 211, 0.38));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 26px;
  box-shadow:
    0 16px 44px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.package-config section.builder-step {
  width: 100%;
  margin: 0;
  padding: clamp(16px, 2vw, 22px);
  scroll-margin-top: 0;
}

.builder-step-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}

.builder-step-heading span {
  display: inline-grid;
  min-width: 34px;
  height: 28px;
  place-items: center;
  color: var(--readable-brand);
  background: #FFE1C7;
  border: 1px solid rgba(182, 64, 28, 0.18);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
}

.builder-step-heading h3 {
  margin: 0;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.05rem, 1.6vw, 1.45rem);
}

.package-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.package-choice,
.package-mini-choice,
.duration-segment button,
.preference-strip button {
  font: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.package-choice {
  position: relative;
  display: grid;
  min-height: 128px;
  gap: 8px;
  align-content: end;
  padding: 18px;
  overflow: hidden;
  color: var(--readable-ink);
  text-align: left;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 44%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 234, 0.74));
  border: 1px solid rgba(217, 90, 27, 0.13);
  border-radius: 24px;
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease;
}

.package-choice::before {
  position: absolute;
  inset: -1px;
  content: "";
  background:
    radial-gradient(circle at var(--spot-x, 50%) var(--spot-y, 20%), rgba(247, 183, 51, 0.22), transparent 34%),
    linear-gradient(145deg, rgba(239, 79, 0, 0.06), transparent 54%);
  opacity: 0;
  transition: opacity 260ms ease;
  pointer-events: none;
}

.package-choice strong,
.package-choice small,
.choice-check {
  position: relative;
  z-index: 1;
}

.package-choice strong {
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
  line-height: 1.08;
}

.package-choice small {
  color: var(--readable-muted);
  font-weight: 760;
  line-height: 1.35;
}

.choice-check {
  position: absolute;
  top: 14px;
  right: 14px;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  border: 1px solid rgba(182, 64, 28, 0.2);
  border-radius: 50%;
  background: rgba(255, 253, 247, 0.72);
  transform: scale(0.92);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.choice-check::after {
  width: 9px;
  height: 5px;
  content: "";
  border-bottom: 2px solid var(--readable-paper);
  border-left: 2px solid var(--readable-paper);
  opacity: 0;
  transform: rotate(-45deg) translateY(-1px) scale(0.6);
  transition: opacity 200ms ease, transform 260ms ease;
}

.package-choice:hover {
  border-color: rgba(217, 90, 27, 0.26);
  box-shadow:
    0 20px 48px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  transform: translateY(-3px);
}

.package-choice:hover::before,
.package-choice.active::before {
  opacity: 1;
}

.package-choice.active {
  background:
    radial-gradient(circle at 82% 12%, rgba(247, 183, 51, 0.18), transparent 36%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.58), transparent 44%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 236, 211, 0.82));
  border-color: rgba(239, 79, 0, 0.36);
  box-shadow:
    0 22px 58px rgba(36, 24, 18, 0.12),
    0 0 0 1px rgba(247, 183, 51, 0.32),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.package-choice.active .choice-check {
  background: #B6401C;
  border-color: #B6401C;
  transform: scale(1);
}

.package-choice.active .choice-check::after {
  opacity: 1;
  transform: rotate(-45deg) translateY(-1px) scale(1);
}

.duration-segment,
.preference-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.duration-segment {
  padding: 6px;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
}

.duration-segment button,
.preference-strip button,
.package-mini-choice {
  min-height: 46px;
  padding: 0 18px;
  color: var(--readable-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 900;
  transition:
    transform 220ms cubic-bezier(0.16, 1, 0.3, 1),
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.duration-segment button:hover,
.preference-strip button:hover,
.package-mini-choice:hover {
  transform: translateY(-2px);
}

.duration-segment button.active,
.preference-strip button.active,
.package-mini-choice.active {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, #FFD35A, #F7B733);
  border-color: rgba(255, 253, 247, 0.5);
  box-shadow:
    0 12px 26px rgba(143, 47, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.package-panel {
  display: none;
  animation: packagePanelIn 360ms cubic-bezier(0.16, 1, 0.3, 1) both;
}

.package-panel.active {
  display: grid;
  align-content: start;
}

.individual-meal-grid,
.meal-row {
  display: grid;
  gap: 12px;
}

.meal-row {
  grid-template-columns: minmax(96px, 0.26fr) minmax(0, 1fr);
  align-items: center;
  padding: 12px;
  background: rgba(255, 253, 247, 0.68);
  border: 1px solid rgba(217, 90, 27, 0.11);
  border-radius: 20px;
}

.meal-row > strong {
  color: var(--readable-brand);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
}

.meal-row > div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.preference-strip {
  margin-top: 4px;
  padding: 12px;
  background: rgba(255, 253, 247, 0.68);
  border: 1px solid rgba(217, 90, 27, 0.11);
  border-radius: 22px;
}

.preference-strip > span {
  margin-right: auto;
  color: var(--readable-brand);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.package-helper {
  margin: 0;
  color: var(--readable-muted);
  font-weight: 780;
  line-height: 1.5;
}

.package-price-card {
  position: sticky;
  top: 120px;
  display: grid;
  align-self: stretch;
  align-content: start;
  gap: clamp(12px, 1.5vw, 16px);
  padding: clamp(22px, 2.5vw, 30px);
  color: var(--readable-paper);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.16), transparent 36%),
    radial-gradient(circle at 86% 12%, rgba(255, 211, 90, 0.26), transparent 34%),
    radial-gradient(circle at 8% 100%, rgba(255, 253, 247, 0.12), transparent 30%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 50%, #8F2F17 100%);
  border-color: rgba(255, 253, 247, 0.26);
  box-shadow:
    0 28px 86px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 253, 247, 0.28);
}

.package-price-card::before {
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.1), transparent 42%),
    linear-gradient(rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
}

.price-card-top {
  display: grid;
  gap: 12px;
}

.price-card-top strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.52rem, 2.15vw, 2.05rem);
  line-height: 1.02;
  text-shadow: 0 4px 26px rgba(36, 24, 18, 0.18);
}

.price-amount-wrap {
  display: grid;
  gap: 4px;
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.16), rgba(255, 253, 247, 0.07));
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.price-amount-wrap span,
.price-amount-wrap small,
.package-note {
  color: rgba(255, 253, 247, 0.78);
  font-weight: 800;
}

.price-amount-wrap strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.05rem, 4.7vw, 4.55rem);
  line-height: 0.96;
  letter-spacing: 0;
  transition: transform 220ms ease, opacity 220ms ease;
}

.package-price-card.is-updating .price-amount-wrap strong {
  opacity: 0.74;
  transform: translateY(-2px) scale(1.01);
}

.price-breakdown {
  display: grid;
  gap: 6px;
  margin: 0;
}

.price-breakdown div {
  display: grid;
  grid-template-columns: minmax(94px, 0.58fr) minmax(0, 1fr);
  align-items: baseline;
  gap: 14px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 253, 247, 0.14);
}

.price-breakdown dt {
  color: rgba(255, 253, 247, 0.68);
  font-weight: 800;
}

.price-breakdown dd {
  margin: 0;
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
  text-align: right;
}

.price-breakdown .price-savings-row {
  padding: 12px;
  background: rgba(255, 211, 90, 0.14);
  border: 1px solid rgba(255, 211, 90, 0.18);
  border-radius: 18px;
}

.package-cta {
  width: 100%;
  min-height: 54px;
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.96));
  border: 1px solid rgba(255, 253, 247, 0.48);
  box-shadow:
    0 18px 44px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
  animation: packageCtaPulse 3.6s ease-in-out infinite;
}

.package-cta::after {
  content: "->";
  margin-left: 10px;
  color: var(--readable-paper);
  background: #B6401C;
}

.package-note {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.45;
}

@keyframes packagePanelIn {
  from {
    opacity: 0;
    transform: translateY(8px) scale(0.99);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes packageCtaPulse {
  0%,
  100% {
    box-shadow:
      0 18px 44px rgba(36, 24, 18, 0.2),
      0 0 0 0 rgba(247, 183, 51, 0.2),
      inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }
  50% {
    box-shadow:
      0 22px 50px rgba(36, 24, 18, 0.23),
      0 0 0 8px rgba(247, 183, 51, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.44);
  }
}

@media (max-width: 1120px) {
  .package-builder {
    grid-template-columns: 1fr;
  }

  .package-price-card {
    position: relative;
    top: auto;
    align-self: start;
  }
}

@media (max-width: 760px) {
  .package-builder {
    width: 100%;
    gap: 16px;
  }

  .package-config,
  .package-price-card {
    border-radius: 26px;
  }

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

  .meal-row {
    grid-template-columns: 1fr;
  }

  .meal-row > div {
    justify-content: flex-start;
  }

  .duration-segment {
    border-radius: 24px;
  }

  .duration-segment button {
    flex: 1 1 92px;
  }

  .preference-strip > span {
    width: 100%;
  }

  .price-breakdown div {
    align-items: flex-start;
  }
}

/* 48. Hero first-meal offer */
.hero-offer {
  position: relative;
  display: grid;
  max-width: 570px;
  margin: clamp(16px, 1.8vw, 22px) 0 0;
  padding: clamp(14px, 1.8vw, 18px) clamp(16px, 2.2vw, 22px) clamp(15px, 1.8vw, 19px);
  overflow: hidden;
  color: var(--readable-paper);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.2), rgba(255, 253, 247, 0.06)),
    radial-gradient(circle at 92% 16%, rgba(255, 211, 90, 0.34), transparent 28%),
    rgba(36, 24, 18, 0.16);
  border: 1px solid rgba(255, 253, 247, 0.3);
  border-radius: 28px;
  box-shadow:
    0 22px 68px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 253, 247, 0.32);
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.hero-offer::before {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 42px;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at 35% 35%, #FFFDF7 0 10%, transparent 11%),
    radial-gradient(circle at 66% 34%, #C94118 0 15%, transparent 16%),
    radial-gradient(circle at 46% 66%, #F7B733 0 19%, transparent 20%),
    #FFF7E7;
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 50%;
  box-shadow: 0 14px 34px rgba(36, 24, 18, 0.18);
}

.hero-offer::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.16), transparent);
  opacity: 0.8;
  transform: translateX(-115%);
  animation: heroOfferSheen 5.4s ease-in-out infinite;
  pointer-events: none;
}

.hero-offer span,
.hero-offer strong,
.hero-offer p {
  position: relative;
  z-index: 1;
}

.hero-offer span {
  display: inline-flex;
  width: max-content;
  min-height: 28px;
  align-items: center;
  margin-bottom: 8px;
  padding: 0 12px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.55);
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(36, 24, 18, 0.16);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-offer strong {
  max-width: calc(100% - 58px);
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  font-weight: 950;
  line-height: 1.04;
  text-shadow: 0 3px 20px rgba(36, 24, 18, 0.2);
}

.hero-copy .hero-offer p {
  max-width: 500px;
  margin: 7px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(0.9rem, 1.32vw, 0.98rem);
  font-weight: 650;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(36, 24, 18, 0.18);
}

.hero-offer + .hero-ctas {
  margin-top: clamp(16px, 2vw, 22px);
}

@keyframes heroOfferSheen {
  0%,
  42% {
    transform: translateX(-115%);
  }
  62%,
  100% {
    transform: translateX(115%);
  }
}

@media (max-width: 1120px) {
  .hero-offer {
    max-width: 560px;
  }
}

@media (max-width: 760px) {
  .hero-offer {
    border-radius: 24px;
  }

  .hero-offer::before {
    width: 36px;
  }

  .hero-offer strong {
    max-width: calc(100% - 46px);
  }
}

/* 49. Premium live waitlist count */
section.countdown-section {
  grid-template-areas:
    "launch-copy countdown"
    "launch-copy waitlist-count";
  align-items: center;
}

.countdown-section > div:not(.countdown-ribbon):not(.countdown-grid) {
  grid-area: launch-copy;
}

.countdown-grid {
  grid-area: countdown;
}

.waitlist-count-card {
  position: relative;
  z-index: 2;
  grid-area: waitlist-count;
  display: grid;
  grid-template-columns: minmax(150px, 0.4fr) minmax(0, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  align-items: center;
  align-self: start;
  min-height: clamp(128px, 10vw, 158px);
  margin-top: clamp(14px, 2vw, 20px);
  padding: clamp(18px, 2.4vw, 26px);
  overflow: hidden;
  color: var(--readable-paper);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.18), rgba(255, 253, 247, 0.055)),
    radial-gradient(circle at 92% 18%, rgba(255, 211, 90, 0.32), transparent 30%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 52%, #8F2F17 100%);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 30px;
  box-shadow:
    0 28px 86px rgba(36, 24, 18, 0.15),
    inset 0 1px 0 rgba(255, 253, 247, 0.3);
  backdrop-filter: blur(18px) saturate(1.14);
  -webkit-backdrop-filter: blur(18px) saturate(1.14);
}

.waitlist-count-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.16), transparent);
  background-size: 28px 28px, 28px 28px, auto;
  opacity: 0.9;
  pointer-events: none;
}

.waitlist-count-card::after {
  position: absolute;
  top: 18px;
  right: 20px;
  display: inline-block;
  width: 12px;
  height: 12px;
  content: "";
  background: #FFD35A;
  border: 3px solid rgba(255, 253, 247, 0.78);
  border-radius: 50%;
  box-shadow:
    0 0 0 7px rgba(255, 211, 90, 0.14),
    0 0 30px rgba(255, 211, 90, 0.42);
  animation: waitlistLivePulse 2.1s ease-in-out infinite;
}

.waitlist-count-card > * {
  position: relative;
  z-index: 1;
}

.waitlist-count-card div {
  display: grid;
  gap: 4px;
}

.waitlist-count-card span {
  display: inline-flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.54);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.waitlist-count-card strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.35rem, 6vw, 5.4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 6px 28px rgba(36, 24, 18, 0.2);
}

.waitlist-count-card p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  font-weight: 850;
  line-height: 1.28;
}

.waitlist-count-card.is-counting {
  animation: waitlistCountLift 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

.waitlist-count-card.is-counting strong {
  animation: waitlistNumberPop 620ms cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes waitlistLivePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.16);
    opacity: 1;
  }
}

@keyframes waitlistCountLift {
  0%,
  100% {
    transform: translateY(0);
  }
  42% {
    transform: translateY(-5px);
  }
}

@keyframes waitlistNumberPop {
  0%,
  100% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.045);
  }
}

@media (max-width: 980px) {
  section.countdown-section {
    grid-template-areas:
      "launch-copy"
      "countdown"
      "waitlist-count";
  }
}

@media (max-width: 760px) {
  .waitlist-count-card {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .waitlist-count-card strong {
    font-size: clamp(3rem, 18vw, 4.6rem);
  }
}

/* 50. Transparent subscription wallet */
.wallet-section {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(320px, 0.84fr) minmax(420px, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: center;
  min-height: clamp(620px, 52vw, 760px);
  padding: clamp(42px, 5vw, 74px);
  overflow: hidden;
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 86% 12%, rgba(255, 211, 90, 0.26), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(239, 79, 0, 0.1), transparent 32%),
    linear-gradient(rgba(217, 90, 27, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 234, 0.72));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow:
    0 34px 110px rgba(36, 24, 18, 0.1),
    0 10px 34px rgba(143, 47, 23, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.wallet-section::before,
.wallet-section::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.wallet-section::before {
  inset: 1px;
  z-index: -1;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.66), transparent 38%),
    radial-gradient(circle at 74% 20%, rgba(255, 211, 90, 0.12), transparent 28%);
  border-radius: inherit;
}

.wallet-section::after {
  right: -8%;
  bottom: -20%;
  z-index: 0;
  width: clamp(280px, 30vw, 520px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 90, 0.2), rgba(239, 79, 0, 0.08) 44%, transparent 68%),
    repeating-radial-gradient(circle at 50% 50%, rgba(143, 47, 23, 0.07) 0 2px, transparent 2px 20px);
  border-radius: 50%;
  opacity: 0.66;
}

.wallet-section > * {
  position: relative;
  z-index: 1;
}

.wallet-copy {
  max-width: 620px;
}

.wallet-copy h2 {
  max-width: 10.5ch;
  margin: 18px 0 0;
  color: #241812;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.55rem, 5.3vw, 5.2rem);
  font-weight: 950;
  line-height: 0.96;
  letter-spacing: 0;
  text-wrap: balance;
}

.wallet-copy > p {
  max-width: 610px;
  margin: clamp(18px, 2.2vw, 26px) 0 0;
  color: rgba(79, 64, 56, 0.82);
  font-size: clamp(1.03rem, 1.45vw, 1.22rem);
  font-weight: 680;
  line-height: 1.62;
}

.wallet-calculator-panel {
  display: grid;
  gap: 18px;
  margin-top: clamp(22px, 3vw, 34px);
  padding: clamp(18px, 2vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 245, 230, 0.58)),
    radial-gradient(circle at 90% 12%, rgba(255, 211, 90, 0.22), transparent 32%);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px) saturate(1.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.1);
}

.wallet-calculator-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.wallet-calculator-head span,
.wallet-duration-row > span {
  color: var(--readable-brand);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wallet-calculator-head strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.4vw, 1.25rem);
  font-weight: 950;
  line-height: 1.08;
  text-align: right;
}

.wallet-control {
  display: grid;
  gap: 10px;
}

.wallet-control > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: rgba(79, 64, 56, 0.8);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 900;
}

.wallet-control output {
  display: inline-flex;
  min-width: 92px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  color: #241812;
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: 999px;
  box-shadow:
    0 10px 24px rgba(217, 90, 27, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
  font-weight: 950;
}

.wallet-control input[type="range"] {
  --track-fill: 40%;
  width: 100%;
  height: 16px;
  margin: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  background:
    linear-gradient(90deg, #EF4F00 var(--track-fill), rgba(217, 90, 27, 0.12) var(--track-fill));
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 4px rgba(36, 24, 18, 0.08),
    0 8px 20px rgba(36, 24, 18, 0.04);
}

.wallet-control input[type="range"]::-webkit-slider-thumb {
  width: 28px;
  aspect-ratio: 1;
  appearance: none;
  -webkit-appearance: none;
  background:
    radial-gradient(circle at 38% 32%, #FFFDF7 0 18%, transparent 19%),
    linear-gradient(145deg, #FFD35A, #EF4F00);
  border: 4px solid #FFFDF7;
  border-radius: 50%;
  box-shadow:
    0 12px 30px rgba(217, 90, 27, 0.26),
    0 0 0 7px rgba(255, 211, 90, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wallet-control input[type="range"]::-moz-range-thumb {
  width: 20px;
  height: 20px;
  background: linear-gradient(145deg, #FFD35A, #EF4F00);
  border: 4px solid #FFFDF7;
  border-radius: 50%;
  box-shadow:
    0 12px 30px rgba(217, 90, 27, 0.26),
    0 0 0 7px rgba(255, 211, 90, 0.16);
}

.wallet-control input[type="range"]:hover::-webkit-slider-thumb,
.wallet-control input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow:
    0 14px 34px rgba(217, 90, 27, 0.32),
    0 0 0 10px rgba(255, 211, 90, 0.2);
  transform: scale(1.08);
}

.wallet-duration-row {
  display: grid;
  grid-template-columns: 1fr repeat(3, auto);
  gap: 10px;
  align-items: center;
  padding: 8px;
  background: rgba(255, 253, 247, 0.64);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 999px;
}

.wallet-duration-row > span {
  padding-left: 10px;
}

.wallet-duration-row button {
  min-height: 38px;
  padding: 0 14px;
  color: rgba(79, 64, 56, 0.78);
  background: transparent;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: 950 0.84rem/1 "Inter", system-ui, sans-serif;
  transition:
    background 180ms ease,
    color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.wallet-duration-row button:hover,
.wallet-duration-row button:focus-visible {
  color: #241812;
  transform: translateY(-1px);
}

.wallet-duration-row button.active {
  color: #241812;
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  box-shadow:
    0 12px 26px rgba(217, 90, 27, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.wallet-trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 2.8vw, 34px);
}

.wallet-trust-grid span {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(255, 244, 229, 0.58));
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.86rem;
  font-weight: 900;
}

.wallet-trust-grid span::before {
  width: 9px;
  aspect-ratio: 1;
  content: "";
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 3px solid rgba(255, 253, 247, 0.78);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 211, 90, 0.12);
}

.wallet-demo-btn {
  width: max-content;
  min-width: 206px;
  margin-top: clamp(24px, 3vw, 38px);
}

.wallet-demo-btn::after {
  content: "→";
  margin-left: 10px;
  color: var(--readable-paper);
  background: #B6401C;
}

.wallet-showcase {
  display: grid;
  gap: clamp(14px, 1.8vw, 20px);
}

.wallet-card,
.wallet-breakdown,
.wallet-explainer {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), transparent 42%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.84), rgba(255, 240, 220, 0.66));
  border: 1px solid rgba(255, 255, 255, 0.44);
  box-shadow:
    0 26px 78px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.wallet-card {
  display: grid;
  gap: clamp(18px, 2.2vw, 26px);
  min-height: clamp(520px, 42vw, 620px);
  padding: clamp(24px, 3vw, 36px);
  color: var(--readable-paper);
  background:
    linear-gradient(rgba(255, 253, 247, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 86% 14%, rgba(255, 211, 90, 0.34), transparent 30%),
    radial-gradient(circle at 12% 92%, rgba(255, 253, 247, 0.14), transparent 34%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 52%, #8F2F17 100%);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
  border-color: rgba(255, 253, 247, 0.24);
  border-radius: 32px;
  box-shadow:
    0 34px 98px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 253, 247, 0.32);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease,
    filter 320ms ease;
}

.wallet-card::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 20% 22%, rgba(255, 253, 247, 0.18), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.14), transparent);
  opacity: 0.76;
  pointer-events: none;
}

.wallet-card:hover {
  box-shadow:
    0 42px 118px rgba(36, 24, 18, 0.22),
    0 0 0 8px rgba(255, 211, 90, 0.08),
    inset 0 1px 0 rgba(255, 253, 247, 0.36);
  transform: translateY(-6px);
}

.wallet-card.is-calculating {
  filter: saturate(1.08) brightness(1.02);
}

.wallet-card > * {
  position: relative;
  z-index: 1;
}

.wallet-card-top,
.wallet-progress-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.wallet-card-top div {
  display: grid;
  gap: 4px;
}

.wallet-card-top span,
.wallet-balance-hero span,
.wallet-stat-grid span,
.wallet-progress-label span,
.wallet-explainer strong {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.wallet-card-top span,
.wallet-balance-hero span,
.wallet-stat-grid span,
.wallet-progress-label span {
  color: rgba(255, 253, 247, 0.72);
  font-size: 0.76rem;
}

.wallet-card-top strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2vw, 1.72rem);
  font-weight: 950;
  line-height: 1.02;
}

.wallet-card-top small {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 0 12px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.48);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(36, 24, 18, 0.16);
  font-weight: 950;
}

.wallet-balance-hero {
  display: grid;
  gap: 6px;
  padding: clamp(20px, 2.5vw, 28px);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.17), rgba(255, 253, 247, 0.065));
  border: 1px solid rgba(255, 253, 247, 0.2);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.18);
}

.wallet-balance-hero strong {
  color: #FFD35A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(4rem, 7vw, 6.4rem);
  font-weight: 950;
  line-height: 0.9;
  text-shadow: 0 10px 34px rgba(36, 24, 18, 0.18);
  transition: transform 220ms ease, color 220ms ease;
}

.wallet-card.is-calculating .wallet-balance-hero strong {
  color: #FFF1A8;
  transform: scale(1.018);
}

.wallet-balance-hero small {
  color: rgba(255, 253, 247, 0.78);
  font-weight: 760;
}

.wallet-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.wallet-stat-grid div {
  display: grid;
  gap: 8px;
  min-height: 96px;
  align-content: center;
  padding: 16px;
  background: rgba(255, 253, 247, 0.11);
  border: 1px solid rgba(255, 253, 247, 0.14);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.12);
}

.wallet-stat-grid strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.76rem);
  font-weight: 950;
  line-height: 1;
}

.wallet-progress-panel {
  display: grid;
  gap: 12px;
}

.wallet-progress-label strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
}

.wallet-progress-track {
  position: relative;
  height: 18px;
  overflow: hidden;
  background: rgba(36, 24, 18, 0.28);
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 999px;
  box-shadow: inset 0 2px 10px rgba(36, 24, 18, 0.26);
}

.wallet-progress-track span {
  position: absolute;
  inset: 2px auto 2px 2px;
  width: var(--wallet-progress, 40%);
  background:
    linear-gradient(90deg, #FFD35A, #F7B733 62%, #FFF3B8);
  border-radius: inherit;
  box-shadow:
    0 0 22px rgba(255, 211, 90, 0.44),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform-origin: left center;
}

.wallet-progress-track span::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.62), transparent);
  transform: translateX(-100%);
  animation: walletProgressShine 2.4s ease-in-out infinite;
}

.wallet-breakdown {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 12px;
  align-items: center;
  padding: clamp(16px, 2vw, 22px);
  border-radius: 28px;
}

.wallet-breakdown.is-calculating {
  box-shadow:
    0 30px 86px rgba(36, 24, 18, 0.12),
    0 0 0 7px rgba(255, 211, 90, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.wallet-breakdown div {
  display: grid;
  gap: 5px;
  min-height: 78px;
  place-items: center;
  padding: 12px;
  text-align: center;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(217, 90, 27, 0.08);
  border-radius: 20px;
}

.wallet-breakdown span {
  color: var(--readable-brand);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 950;
  line-height: 1;
}

.wallet-breakdown small {
  color: rgba(79, 64, 56, 0.74);
  font-weight: 800;
  line-height: 1.25;
}

.wallet-breakdown i {
  color: var(--readable-brand);
  font-style: normal;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 950;
}

.wallet-explainer {
  padding: clamp(18px, 2.2vw, 24px);
  border-radius: 26px;
}

.wallet-explainer strong {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-radius: 999px;
  font-size: 0.72rem;
}

.wallet-explainer p {
  max-width: 640px;
  margin: 14px 0 0;
  color: rgba(79, 64, 56, 0.82);
  font-size: clamp(0.96rem, 1.15vw, 1.04rem);
  font-weight: 680;
  line-height: 1.64;
}

@keyframes walletProgressShine {
  0%,
  32% {
    transform: translateX(-110%);
  }

  72%,
  100% {
    transform: translateX(110%);
  }
}

.wallet-section .wallet-card,
.wallet-section .wallet-calculator-panel,
.wallet-section .wallet-breakdown,
.wallet-section .wallet-explainer,
.wallet-section .wallet-trust-grid span {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-section.in-view .wallet-card,
.wallet-section.in-view .wallet-calculator-panel,
.wallet-section.in-view .wallet-breakdown,
.wallet-section.in-view .wallet-explainer,
.wallet-section.in-view .wallet-trust-grid span {
  opacity: 1;
  transform: translateY(0);
}

.wallet-section.in-view .wallet-breakdown {
  transition-delay: 160ms;
}

.wallet-section.in-view .wallet-explainer {
  transition-delay: 260ms;
}

.wallet-section.in-view .wallet-calculator-panel {
  transition-delay: 80ms;
}

.wallet-section.in-view .wallet-trust-grid span:nth-child(1) {
  transition-delay: 80ms;
}

.wallet-section.in-view .wallet-trust-grid span:nth-child(2) {
  transition-delay: 150ms;
}

.wallet-section.in-view .wallet-trust-grid span:nth-child(3) {
  transition-delay: 220ms;
}

.wallet-section .wallet-progress-track span {
  transform: scaleX(0);
  transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1) 220ms;
}

.wallet-section.in-view .wallet-progress-track span {
  transform: scaleX(1);
}

@media (max-width: 1120px) {
  .wallet-section {
    grid-template-columns: 1fr;
  }

  .wallet-copy {
    max-width: 760px;
  }

  .wallet-copy h2 {
    max-width: 11ch;
  }
}

@media (max-width: 760px) {
  .wallet-section {
    min-height: 0;
    padding: 22px;
  }

  .wallet-copy h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.35rem);
  }

  .wallet-demo-btn {
    width: 100%;
  }

  .wallet-card {
    min-height: 0;
    padding: 22px;
    border-radius: 26px;
  }

  .wallet-calculator-panel {
    border-radius: 24px;
  }

  .wallet-calculator-head,
  .wallet-control > span {
    align-items: flex-start;
    flex-direction: column;
  }

  .wallet-calculator-head strong {
    text-align: left;
  }

  .wallet-duration-row {
    grid-template-columns: repeat(3, 1fr);
    border-radius: 24px;
  }

  .wallet-duration-row > span {
    grid-column: 1 / -1;
    padding-left: 8px;
  }

  .wallet-card-top,
  .wallet-progress-label {
    align-items: flex-start;
    flex-direction: column;
  }

  .wallet-balance-hero strong {
    font-size: clamp(3.35rem, 17vw, 4.65rem);
  }

  .wallet-stat-grid,
  .wallet-breakdown {
    grid-template-columns: 1fr;
  }

  .wallet-breakdown i {
    transform: rotate(90deg);
  }

  .wallet-trust-grid span {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wallet-section .wallet-card,
  .wallet-section .wallet-calculator-panel,
  .wallet-section .wallet-breakdown,
  .wallet-section .wallet-explainer,
  .wallet-section .wallet-trust-grid span,
  .wallet-section .wallet-progress-track span {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* 51. Premium business cards */
.business-section {
  position: relative;
  isolation: isolate;
}

.business-section::before {
  position: absolute;
  inset: clamp(260px, 24vw, 340px) 4% auto;
  z-index: -1;
  height: clamp(220px, 24vw, 340px);
  content: "";
  background:
    radial-gradient(circle at 24% 46%, rgba(255, 211, 90, 0.13), transparent 42%),
    radial-gradient(circle at 74% 42%, rgba(239, 79, 0, 0.09), transparent 46%),
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.36), transparent);
  filter: blur(28px);
  opacity: 0.6;
  pointer-events: none;
}

.business-section .section-heading {
  margin-bottom: 0;
}

.business-section .section-heading h2 {
  max-width: 780px;
  font-size: clamp(2.3rem, 5.8vw, 5rem);
  line-height: 0.94;
}

.business-section .section-heading p:not(.eyebrow) {
  max-width: 720px;
  font-size: clamp(1.02rem, 1.4vw, 1.18rem);
  line-height: 1.5;
}

.business-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(18px, 3vw, 34px);
  align-items: stretch;
  margin-top: clamp(30px, 4.5vw, 52px);
}

.business-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  gap: clamp(18px, 2.2vw, 26px);
  min-height: clamp(500px, 38vw, 620px);
  padding: clamp(28px, 3.4vw, 46px);
  overflow: hidden;
  color: var(--readable-ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 42%),
    radial-gradient(circle at 86% 8%, rgba(255, 211, 90, 0.15), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.86), rgba(255, 247, 234, 0.72));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  box-shadow:
    0 30px 90px rgba(36, 24, 18, 0.1),
    0 10px 30px rgba(143, 47, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
  backdrop-filter: blur(20px) saturate(1.12);
  -webkit-backdrop-filter: blur(20px) saturate(1.12);
  transition:
    transform 320ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 320ms ease,
    border-color 320ms ease;
}

.business-card::before {
  position: absolute;
  inset: 1px;
  content: "";
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.34), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 31px;
  opacity: 0.58;
  pointer-events: none;
  transition: opacity 320ms ease, border-color 320ms ease;
}

.business-card::after {
  position: absolute;
  right: -18%;
  bottom: -24%;
  width: min(320px, 40vw);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 211, 90, 0.34), rgba(239, 79, 0, 0.12) 46%, transparent 68%);
  border-radius: 50%;
  opacity: 0.56;
  pointer-events: none;
  transition: transform 320ms ease, opacity 320ms ease;
}

.business-card > * {
  position: relative;
  z-index: 1;
}

.business-card:hover {
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 38px 110px rgba(36, 24, 18, 0.15),
    0 16px 42px rgba(143, 47, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-8px);
}

.business-card:hover::before {
  border-color: rgba(255, 255, 255, 0.22);
  opacity: 0.76;
}

.business-card:hover::after {
  opacity: 0.72;
  transform: translate3d(-4%, -3%, 0) scale(1.04);
}

.business-icon {
  display: grid;
  width: clamp(72px, 7vw, 88px);
  aspect-ratio: 1;
  place-items: center;
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.88), rgba(255, 235, 202, 0.58)),
    radial-gradient(circle at 28% 20%, rgba(255, 211, 90, 0.92), transparent 42%);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 26px;
  box-shadow:
    0 18px 44px rgba(143, 47, 23, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.business-icon svg {
  width: 42px;
  height: 42px;
}

.business-card-copy {
  display: grid;
  align-content: start;
  gap: 16px;
}

.business-card-copy h3 {
  max-width: 620px;
  margin: 0;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.5rem, 2.1vw, 1.8rem);
  font-weight: 950;
  line-height: 1.04;
  letter-spacing: 0;
}

.business-card-copy p {
  max-width: 680px;
  margin: 0;
  color: var(--readable-muted);
  font-size: clamp(1rem, 1.25vw, 1.12rem);
  font-weight: 720;
  line-height: 1.65;
}

.business-contact-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: end;
}

.business-contact-row a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--readable-ink);
  text-decoration: none;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.74), rgba(255, 247, 234, 0.52));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.64);
  font-size: 0.94rem;
  font-weight: 860;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.business-contact-row a:hover {
  border-color: rgba(217, 90, 27, 0.24);
  box-shadow:
    0 12px 26px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: translateY(-2px);
}

.business-button {
  display: inline-flex;
  grid-row: 4;
  width: max-content;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  align-self: end;
  padding: 0 24px;
  color: var(--readable-paper);
  text-decoration: none;
  background:
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 52%, #8F2F17 100%);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 999px;
  box-shadow:
    0 18px 42px rgba(143, 47, 23, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 950;
  letter-spacing: 0;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 260ms ease,
    filter 260ms ease;
}

.business-button::after {
  display: grid;
  width: 28px;
  height: 28px;
  margin-left: 12px;
  place-items: center;
  color: #B6401C;
  content: "->";
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-radius: 50%;
  font-size: 0.86rem;
  line-height: 1;
  transition: transform 260ms ease;
}

.business-button:hover {
  box-shadow:
    0 24px 54px rgba(143, 47, 23, 0.24),
    0 0 0 7px rgba(247, 183, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  filter: saturate(1.08);
  transform: translateY(-3px);
}

.business-button:hover::after {
  transform: translateX(3px);
}

@media (max-width: 980px) {
  .business-card-grid {
    grid-template-columns: 1fr;
  }

  .business-card {
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .business-card {
    gap: 18px;
    padding: 24px;
    border-radius: 28px;
  }

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

  .business-contact-row a,
  .business-button {
    justify-content: center;
  }
}

/* 51. Premium launch and business polish */
section.countdown-section {
  position: relative;
  grid-template-columns: minmax(360px, 0.74fr) minmax(460px, 1fr);
  min-height: clamp(600px, 52vw, 760px);
  padding-block: clamp(70px, 7vw, 112px);
  color: var(--readable-paper);
  background:
    radial-gradient(circle at 86% 10%, rgba(255, 211, 90, 0.22), transparent 30%),
    radial-gradient(circle at 16% 100%, rgba(255, 253, 247, 0.18), transparent 34%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 48%, #8F2F17 100%);
  border-color: rgba(255, 253, 247, 0.18);
  box-shadow:
    0 38px 110px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.3);
}

section.countdown-section::before {
  position: absolute;
  inset: 1px;
  z-index: 0;
  content: "";
  background:
    linear-gradient(rgba(255, 253, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.032) 1px, transparent 1px),
    radial-gradient(circle at 60% 52%, rgba(255, 253, 247, 0.14), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
  border-radius: inherit;
  pointer-events: none;
}

section.countdown-section::after {
  position: absolute;
  top: clamp(34px, 4vw, 58px);
  right: clamp(30px, 5vw, 86px);
  z-index: 1;
  width: clamp(110px, 12vw, 184px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 90, 0.2), transparent 60%);
  border: 18px solid rgba(255, 253, 247, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.countdown-section > div:not(.countdown-ribbon):not(.countdown-grid),
.countdown-grid,
.waitlist-count-card {
  position: relative;
  z-index: 2;
}

.countdown-section .eyebrow {
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-color: rgba(255, 253, 247, 0.42);
  box-shadow: 0 18px 38px rgba(36, 24, 18, 0.12);
}

.countdown-section h2 {
  max-width: 8.8ch;
  color: var(--readable-paper);
  text-shadow: 0 8px 34px rgba(36, 24, 18, 0.18);
}

.countdown-lede {
  max-width: 520px;
  margin: 20px 0 0;
  color: rgba(255, 253, 247, 0.82);
  font-size: clamp(1.03rem, 1.5vw, 1.28rem);
  font-weight: 720;
  line-height: 1.52;
}

.countdown-grid {
  gap: clamp(14px, 1.7vw, 22px);
}

.countdown-grid div {
  position: relative;
  min-height: clamp(140px, 13vw, 178px);
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.78));
  border-color: rgba(255, 253, 247, 0.42);
  border-radius: 28px;
  box-shadow:
    0 24px 70px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(16px) saturate(1.1);
  -webkit-backdrop-filter: blur(16px) saturate(1.1);
}

.countdown-grid div::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 82% 16%, rgba(255, 211, 90, 0.22), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.5), transparent 42%);
  opacity: 0.86;
  pointer-events: none;
}

.countdown-grid strong,
.countdown-grid span {
  position: relative;
  z-index: 1;
}

.countdown-grid strong {
  color: var(--readable-ink);
  text-shadow: 0 4px 18px rgba(36, 24, 18, 0.08);
}

.countdown-grid span {
  color: var(--readable-muted);
  font-weight: 900;
}

.countdown-ribbon {
  inset: auto -10% -18%;
  height: 55%;
  z-index: 1;
  opacity: 0.62;
  mix-blend-mode: screen;
}

.countdown-ribbon-path {
  stroke: #FFD35A;
  stroke-width: clamp(56px, 5.8vw, 84px);
}

.countdown-ribbon-text {
  fill: rgba(36, 24, 18, 0.55);
  opacity: 0.78;
}

.waitlist-count-card {
  min-height: clamp(150px, 12vw, 190px);
  background:
    linear-gradient(120deg, rgba(255, 253, 247, 0.16), rgba(255, 253, 247, 0.055)),
    radial-gradient(circle at 94% 16%, rgba(255, 211, 90, 0.32), transparent 28%),
    linear-gradient(145deg, rgba(36, 24, 18, 0.42), rgba(36, 24, 18, 0.2));
  border-color: rgba(255, 253, 247, 0.26);
  box-shadow:
    0 30px 86px rgba(36, 24, 18, 0.22),
    inset 0 1px 0 rgba(255, 253, 247, 0.22);
}

.waitlist-count-card strong {
  color: #FFD35A;
  text-shadow: 0 10px 32px rgba(36, 24, 18, 0.26);
}

.waitlist-count-card p {
  color: rgba(255, 253, 247, 0.9);
  font-size: clamp(1.05rem, 1.9vw, 1.42rem);
}

.business-section .section-heading h2 {
  letter-spacing: 0;
}

.business-card {
  display: flex;
  flex-direction: column;
  grid-template-rows: auto 1fr auto auto auto;
  min-height: clamp(440px, 32vw, 540px);
  padding: clamp(30px, 3.5vw, 48px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 42%),
    radial-gradient(circle at 86% 12%, rgba(255, 211, 90, 0.16), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(255, 247, 234, 0.72));
}

.business-card::after {
  right: -14%;
  bottom: -22%;
  width: min(260px, 34vw);
  opacity: 0.42;
}

.business-card-copy h3 {
  max-width: 540px;
  font-size: clamp(1.62rem, 1.95vw, 1.82rem);
  line-height: 1.08;
}

.business-card-copy p {
  max-width: 600px;
  color: rgba(79, 64, 56, 0.86);
  font-size: clamp(1rem, 1.1vw, 1.08rem);
  font-weight: 700;
  line-height: 1.56;
}

.business-card-copy {
  flex: 1 1 auto;
}

.business-card-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-self: flex-start;
}

.business-card-points span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 13px;
  color: var(--readable-brand);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.22), rgba(255, 253, 247, 0.66));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
}

.business-contact-row {
  align-self: start;
}

.business-button {
  align-self: flex-start;
  grid-row: auto;
  margin-top: auto;
}

@media (max-width: 980px) {
  section.countdown-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .countdown-section h2 {
    max-width: 12ch;
  }
}

@media (max-width: 760px) {
  section.countdown-section {
    padding-block: 58px;
    border-radius: 30px;
  }

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

  .countdown-grid div {
    min-height: 132px;
    border-radius: 24px;
  }

  .countdown-lede {
    font-size: 1rem;
  }

  .business-card {
    grid-template-rows: auto auto auto auto auto;
    min-height: 0;
  }

  .business-card-copy h3 {
    font-size: clamp(1.42rem, 7vw, 1.66rem);
  }
}

/* 52. Light premium launch section */
section.countdown-section {
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 78% 18%, rgba(255, 211, 90, 0.2), transparent 26%),
    radial-gradient(circle at 12% 82%, rgba(239, 79, 0, 0.08), transparent 32%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 234, 0.82)),
    #FFFDF7;
  border-color: rgba(217, 90, 27, 0.12);
  box-shadow:
    0 34px 100px rgba(36, 24, 18, 0.11),
    0 10px 30px rgba(143, 47, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

section.countdown-section::before {
  background:
    linear-gradient(rgba(217, 90, 27, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 62% 50%, rgba(255, 211, 90, 0.16), transparent 34%);
  background-size: 34px 34px, 34px 34px, auto;
}

section.countdown-section::after {
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 90, 0.18), transparent 62%);
  border-color: rgba(217, 90, 27, 0.06);
}

.countdown-section h2 {
  color: var(--readable-ink);
  text-shadow: none;
}

.countdown-lede {
  color: var(--readable-muted);
}

.countdown-grid div {
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.95), rgba(255, 242, 224, 0.74));
  border-color: rgba(217, 90, 27, 0.1);
  box-shadow:
    0 24px 70px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.countdown-grid div::before {
  background:
    radial-gradient(circle at 80% 16%, rgba(255, 211, 90, 0.18), transparent 34%),
    linear-gradient(120deg, rgba(255, 255, 255, 0.58), transparent 44%);
}

.countdown-grid strong {
  color: var(--readable-ink);
}

.countdown-grid span {
  color: var(--readable-muted);
}

.waitlist-count-card {
  color: var(--readable-ink);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.54), rgba(255, 253, 247, 0.18)),
    radial-gradient(circle at 94% 18%, rgba(255, 211, 90, 0.22), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(255, 238, 216, 0.56));
  border-color: rgba(217, 90, 27, 0.14);
  box-shadow:
    0 28px 82px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.waitlist-count-card::before {
  background:
    linear-gradient(rgba(217, 90, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.032) 1px, transparent 1px),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.44), transparent);
}

.waitlist-count-card strong {
  color: var(--readable-brand);
  text-shadow: 0 8px 26px rgba(143, 47, 23, 0.12);
}

.waitlist-count-card p {
  color: var(--readable-ink);
}

.countdown-ribbon {
  inset: auto -10% -6%;
  height: 66%;
  opacity: 0.64;
  mix-blend-mode: multiply;
}

.countdown-ribbon-path {
  stroke: rgba(255, 211, 90, 0.86);
  stroke-width: clamp(68px, 6.4vw, 96px);
}

.countdown-ribbon-text {
  fill: rgba(36, 24, 18, 0.5);
  opacity: 0.88;
}

@media (max-width: 760px) {
  .countdown-ribbon {
    inset: auto -24% -4%;
    height: 48%;
    opacity: 0.58;
  }
}

/* 53. Artistic business card trio */
.business-section {
  padding-bottom: clamp(72px, 8vw, 126px);
}

.business-section::after {
  position: absolute;
  top: clamp(210px, 19vw, 330px);
  right: min(4vw, 64px);
  z-index: -1;
  width: clamp(180px, 18vw, 310px);
  aspect-ratio: 1;
  content: "";
  border: clamp(18px, 1.9vw, 28px) solid rgba(239, 79, 0, 0.052);
  border-radius: 42% 58% 49% 51%;
  filter: blur(0.2px);
  opacity: 0.88;
  pointer-events: none;
}

.business-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2vw, 28px);
}

.business-card {
  min-height: clamp(430px, 30vw, 500px);
  gap: clamp(15px, 1.55vw, 21px);
  padding: clamp(25px, 2.5vw, 36px);
  background:
    linear-gradient(rgba(217, 90, 27, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.019) 1px, transparent 1px),
    linear-gradient(132deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 247, 0.36) 42%, rgba(255, 242, 224, 0.6)),
    radial-gradient(circle at 84% 10%, rgba(255, 211, 90, 0.26), transparent 27%),
    radial-gradient(circle at 14% 100%, rgba(239, 79, 0, 0.09), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.72));
  background-size: 28px 28px, 28px 28px, auto, auto, auto, auto;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow:
    0 28px 90px rgba(36, 24, 18, 0.1),
    0 8px 28px rgba(143, 47, 23, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.business-card:nth-child(2) {
  background:
    linear-gradient(rgba(217, 90, 27, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.019) 1px, transparent 1px),
    linear-gradient(132deg, rgba(255, 255, 255, 0.8), rgba(255, 253, 247, 0.36) 42%, rgba(255, 237, 211, 0.56)),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.23), transparent 28%),
    radial-gradient(circle at 6% 96%, rgba(239, 79, 0, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 234, 0.72));
  background-size: 28px 28px, 28px 28px, auto, auto, auto, auto;
}

.business-card:nth-child(3) {
  background:
    linear-gradient(rgba(217, 90, 27, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.019) 1px, transparent 1px),
    linear-gradient(132deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 247, 0.36) 42%, rgba(255, 245, 225, 0.64)),
    radial-gradient(circle at 86% 14%, rgba(255, 211, 90, 0.26), transparent 29%),
    radial-gradient(circle at 18% 92%, rgba(239, 79, 0, 0.09), transparent 35%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 248, 236, 0.74));
  background-size: 28px 28px, 28px 28px, auto, auto, auto, auto;
}

.business-card::before {
  inset: 0;
  height: 3px;
  background:
    linear-gradient(90deg, rgba(239, 79, 0, 0.36), rgba(255, 211, 90, 0.5), rgba(255, 253, 247, 0.64));
  border: 0;
  border-radius: 32px 32px 0 0;
  opacity: 0.72;
}

.business-card::after {
  right: -12%;
  bottom: -14%;
  width: min(250px, 27vw);
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 90, 0.3), rgba(239, 79, 0, 0.12) 42%, transparent 68%),
    repeating-radial-gradient(circle at 50% 50%, rgba(143, 47, 23, 0.09) 0 2px, transparent 2px 18px);
  opacity: 0.7;
}

.business-card:nth-child(2)::after {
  right: auto;
  bottom: -16%;
  left: -12%;
}

.business-card:nth-child(3)::after {
  top: 8%;
  right: -10%;
  bottom: auto;
}

.business-card:hover {
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow:
    0 38px 110px rgba(36, 24, 18, 0.145),
    0 18px 46px rgba(143, 47, 23, 0.085),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.business-card:hover::before {
  opacity: 1;
}

.business-icon {
  width: clamp(66px, 5vw, 78px);
  border-radius: 24px;
}

.business-card-copy h3 {
  max-width: 440px;
  font-size: clamp(1.28rem, 1.42vw, 1.5rem);
  line-height: 1.08;
}

.business-card-copy p {
  max-width: 500px;
  color: rgba(79, 64, 56, 0.84);
  font-size: clamp(0.94rem, 0.95vw, 1rem);
  line-height: 1.48;
}

.business-card-points span {
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.25), rgba(255, 253, 247, 0.74));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.business-contact-row a {
  font-size: clamp(0.78rem, 0.85vw, 0.9rem);
}

.business-button {
  min-height: 52px;
  padding-inline: 20px;
  font-size: clamp(0.82rem, 0.88vw, 0.92rem);
}

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

  .business-card:nth-child(3) {
    grid-column: 1 / -1;
    min-height: 0;
  }
}

@media (max-width: 760px) {
  .business-card-grid {
    grid-template-columns: 1fr;
  }

  .business-card:nth-child(3) {
    grid-column: auto;
  }

  .business-card {
    min-height: 0;
  }
}

/* 54. Artistic first-meal offer badge */
.meal-pack-large[data-hero-pack] {
  --float-rotate: -8deg;
  isolation: isolate;
  right: -46px;
  bottom: 146px;
  min-width: clamp(156px, 13vw, 192px);
  padding: 18px 18px 21px;
  overflow: hidden;
  color: var(--readable-ink);
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.72), transparent 34%),
    radial-gradient(circle at 16% 20%, rgba(255, 253, 247, 0.96), transparent 27%),
    radial-gradient(circle at 86% 18%, rgba(255, 211, 90, 0.74), transparent 27%),
    linear-gradient(145deg, rgba(255, 248, 228, 0.96), rgba(255, 228, 188, 0.88));
  border: 1px solid rgba(255, 253, 247, 0.58);
  border-radius: 28px;
  box-shadow:
    0 26px 70px rgba(36, 24, 18, 0.28),
    0 10px 24px rgba(143, 47, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -18px 36px rgba(239, 79, 0, 0.08);
  animation:
    dsFloat 5.4s ease-in-out infinite,
    offerBadgeGlow 4.8s ease-in-out infinite;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
  backface-visibility: hidden;
  translate: calc(var(--hero-scroll) * -26px) calc(var(--hero-scroll) * -30px);
}

.meal-pack-large[data-hero-pack]::before {
  position: absolute;
  inset: -45% -24% auto auto;
  z-index: -1;
  width: 128px;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(239, 79, 0, 0.28), transparent 58%),
    repeating-radial-gradient(circle, rgba(143, 47, 23, 0.13) 0 2px, transparent 2px 14px);
  border-radius: 50%;
  opacity: 0.72;
}

.meal-pack-large[data-hero-pack]::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, transparent 0 26%, rgba(255, 255, 255, 0.68) 42%, transparent 58%),
    radial-gradient(circle at 20% 82%, rgba(239, 79, 0, 0.14), transparent 32%);
  opacity: 0.72;
  transform: translateX(-44%);
  animation: offerBadgeShine 4.4s ease-in-out infinite;
  pointer-events: none;
}

.meal-pack-large[data-hero-pack] span,
.meal-pack-large[data-hero-pack] strong {
  position: relative;
  z-index: 1;
}

.meal-pack-large[data-hero-pack] span {
  display: inline-flex;
  width: fit-content;
  min-height: 31px;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  color: #8F2F17;
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.96), rgba(247, 183, 51, 0.94));
  border: 1px solid rgba(255, 253, 247, 0.68);
  border-radius: 999px;
  box-shadow:
    0 10px 22px rgba(143, 47, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  font-size: clamp(0.78rem, 0.86vw, 0.92rem);
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.meal-pack-large[data-hero-pack] span::before {
  width: 7px;
  aspect-ratio: 1;
  content: "";
  background: #EF4F00;
  border-radius: 50%;
  box-shadow:
    11px 0 0 rgba(255, 253, 247, 0.92),
    22px 0 0 rgba(199, 246, 88, 0.88);
}

.meal-pack-large[data-hero-pack] strong {
  display: block;
  max-width: 7.6ch;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.42rem, 1.9vw, 2rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 2px 0 rgba(255, 253, 247, 0.58);
}

@keyframes offerBadgeShine {
  0%,
  38% {
    transform: translateX(-60%) skewX(-12deg);
  }

  68%,
  100% {
    transform: translateX(72%) skewX(-12deg);
  }
}

@keyframes offerBadgeGlow {
  0%,
  100% {
    box-shadow:
      0 26px 70px rgba(36, 24, 18, 0.28),
      0 10px 24px rgba(143, 47, 23, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.88),
      inset 0 -18px 36px rgba(239, 79, 0, 0.08);
  }

  50% {
    box-shadow:
      0 32px 82px rgba(36, 24, 18, 0.32),
      0 0 0 8px rgba(255, 211, 90, 0.1),
      0 12px 30px rgba(143, 47, 23, 0.18),
      inset 0 1px 0 rgba(255, 255, 255, 0.92),
      inset 0 -18px 36px rgba(239, 79, 0, 0.1);
  }
}

@media (max-width: 760px) {
  .meal-pack-large[data-hero-pack] {
    right: -18px;
    bottom: 118px;
    min-width: 142px;
    padding: 15px 15px 17px;
    border-radius: 24px;
  }

  .meal-pack-large[data-hero-pack] strong {
    font-size: clamp(1.1rem, 5.4vw, 1.42rem);
  }
}

/* 55. Consistent feature card copy alignment */
.feature-grid .feature-card {
  min-height: clamp(410px, 31vw, 480px);
}

.feature-grid .feature-content {
  display: grid;
  grid-template-rows:
    36px
    minmax(clamp(78px, 7vw, 104px), 1fr)
    minmax(clamp(68px, 4.7vw, 88px), auto)
    minmax(clamp(74px, 5.2vw, 98px), auto)
    4px;
  min-height: clamp(410px, 31vw, 480px);
  align-content: stretch;
  padding:
    clamp(118px, 10vw, 142px)
    clamp(24px, 2.5vw, 36px)
    clamp(22px, 2.2vw, 30px);
}

.feature-grid .feature-card span {
  grid-row: 1;
  align-self: start;
}

.feature-grid .feature-card h3,
.feature-grid .feature-card:hover h3,
.feature-grid .feature-card.is-hovered h3,
.feature-grid .feature-card:focus-within h3 {
  grid-row: 3;
  min-height: 2.04em;
  align-self: start;
  margin: 0;
}

.feature-grid .feature-card p,
.feature-grid .feature-card:hover p,
.feature-grid .feature-card.is-hovered p,
.feature-grid .feature-card:focus-within p {
  grid-row: 4;
  align-self: start;
  margin: 0;
}

.feature-grid .feature-card p::after,
.feature-grid .feature-card:hover p::after,
.feature-grid .feature-card.is-hovered p::after,
.feature-grid .feature-card:focus-within p::after {
  display: none;
}

.feature-grid .feature-content::after {
  grid-row: 5;
  align-self: end;
  width: 64px;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--ds-lime), rgba(217, 90, 27, 0.42));
  border-radius: 999px;
}

.feature-grid .feature-card:hover .feature-content::after,
.feature-grid .feature-card.is-hovered .feature-content::after,
.feature-grid .feature-card:focus-within .feature-content::after {
  width: 82px;
  transition: width 220ms ease;
}

@media (max-width: 980px) {
  .feature-grid .feature-content {
    grid-template-rows:
      36px
      minmax(82px, 1fr)
      minmax(66px, auto)
      minmax(84px, auto)
      4px;
  }
}

@media (max-width: 720px) {
  .feature-grid .feature-card,
  .feature-grid .feature-content {
    min-height: 390px;
  }

  .feature-grid .feature-content {
    grid-template-rows: 36px minmax(70px, 1fr) minmax(58px, auto) minmax(76px, auto) 4px;
    padding: 108px 22px 26px;
  }
}

/* 56. Premium fullscreen menu overlay */
.menu-overlay {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(280px, 0.72fr);
  grid-template-rows: auto 1fr auto;
  gap: clamp(18px, 3vw, 56px);
  padding: clamp(42px, 5vw, 76px);
  color: var(--readable-paper);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 211, 90, 0.18), transparent 28%),
    radial-gradient(circle at 78% 26%, rgba(255, 253, 247, 0.13), transparent 30%),
    linear-gradient(rgba(255, 253, 247, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.03) 1px, transparent 1px),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 48%, #8F2F17 100%);
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  border: 1px solid rgba(255, 253, 247, 0.2);
  box-shadow:
    0 40px 130px rgba(36, 24, 18, 0.34),
    inset 0 1px 0 rgba(255, 253, 247, 0.3),
    inset 0 -120px 180px rgba(36, 24, 18, 0.12);
}

.menu-overlay::before {
  right: clamp(-42px, -2vw, -16px);
  bottom: clamp(-28px, -2vw, -12px);
  color: rgba(36, 24, 18, 0.12);
  font-size: clamp(6rem, 18vw, 18rem);
  letter-spacing: 0;
}

.menu-overlay::after {
  position: absolute;
  top: clamp(120px, 14vw, 220px);
  right: clamp(90px, 10vw, 180px);
  z-index: 0;
  width: clamp(180px, 20vw, 360px);
  aspect-ratio: 1;
  content: "";
  border: clamp(20px, 2.4vw, 38px) solid rgba(255, 253, 247, 0.08);
  border-radius: 42% 58% 47% 53%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 211, 90, 0.12),
    0 0 80px rgba(255, 211, 90, 0.1);
  pointer-events: none;
}

.menu-overlay-surface {
  opacity: 1;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 34%),
    radial-gradient(circle at 48% 52%, rgba(36, 24, 18, 0.16), transparent 32%);
  mask-image: none;
}

.menu-overlay-nav {
  grid-column: 1;
  grid-row: 1 / span 2;
  align-self: center;
  width: min(620px, 100%);
  gap: clamp(10px, 1.35vh, 16px);
  margin-top: 0;
}

.menu-overlay-nav a {
  min-height: clamp(54px, 5vw, 76px);
  padding: 0.08em 0.34em 0.1em 0.1em;
  color: rgba(255, 253, 247, 0.94);
  text-decoration: none;
  border: 1px solid transparent;
  font-size: clamp(2rem, 4vw, 4.4rem);
  line-height: 0.94;
  text-shadow: 0 8px 34px rgba(36, 24, 18, 0.18);
}

.menu-overlay-nav a span {
  width: clamp(38px, 4.2vw, 58px);
  height: clamp(38px, 4.2vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.96));
  border: 1px solid rgba(255, 253, 247, 0.46);
  box-shadow:
    0 16px 34px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.menu-overlay-nav a:not(.active) span {
  opacity: 0;
  transform: scale(0.76);
}

.menu-overlay-nav a:hover,
.menu-overlay-nav a:focus-visible,
.menu-overlay-nav a.active {
  color: #FFD35A;
  background:
    linear-gradient(90deg, rgba(255, 253, 247, 0.12), rgba(255, 253, 247, 0.02));
  border-color: rgba(255, 253, 247, 0.16);
  box-shadow:
    0 18px 50px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 253, 247, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.menu-overlay-nav a:hover span,
.menu-overlay-nav a:focus-visible span,
.menu-overlay-nav a.active span {
  opacity: 1;
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.96));
  transform: scale(1);
}

.menu-overlay-nav a:hover span::after,
.menu-overlay-nav a:focus-visible span::after,
.menu-overlay-nav a.active span::after,
.menu-overlay-nav a span::after {
  border-color: var(--readable-ink);
}

.menu-close {
  top: clamp(24px, 3vw, 44px);
  right: clamp(24px, 3vw, 44px);
  width: clamp(58px, 6vw, 78px);
  height: clamp(58px, 6vw, 78px);
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 253, 247, 0.34), transparent 34%),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.48);
  box-shadow:
    0 24px 64px rgba(36, 24, 18, 0.2),
    0 0 0 8px rgba(255, 211, 90, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.44);
}

.menu-close:hover,
.menu-close:focus-visible {
  background:
    radial-gradient(circle at 32% 24%, rgba(255, 253, 247, 0.4), transparent 34%),
    linear-gradient(145deg, #FFE078, #F7B733);
  transform: rotate(6deg) scale(1.05);
}

.menu-overlay-note {
  top: clamp(54px, 7vw, 90px);
  right: clamp(112px, 11vw, 184px);
  gap: 18px;
  color: rgba(255, 253, 247, 0.84);
  text-shadow: 0 8px 28px rgba(36, 24, 18, 0.16);
}

.menu-overlay-note img {
  width: clamp(180px, 16vw, 260px);
  padding: 11px 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 242, 224, 0.9));
  border: 1px solid rgba(255, 253, 247, 0.62);
  box-shadow:
    0 22px 58px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.menu-overlay-note p {
  color: rgba(255, 253, 247, 0.86);
}

.menu-overlay-meta {
  position: relative;
  z-index: 3;
  grid-column: 2;
  grid-row: 2;
  align-self: center;
  justify-self: end;
  display: grid;
  width: min(430px, 100%);
  gap: 16px;
  padding: clamp(22px, 2.6vw, 34px);
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.14), rgba(255, 253, 247, 0.055)),
    rgba(36, 24, 18, 0.1);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 30px;
  box-shadow:
    0 24px 72px rgba(36, 24, 18, 0.16),
    inset 0 1px 0 rgba(255, 253, 247, 0.22);
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 420ms ease 300ms,
    transform 560ms cubic-bezier(0.2, 0.8, 0.2, 1) 300ms;
  backdrop-filter: blur(18px) saturate(1.12);
  -webkit-backdrop-filter: blur(18px) saturate(1.12);
}

.menu-overlay.open .menu-overlay-meta {
  opacity: 1;
  transform: translateY(0);
}

.menu-overlay-meta span {
  width: max-content;
  padding: 8px 14px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.44);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.menu-overlay-meta p {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 253, 247, 0.86);
  font-size: clamp(1.05rem, 1.5vw, 1.35rem);
  font-weight: 780;
  line-height: 1.4;
}

.menu-ribbon {
  inset: auto -4% -8vh -4%;
  height: min(58vh, 520px);
  opacity: 0.86;
}

.menu-ribbon-stroke {
  stroke: rgba(255, 211, 90, 0.92);
  stroke-width: clamp(54px, 5.2vw, 86px);
  filter:
    drop-shadow(0 22px 34px rgba(36, 24, 18, 0.26))
    drop-shadow(0 0 22px rgba(255, 211, 90, 0.16));
}

.menu-ribbon-text {
  fill: rgba(36, 24, 18, 0.6);
  font-size: clamp(21px, 2.35vw, 34px);
}

@media (max-width: 980px) {
  .menu-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    padding: clamp(36px, 8vw, 64px) clamp(24px, 6vw, 48px);
  }

  .menu-overlay-nav {
    grid-column: 1;
    align-self: center;
  }

  .menu-overlay-meta {
    grid-column: 1;
    grid-row: 3;
    justify-self: start;
    width: min(520px, 100%);
  }

  .menu-overlay-note {
    right: clamp(92px, 16vw, 140px);
  }
}

@media (max-width: 640px) {
  .menu-overlay {
    inset: 10px;
    padding: 88px 22px 26px;
    border-radius: 28px;
  }

  .menu-overlay-nav {
    gap: 8px;
  }

  .menu-overlay-nav a {
    min-height: 50px;
    max-width: calc(100vw - 72px);
    font-size: clamp(1.78rem, 10vw, 2.65rem);
    line-height: 0.98;
    white-space: normal;
  }

  .menu-overlay-note {
    top: 24px;
    right: 92px;
  }

  .menu-overlay-note p,
  .menu-overlay-meta {
    display: none;
  }

  .menu-overlay-note img {
    width: 138px;
    padding: 8px 12px;
  }

  .menu-close {
    width: 58px;
    height: 58px;
  }

  .menu-ribbon {
    inset: auto -28% -4vh -42%;
    height: 34vh;
  }
}

/* 50. Legal pages */
.legal-page {
  position: relative;
  min-height: 100vh;
  padding: clamp(20px, 3.5vw, 48px);
  color: var(--readable-ink, var(--ink));
  background:
    radial-gradient(circle at 14% 18%, rgba(247, 183, 51, 0.24), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(217, 90, 27, 0.08), transparent 32%),
    linear-gradient(135deg, #FFFDF7 0%, #F7F2E8 100%);
  overflow: hidden;
}

.legal-page::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(217, 90, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.035) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 92%);
}

.legal-bg-ring,
.legal-bg-ribbon {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.legal-bg-ring {
  border: clamp(18px, 2.5vw, 34px) solid rgba(217, 90, 27, 0.08);
  border-radius: 999px;
}

.legal-bg-ring-one {
  width: clamp(280px, 34vw, 560px);
  aspect-ratio: 1;
  top: -130px;
  left: -120px;
}

.legal-bg-ring-two {
  width: clamp(240px, 28vw, 460px);
  aspect-ratio: 1;
  right: -110px;
  bottom: 12%;
}

.legal-bg-ribbon {
  right: -12vw;
  bottom: clamp(26px, 5vw, 70px);
  width: 66vw;
  min-width: 700px;
  padding: 18px 0;
  color: rgba(36, 24, 18, 0.28);
  background: rgba(247, 183, 51, 0.42);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 2vw, 2.2rem);
  font-weight: 900;
  line-height: 1;
  text-align: center;
  transform: rotate(-12deg);
  border-radius: 999px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.legal-topbar,
.legal-hero,
.privacy-trust-grid,
.legal-content {
  position: relative;
  z-index: 1;
}

.legal-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(var(--container), 100%);
  margin: 0 auto clamp(36px, 5vw, 76px);
  padding: clamp(10px, 1.3vw, 16px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 248, 235, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: clamp(30px, 4vw, 54px);
  box-shadow:
    0 28px 80px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
}

.legal-nav {
  display: flex;
  align-items: center;
  gap: 10px;
}

.legal-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: var(--readable-brand, #B6401C);
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 999px;
  font-weight: 900;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.legal-nav a:last-child {
  color: #241812;
  background: linear-gradient(135deg, var(--brand-accent), #FFD666);
  box-shadow: 0 16px 36px rgba(247, 183, 51, 0.24);
}

.legal-nav a:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 42px rgba(36, 24, 18, 0.1);
}

.legal-brand {
  display: inline-flex;
  flex: 0 0 auto;
  width: clamp(190px, 18vw, 260px);
  margin: 0;
  padding: 12px 20px;
  background: rgba(255, 253, 247, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 16px 48px rgba(36, 24, 18, 0.1);
}

section.legal-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: stretch;
  gap: clamp(20px, 3vw, 42px);
  width: min(var(--container), 100%);
  margin: 0 auto clamp(22px, 3vw, 34px);
  padding: clamp(32px, 4.4vw, 64px);
  background:
    radial-gradient(circle at 84% 16%, rgba(247, 183, 51, 0.26), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 249, 238, 0.78));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: clamp(28px, 4vw, 46px);
  box-shadow:
    0 30px 90px rgba(36, 24, 18, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  overflow: hidden;
}

.legal-hero::after,
.privacy-summary-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.legal-hero::after {
  right: clamp(-110px, -8vw, -50px);
  bottom: clamp(-150px, -10vw, -70px);
  width: clamp(280px, 34vw, 520px);
  aspect-ratio: 1;
  border: clamp(22px, 3vw, 46px) solid rgba(247, 183, 51, 0.18);
  border-radius: 999px;
}

.legal-hero-copy {
  max-width: 860px;
}

.legal-hero-copy .eyebrow {
  margin-bottom: clamp(18px, 2.2vw, 30px);
}

.legal-hero h1 {
  margin: 0;
  max-width: 9ch;
  color: var(--readable-ink, #241812);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(4.2rem, 8.8vw, 9.25rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.legal-hero p {
  max-width: 64ch;
  color: rgba(36, 24, 18, 0.72);
  font-size: clamp(1.02rem, 1.45vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
}

.legal-updated {
  display: inline-flex;
  margin: 22px 0 4px;
  padding: 10px 16px;
  color: var(--readable-brand, #B6401C) !important;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(36, 24, 18, 0.08);
}

.privacy-summary-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  padding: clamp(24px, 3vw, 36px);
  color: #fff;
  background:
    linear-gradient(150deg, rgba(217, 90, 27, 0.96), rgba(178, 57, 22, 0.96)),
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: auto, 28px 28px, 28px 28px;
  border: 1px solid rgba(255, 221, 170, 0.55);
  border-radius: 32px;
  box-shadow:
    0 28px 70px rgba(217, 90, 27, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  overflow: hidden;
}

.privacy-summary-card::after {
  right: -58px;
  bottom: -58px;
  width: 190px;
  aspect-ratio: 1;
  border: 28px solid rgba(255, 211, 90, 0.22);
  border-radius: 999px;
}

.privacy-summary-card span {
  width: max-content;
  padding: 10px 16px;
  color: #241812;
  background: linear-gradient(135deg, var(--brand-accent), #FFD86E);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.privacy-summary-card strong {
  position: relative;
  z-index: 1;
  display: block;
  max-width: 11ch;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.35rem, 4vw, 4.6rem);
  line-height: 0.92;
  letter-spacing: 0;
}

.privacy-summary-card p {
  position: relative;
  z-index: 1;
  max-width: 27ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.5;
}

section.privacy-trust-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  width: min(var(--container), 100%);
  margin: 0 auto clamp(22px, 3vw, 34px);
  padding: 0;
}

.privacy-trust-grid article {
  padding: clamp(20px, 2.4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 235, 0.7));
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: 28px;
  box-shadow:
    0 20px 56px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(16px);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.privacy-trust-grid article:hover {
  transform: translateY(-5px);
  border-color: rgba(247, 183, 51, 0.55);
  box-shadow: 0 28px 70px rgba(36, 24, 18, 0.12);
}

.privacy-trust-grid span,
.legal-section-card > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  color: #241812;
  background: linear-gradient(135deg, var(--brand-accent), #FFD86E);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
  box-shadow:
    0 12px 30px rgba(247, 183, 51, 0.24),
    inset 0 -1px 0 rgba(217, 90, 27, 0.12);
}

.privacy-trust-grid h2 {
  margin: 18px 0 8px;
  color: #241812;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.05;
}

.privacy-trust-grid p {
  max-width: 34ch;
  margin: 0;
  color: rgba(36, 24, 18, 0.66);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.55;
}

section.legal-content {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(20px, 2vw, 30px);
  width: min(var(--container), 100%);
  margin: 0 auto;
  padding: clamp(30px, 3vw, 46px);
  background: rgba(255, 255, 255, 0.44);
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: clamp(32px, 4vw, 48px);
  box-shadow:
    0 28px 90px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(18px);
}

.legal-section-card {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: clamp(16px, 2vw, 24px);
  align-items: flex-start;
  min-height: 248px;
  height: 100%;
  box-sizing: border-box;
  padding: clamp(26px, 2.6vw, 38px);
  background:
    radial-gradient(circle at 95% 18%, rgba(247, 183, 51, 0.14), transparent 24%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 240, 0.76));
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 28px;
  box-shadow: 0 16px 48px rgba(36, 24, 18, 0.07);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease,
    border-color 240ms ease;
}

.legal-section-card:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 183, 51, 0.5);
  box-shadow: 0 24px 66px rgba(36, 24, 18, 0.11);
}

.legal-section-card:nth-child(2n) {
  background:
    radial-gradient(circle at 92% 18%, rgba(217, 90, 27, 0.12), transparent 26%),
    linear-gradient(135deg, rgba(255, 252, 245, 0.9), rgba(255, 244, 222, 0.76));
}

.legal-contact-card {
  position: relative;
  grid-column: 1 / -1;
  min-height: 192px;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 16%, rgba(247, 183, 51, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(255, 253, 247, 0.94), rgba(255, 238, 213, 0.84));
}

.legal-contact-card::after {
  content: "";
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 150px;
  aspect-ratio: 1;
  border: 24px solid rgba(217, 90, 27, 0.1);
  border-radius: 50%;
  pointer-events: none;
}

.legal-section-card > span {
  width: 58px;
  height: 58px;
}

.legal-content h2 {
  margin: 0 0 10px;
  color: #241812;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2.4vw, 2.2rem);
  line-height: 1.06;
}

.legal-content p {
  max-width: 68ch;
  color: var(--readable-muted, var(--gray-600));
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  font-weight: 650;
  line-height: 1.7;
}

.legal-content a {
  color: var(--readable-brand, var(--primary));
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  grid-column: 1 / -1;
  box-sizing: border-box;
  width: 100%;
  max-width: none !important;
  min-height: 128px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: clamp(20px, 2.6vw, 28px);
  color: rgba(36, 24, 18, 0.72) !important;
  background: rgba(255, 247, 230, 0.76);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 24px;
}

@media (max-width: 900px) {
  .legal-topbar,
  section.legal-hero {
    width: 100%;
  }

  section.legal-hero {
    grid-template-columns: 1fr;
  }

  .privacy-summary-card {
    min-height: 250px;
  }

  section.privacy-trust-grid {
    grid-template-columns: 1fr;
  }

  section.legal-content {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    padding: clamp(22px, 4vw, 30px);
  }

  .legal-contact-card {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .legal-page {
    padding: 14px;
  }

  .legal-topbar {
    align-items: stretch;
    border-radius: 30px;
  }

  .legal-brand {
    width: 164px;
    padding: 10px 14px;
  }

  .legal-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .legal-nav a {
    min-height: 42px;
    padding: 0 14px;
    font-size: 0.82rem;
  }

  section.legal-hero {
    padding: 26px;
    border-radius: 30px;
  }

  .legal-hero h1 {
    max-width: none;
    font-size: clamp(3.15rem, 18vw, 4.7rem);
    line-height: 0.92;
  }

  .legal-hero p {
    font-size: 1rem;
  }

  .privacy-summary-card {
    min-height: 230px;
    border-radius: 26px;
  }

  .privacy-summary-card strong {
    max-width: 12ch;
  }

  section.legal-content {
    padding: 18px;
    border-radius: 28px;
  }

  .legal-section-card {
    grid-template-columns: 1fr;
    gap: 14px;
    border-radius: 24px;
  }

  .legal-bg-ribbon {
    opacity: 0.7;
    right: -54vw;
    bottom: 8vh;
  }
}

/* 58. Partner landing pages */
.partner-page {
  background:
    radial-gradient(circle at 14% 8%, rgba(255, 211, 90, 0.12), transparent 26%),
    radial-gradient(circle at 88% 16%, rgba(217, 90, 27, 0.08), transparent 30%),
    rgb(var(--site-bg-r), var(--site-bg-g), var(--site-bg-b));
}

.partner-page .site-shell {
  padding-top: clamp(108px, 10vw, 148px);
}

.partner-page .site-header {
  color: var(--readable-brand);
  background: rgba(255, 253, 247, 0.88);
  border-color: rgba(217, 90, 27, 0.12);
  box-shadow:
    0 22px 68px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transform: translate3d(-50%, 0, 0);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.partner-page .brand {
  background: rgba(255, 253, 247, 0.86);
  box-shadow:
    0 16px 38px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
  transform: none;
}

.partner-close-link {
  display: inline-grid;
  min-height: 48px;
  place-items: center;
  padding: 0 18px;
  color: var(--readable-brand);
  text-decoration: none;
  background: rgba(255, 253, 247, 0.74);
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 950;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.partner-close-link:hover {
  border-color: rgba(217, 90, 27, 0.28);
  box-shadow: 0 12px 30px rgba(36, 24, 18, 0.1);
  transform: translateY(-2px);
}

.partner-page main {
  display: grid;
  gap: clamp(48px, 6vw, 86px);
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: 0 auto;
}

.partner-subnav {
  position: sticky;
  top: clamp(118px, 9vw, 136px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 58px;
  padding: 10px 12px 10px 18px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), rgba(255, 253, 247, 0.28)),
    rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  box-shadow:
    0 20px 58px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.partner-breadcrumb,
.partner-subnav-links {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.partner-breadcrumb {
  color: rgba(79, 64, 56, 0.74);
  font-size: 0.88rem;
  font-weight: 800;
}

.partner-breadcrumb a,
.partner-subnav-links a {
  color: inherit;
  text-decoration: none;
}

.partner-breadcrumb strong {
  color: var(--readable-ink);
}

.partner-subnav-links a {
  display: inline-grid;
  min-height: 38px;
  place-items: center;
  padding: 0 14px;
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.6);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.partner-subnav-links a:hover {
  background: rgba(255, 211, 90, 0.22);
  border-color: rgba(217, 90, 27, 0.22);
  transform: translateY(-1px);
}

.partner-hero,
.partner-section,
.partner-contact-section,
.partner-final-cta {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: clamp(28px, 3vw, 38px);
  box-shadow:
    0 34px 110px rgba(36, 24, 18, 0.1),
    0 10px 30px rgba(143, 47, 23, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(20px) saturate(1.08);
  -webkit-backdrop-filter: blur(20px) saturate(1.08);
}

.partner-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: clamp(28px, 5vw, 72px);
  min-height: clamp(560px, 48vw, 700px);
  padding: clamp(34px, 5.2vw, 78px);
  background:
    linear-gradient(rgba(217, 90, 27, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 86% 16%, rgba(255, 211, 90, 0.28), transparent 28%),
    radial-gradient(circle at 12% 82%, rgba(239, 79, 0, 0.1), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 247, 234, 0.76));
  background-size: 34px 34px, 34px 34px, auto, auto, auto;
}

.partner-hero::before,
.partner-section::before,
.partner-final-cta::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.14), transparent 28%);
  opacity: 0.78;
  pointer-events: none;
}

.partner-hero::after {
  position: absolute;
  right: -8%;
  bottom: -22%;
  width: clamp(260px, 32vw, 520px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at 50% 50%, rgba(255, 211, 90, 0.24), rgba(239, 79, 0, 0.1) 44%, transparent 68%),
    repeating-radial-gradient(circle at 50% 50%, rgba(143, 47, 23, 0.08) 0 2px, transparent 2px 22px);
  border-radius: 50%;
  opacity: 0.8;
  pointer-events: none;
}

.partner-hero > *,
.partner-section > *,
.partner-contact-section > *,
.partner-final-cta > * {
  position: relative;
  z-index: 1;
}

.partner-hero h1 {
  max-width: 9.5ch;
  margin: 16px 0 0;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.4rem, 7.2vw, 7.4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
}

.partner-hero-copy > p:not(.eyebrow) {
  max-width: 720px;
  margin: 24px 0 0;
  color: var(--readable-muted);
  font-size: clamp(1.05rem, 1.6vw, 1.34rem);
  font-weight: 650;
  line-height: 1.55;
}

.partner-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
}

.partner-text-link {
  display: inline-grid;
  min-height: 54px;
  place-items: center;
  padding: 0 20px;
  color: var(--readable-brand);
  text-decoration: none;
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.partner-text-link:hover {
  border-color: rgba(217, 90, 27, 0.28);
  box-shadow: 0 14px 34px rgba(36, 24, 18, 0.1);
  transform: translateY(-2px);
}

.partner-hero-visual {
  position: relative;
  min-height: clamp(320px, 32vw, 460px);
  overflow: hidden;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 253, 247, 0.86), transparent 30%),
    linear-gradient(145deg, rgba(255, 211, 90, 0.32), rgba(217, 90, 27, 0.12)),
    rgba(255, 253, 247, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 34px;
  box-shadow:
    0 34px 90px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.visual-orbit,
.visual-plate {
  position: absolute;
  border-radius: 50%;
}

.visual-orbit {
  inset: 12%;
  border: 26px solid rgba(255, 253, 247, 0.42);
  box-shadow: inset 0 0 0 1px rgba(217, 90, 27, 0.1);
  animation: partnerFloat 7s ease-in-out infinite;
}

.visual-plate {
  top: 50%;
  left: 50%;
  width: clamp(150px, 18vw, 260px);
  aspect-ratio: 1;
  background:
    radial-gradient(circle at 34% 36%, #FFD35A 0 18%, transparent 19%),
    radial-gradient(circle at 64% 36%, #D95A1B 0 18%, transparent 19%),
    radial-gradient(circle at 52% 64%, #FFFDF7 0 22%, transparent 23%),
    #241812;
  border: 12px solid rgba(255, 253, 247, 0.62);
  box-shadow: 0 28px 60px rgba(36, 24, 18, 0.18);
  transform: translate(-50%, -50%);
}

.visual-chip,
.dashboard-card {
  position: absolute;
  display: inline-grid;
  min-height: 42px;
  place-items: center;
  padding: 0 16px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.66);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(143, 47, 23, 0.14);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.9rem;
  font-weight: 950;
}

.chip-one {
  top: 16%;
  left: 10%;
}

.chip-two {
  top: 42%;
  right: 9%;
}

.chip-three {
  bottom: 15%;
  left: 18%;
}

.dashboard-visual {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
}

.dashboard-bar {
  position: absolute;
  bottom: 42px;
  width: 72px;
  border-radius: 999px 999px 18px 18px;
  background: linear-gradient(180deg, #FFD35A, #D95A1B);
  box-shadow: 0 20px 42px rgba(143, 47, 23, 0.18);
}

.bar-one {
  right: 26%;
  height: 48%;
}

.bar-two {
  right: 10%;
  height: 66%;
}

.dashboard-card {
  position: relative;
  inset: auto;
  justify-self: start;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 242, 224, 0.72));
  border-color: rgba(217, 90, 27, 0.12);
}

.community-visual {
  display: grid;
  place-items: center;
}

.community-building {
  position: absolute;
  bottom: 24%;
  width: clamp(90px, 9vw, 130px);
  height: clamp(160px, 18vw, 240px);
  background:
    linear-gradient(rgba(217, 90, 27, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.08) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 229, 194, 0.72));
  background-size: 28px 28px, 28px 28px, auto;
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 28px;
  box-shadow: 0 28px 70px rgba(36, 24, 18, 0.12);
}

.building-one {
  left: 22%;
}

.building-two {
  right: 22%;
  height: clamp(130px, 15vw, 200px);
}

.community-path {
  position: absolute;
  bottom: 18%;
  left: 28%;
  width: 44%;
  height: 44px;
  background: rgba(255, 211, 90, 0.58);
  border: 1px solid rgba(255, 253, 247, 0.48);
  border-radius: 999px;
  transform: rotate(-8deg);
}

.partner-section {
  padding: clamp(30px, 4vw, 56px);
  background:
    linear-gradient(rgba(217, 90, 27, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.019) 1px, transparent 1px),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(255, 247, 234, 0.72));
  background-size: 30px 30px, 30px 30px, auto, auto;
}

.compact-heading {
  margin-bottom: clamp(24px, 3.5vw, 42px);
}

.compact-heading h2 {
  max-width: 780px;
  font-size: clamp(2.4rem, 4.8vw, 4.8rem);
  line-height: 0.95;
}

.partner-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.8vw, 22px);
}

.partner-feature-grid article,
.testimonial-carousel article,
.partner-dashboard-mock,
.partner-contact-card {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 46%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(255, 245, 232, 0.62));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 28px;
  box-shadow:
    0 22px 66px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.partner-feature-grid article {
  min-height: 190px;
  padding: 24px;
  transition:
    transform 260ms cubic-bezier(0.16, 1, 0.3, 1),
    border-color 260ms ease,
    box-shadow 260ms ease;
}

.partner-feature-grid.compact article {
  min-height: 140px;
}

.partner-feature-grid article:hover {
  border-color: rgba(217, 90, 27, 0.24);
  box-shadow:
    0 30px 86px rgba(36, 24, 18, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  transform: translateY(-6px);
}

.partner-feature-grid span,
.partner-timeline > li > span {
  display: inline-grid;
  width: 48px;
  height: 34px;
  place-items: center;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.7);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.84rem;
  font-weight: 950;
  box-shadow: 0 10px 22px rgba(143, 47, 23, 0.12);
}

.partner-feature-grid h3,
.partner-timeline h3 {
  margin: 18px 0 0;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.16rem, 1.55vw, 1.42rem);
  font-weight: 950;
  line-height: 1.08;
}

.partner-feature-grid p,
.partner-timeline p,
.testimonial-carousel p,
.partner-contact-section p,
.partner-final-cta p {
  margin: 12px 0 0;
  color: rgba(79, 64, 56, 0.84);
  font-size: clamp(0.96rem, 1.1vw, 1.06rem);
  font-weight: 650;
  line-height: 1.58;
}

.partner-timeline {
  display: grid;
  gap: 16px;
  max-width: 920px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.partner-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  padding: 20px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.8), rgba(255, 242, 224, 0.58));
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 24px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.74);
}

.partner-timeline h3 {
  margin-top: 0;
}

.partner-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-pill-grid span {
  display: inline-grid;
  min-height: 58px;
  place-items: center;
  padding: 0 22px;
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.28), rgba(255, 253, 247, 0.72));
  border: 1px solid rgba(217, 90, 27, 0.13);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.76);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
}

.testimonial-carousel {
  display: grid;
  grid-auto-columns: minmax(300px, 1fr);
  grid-auto-flow: column;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}

.testimonial-carousel article {
  min-height: 230px;
  padding: 26px;
  scroll-snap-align: start;
}

.testimonial-carousel p {
  color: var(--readable-ink);
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
  font-weight: 760;
}

.testimonial-carousel strong,
.testimonial-carousel span {
  display: block;
}

.testimonial-carousel strong {
  margin-top: 28px;
  color: var(--readable-brand);
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
}

.testimonial-carousel span {
  margin-top: 4px;
  color: rgba(79, 64, 56, 0.72);
  font-weight: 800;
}

.partner-dashboard-mock {
  padding: clamp(24px, 4vw, 42px);
  color: var(--readable-paper);
  background:
    linear-gradient(rgba(255, 253, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 88% 14%, rgba(255, 211, 90, 0.3), transparent 28%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 52%, #8F2F17 100%);
  background-size: 34px 34px, 34px 34px, auto, auto;
}

.dashboard-mock-header,
.dashboard-mock-grid {
  display: grid;
  gap: 14px;
}

.dashboard-mock-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 24px;
}

.dashboard-mock-header span,
.dashboard-mock-header strong {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 950;
}

.dashboard-mock-header span {
  justify-self: start;
  padding: 10px 16px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-radius: 999px;
}

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

.dashboard-mock-grid article {
  min-height: 132px;
  padding: 20px;
  background: rgba(255, 253, 247, 0.14);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 22px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.dashboard-mock-grid span {
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.88rem;
  font-weight: 850;
}

.dashboard-mock-grid strong {
  display: block;
  margin-top: 16px;
  color: #FFD35A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 3rem);
  font-weight: 950;
}

.partner-contact-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.56fr);
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(30px, 4vw, 54px);
  background:
    radial-gradient(circle at 14% 20%, rgba(255, 211, 90, 0.2), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(255, 247, 234, 0.72));
}

.partner-contact-section h2,
.partner-final-cta h2 {
  margin: 14px 0 0;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.3rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0;
}

.partner-contact-card {
  display: grid;
  gap: 12px;
  padding: 18px;
}

.partner-contact-card a {
  display: grid;
  min-height: 54px;
  align-items: center;
  padding: 0 18px;
  color: var(--readable-ink);
  text-decoration: none;
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  font-weight: 900;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.partner-contact-card a:hover {
  background: rgba(255, 211, 90, 0.2);
  border-color: rgba(217, 90, 27, 0.24);
  transform: translateX(4px);
}

.quote-section {
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: start;
}

.quote-section-copy {
  display: grid;
  align-content: start;
}

.quote-support-card {
  display: grid;
  gap: 10px;
  width: min(100%, 420px);
  margin-top: clamp(22px, 2.8vw, 34px);
  padding: 14px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.56), transparent 44%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.74), rgba(255, 245, 232, 0.54));
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 24px;
  box-shadow:
    0 18px 52px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.quote-support-card a {
  display: grid;
  min-height: 48px;
  align-items: center;
  padding: 0 16px;
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.68);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 999px;
  font-weight: 900;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.quote-support-card a:hover,
.quote-support-card a:focus-visible {
  background: rgba(255, 211, 90, 0.2);
  border-color: rgba(217, 90, 27, 0.22);
  transform: translateX(4px);
}

.quote-form {
  display: grid;
  gap: 18px;
  padding: clamp(18px, 2.5vw, 30px);
}

.quote-form-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.quote-form-head span {
  display: inline-grid;
  min-height: 34px;
  place-items: center;
  padding: 0 14px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.56);
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(143, 47, 23, 0.1);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.74rem;
  font-weight: 950;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.quote-form-head strong {
  color: rgba(79, 64, 56, 0.78);
  font-size: 0.92rem;
  font-weight: 850;
}

.quote-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.quote-form label,
.quote-notes-field {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: rgba(79, 64, 56, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 52px;
  min-width: 0;
  padding: 0 16px;
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 247, 234, 0.74));
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 18px;
  box-shadow:
    0 12px 30px rgba(36, 24, 18, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  outline: none;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.quote-form textarea {
  min-height: 116px;
  padding-block: 14px;
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  background: rgba(255, 253, 247, 0.96);
  border-color: rgba(217, 90, 27, 0.36);
  box-shadow:
    0 0 0 4px rgba(255, 211, 90, 0.18),
    0 14px 34px rgba(36, 24, 18, 0.06);
}

.quote-form input::placeholder,
.quote-form textarea::placeholder {
  color: rgba(79, 64, 56, 0.46);
}

.quote-meal-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

.quote-meal-options legend {
  width: 100%;
  margin-bottom: 2px;
  color: rgba(79, 64, 56, 0.82);
  font-size: 0.82rem;
  font-weight: 900;
}

.quote-meal-options label {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  color: var(--readable-ink);
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  font-weight: 900;
}

.quote-meal-options input {
  width: 16px;
  min-height: 16px;
  accent-color: #D95A1B;
  box-shadow: none;
}

.quote-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.quote-form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.quote-form-actions .btn,
.quote-form-actions .partner-text-link {
  min-width: min(100%, 210px);
}

.quote-form button[aria-busy="true"] {
  opacity: 0.74;
  pointer-events: none;
}

.quote-form-note {
  min-height: 22px;
  margin: -2px 0 0;
  color: rgba(79, 64, 56, 0.72);
  font-size: 0.9rem;
  font-weight: 780;
}

.quote-form-note.success {
  color: #2F684B;
}

.quote-form-note.error {
  color: #B6401C;
}

.partner-final-cta {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding: clamp(34px, 5vw, 70px);
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 211, 90, 0.34), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.92), rgba(255, 238, 216, 0.74));
}

.partner-final-cta h2 {
  margin-top: 0;
}

.partner-legal-note {
  max-width: 760px;
  margin-top: 4px;
  color: rgba(79, 64, 56, 0.78);
  font-size: 0.94rem;
}

.partner-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: clamp(54px, 7vw, 96px) auto 34px;
  padding: 18px;
  color: rgba(79, 64, 56, 0.8);
  background: rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 28px;
  box-shadow: 0 20px 58px rgba(36, 24, 18, 0.08);
  font-weight: 800;
}

.partner-footer .brand {
  grid-column: auto;
  grid-row: auto;
}

.partner-footer a:not(.brand) {
  color: var(--readable-brand);
  text-decoration: none;
}

@keyframes partnerFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -12px, 0) rotate(4deg);
  }
}

@media (max-width: 1120px) {
  .partner-page .desktop-nav,
  .partner-subnav-links {
    display: none;
  }

  .partner-hero,
  .partner-contact-section {
    grid-template-columns: 1fr;
  }

  .quote-section {
    grid-template-columns: 1fr;
  }

  .partner-hero h1 {
    max-width: 11ch;
  }

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

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

  .quote-support-card {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .partner-page .site-shell {
    padding-top: 102px;
  }

  .partner-page main,
  .partner-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .partner-page .site-header {
    grid-template-columns: 1fr auto;
    width: min(calc(100% - 24px), var(--container));
    min-height: 72px;
    padding: 10px 12px;
    border-radius: 24px;
  }

  .partner-page .brand {
    grid-column: 1;
    justify-self: start;
    padding: 8px 12px;
  }

  .partner-page .brand img {
    width: 134px;
  }

  .partner-page .header-actions .btn {
    display: none;
  }

  .quote-form-grid {
    grid-template-columns: 1fr;
  }

  .quote-form {
    padding: 16px;
  }

  .quote-form-head {
    align-items: flex-start;
  }

  .quote-meal-options {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .quote-meal-options label,
  .quote-form-actions .btn,
  .quote-form-actions .partner-text-link {
    width: 100%;
  }

  .quote-form-actions {
    align-items: stretch;
  }

  .partner-close-link {
    min-height: 42px;
    padding-inline: 14px;
  }

  .partner-subnav {
    top: 92px;
    border-radius: 22px;
  }

  .partner-breadcrumb {
    overflow-x: auto;
    white-space: nowrap;
  }

  .partner-hero,
  .partner-section,
  .partner-contact-section,
  .partner-final-cta {
    border-radius: 28px;
  }

  .partner-hero {
    min-height: 0;
    padding: 28px 22px;
  }

  .partner-hero h1 {
    font-size: clamp(3rem, 16vw, 4.4rem);
  }

  .partner-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
  }

  .partner-hero-actions,
  .partner-hero-actions .btn,
  .partner-text-link {
    width: 100%;
  }

  .partner-hero-actions .btn,
  .partner-text-link {
    justify-content: center;
  }

  .partner-hero-visual {
    min-height: 300px;
    border-radius: 26px;
  }

  .partner-section,
  .partner-contact-section,
  .partner-final-cta {
    padding: 24px;
  }

  .compact-heading h2,
  .partner-contact-section h2,
  .partner-final-cta h2 {
    font-size: clamp(2.1rem, 12vw, 3.25rem);
  }

  .partner-feature-grid,
  .dashboard-mock-grid {
    grid-template-columns: 1fr;
  }

  .partner-feature-grid article {
    min-height: 0;
  }

  .partner-pill-grid span {
    width: 100%;
    justify-content: center;
  }

  .testimonial-carousel {
    grid-auto-columns: minmax(260px, 88%);
  }

  .partner-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .partner-footer .brand {
    justify-self: center;
    margin-inline: auto;
  }
}

/* 59. Premium partner page polish */
.partner-page {
  --partner-glass: rgba(255, 253, 247, 0.72);
  --partner-line: rgba(217, 90, 27, 0.14);
  --partner-shadow: rgba(36, 24, 18, 0.13);
}

.partner-page .page-background {
  opacity: 0.68;
}

.partner-page main {
  gap: clamp(34px, 4.8vw, 72px);
}

.partner-page main > section {
  width: 100%;
  margin: 0;
  scroll-margin-top: 150px;
}

.partner-page section:not(.hero-section) {
  padding-block: 0;
}

.partner-subnav {
  width: min(100%, 1120px);
  margin: 0 auto;
}

.partner-hero {
  isolation: isolate;
  grid-template-columns: minmax(0, 0.98fr) minmax(360px, 0.78fr);
  min-height: clamp(560px, 46vw, 680px);
  padding: clamp(38px, 5.6vw, 86px);
  background:
    linear-gradient(rgba(217, 90, 27, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.024) 1px, transparent 1px),
    radial-gradient(circle at 82% 10%, rgba(255, 211, 90, 0.32), transparent 27%),
    radial-gradient(circle at 18% 92%, rgba(239, 79, 0, 0.12), transparent 36%),
    linear-gradient(138deg, rgba(255, 255, 255, 0.86), rgba(255, 253, 247, 0.4) 42%, rgba(255, 235, 206, 0.66)),
    linear-gradient(145deg, rgba(255, 253, 247, 0.96), rgba(255, 247, 234, 0.76));
  background-size: 32px 32px, 32px 32px, auto, auto, auto, auto;
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 42px 130px rgba(36, 24, 18, 0.14),
    0 18px 52px rgba(143, 47, 23, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.partner-hero::before {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 255, 255, 0.82), transparent 26%),
    linear-gradient(110deg, rgba(255, 255, 255, 0.58), transparent 36%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.34), transparent);
  opacity: 0.88;
}

.partner-hero::after {
  right: -6%;
  bottom: -16%;
  width: clamp(360px, 42vw, 680px);
  opacity: 0.76;
  filter: saturate(1.08);
}

.partner-hero-copy {
  max-width: 760px;
}

.partner-hero h1 {
  max-width: 12.5ch;
  font-size: clamp(3.4rem, 5.8vw, 6.6rem);
  line-height: 0.92;
  text-wrap: balance;
}

.partner-hero-copy > p:not(.eyebrow) {
  max-width: 670px;
  color: rgba(79, 64, 56, 0.86);
  font-size: clamp(1.12rem, 1.5vw, 1.34rem);
  line-height: 1.55;
}

.partner-hero-actions {
  margin-top: clamp(26px, 3vw, 38px);
}

.partner-hero .btn,
.partner-text-link {
  box-shadow:
    0 18px 44px rgba(143, 47, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.partner-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 690px;
  margin-top: clamp(22px, 2.7vw, 34px);
}

.partner-hero-metrics span {
  display: grid;
  gap: 6px;
  min-height: 86px;
  align-content: center;
  padding: 16px;
  color: rgba(79, 64, 56, 0.82);
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.78), rgba(255, 242, 224, 0.52));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 22px;
  box-shadow:
    0 16px 44px rgba(36, 24, 18, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  font-weight: 780;
}

.partner-hero-metrics strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.25vw, 1.16rem);
  font-weight: 950;
}

.partner-hero-visual {
  min-height: clamp(380px, 34vw, 500px);
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 253, 247, 0.95), transparent 26%),
    radial-gradient(circle at 78% 18%, rgba(255, 211, 90, 0.36), transparent 28%),
    linear-gradient(rgba(217, 90, 27, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.032) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 253, 247, 0.82), rgba(255, 229, 196, 0.5));
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
  border-color: rgba(255, 255, 255, 0.62);
  box-shadow:
    0 38px 110px rgba(36, 24, 18, 0.16),
    0 0 0 10px rgba(255, 253, 247, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.partner-hero-visual::before,
.partner-hero-visual::after {
  position: absolute;
  content: "";
  pointer-events: none;
}

.partner-hero-visual::before {
  inset: 9%;
  border: 1px solid rgba(217, 90, 27, 0.08);
  border-radius: 28px;
  box-shadow:
    inset 0 0 0 14px rgba(255, 253, 247, 0.18),
    0 0 64px rgba(255, 211, 90, 0.18);
}

.partner-hero-visual::after {
  top: 9%;
  right: 8%;
  width: 18px;
  aspect-ratio: 1;
  background: #FFD35A;
  border: 8px solid rgba(255, 253, 247, 0.72);
  border-radius: 50%;
  box-shadow:
    -160px 72px 0 -4px rgba(217, 90, 27, 0.36),
    -82px 260px 0 -2px rgba(255, 211, 90, 0.52);
}

.meal-visual .visual-orbit {
  inset: 13%;
  border-width: clamp(30px, 3.2vw, 50px);
  border-color: rgba(255, 253, 247, 0.54);
}

.meal-visual .visual-plate {
  width: clamp(190px, 21vw, 330px);
  border-width: clamp(12px, 1.5vw, 20px);
}

.visual-chip {
  min-height: 48px;
  padding-inline: 18px;
  box-shadow:
    0 18px 44px rgba(143, 47, 23, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
}

.chip-one {
  top: 12%;
  left: 8%;
  transform: rotate(-6deg);
}

.chip-two {
  top: 42%;
  right: 7%;
  transform: rotate(4deg);
}

.chip-three {
  bottom: 13%;
  left: 13%;
  transform: rotate(-3deg);
}

.partner-section {
  padding: clamp(34px, 4.5vw, 64px);
  border-color: rgba(255, 255, 255, 0.36);
  box-shadow:
    0 32px 110px rgba(36, 24, 18, 0.095),
    0 10px 34px rgba(143, 47, 23, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.partner-section::after {
  position: absolute;
  right: -7%;
  bottom: -18%;
  z-index: 0;
  width: clamp(180px, 20vw, 340px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 211, 90, 0.22), rgba(239, 79, 0, 0.07) 44%, transparent 68%);
  border-radius: 50%;
  pointer-events: none;
}

.compact-heading h2 {
  max-width: 820px;
  text-wrap: balance;
}

.partner-feature-grid article {
  min-height: 220px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.66), transparent 42%),
    radial-gradient(circle at 84% 12%, rgba(255, 211, 90, 0.18), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.86), rgba(255, 244, 229, 0.66));
  border-color: rgba(217, 90, 27, 0.1);
}

.partner-feature-grid article::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  content: "";
  background: linear-gradient(90deg, rgba(239, 79, 0, 0.38), rgba(255, 211, 90, 0.7), rgba(255, 253, 247, 0.8));
  opacity: 0.72;
}

.partner-feature-grid article::after {
  position: absolute;
  right: 18px;
  bottom: 16px;
  width: 76px;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 211, 90, 0.18), transparent 62%),
    repeating-radial-gradient(circle, rgba(143, 47, 23, 0.08) 0 2px, transparent 2px 12px);
  border-radius: 50%;
  opacity: 0.7;
}

.partner-feature-grid article:hover::before {
  opacity: 1;
}

.partner-feature-grid span,
.partner-timeline > li > span {
  width: 54px;
  height: 38px;
  box-shadow:
    0 14px 30px rgba(143, 47, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.partner-feature-grid h3 {
  margin-top: 22px;
  font-size: clamp(1.22rem, 1.65vw, 1.54rem);
}

.partner-feature-grid p {
  max-width: 32ch;
}

.partner-timeline li {
  min-height: 112px;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.62), transparent 44%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.86), rgba(255, 240, 220, 0.62));
  border-color: rgba(217, 90, 27, 0.12);
  box-shadow:
    0 16px 44px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.testimonial-carousel article {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.68), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.82), rgba(255, 239, 216, 0.62));
}

.partner-contact-section,
.partner-final-cta {
  border-color: rgba(255, 255, 255, 0.42);
}

.partner-final-cta {
  min-height: 320px;
}

.partner-final-cta .btn {
  min-width: min(100%, 250px);
}

@media (max-width: 1120px) {
  .partner-hero {
    grid-template-columns: 1fr;
  }

  .partner-hero h1 {
    max-width: 12ch;
  }

  .partner-hero-visual {
    min-height: 420px;
  }
}

@media (max-width: 760px) {
  .partner-page main {
    gap: 30px;
  }

  .partner-hero {
    padding: 24px;
  }

  .partner-hero h1 {
    max-width: 10ch;
    font-size: clamp(3.1rem, 15vw, 4.6rem);
    line-height: 0.92;
  }

  .partner-hero-metrics {
    grid-template-columns: 1fr;
  }

  .partner-hero-metrics span {
    min-height: 74px;
  }

  .partner-hero-visual {
    min-height: 330px;
  }

  .partner-section {
    padding: 24px;
  }

  .partner-feature-grid article {
    min-height: 180px;
  }
}

/* 60. Partner page nav removal and typography rhythm */
.partner-page .site-header,
.partner-page .partner-subnav,
.partner-page .section-pagination {
  display: none;
}

.partner-page .site-shell {
  padding-top: clamp(22px, 3.2vw, 50px);
}

.partner-page main {
  gap: clamp(32px, 4.4vw, 66px);
  width: min(calc(100% - clamp(28px, 5vw, 92px)), 1500px);
}

.partner-page main > section {
  scroll-margin-top: clamp(112px, 10vw, 150px);
}

/* 62A. Elegant partner quote form */
.partner-page main > .quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.72fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  min-height: clamp(720px, 58vw, 900px);
  padding: clamp(42px, 5vw, 76px) !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 13%, rgba(255, 211, 90, 0.22), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 211, 90, 0.24), transparent 30%),
    radial-gradient(circle at 9% 86%, rgba(239, 79, 0, 0.08), transparent 34%),
    linear-gradient(rgba(217, 90, 27, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.01) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.84) 48%, rgba(255, 241, 222, 0.72));
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
}

.partner-page main > .quote-section::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(112deg, rgba(255, 255, 255, 0.82), transparent 38%),
    radial-gradient(circle at 50% 54%, rgba(255, 211, 90, 0.11), transparent 36%);
  pointer-events: none;
}

.partner-page main > .quote-section::after {
  position: absolute;
  top: 10%;
  left: -76px;
  width: clamp(180px, 18vw, 300px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at center, #F7B733 0 9px, rgba(255, 211, 90, 0.2) 10px 18px, transparent 19px),
    repeating-radial-gradient(circle at center, rgba(239, 79, 0, 0.1) 0 2px, transparent 2px 28px);
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
}

.quote-section > * {
  position: relative;
  z-index: 1;
}

.quote-section-copy {
  max-width: 720px;
}

.quote-section-copy h2 {
  max-width: 10.8ch;
  margin-top: clamp(16px, 1.7vw, 24px);
  color: #22130E;
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
  line-height: 0.92;
  text-wrap: balance;
}

.quote-section-copy > p:not(.eyebrow) {
  max-width: 590px;
  color: rgba(79, 64, 56, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.13rem);
  font-weight: 760;
  line-height: 1.62;
}

.quote-highlight-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(24px, 3vw, 38px);
}

.quote-highlight-grid article {
  display: grid;
  min-height: 136px;
  align-content: end;
  gap: 8px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), transparent 46%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.86), rgba(255, 238, 216, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.54);
  border-radius: 22px;
  box-shadow:
    0 18px 48px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.quote-highlight-grid span {
  display: inline-grid;
  width: 42px;
  min-height: 30px;
  place-items: center;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.68);
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 950;
}

.quote-highlight-grid strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 950;
  line-height: 1.08;
}

.quote-highlight-grid small {
  color: rgba(79, 64, 56, 0.7);
  font-size: 0.82rem;
  font-weight: 760;
  line-height: 1.35;
}

.quote-support-card {
  width: min(100%, 620px);
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.quote-support-card a {
  display: grid;
  min-height: 94px;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 211, 90, 0.2), transparent 36%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.88), rgba(255, 243, 227, 0.64));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 22px;
  box-shadow:
    0 16px 42px rgba(36, 24, 18, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.quote-support-card a span {
  color: rgba(182, 64, 28, 0.82);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-support-card a strong {
  min-width: 0;
  overflow-wrap: anywhere;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.92rem, 1vw, 1.05rem);
  font-weight: 950;
  line-height: 1.18;
}

.quote-form.partner-contact-card {
  position: relative;
  gap: clamp(16px, 1.7vw, 22px);
  padding: clamp(20px, 2.2vw, 30px);
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 44%),
    radial-gradient(circle at 90% 8%, rgba(255, 211, 90, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(255, 240, 220, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(24px, 2vw, 34px);
  box-shadow:
    0 34px 96px rgba(36, 24, 18, 0.13),
    0 0 0 8px rgba(255, 253, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(22px) saturate(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.08);
}

.quote-form.partner-contact-card::before {
  position: absolute;
  inset: 10px;
  content: "";
  border: 1px solid rgba(217, 90, 27, 0.06);
  border-radius: clamp(18px, 1.6vw, 26px);
  pointer-events: none;
}

.quote-form.partner-contact-card::after {
  position: absolute;
  right: clamp(18px, 2vw, 28px);
  top: clamp(18px, 2vw, 28px);
  width: 64px;
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle at center, rgba(255, 253, 247, 0.92) 0 8px, transparent 9px),
    linear-gradient(145deg, rgba(255, 211, 90, 0.62), rgba(217, 90, 27, 0.22));
  border: 1px solid rgba(255, 253, 247, 0.74);
  border-radius: 50%;
  opacity: 0.72;
  pointer-events: none;
}

.quote-form > * {
  position: relative;
  z-index: 1;
}

.quote-form-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: start;
  gap: 14px;
  padding-right: 72px;
}

.quote-form-head span {
  min-height: 38px;
  padding: 0 16px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-color: rgba(255, 253, 247, 0.66);
  box-shadow:
    0 14px 30px rgba(143, 47, 23, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.48);
}

.quote-form-head strong {
  display: block;
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.1rem, 1.35vw, 1.34rem);
  font-weight: 950;
  line-height: 1.1;
}

.quote-form-head p {
  margin: 4px 0 0;
  color: rgba(79, 64, 56, 0.7);
  font-size: 0.88rem;
  font-weight: 760;
  line-height: 1.35;
}

.quote-form-grid {
  gap: 14px;
}

.quote-form label > span,
.quote-meal-options legend {
  color: rgba(79, 64, 56, 0.82);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.01em;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  min-height: 56px;
  color: #241812;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 250, 244, 0.58)),
    rgba(255, 253, 247, 0.78);
  border-color: rgba(217, 90, 27, 0.15);
  border-radius: 18px;
  font-weight: 760;
}

.quote-form textarea {
  min-height: 126px;
}

.quote-form input:hover,
.quote-form select:hover,
.quote-form textarea:hover {
  border-color: rgba(217, 90, 27, 0.25);
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.quote-meal-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.quote-meal-options label {
  justify-content: center;
  min-height: 52px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(255, 232, 204, 0.72));
  border-color: rgba(217, 90, 27, 0.16);
  transition:
    transform 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.quote-meal-options label:hover,
.quote-meal-options label:focus-within {
  border-color: rgba(217, 90, 27, 0.28);
  box-shadow: 0 14px 34px rgba(36, 24, 18, 0.08);
  transform: translateY(-2px);
}

.quote-meal-options label:has(input:checked) {
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.92));
  border-color: rgba(255, 253, 247, 0.58);
  box-shadow:
    0 16px 36px rgba(143, 47, 23, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.quote-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr);
  gap: 12px;
  align-items: stretch;
}

.quote-form-actions .btn,
.quote-form-actions .partner-text-link {
  width: 100%;
  min-width: 0;
  min-height: 56px;
}

.quote-form .quote-form-actions .partner-text-link {
  display: inline-grid;
  place-items: center;
  color: var(--readable-brand);
  background: rgba(255, 253, 247, 0.84);
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 999px;
  box-shadow:
    0 14px 34px rgba(36, 24, 18, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.quote-form-note {
  padding: 14px 16px;
  background: rgba(255, 253, 247, 0.62);
  border: 1px solid rgba(217, 90, 27, 0.08);
  border-radius: 18px;
  line-height: 1.38;
}

.quote-honeypot,
.quote-honeypot[hidden] {
  display: none !important;
}

.partner-hero {
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 0.76fr);
  gap: clamp(42px, 6vw, 96px);
  min-height: clamp(520px, 43vw, 640px);
  padding: clamp(34px, 5vw, 74px);
}

.partner-hero-copy {
  max-width: 690px;
}

.partner-hero h1 {
  max-width: 12.2ch;
  margin-top: clamp(14px, 1.6vw, 20px);
  font-size: clamp(3.1rem, 4.95vw, 5.75rem);
  line-height: 0.96;
}

.partner-hero-copy > p:not(.eyebrow) {
  max-width: 620px;
  margin-top: clamp(18px, 2.1vw, 26px);
  font-size: clamp(1.03rem, 1.22vw, 1.2rem);
  line-height: 1.62;
}

.partner-hero-actions {
  gap: 12px;
  margin-top: clamp(24px, 2.7vw, 34px);
}

.partner-hero-metrics {
  max-width: 650px;
  gap: 14px;
  margin-top: clamp(22px, 2.5vw, 32px);
}

.partner-hero-metrics span {
  min-height: 78px;
  padding: 15px 18px;
  line-height: 1.25;
}

.partner-hero-metrics strong {
  font-size: clamp(1rem, 1.08vw, 1.12rem);
  line-height: 1.05;
}

.partner-hero-visual {
  min-height: clamp(340px, 30vw, 455px);
}

.meal-visual .visual-plate {
  width: clamp(170px, 18vw, 285px);
}

.visual-chip {
  min-height: 44px;
  padding-inline: 16px;
  font-size: clamp(0.78rem, 0.9vw, 0.88rem);
}

.partner-section {
  padding: clamp(30px, 4vw, 56px);
}

.compact-heading {
  margin-bottom: clamp(22px, 3vw, 38px);
}

.compact-heading h2,
.partner-contact-section h2,
.partner-final-cta h2 {
  max-width: 860px;
  font-size: clamp(2.2rem, 3.65vw, 4.25rem);
  line-height: 1;
  text-wrap: balance;
}

.partner-feature-grid {
  gap: clamp(16px, 1.8vw, 24px);
}

.partner-feature-grid article {
  display: flex;
  min-height: 198px;
  flex-direction: column;
  align-items: flex-start;
  padding: clamp(24px, 2.2vw, 32px);
}

.partner-feature-grid span,
.partner-timeline > li > span {
  flex: 0 0 auto;
}

.partner-feature-grid h3 {
  max-width: 15ch;
  margin-top: clamp(18px, 1.8vw, 24px);
  font-size: clamp(1.12rem, 1.32vw, 1.36rem);
  line-height: 1.16;
  text-wrap: balance;
}

.partner-feature-grid p {
  max-width: 31ch;
  font-size: clamp(0.94rem, 0.98vw, 1.03rem);
  line-height: 1.62;
}

.partner-timeline {
  max-width: 980px;
}

.partner-timeline li {
  min-height: 0;
  padding: clamp(18px, 2vw, 26px);
}

.partner-timeline h3 {
  font-size: clamp(1.12rem, 1.28vw, 1.34rem);
  line-height: 1.16;
}

.partner-timeline p {
  max-width: 58ch;
}

.partner-pill-grid span {
  min-height: 54px;
  font-size: clamp(0.95rem, 1vw, 1.05rem);
  line-height: 1.15;
}

.testimonial-carousel article {
  min-height: 214px;
  padding: clamp(22px, 2.3vw, 30px);
}

.testimonial-carousel p {
  max-width: 38ch;
  line-height: 1.5;
}

.partner-page .faq-list article button {
  align-items: center;
  gap: clamp(12px, 1.6vw, 20px);
}

.partner-page .faq-question {
  line-height: 1.18;
  text-wrap: balance;
}

.partner-page .faq-list article > p {
  max-width: 860px;
  line-height: 1.64;
}

.partner-contact-section,
.partner-final-cta {
  padding: clamp(30px, 4vw, 58px);
}

.partner-contact-section p,
.partner-final-cta p,
.partner-legal-note {
  max-width: 680px;
}

@media (max-width: 1120px) {
  .partner-hero {
    grid-template-columns: 1fr;
    gap: clamp(28px, 5vw, 48px);
  }

  .partner-hero-copy {
    max-width: 760px;
  }

  .partner-hero h1 {
    max-width: 12.5ch;
    font-size: clamp(3rem, 8vw, 5.2rem);
  }

  .partner-hero-visual {
    min-height: clamp(320px, 48vw, 420px);
  }
}

@media (max-width: 760px) {
  .partner-page .site-shell {
    padding-top: 14px;
  }

  .partner-page main,
  .partner-footer {
    width: min(calc(100% - 24px), var(--container));
  }

  .partner-page main {
    gap: 26px;
  }

  .partner-hero {
    padding: 22px;
  }

  .partner-hero h1 {
    max-width: 10.8ch;
    font-size: clamp(2.65rem, 12.8vw, 3.85rem);
    line-height: 0.98;
  }

  .partner-hero-copy > p:not(.eyebrow) {
    font-size: 1rem;
    line-height: 1.55;
  }

  .partner-hero-metrics {
    grid-template-columns: 1fr;
  }

  .partner-hero-visual {
    min-height: 290px;
  }

  .partner-section,
  .partner-contact-section,
  .partner-final-cta {
    padding: 22px;
  }

  .compact-heading h2,
  .partner-contact-section h2,
  .partner-final-cta h2 {
    font-size: clamp(2rem, 10.5vw, 3.1rem);
  }

  .partner-feature-grid h3,
  .partner-feature-grid p,
  .testimonial-carousel p {
    max-width: none;
  }

  .partner-feature-grid article {
    min-height: 0;
  }

  .partner-timeline li {
    grid-template-columns: 1fr;
  }
}

/* 61. Partner topbar and premium page finish */
.partner-topbar {
  position: sticky;
  top: clamp(12px, 1.7vw, 22px);
  z-index: 80;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(12px, 1.8vw, 24px);
  width: min(calc(100% - clamp(28px, 5vw, 92px)), 1500px);
  min-height: clamp(74px, 6vw, 92px);
  margin: clamp(12px, 1.8vw, 24px) auto 0;
  padding: 10px 12px;
  overflow: hidden;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.78), rgba(255, 253, 247, 0.52)),
    rgba(255, 253, 247, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 999px;
  box-shadow:
    0 28px 84px rgba(36, 24, 18, 0.12),
    0 6px 24px rgba(143, 47, 23, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.partner-topbar::before {
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 50%, rgba(255, 211, 90, 0.24), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.42), transparent);
  opacity: 0.78;
  pointer-events: none;
}

.partner-topbar > * {
  position: relative;
  z-index: 1;
}

.partner-topbar-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 8px 18px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.94), rgba(255, 245, 232, 0.74));
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 999px;
  box-shadow:
    0 14px 32px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.partner-topbar-brand:hover {
  box-shadow:
    0 18px 42px rgba(36, 24, 18, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transform: translateY(-2px);
}

.partner-topbar-brand img {
  display: block;
  width: clamp(142px, 12vw, 184px);
  height: auto;
}

.partner-topbar-links,
.partner-topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.partner-topbar-links {
  justify-content: center;
  padding: 8px;
  background: rgba(255, 253, 247, 0.46);
  border: 1px solid rgba(217, 90, 27, 0.08);
  border-radius: 999px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.partner-topbar-links a,
.partner-topbar-home,
.partner-topbar-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--readable-ink);
  text-decoration: none;
  border-radius: 999px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.78rem, 0.88vw, 0.9rem);
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.partner-topbar-links a {
  padding: 0 16px;
  color: rgba(36, 24, 18, 0.72);
}

.partner-topbar-links a:hover,
.partner-topbar-links a:focus-visible {
  color: var(--readable-ink);
  background: rgba(255, 211, 90, 0.18);
  transform: translateY(-1px);
}

.partner-topbar-links a.is-active {
  color: var(--readable-ink);
  background:
    linear-gradient(145deg, rgba(255, 211, 90, 0.98), rgba(247, 183, 51, 0.92));
  box-shadow:
    0 12px 26px rgba(143, 47, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.partner-topbar-actions {
  justify-content: flex-end;
}

.partner-topbar-home {
  padding: 0 18px;
  color: var(--readable-brand);
  background: rgba(255, 253, 247, 0.7);
  border: 1px solid rgba(217, 90, 27, 0.12);
}

.partner-topbar-home:hover,
.partner-topbar-home:focus-visible {
  border-color: rgba(217, 90, 27, 0.24);
  box-shadow: 0 12px 26px rgba(36, 24, 18, 0.08);
  transform: translateY(-1px);
}

.partner-topbar-cta {
  min-width: clamp(132px, 11vw, 170px);
  padding: 0 20px;
  color: #FFFDF7;
  background:
    linear-gradient(135deg, #EF4F00 0%, #D95A1B 56%, #9F3518 100%);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow:
    0 16px 34px rgba(143, 47, 23, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.partner-topbar-cta:hover,
.partner-topbar-cta:focus-visible {
  box-shadow:
    0 20px 44px rgba(143, 47, 23, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  transform: translateY(-2px);
}

.partner-page .site-shell {
  padding-top: clamp(16px, 2.4vw, 34px);
}

.partner-page main {
  gap: clamp(38px, 4.8vw, 74px);
}

.partner-hero {
  min-height: clamp(500px, 40vw, 620px);
  padding: clamp(34px, 4.8vw, 72px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 211, 90, 0.34), transparent 28%),
    radial-gradient(circle at 10% 82%, rgba(239, 79, 0, 0.1), transparent 34%),
    linear-gradient(rgba(217, 90, 27, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.016) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 253, 247, 0.76) 44%, rgba(255, 241, 220, 0.7));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
  border-color: rgba(255, 255, 255, 0.6);
}

.partner-hero h1 {
  max-width: 12.6ch;
  font-size: clamp(3rem, 4.55vw, 5.25rem);
  line-height: 0.98;
}

.partner-hero-copy > p:not(.eyebrow) {
  color: rgba(79, 64, 56, 0.82);
  font-weight: 720;
}

.partner-hero .eyebrow,
.partner-section .eyebrow,
.partner-contact-section .eyebrow,
.partner-final-cta .eyebrow {
  box-shadow:
    0 12px 26px rgba(143, 47, 23, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.partner-hero-visual {
  min-height: clamp(340px, 28vw, 435px);
  transform: translateZ(0);
  transition:
    transform 420ms cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 420ms ease;
}

.partner-hero:hover .partner-hero-visual {
  box-shadow:
    0 44px 128px rgba(36, 24, 18, 0.18),
    0 0 0 10px rgba(255, 253, 247, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  transform: translate3d(0, -6px, 0);
}

.partner-hero-metrics span,
.partner-feature-grid article,
.partner-timeline li,
.partner-pill-grid span,
.testimonial-carousel article {
  backdrop-filter: blur(18px) saturate(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.04);
}

.partner-feature-grid article {
  border-color: rgba(255, 255, 255, 0.48);
}

.partner-section {
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.2), transparent 30%),
    radial-gradient(circle at 8% 88%, rgba(239, 79, 0, 0.07), transparent 32%),
    linear-gradient(rgba(217, 90, 27, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.014) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(255, 250, 241, 0.68));
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
}

@media (max-width: 1180px) {
  .partner-topbar {
    grid-template-columns: 1fr auto;
    border-radius: 32px;
  }

  .partner-topbar-brand {
    justify-self: start;
  }

  .partner-topbar-links {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .partner-topbar-links::-webkit-scrollbar {
    display: none;
  }

  .partner-topbar-actions {
    justify-self: end;
  }
}

@media (max-width: 760px) {
  .partner-topbar {
    top: 10px;
    width: min(calc(100% - 20px), var(--container));
    min-height: 0;
    gap: 10px;
    padding: 9px;
    border-radius: 26px;
  }

  .partner-topbar-brand {
    min-height: 48px;
    padding: 7px 12px;
  }

  .partner-topbar-brand img {
    width: 128px;
  }

  .partner-topbar-actions {
    gap: 6px;
  }

  .partner-topbar-home {
    min-height: 42px;
    padding-inline: 13px;
  }

  .partner-topbar-cta {
    display: none;
  }

  .partner-topbar-links {
    padding: 6px;
  }

  .partner-topbar-links a {
    min-height: 40px;
    padding: 0 13px;
    font-size: 0.78rem;
  }

  .partner-page .site-shell {
    padding-top: 16px;
  }

  .partner-hero {
    padding: 22px;
  }

  .partner-hero h1 {
    font-size: clamp(2.55rem, 11.2vw, 3.45rem);
    line-height: 1;
  }
}

/* 62. Partner page refined text and boundary polish */
.partner-page main > .partner-hero,
.partner-page main > .partner-section,
.partner-page main > .partner-contact-section,
.partner-page main > .partner-final-cta {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 30px 96px rgba(36, 24, 18, 0.095),
    0 10px 26px rgba(143, 47, 23, 0.035),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.partner-page main > .partner-hero {
  padding: clamp(42px, 4.6vw, 72px) clamp(40px, 5vw, 76px) !important;
  grid-template-columns: minmax(0, 0.86fr) minmax(360px, 0.82fr);
  gap: clamp(48px, 6.2vw, 108px);
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 211, 90, 0.3), transparent 26%),
    radial-gradient(circle at 10% 88%, rgba(239, 79, 0, 0.075), transparent 30%),
    linear-gradient(rgba(217, 90, 27, 0.013) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.012) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 253, 247, 0.82) 48%, rgba(255, 245, 232, 0.72));
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  border-radius: clamp(28px, 2.6vw, 42px);
}

.partner-page main > .partner-hero::before {
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.72), transparent 38%),
    radial-gradient(circle at 76% 18%, rgba(255, 211, 90, 0.16), transparent 26%);
  opacity: 0.64;
}

.partner-page main > .partner-hero::after {
  opacity: 0.44;
  filter: blur(0.2px) saturate(0.95);
}

.partner-hero-copy {
  align-self: center;
  max-width: 640px;
}

.partner-hero h1 {
  max-width: 11.7ch;
  margin-top: clamp(16px, 1.4vw, 22px);
  color: #22130E;
  font-size: clamp(3rem, 4.05vw, 4.75rem);
  line-height: 1.02;
  text-wrap: balance;
}

.partner-hero-copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-top: clamp(18px, 1.8vw, 24px);
  color: rgba(79, 64, 56, 0.78);
  font-size: clamp(1rem, 1.08vw, 1.14rem);
  font-weight: 680;
  line-height: 1.68;
}

.partner-hero-actions {
  margin-top: clamp(24px, 2.4vw, 34px);
}

.partner-hero-metrics {
  max-width: 620px;
  gap: 12px;
}

.partner-hero-metrics span {
  min-height: 72px;
  padding: 14px 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.5));
  border-color: rgba(217, 90, 27, 0.075);
  box-shadow:
    0 14px 36px rgba(36, 24, 18, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-hero-visual {
  align-self: center;
  min-height: clamp(320px, 27vw, 420px);
  border-color: rgba(255, 255, 255, 0.54);
  border-radius: clamp(26px, 2.4vw, 36px);
  box-shadow:
    0 32px 92px rgba(36, 24, 18, 0.12),
    0 0 0 8px rgba(255, 253, 247, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.meal-visual .visual-plate {
  width: clamp(170px, 17vw, 270px);
}

.partner-page main > .partner-section,
.partner-page main > .partner-contact-section,
.partner-page main > .partner-final-cta {
  padding: clamp(42px, 4.5vw, 70px) clamp(34px, 4.2vw, 62px) !important;
  border-radius: clamp(28px, 2.5vw, 40px);
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 211, 90, 0.17), transparent 28%),
    radial-gradient(circle at 10% 90%, rgba(239, 79, 0, 0.055), transparent 30%),
    linear-gradient(rgba(217, 90, 27, 0.011) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.01) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(255, 251, 244, 0.72));
  background-size: auto, auto, 32px 32px, 32px 32px, auto;
}

.compact-heading h2,
.partner-contact-section h2,
.partner-final-cta h2 {
  max-width: 780px;
  color: #22130E;
  font-size: clamp(2.15rem, 3.25vw, 3.85rem);
  line-height: 1.04;
}

.partner-feature-grid article,
.partner-timeline li,
.testimonial-carousel article,
.partner-dashboard-mock,
.partner-contact-card {
  border-color: rgba(255, 255, 255, 0.46);
  box-shadow:
    0 18px 58px rgba(36, 24, 18, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.partner-feature-grid article {
  min-height: 184px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), transparent 42%),
    radial-gradient(circle at 88% 12%, rgba(255, 211, 90, 0.14), transparent 28%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.84), rgba(255, 246, 235, 0.56));
}

.partner-feature-grid h3 {
  color: #241812;
  font-size: clamp(1.08rem, 1.22vw, 1.3rem);
  line-height: 1.18;
}

.partner-feature-grid p,
.partner-timeline p,
.testimonial-carousel p,
.partner-contact-section p,
.partner-final-cta p {
  color: rgba(79, 64, 56, 0.76);
  font-weight: 640;
}

.partner-topbar {
  min-height: clamp(68px, 5.4vw, 82px);
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.82), rgba(255, 253, 247, 0.58)),
    rgba(255, 253, 247, 0.66);
  border-color: rgba(255, 255, 255, 0.5);
  border-radius: clamp(26px, 2.4vw, 38px);
  box-shadow:
    0 24px 72px rgba(36, 24, 18, 0.105),
    0 6px 18px rgba(143, 47, 23, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.partner-topbar-brand {
  min-height: 50px;
  padding: 6px 16px;
  border-color: rgba(217, 90, 27, 0.07);
}

.partner-topbar-brand img {
  width: clamp(132px, 11vw, 170px);
}

.partner-topbar-links {
  padding: 6px;
  background: rgba(255, 253, 247, 0.32);
  border-color: rgba(217, 90, 27, 0.055);
}

.partner-topbar-links a,
.partner-topbar-home,
.partner-topbar-cta {
  min-height: 40px;
  font-size: clamp(0.76rem, 0.82vw, 0.86rem);
}

@media (max-width: 1120px) {
  .partner-page main > .partner-hero {
    grid-template-columns: 1fr;
    padding: clamp(32px, 5vw, 54px) !important;
  }

  .partner-hero h1 {
    max-width: 12ch;
    font-size: clamp(2.85rem, 7vw, 4.8rem);
  }
}

@media (max-width: 760px) {
  .partner-page main > .partner-hero,
  .partner-page main > .partner-section,
  .partner-page main > .partner-contact-section,
  .partner-page main > .partner-final-cta {
    padding: 22px !important;
  }

  .partner-hero h1 {
    font-size: clamp(2.35rem, 10.8vw, 3.25rem);
    line-height: 1.02;
  }

  .partner-hero-copy > p:not(.eyebrow) {
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .partner-topbar {
    border-radius: 24px;
  }
}

/* 64. Wallet section cascade guard */
section.wallet-section {
  padding: clamp(70px, 6vw, 96px) clamp(48px, 5.4vw, 82px) !important;
}

.wallet-section,
.wallet-copy,
.wallet-showcase,
.wallet-card,
.wallet-breakdown,
.wallet-explainer,
.wallet-calculator-panel,
.wallet-control,
.wallet-stat-grid div {
  min-width: 0;
}

.wallet-showcase,
.wallet-card,
.wallet-breakdown,
.wallet-explainer {
  width: 100%;
}

.wallet-copy h2 {
  max-width: 11.2ch;
  font-size: clamp(2.6rem, 4.7vw, 4.65rem);
  line-height: 0.99;
}

.wallet-copy > p {
  max-width: 570px;
}

.wallet-calculator-panel {
  gap: 22px;
  padding: clamp(22px, 2.4vw, 30px);
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 211, 90, 0.28), transparent 28%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(255, 247, 235, 0.66));
  border-color: rgba(217, 90, 27, 0.13);
  box-shadow:
    0 28px 82px rgba(36, 24, 18, 0.095),
    0 8px 22px rgba(143, 47, 23, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wallet-calculator-head {
  padding-bottom: 2px;
}

.wallet-calculator-head strong {
  max-width: 13ch;
}

.wallet-control {
  gap: 12px;
}

.wallet-control > span {
  padding-inline: 2px;
}

.wallet-control output {
  min-width: 104px;
  min-height: 38px;
  padding: 0 16px;
  box-shadow:
    0 14px 30px rgba(217, 90, 27, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.wallet-control input[type="range"] {
  --track-fill: 40%;
  height: 26px;
  padding: 0;
  overflow: visible;
  background:
    radial-gradient(circle at var(--track-fill) 50%, rgba(255, 211, 90, 0.42) 0 18px, transparent 19px),
    linear-gradient(90deg, #EF4F00 0 var(--track-fill), rgba(217, 90, 27, 0.12) var(--track-fill) 100%);
  border: 1px solid rgba(217, 90, 27, 0.13);
  box-shadow:
    inset 0 2px 8px rgba(36, 24, 18, 0.1),
    0 14px 30px rgba(36, 24, 18, 0.045);
}

.wallet-control input[type="range"]::-webkit-slider-runnable-track {
  height: 26px;
  border-radius: 999px;
}

.wallet-control input[type="range"]::-webkit-slider-thumb {
  width: 32px;
  height: 32px;
  margin-top: -4px;
  background:
    radial-gradient(circle at 50% 50%, #FFFDF7 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, #EF4F00 0 42%, transparent 43%),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 5px solid #FFFDF7;
  box-shadow:
    0 15px 34px rgba(217, 90, 27, 0.3),
    0 0 0 8px rgba(255, 211, 90, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wallet-control input[type="range"]::-moz-range-track {
  height: 26px;
  border-radius: 999px;
}

.wallet-control input[type="range"]::-moz-range-thumb {
  width: 22px;
  height: 22px;
  background:
    radial-gradient(circle at 50% 50%, #FFFDF7 0 18%, transparent 19%),
    radial-gradient(circle at 50% 50%, #EF4F00 0 42%, transparent 43%),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 5px solid #FFFDF7;
}

.wallet-duration-row {
  min-height: 58px;
  padding: 9px;
}

.wallet-duration-row button {
  min-width: 74px;
}

.wallet-card {
  min-height: 0;
  padding: clamp(28px, 3vw, 40px);
}

.wallet-balance-hero strong {
  overflow-wrap: anywhere;
  font-size: clamp(3.6rem, 6.2vw, 5.8rem);
}

.wallet-stat-grid strong,
.wallet-breakdown span {
  overflow-wrap: anywhere;
}

.wallet-breakdown {
  padding: clamp(18px, 2vw, 24px);
}

.wallet-breakdown div {
  min-width: 0;
}

@media (max-width: 760px) {
  section.wallet-section {
    padding: 28px 22px !important;
  }

  .wallet-copy h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.05rem);
    line-height: 1;
  }

  .wallet-calculator-panel {
    gap: 18px;
    padding: 18px;
  }

  .wallet-control output {
    min-width: 0;
  }

  .wallet-control input[type="range"] {
    height: 24px;
  }

  .wallet-control input[type="range"]::-webkit-slider-runnable-track {
    height: 24px;
  }

  .wallet-control input[type="range"]::-webkit-slider-thumb {
    width: 30px;
    height: 30px;
    margin-top: -3px;
  }
}

/* 65. Wallet vertical rhythm and premium slider polish */
section.wallet-section {
  align-items: center;
  padding: clamp(96px, 7.4vw, 132px) clamp(48px, 5.4vw, 82px) clamp(72px, 5.8vw, 104px) !important;
  scroll-margin-top: 170px;
}

.wallet-copy,
.wallet-showcase {
  align-self: center;
}

.wallet-copy {
  padding-block: clamp(10px, 1.4vw, 22px);
}

.wallet-copy .eyebrow {
  margin-top: 0;
}

.wallet-copy h2 {
  max-width: 10.8ch;
  margin-top: clamp(20px, 2vw, 30px);
  font-size: clamp(2.55rem, 4.35vw, 4.35rem);
  line-height: 1.02;
}

.wallet-calculator-panel {
  padding: clamp(24px, 2.5vw, 32px);
}

.wallet-control {
  gap: 11px;
}

.wallet-control input[type="range"] {
  height: 24px;
  overflow: visible;
  background:
    linear-gradient(90deg, #EF4F00 0 var(--track-fill), rgba(143, 47, 23, 0.16) var(--track-fill) 100%) center / 100% 8px no-repeat;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
}

.wallet-control input[type="range"]::-webkit-slider-runnable-track {
  height: 8px;
  background: transparent;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 3px rgba(36, 24, 18, 0.12),
    0 10px 22px rgba(36, 24, 18, 0.045);
}

.wallet-control input[type="range"]::-webkit-slider-thumb {
  width: 24px;
  height: 24px;
  margin-top: -8px;
  background:
    radial-gradient(circle at 50% 50%, #EF4F00 0 28%, transparent 30%),
    linear-gradient(145deg, #FFFDF7, #FFE9BA);
  border: 3px solid #FFFDF7;
  box-shadow:
    0 10px 22px rgba(217, 90, 27, 0.24),
    0 0 0 5px rgba(255, 211, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wallet-control input[type="range"]::-moz-range-track {
  height: 8px;
  background: transparent;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 3px rgba(36, 24, 18, 0.12),
    0 10px 22px rgba(36, 24, 18, 0.045);
}

.wallet-control input[type="range"]::-moz-range-thumb {
  width: 18px;
  height: 18px;
  background:
    radial-gradient(circle at 50% 50%, #EF4F00 0 28%, transparent 30%),
    linear-gradient(145deg, #FFFDF7, #FFE9BA);
  border: 3px solid #FFFDF7;
  box-shadow:
    0 10px 22px rgba(217, 90, 27, 0.24),
    0 0 0 5px rgba(255, 211, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wallet-control input[type="range"]:hover::-webkit-slider-thumb,
.wallet-control input[type="range"]:focus-visible::-webkit-slider-thumb {
  box-shadow:
    0 12px 26px rgba(217, 90, 27, 0.3),
    0 0 0 7px rgba(255, 211, 90, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
  transform: scale(1.05);
}

@media (max-width: 1120px) {
  section.wallet-section {
    padding-top: clamp(72px, 8vw, 96px) !important;
  }
}

@media (max-width: 760px) {
  section.wallet-section {
    padding: 54px 22px 30px !important;
    scroll-margin-top: 112px;
  }

  .wallet-copy {
    padding-block: 0;
  }

  .wallet-copy h2 {
    margin-top: 18px;
    font-size: clamp(2.12rem, 10vw, 2.95rem);
  }

  .wallet-control input[type="range"] {
    height: 22px;
    background-size: 100% 7px;
  }

  .wallet-control input[type="range"]::-webkit-slider-runnable-track {
    height: 7px;
  }

  .wallet-control input[type="range"]::-webkit-slider-thumb {
    width: 22px;
    height: 22px;
    margin-top: -7.5px;
  }
}

/* 66. Wallet final spacing and slim calculator controls */
section.wallet-section {
  align-items: center !important;
  padding-top: clamp(112px, 8vw, 148px) !important;
  padding-bottom: clamp(82px, 6vw, 116px) !important;
}

.wallet-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding-top: clamp(8px, 1vw, 16px);
}

.wallet-copy h2 {
  margin-bottom: clamp(24px, 2.2vw, 34px);
}

.wallet-calculator-panel {
  gap: clamp(16px, 1.7vw, 22px);
}

.wallet-control {
  gap: 9px;
}

.wallet-control input[type="range"] {
  display: block;
  width: 100%;
  height: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  padding: 0 !important;
  overflow: visible;
  appearance: none !important;
  -webkit-appearance: none !important;
  background:
    linear-gradient(90deg, #EF4F00 0 var(--track-fill), rgba(143, 47, 23, 0.13) var(--track-fill) 100%) center / 100% 6px no-repeat !important;
  border: 0 !important;
  border-radius: 999px;
  box-shadow: none !important;
  cursor: pointer;
}

.wallet-control input[type="range"]::-webkit-slider-runnable-track {
  height: 6px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 2px rgba(36, 24, 18, 0.11),
    0 8px 18px rgba(217, 90, 27, 0.08) !important;
}

.wallet-control input[type="range"]::-webkit-slider-thumb {
  width: 20px !important;
  height: 20px !important;
  margin-top: -7px !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  background:
    radial-gradient(circle at 50% 50%, #EF4F00 0 24%, transparent 26%),
    linear-gradient(145deg, #FFFDF7 0%, #FFE9B8 100%) !important;
  border: 3px solid #FFFDF7 !important;
  border-radius: 50%;
  box-shadow:
    0 8px 18px rgba(217, 90, 27, 0.22),
    0 0 0 4px rgba(255, 211, 90, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wallet-control input[type="range"]::-moz-range-track {
  height: 6px !important;
  background: transparent !important;
  border: 0 !important;
  border-radius: 999px;
  box-shadow:
    inset 0 1px 2px rgba(36, 24, 18, 0.11),
    0 8px 18px rgba(217, 90, 27, 0.08) !important;
}

.wallet-control input[type="range"]::-moz-range-progress {
  height: 6px;
  background: #EF4F00;
  border-radius: 999px;
}

.wallet-control input[type="range"]::-moz-range-thumb {
  width: 14px !important;
  height: 14px !important;
  background:
    radial-gradient(circle at 50% 50%, #EF4F00 0 24%, transparent 26%),
    linear-gradient(145deg, #FFFDF7 0%, #FFE9B8 100%) !important;
  border: 3px solid #FFFDF7 !important;
  border-radius: 50%;
  box-shadow:
    0 8px 18px rgba(217, 90, 27, 0.22),
    0 0 0 4px rgba(255, 211, 90, 0.17),
    inset 0 1px 0 rgba(255, 255, 255, 0.88) !important;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wallet-control input[type="range"]:hover::-webkit-slider-thumb,
.wallet-control input[type="range"]:focus-visible::-webkit-slider-thumb {
  transform: scale(1.08);
  box-shadow:
    0 10px 24px rgba(217, 90, 27, 0.28),
    0 0 0 6px rgba(255, 211, 90, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.9) !important;
}

@media (max-width: 1120px) {
  section.wallet-section {
    padding-top: clamp(82px, 9vw, 112px) !important;
  }
}

@media (max-width: 760px) {
  section.wallet-section {
    padding-top: 64px !important;
    padding-bottom: 34px !important;
  }

  .wallet-copy {
    justify-content: flex-start;
  }

  .wallet-control input[type="range"] {
    height: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    background-size: 100% 5px !important;
  }

  .wallet-control input[type="range"]::-webkit-slider-runnable-track {
    height: 5px !important;
  }

  .wallet-control input[type="range"]::-webkit-slider-thumb {
    width: 18px !important;
    height: 18px !important;
    margin-top: -6.5px !important;
  }
}

/* 67. Wallet demo anchor landing polish */
.wallet-showcase {
  scroll-margin-top: clamp(270px, 21vw, 320px);
}

section.wallet-section {
  scroll-margin-top: clamp(120px, 11vw, 170px);
}

@media (max-width: 760px) {
  .wallet-showcase {
    scroll-margin-top: 128px;
  }

  section.wallet-section {
    scroll-margin-top: 98px;
  }
}

/* 68. Wallet story section */
.wallet-story-section {
  grid-template-columns: minmax(320px, 0.86fr) minmax(480px, 1fr);
  gap: clamp(30px, 5vw, 76px);
  align-items: center !important;
  min-height: auto;
  padding: clamp(84px, 7vw, 118px) clamp(46px, 5.4vw, 82px) !important;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 211, 90, 0.32), transparent 31%),
    radial-gradient(circle at 14% 86%, rgba(239, 79, 0, 0.11), transparent 34%),
    linear-gradient(rgba(217, 90, 27, 0.024) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.018) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 236, 0.78));
  background-size: auto, auto, 34px 34px, 34px 34px, auto;
}

.wallet-story-section::after {
  right: -7%;
  bottom: -16%;
  width: clamp(340px, 34vw, 580px);
  opacity: 0.45;
}

.wallet-story-copy {
  display: block;
  max-width: 660px;
  min-height: 0;
  padding-top: 0;
}

.wallet-story-copy h2 {
  max-width: 10.6ch;
  margin: clamp(18px, 2vw, 26px) 0 0;
  font-size: clamp(3.2rem, 5.8vw, 6rem);
  line-height: 0.98;
  text-wrap: balance;
}

.wallet-story-copy > p {
  max-width: 620px;
  margin-top: clamp(20px, 2.2vw, 28px);
  color: rgba(79, 64, 56, 0.82);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
  font-weight: 720;
  line-height: 1.58;
}

.wallet-promise-grid {
  display: grid;
  gap: 12px;
  margin-top: clamp(26px, 3.2vw, 42px);
}

.wallet-promise-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 14px;
  row-gap: 5px;
  align-items: start;
  padding: clamp(16px, 2vw, 20px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 246, 233, 0.58)),
    radial-gradient(circle at 96% 12%, rgba(255, 211, 90, 0.22), transparent 32%);
  border: 1px solid rgba(217, 90, 27, 0.11);
  border-radius: 24px;
  box-shadow:
    0 22px 62px rgba(36, 24, 18, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

.wallet-promise-grid article::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.42), transparent);
  opacity: 0;
  transform: translateX(-90%);
  transition: opacity 280ms ease, transform 700ms ease;
  pointer-events: none;
}

.wallet-promise-grid article:hover::after {
  opacity: 0.72;
  transform: translateX(90%);
}

.wallet-promise-grid span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  grid-row: span 2;
  color: #241812;
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(217, 90, 27, 0.14);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 950;
}

.wallet-promise-grid strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.02rem, 1.3vw, 1.22rem);
  font-weight: 950;
  line-height: 1.08;
}

.wallet-promise-grid p {
  max-width: 440px;
  margin: 0;
  color: rgba(79, 64, 56, 0.72);
  font-size: 0.95rem;
  font-weight: 680;
  line-height: 1.45;
}

.wallet-art-stage {
  gap: clamp(16px, 2vw, 22px);
}

.wallet-visual-card {
  position: relative;
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
  min-height: clamp(560px, 46vw, 660px);
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  color: var(--readable-paper);
  background:
    linear-gradient(rgba(255, 253, 247, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.055) 1px, transparent 1px),
    radial-gradient(circle at 82% 12%, rgba(255, 211, 90, 0.38), transparent 32%),
    radial-gradient(circle at 18% 86%, rgba(255, 253, 247, 0.16), transparent 34%),
    linear-gradient(145deg, #EF4F00 0%, #D95A1B 50%, #8F2F17 100%);
  background-size: 30px 30px, 30px 30px, auto, auto, auto;
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-radius: 34px;
  box-shadow:
    0 38px 116px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 253, 247, 0.34);
  isolation: isolate;
}

.wallet-visual-card::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 211, 90, 0.22), transparent 28%),
    linear-gradient(90deg, transparent, rgba(255, 253, 247, 0.14), transparent);
  opacity: 0.84;
  pointer-events: none;
}

.wallet-visual-top,
.wallet-flow-strip {
  position: relative;
  z-index: 1;
}

.wallet-visual-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.wallet-visual-top div {
  display: grid;
  gap: 4px;
}

.wallet-visual-top span,
.wallet-balance-orb span,
.wallet-float-note span,
.wallet-flow-strip span,
.wallet-policy-card span {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.76rem;
  font-weight: 950;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.wallet-visual-top span,
.wallet-balance-orb span,
.wallet-float-note span,
.wallet-flow-strip span {
  color: rgba(255, 253, 247, 0.72);
}

.wallet-visual-top strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.28rem, 2vw, 1.72rem);
  font-weight: 950;
  line-height: 1.02;
}

.wallet-visual-top small {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  padding: 0 14px;
  color: #241812;
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 253, 247, 0.52);
  border-radius: 999px;
  box-shadow: 0 14px 30px rgba(36, 24, 18, 0.18);
  font-weight: 950;
}

.wallet-orbit {
  position: relative;
  z-index: 1;
  min-height: clamp(330px, 30vw, 390px);
}

.wallet-orbit-ring,
.wallet-balance-orb,
.wallet-float-note {
  position: absolute;
}

.wallet-orbit-ring {
  inset: 8%;
  border: 1px solid rgba(255, 253, 247, 0.16);
  border-radius: 50%;
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.18),
    0 0 70px rgba(255, 211, 90, 0.14);
  animation: walletOrbitDrift 8s ease-in-out infinite;
}

.wallet-orbit-ring:nth-child(2) {
  inset: 20%;
  opacity: 0.72;
  animation-delay: -2.6s;
}

.wallet-balance-orb {
  top: 50%;
  left: 50%;
  display: grid;
  width: clamp(190px, 18vw, 250px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 7px;
  padding: 24px;
  text-align: center;
  background:
    radial-gradient(circle at 34% 26%, rgba(255, 211, 90, 0.3), transparent 28%),
    linear-gradient(145deg, #2B1811, #170C08);
  border: 10px solid rgba(255, 253, 247, 0.72);
  border-radius: 50%;
  box-shadow:
    0 34px 90px rgba(36, 24, 18, 0.34),
    0 0 0 20px rgba(255, 253, 247, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  transform: translate(-50%, -50%);
}

.wallet-balance-orb strong {
  color: #FFD35A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.6rem);
  font-weight: 950;
  line-height: 0.92;
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.26);
}

.wallet-balance-orb small {
  color: rgba(255, 253, 247, 0.72);
  font-weight: 780;
}

.wallet-float-note {
  display: grid;
  min-width: 150px;
  gap: 4px;
  padding: 13px 15px;
  background:
    linear-gradient(145deg, rgba(255, 253, 247, 0.2), rgba(255, 253, 247, 0.08));
  border: 1px solid rgba(255, 253, 247, 0.22);
  border-radius: 20px;
  box-shadow:
    0 22px 54px rgba(36, 24, 18, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  animation: walletFloat 4.8s ease-in-out infinite;
}

.wallet-float-note strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.62rem);
  font-weight: 950;
  line-height: 1;
}

.wallet-float-note-paid {
  top: 12%;
  left: 1%;
  transform: rotate(-4deg);
}

.wallet-float-note-used {
  top: 16%;
  right: 0;
  animation-delay: -1.4s;
  transform: rotate(4deg);
}

.wallet-float-note-left {
  right: 7%;
  bottom: 9%;
  animation-delay: -2.8s;
  transform: rotate(-2deg);
}

.wallet-flow-strip {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 10px;
  align-items: stretch;
  padding: clamp(12px, 1.7vw, 16px);
  background: rgba(255, 253, 247, 0.12);
  border: 1px solid rgba(255, 253, 247, 0.18);
  border-radius: 28px;
  box-shadow: inset 0 1px 0 rgba(255, 253, 247, 0.16);
}

.wallet-flow-strip div {
  display: grid;
  gap: 5px;
  min-width: 0;
  align-content: center;
  padding: 12px;
  background: rgba(255, 253, 247, 0.1);
  border-radius: 18px;
}

.wallet-flow-strip strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.9rem, 1.25vw, 1.02rem);
  font-weight: 950;
  line-height: 1.1;
}

.wallet-flow-strip i {
  display: grid;
  place-items: center;
  color: #FFD35A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.25rem;
  font-style: normal;
  font-weight: 950;
}

.wallet-policy-card {
  display: grid;
  gap: 10px;
  padding: clamp(18px, 2.2vw, 24px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 246, 233, 0.64));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 28px;
  box-shadow:
    0 26px 78px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.wallet-policy-card span {
  display: inline-flex;
  width: max-content;
  min-height: 32px;
  align-items: center;
  padding: 0 13px;
  color: var(--readable-ink);
  background: linear-gradient(145deg, #FFD35A, #F7B733);
  border-radius: 999px;
}

.wallet-policy-card p {
  max-width: 610px;
  margin: 0;
  color: rgba(79, 64, 56, 0.82);
  font-weight: 720;
  line-height: 1.58;
}

.wallet-story-section .wallet-promise-grid article,
.wallet-story-section .wallet-visual-card,
.wallet-story-section .wallet-policy-card {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 760ms ease,
    transform 760ms cubic-bezier(0.16, 1, 0.3, 1);
}

.wallet-story-section.in-view .wallet-promise-grid article,
.wallet-story-section.in-view .wallet-visual-card,
.wallet-story-section.in-view .wallet-policy-card {
  opacity: 1;
  transform: translateY(0);
}

.wallet-story-section.in-view .wallet-promise-grid article:nth-child(2) {
  transition-delay: 90ms;
}

.wallet-story-section.in-view .wallet-promise-grid article:nth-child(3) {
  transition-delay: 180ms;
}

.wallet-story-section.in-view .wallet-visual-card {
  transition-delay: 120ms;
}

.wallet-story-section.in-view .wallet-policy-card {
  transition-delay: 240ms;
}

@keyframes walletOrbitDrift {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.035) rotate(2deg);
  }
}

@keyframes walletFloat {
  0%,
  100% {
    translate: 0 0;
  }
  50% {
    translate: 0 -8px;
  }
}

@media (max-width: 1120px) {
  .wallet-story-section {
    grid-template-columns: 1fr;
    padding-top: clamp(70px, 8vw, 96px) !important;
  }

  .wallet-story-copy {
    max-width: 760px;
  }

  .wallet-story-copy h2 {
    max-width: 12ch;
  }

  .wallet-art-stage {
    max-width: 780px;
  }
}

@media (max-width: 760px) {
  .wallet-story-section {
    padding: 54px 22px 34px !important;
  }

  .wallet-story-copy h2 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 11vw, 3.45rem);
    line-height: 1;
  }

  .wallet-promise-grid article {
    grid-template-columns: 1fr;
  }

  .wallet-promise-grid span {
    grid-row: auto;
  }

  .wallet-visual-card {
    min-height: 610px;
    padding: 22px;
    border-radius: 28px;
  }

  .wallet-orbit {
    min-height: 360px;
  }

  .wallet-balance-orb {
    width: min(220px, 68vw);
  }

  .wallet-float-note {
    min-width: 132px;
    padding: 11px 12px;
  }

  .wallet-float-note-paid {
    top: 5%;
  }

  .wallet-float-note-used {
    top: auto;
    right: 0;
    bottom: 2%;
  }

  .wallet-float-note-left {
    right: auto;
    left: 2%;
    bottom: 14%;
  }

  .wallet-flow-strip {
    grid-template-columns: 1fr;
  }

  .wallet-flow-strip i {
    display: none;
  }
}

/* 69. Wallet premium story polish */
.wallet-story-section {
  grid-template-columns: minmax(360px, 0.88fr) minmax(520px, 1fr);
  gap: clamp(42px, 5vw, 86px);
  align-items: center !important;
  padding: clamp(78px, 6.6vw, 104px) clamp(58px, 6vw, 96px) !important;
  background:
    radial-gradient(circle at 85% 18%, rgba(255, 211, 90, 0.34), transparent 30%),
    radial-gradient(circle at 12% 84%, rgba(239, 79, 0, 0.1), transparent 32%),
    linear-gradient(rgba(217, 90, 27, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.015) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 249, 239, 0.86));
  background-size: auto, auto, 36px 36px, 36px 36px, auto;
  border-color: rgba(217, 90, 27, 0.12);
  box-shadow:
    0 32px 110px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wallet-story-section::before {
  position: absolute;
  right: clamp(20px, 8vw, 140px);
  top: clamp(30px, 5vw, 80px);
  width: clamp(180px, 18vw, 320px);
  aspect-ratio: 1;
  content: "";
  background:
    radial-gradient(circle, rgba(255, 211, 90, 0.22), transparent 56%),
    conic-gradient(from 120deg, transparent, rgba(239, 79, 0, 0.16), transparent 62%);
  border-radius: 50%;
  filter: blur(2px);
  opacity: 0.72;
  pointer-events: none;
}

.wallet-story-copy {
  max-width: 680px;
}

.wallet-story-copy h2 {
  max-width: 11.8ch;
  margin-top: clamp(20px, 2.4vw, 30px);
  font-size: clamp(3.2rem, 5vw, 5.45rem);
  line-height: 1.06;
  letter-spacing: 0;
}

.wallet-story-copy > p {
  max-width: 590px;
  margin-top: clamp(22px, 2.4vw, 30px);
  color: rgba(79, 64, 56, 0.78);
  font-size: clamp(1.02rem, 1.28vw, 1.2rem);
  font-weight: 740;
}

.wallet-promise-grid {
  gap: 14px;
  max-width: 610px;
  margin-top: clamp(30px, 3.4vw, 46px);
}

.wallet-promise-grid article {
  min-height: 104px;
  align-items: center;
  padding: 18px 20px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 249, 239, 0.7)),
    radial-gradient(circle at 100% 0%, rgba(255, 211, 90, 0.22), transparent 34%);
  border: 1px solid rgba(217, 90, 27, 0.1);
  border-radius: 28px;
  box-shadow:
    0 22px 70px rgba(36, 24, 18, 0.07),
    0 1px 0 rgba(255, 255, 255, 0.82) inset;
  backdrop-filter: blur(14px) saturate(1.12);
  -webkit-backdrop-filter: blur(14px) saturate(1.12);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.wallet-promise-grid article:hover {
  border-color: rgba(239, 79, 0, 0.22);
  box-shadow:
    0 28px 86px rgba(36, 24, 18, 0.1),
    0 1px 0 rgba(255, 255, 255, 0.9) inset;
  transform: translateY(-4px);
}

.wallet-promise-grid span {
  width: 48px;
  height: 48px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(145deg, #FFD35A, #F7B733);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow:
    0 14px 34px rgba(217, 90, 27, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.wallet-promise-grid strong {
  font-size: clamp(1.08rem, 1.32vw, 1.24rem);
}

.wallet-promise-grid p {
  color: rgba(79, 64, 56, 0.68);
  font-size: 0.96rem;
}

.wallet-art-stage {
  display: grid;
  width: 100%;
  max-width: 760px;
  gap: 18px;
}

.wallet-visual-card {
  min-height: clamp(600px, 44vw, 690px);
  padding: clamp(22px, 2.6vw, 34px);
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 84% 8%, rgba(255, 211, 90, 0.3), transparent 28%),
    radial-gradient(circle at 14% 84%, rgba(239, 79, 0, 0.1), transparent 32%),
    linear-gradient(rgba(217, 90, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.02) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(255, 246, 233, 0.76));
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
  border: 1px solid rgba(217, 90, 27, 0.14);
  border-radius: 36px;
  box-shadow:
    0 34px 106px rgba(36, 24, 18, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.wallet-visual-card::before {
  inset: clamp(84px, 8vw, 110px) clamp(18px, 2vw, 28px) clamp(120px, 10vw, 146px);
  z-index: 0;
  background:
    linear-gradient(rgba(255, 253, 247, 0.075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.06) 1px, transparent 1px),
    radial-gradient(circle at 76% 16%, rgba(255, 211, 90, 0.32), transparent 32%),
    linear-gradient(145deg, #EF4F00, #D95A1B 54%, #8F2F17);
  background-size: 28px 28px, 28px 28px, auto, auto;
  border: 1px solid rgba(255, 253, 247, 0.26);
  border-radius: 34px;
  box-shadow:
    0 28px 82px rgba(143, 47, 23, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
  opacity: 1;
}

.wallet-visual-top {
  min-height: 56px;
  padding: 0 4px;
}

.wallet-visual-top span {
  color: var(--brand-burnt);
}

.wallet-visual-top strong {
  color: var(--readable-ink);
  font-size: clamp(1.46rem, 2.2vw, 2.05rem);
}

.wallet-visual-top small {
  min-height: 42px;
  padding: 0 18px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.55), transparent 28%),
    linear-gradient(145deg, #FFD35A, #F7B733);
  box-shadow:
    0 16px 34px rgba(217, 90, 27, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.wallet-orbit {
  min-height: clamp(370px, 30vw, 420px);
  margin-top: 6px;
  overflow: visible;
}

.wallet-orbit-ring {
  inset: 10%;
  border-color: rgba(255, 253, 247, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 253, 247, 0.2),
    0 0 88px rgba(255, 211, 90, 0.18);
}

.wallet-orbit-ring:nth-child(2) {
  inset: 22%;
}

.wallet-balance-orb {
  width: clamp(218px, 19vw, 282px);
  background:
    radial-gradient(circle at 42% 24%, rgba(255, 211, 90, 0.26), transparent 28%),
    radial-gradient(circle at 62% 66%, rgba(239, 79, 0, 0.22), transparent 35%),
    linear-gradient(145deg, #2A1711, #140B08);
  border: 12px solid rgba(255, 253, 247, 0.8);
  box-shadow:
    0 34px 92px rgba(36, 24, 18, 0.34),
    0 0 0 18px rgba(255, 253, 247, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.wallet-balance-orb strong {
  font-size: clamp(3.35rem, 5vw, 5rem);
}

.wallet-float-note {
  min-width: 164px;
  padding: 14px 16px;
  color: var(--readable-paper);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08));
  border-color: rgba(255, 253, 247, 0.24);
  border-radius: 22px;
  box-shadow:
    0 24px 64px rgba(36, 24, 18, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
}

.wallet-float-note span,
.wallet-balance-orb span,
.wallet-balance-orb small {
  color: rgba(255, 253, 247, 0.78);
}

.wallet-float-note-paid {
  top: 15%;
  left: 5%;
}

.wallet-float-note-used {
  top: 17%;
  right: 5%;
}

.wallet-float-note-left {
  right: 10%;
  bottom: 12%;
}

.wallet-flow-strip {
  position: relative;
  z-index: 1;
  margin-top: 0;
  padding: 13px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(255, 246, 233, 0.52));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 28px;
  box-shadow:
    0 22px 58px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.wallet-flow-strip div {
  min-height: 82px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 90, 27, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.wallet-flow-strip span {
  color: var(--brand-burnt);
}

.wallet-flow-strip strong {
  color: var(--readable-ink);
}

.wallet-flow-strip i {
  color: var(--brand-burnt);
}

.wallet-policy-card {
  padding: clamp(20px, 2.3vw, 28px);
  background:
    radial-gradient(circle at 92% 12%, rgba(255, 211, 90, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 247, 234, 0.74));
  border: 1px solid rgba(217, 90, 27, 0.12);
  border-radius: 30px;
  box-shadow:
    0 26px 82px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

@media (max-width: 1120px) {
  .wallet-story-section {
    grid-template-columns: 1fr;
    gap: 34px;
    padding: clamp(68px, 8vw, 92px) clamp(28px, 6vw, 62px) !important;
  }

  .wallet-story-copy h2 {
    max-width: 12.8ch;
    font-size: clamp(3rem, 8vw, 5rem);
  }

  .wallet-art-stage {
    max-width: 820px;
  }
}

@media (max-width: 760px) {
  .wallet-story-section {
    padding: 48px 18px 28px !important;
  }

  .wallet-story-copy h2 {
    max-width: 10.8ch;
    font-size: clamp(2.58rem, 12vw, 3.5rem);
    line-height: 1.06;
  }

  .wallet-story-copy > p {
    font-size: 1rem;
    line-height: 1.5;
  }

  .wallet-promise-grid article {
    min-height: auto;
    padding: 17px;
  }

  .wallet-visual-card {
    min-height: 650px;
    padding: 20px;
    border-radius: 30px;
  }

  .wallet-visual-card::before {
    inset: 94px 14px 214px;
    border-radius: 28px;
  }

  .wallet-visual-top {
    display: grid;
    align-items: start;
  }

  .wallet-visual-top small {
    justify-self: start;
  }

  .wallet-orbit {
    min-height: 372px;
  }

  .wallet-balance-orb {
    width: min(224px, 68vw);
    border-width: 10px;
  }

  .wallet-balance-orb strong {
    font-size: clamp(2.8rem, 15vw, 4rem);
  }

  .wallet-float-note {
    min-width: 136px;
    padding: 11px 12px;
  }

  .wallet-float-note strong {
    font-size: 1.14rem;
  }

  .wallet-float-note-paid {
    top: 8%;
    left: 0;
  }

  .wallet-float-note-used {
    top: auto;
    right: 0;
    bottom: 2%;
  }

  .wallet-float-note-left {
    left: 0;
    right: auto;
    bottom: 16%;
  }

  .wallet-flow-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

  .wallet-flow-strip div {
    min-height: auto;
  }

  .wallet-flow-strip i {
    display: none;
  }
}

/* 70. Wallet composition tightening */
.wallet-story-section {
  padding: clamp(58px, 5.4vw, 78px) clamp(58px, 6vw, 96px) clamp(62px, 5.6vw, 86px) !important;
}

.wallet-visual-card {
  gap: clamp(14px, 1.55vw, 20px);
  min-height: clamp(530px, 39vw, 620px);
  padding: clamp(22px, 2.35vw, 32px);
}

.wallet-visual-card::before {
  inset: clamp(80px, 7.2vw, 98px) clamp(16px, 1.9vw, 26px) clamp(104px, 8.6vw, 128px);
}

.wallet-orbit {
  min-height: clamp(310px, 25vw, 350px);
}

.wallet-balance-orb {
  width: clamp(208px, 17vw, 258px);
}

.wallet-float-note {
  min-width: 154px;
  padding: 12px 14px;
}

.wallet-flow-strip {
  gap: 8px;
  padding: 11px;
}

.wallet-flow-strip div {
  min-height: 68px;
  padding: 11px 12px;
}

.wallet-policy-card {
  padding: clamp(18px, 2vw, 24px);
}

@media (max-width: 1120px) {
  .wallet-story-section {
    padding-top: clamp(54px, 7vw, 78px) !important;
  }
}

@media (max-width: 760px) {
  .wallet-story-section {
    padding: 42px 18px 28px !important;
  }

  .wallet-visual-card {
    min-height: 610px;
    gap: 16px;
  }

  .wallet-visual-card::before {
    inset: 90px 14px 188px;
  }

  .wallet-orbit {
    min-height: 338px;
  }

  .wallet-flow-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 10px;
  }

  .wallet-flow-strip div {
    min-height: 76px;
    padding: 9px 8px;
  }

  .wallet-flow-strip span {
    font-size: 0.58rem;
  }

  .wallet-flow-strip strong {
    font-size: 0.76rem;
    line-height: 1.08;
  }
}

/* 71. Wallet section alignment */
.wallet-story-section {
  align-items: start !important;
}

.wallet-story-copy {
  padding-top: clamp(10px, 1.4vw, 18px);
}

@media (max-width: 1120px) {
  .wallet-story-copy {
    padding-top: 0;
  }
}

/* 72. Wallet visual card refinement */
.wallet-visual-card {
  grid-template-rows: auto minmax(300px, 1fr) auto;
  gap: clamp(18px, 2vw, 24px);
  min-height: clamp(560px, 40vw, 650px);
  padding: clamp(24px, 2.6vw, 36px);
}

.wallet-visual-card::before {
  inset: clamp(132px, 9.6vw, 156px) clamp(18px, 2.2vw, 30px) clamp(116px, 9vw, 140px);
  border-radius: 34px;
}

.wallet-visual-top {
  z-index: 2;
  align-items: flex-start;
  padding: 2px 6px 0;
}

.wallet-visual-top strong {
  max-width: 12ch;
  font-size: clamp(1.52rem, 2.1vw, 2.08rem);
  line-height: 1.02;
}

.wallet-visual-top small {
  flex: 0 0 auto;
  margin-top: 8px;
  white-space: nowrap;
}

.wallet-orbit {
  min-height: clamp(300px, 24vw, 348px);
  margin-top: 2px;
}

.wallet-balance-orb {
  width: clamp(198px, 16.4vw, 250px);
  border-width: 10px;
}

.wallet-balance-orb strong {
  font-size: clamp(2.85rem, 4.5vw, 4.2rem);
  letter-spacing: 0;
}

.wallet-float-note {
  width: clamp(138px, 12vw, 174px);
  min-width: 0;
  padding: 12px 14px;
  border-radius: 20px;
}

.wallet-float-note strong {
  font-size: clamp(1.14rem, 1.75vw, 1.48rem);
}

.wallet-float-note-paid {
  top: 9%;
  left: 4%;
}

.wallet-float-note-used {
  top: 11%;
  right: 4%;
}

.wallet-float-note-left {
  right: 8%;
  bottom: 8%;
}

.wallet-flow-strip {
  z-index: 2;
  gap: 10px;
  margin-top: 0;
  padding: 12px;
}

.wallet-flow-strip div {
  min-height: 76px;
  padding: 13px 14px;
}

.wallet-flow-strip i {
  min-width: 18px;
}

@media (max-width: 920px) {
  .wallet-visual-card {
    max-width: 660px;
    min-height: 0;
  }

  .wallet-visual-card::before {
    inset: 142px 18px 134px;
  }

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

  .wallet-flow-strip i {
    display: none;
  }
}

@media (max-width: 760px) {
  .wallet-visual-card {
    gap: 18px;
    min-height: 0;
    padding: 20px;
    border-radius: 30px;
  }

  .wallet-visual-card::before {
    inset: 148px 14px 126px;
    border-radius: 26px;
  }

  .wallet-visual-top {
    gap: 12px;
    padding: 0;
  }

  .wallet-visual-top strong {
    max-width: 10ch;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
  }

  .wallet-visual-top small {
    min-height: 36px;
    margin-top: 0;
    padding: 0 14px;
  }

  .wallet-orbit {
    min-height: 318px;
  }

  .wallet-balance-orb {
    width: min(196px, 58vw);
    border-width: 8px;
    box-shadow:
      0 28px 72px rgba(36, 24, 18, 0.34),
      0 0 0 12px rgba(255, 253, 247, 0.14),
      inset 0 1px 0 rgba(255, 255, 255, 0.14);
  }

  .wallet-balance-orb strong {
    font-size: clamp(2.45rem, 13vw, 3.35rem);
  }

  .wallet-balance-orb small {
    font-size: 0.72rem;
  }

  .wallet-float-note {
    width: min(124px, 38vw);
    padding: 9px 10px;
    border-radius: 17px;
  }

  .wallet-float-note span {
    font-size: 0.58rem;
  }

  .wallet-float-note strong {
    font-size: clamp(0.98rem, 5vw, 1.24rem);
  }

  .wallet-float-note-paid {
    top: 7%;
    left: 1%;
    transform: rotate(-3deg);
  }

  .wallet-float-note-used {
    top: 8%;
    right: 1%;
    bottom: auto;
    transform: rotate(3deg);
  }

  .wallet-float-note-left {
    right: 4%;
    left: auto;
    bottom: 6%;
    transform: rotate(-2deg);
  }

  .wallet-flow-strip {
    gap: 8px;
    padding: 9px;
    border-radius: 22px;
  }

  .wallet-flow-strip div {
    min-height: 74px;
    padding: 9px 8px;
    border-radius: 16px;
  }

  .wallet-flow-strip span {
    font-size: 0.55rem;
  }

  .wallet-flow-strip strong {
    font-size: 0.74rem;
    line-height: 1.1;
  }
}

/* 73. Wallet bottom spacing fix */
.wallet-art-stage {
  gap: clamp(24px, 2.8vw, 34px);
}

.wallet-visual-card {
  gap: clamp(22px, 2.3vw, 30px);
  padding-bottom: clamp(30px, 3vw, 40px);
}

.wallet-visual-card::before {
  inset:
    clamp(132px, 9.6vw, 156px)
    clamp(18px, 2.2vw, 30px)
    clamp(174px, 13vw, 198px);
}

.wallet-flow-strip {
  width: calc(100% - clamp(32px, 4vw, 54px));
  justify-self: center;
  margin-top: clamp(4px, 0.8vw, 10px);
  background:
    radial-gradient(circle at 12% 14%, rgba(255, 211, 90, 0.18), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 248, 238, 0.76));
  border-color: rgba(217, 90, 27, 0.14);
  box-shadow:
    0 18px 54px rgba(36, 24, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.wallet-policy-card {
  margin-top: 0;
}

@media (max-width: 920px) {
  .wallet-visual-card::before {
    inset: 142px 18px 154px;
  }
}

@media (max-width: 760px) {
  .wallet-art-stage {
    gap: 22px;
  }

  .wallet-visual-card {
    padding-bottom: 20px;
  }

  .wallet-visual-card::before {
    inset: 148px 14px 140px;
  }

  .wallet-flow-strip {
    width: 100%;
    margin-top: 2px;
  }
}

/* 74. Premium subscription wallet ledger */
.wallet-ledger-card {
  position: relative;
  display: grid;
  gap: clamp(20px, 2.2vw, 28px);
  width: 100%;
  min-width: 0;
  padding: clamp(24px, 3vw, 38px);
  overflow: hidden;
  color: var(--readable-ink);
  background:
    radial-gradient(circle at 92% 4%, rgba(255, 211, 90, 0.32), transparent 30%),
    radial-gradient(circle at 4% 96%, rgba(239, 79, 0, 0.1), transparent 34%),
    linear-gradient(rgba(217, 90, 27, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.021) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 247, 234, 0.86));
  background-size: auto, auto, 30px 30px, 30px 30px, auto;
  border: 1px solid rgba(217, 90, 27, 0.16);
  border-radius: 32px;
  box-shadow:
    0 38px 110px rgba(36, 24, 18, 0.14),
    0 10px 30px rgba(217, 90, 27, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
  isolation: isolate;
}

.wallet-ledger-card::before {
  position: absolute;
  top: -110px;
  right: -80px;
  z-index: -1;
  width: 260px;
  aspect-ratio: 1;
  content: "";
  border: 34px solid rgba(255, 211, 90, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 90px rgba(255, 211, 90, 0.18);
  pointer-events: none;
}

.wallet-ledger-head,
.wallet-ledger-brand,
.wallet-ledger-status,
.wallet-ledger-balance-panel,
.wallet-ledger-balance p,
.wallet-ledger-footer,
.wallet-ledger-footer p {
  display: flex;
  align-items: center;
}

.wallet-ledger-head {
  justify-content: space-between;
  gap: 20px;
}

.wallet-ledger-brand {
  min-width: 0;
  gap: 14px;
}

.wallet-ledger-brand > div {
  display: grid;
  min-width: 0;
  gap: 3px;
}

.wallet-ledger-brand > div > span,
.wallet-ledger-balance > span,
.wallet-ledger-journey small,
.wallet-ledger-footer span {
  color: rgba(79, 64, 56, 0.72);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.wallet-ledger-brand > div > strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.22rem, 1.8vw, 1.62rem);
  font-weight: 950;
  line-height: 1.05;
}

.wallet-ledger-mark {
  position: relative;
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  place-items: center;
  background: linear-gradient(145deg, #EF4F00, #B73518);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 15px;
  box-shadow:
    0 14px 30px rgba(217, 90, 27, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.wallet-ledger-mark i {
  position: absolute;
  width: 13px;
  height: 13px;
  background: #FFD35A;
  border: 2px solid rgba(255, 253, 247, 0.82);
  border-radius: 50%;
}

.wallet-ledger-mark i:nth-child(1) {
  top: 9px;
  left: 9px;
}

.wallet-ledger-mark i:nth-child(2) {
  top: 9px;
  right: 9px;
  background: #FFFDf7;
}

.wallet-ledger-mark i:nth-child(3) {
  right: 17px;
  bottom: 8px;
  background: #F7B733;
}

.wallet-ledger-status {
  min-height: 38px;
  flex: 0 0 auto;
  gap: 8px;
  padding: 0 14px;
  color: #241812;
  background: linear-gradient(145deg, #FFE27D, #F7B733);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(217, 90, 27, 0.15);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.8rem;
  font-weight: 950;
}

.wallet-ledger-status i,
.wallet-ledger-balance p i {
  width: 8px;
  height: 8px;
  flex: 0 0 8px;
  background: #EF4F00;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(239, 79, 0, 0.13);
  animation: walletLedgerPulse 2.4s ease-in-out infinite;
}

.wallet-ledger-balance-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(122px, 138px);
  min-height: clamp(250px, 24vw, 320px);
  gap: clamp(18px, 2.2vw, 28px);
  padding: clamp(28px, 3vw, 38px);
  overflow: hidden;
  color: var(--readable-paper);
  background:
    linear-gradient(rgba(255, 253, 247, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 253, 247, 0.045) 1px, transparent 1px),
    radial-gradient(circle at 82% 12%, rgba(255, 211, 90, 0.22), transparent 34%),
    linear-gradient(135deg, #24130D 0%, #3C1C11 58%, #852E16 100%);
  background-size: 26px 26px, 26px 26px, auto, auto;
  border: 1px solid rgba(255, 253, 247, 0.15);
  border-radius: 26px;
  box-shadow:
    0 28px 70px rgba(36, 24, 18, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.wallet-ledger-balance-panel::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.11) 48%, transparent 78%);
  transform: translateX(-120%);
  animation: walletLedgerSweep 5.8s ease-in-out infinite;
  pointer-events: none;
}

.wallet-ledger-balance {
  position: relative;
  z-index: 1;
  display: grid;
  min-width: 0;
  gap: 12px;
}

.wallet-ledger-balance > span {
  color: rgba(255, 253, 247, 0.7);
}

.wallet-ledger-balance > strong {
  color: #FFD35A;
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(3.35rem, 4.5vw, 4rem);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: 0;
  text-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  white-space: nowrap;
}

.wallet-ledger-balance p {
  flex-wrap: wrap;
  gap: 10px 16px;
  margin: 4px 0 0;
  color: rgba(255, 253, 247, 0.78);
  font-size: 0.82rem;
  font-weight: 760;
}

.wallet-ledger-balance p span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wallet-ledger-balance p i {
  background: #FFD35A;
  box-shadow: 0 0 0 5px rgba(255, 211, 90, 0.12);
}

.wallet-ledger-meter {
  position: relative;
  z-index: 1;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  gap: 12px;
  justify-self: end;
}

.wallet-ledger-ring {
  display: grid;
  width: clamp(122px, 10vw, 138px);
  aspect-ratio: 1;
  place-items: center;
  background: conic-gradient(#FFD35A 0 349deg, rgba(255, 253, 247, 0.13) 349deg 360deg);
  border-radius: 50%;
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.24),
    0 0 0 8px rgba(255, 255, 255, 0.06);
}

.wallet-ledger-ring > div {
  display: grid;
  width: calc(100% - 20px);
  aspect-ratio: 1;
  place-items: center;
  align-content: center;
  gap: 2px;
  background: rgba(27, 14, 9, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
}

.wallet-ledger-ring strong {
  color: var(--readable-paper);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 950;
  line-height: 1;
}

.wallet-ledger-ring span,
.wallet-ledger-meter p {
  color: rgba(255, 253, 247, 0.66);
  font-size: 0.7rem;
  font-weight: 850;
}

.wallet-ledger-meter p {
  margin: 0;
}

.wallet-ledger-meter p strong {
  color: #FFD35A;
}

.wallet-ledger-journey {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(217, 90, 27, 0.11);
  border-radius: 22px;
  box-shadow:
    0 18px 48px rgba(36, 24, 18, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.wallet-ledger-journey li {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-width: 0;
  padding: clamp(15px, 2vw, 20px);
}

.wallet-ledger-journey li:not(:last-child) {
  border-right: 1px solid rgba(217, 90, 27, 0.1);
}

.wallet-ledger-step {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #241812;
  background: linear-gradient(145deg, #FFE27D, #F7B733);
  border-radius: 50%;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 0.66rem;
  font-weight: 950;
}

.wallet-ledger-journey li > div {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.wallet-ledger-journey small {
  overflow-wrap: anywhere;
}

.wallet-ledger-journey strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: clamp(0.98rem, 1.4vw, 1.16rem);
  font-weight: 950;
  line-height: 1.08;
}

.wallet-ledger-footer {
  justify-content: space-between;
  gap: 22px;
  padding: 0 2px;
}

.wallet-ledger-footer > div {
  display: grid;
  gap: 3px;
}

.wallet-ledger-footer strong {
  color: var(--readable-ink);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 1.04rem;
  font-weight: 950;
}

.wallet-ledger-footer p {
  flex: 0 1 auto;
  gap: 9px;
  margin: 0;
  color: rgba(79, 64, 56, 0.78);
  font-size: 0.82rem;
  font-weight: 780;
  text-align: right;
}

.wallet-ledger-footer p span {
  display: grid;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  place-items: center;
  color: #FFFDf7;
  background: #D95A1B;
  border-radius: 50%;
  font-size: 0.74rem;
}

.wallet-story-section .wallet-ledger-card {
  opacity: 0;
  transform: translateY(22px) scale(0.985);
  transition:
    opacity 760ms ease 120ms,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1) 120ms;
}

.wallet-story-section.in-view .wallet-ledger-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes walletLedgerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(0.82);
    opacity: 0.68;
  }
}

@keyframes walletLedgerSweep {
  0%,
  58% {
    transform: translateX(-120%);
  }
  84%,
  100% {
    transform: translateX(120%);
  }
}

@media (max-width: 760px) {
  .wallet-story-copy .eyebrow {
    display: block;
    box-sizing: border-box;
    width: max-content;
    max-width: 100%;
    min-height: 0;
    padding: 9px 14px;
    font-size: 0.68rem;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }

  .wallet-ledger-card {
    gap: 18px;
    padding: 20px;
    border-radius: 28px;
  }

  .wallet-ledger-head {
    align-items: flex-start;
  }

  .wallet-ledger-mark {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
  }

  .wallet-ledger-brand > div > strong {
    font-size: 1.12rem;
  }

  .wallet-ledger-status {
    min-height: 34px;
    padding: 0 12px;
    font-size: 0.72rem;
  }

  .wallet-ledger-balance-panel {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 0;
    justify-items: center;
    gap: 26px;
    padding: 28px 22px;
    text-align: center;
    border-radius: 24px;
  }

  .wallet-ledger-balance {
    justify-items: center;
  }

  .wallet-ledger-balance > strong {
    font-size: clamp(3.2rem, 17vw, 4.5rem);
  }

  .wallet-ledger-balance p {
    justify-content: center;
  }

  .wallet-ledger-ring {
    width: 126px;
  }

  .wallet-ledger-meter {
    justify-self: center;
  }

  .wallet-ledger-journey {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .wallet-ledger-journey li {
    min-height: 70px;
    padding: 14px 16px;
  }

  .wallet-ledger-journey li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(217, 90, 27, 0.1);
  }

  .wallet-ledger-footer {
    display: grid;
    gap: 14px;
  }

  .wallet-ledger-footer p {
    text-align: left;
  }
}

@media (max-width: 420px) {
  .wallet-ledger-card {
    padding: 16px;
  }

  .wallet-ledger-brand {
    gap: 10px;
  }

  .wallet-ledger-brand > div > span {
    font-size: 0.62rem;
  }

  .wallet-ledger-brand > div > strong {
    font-size: 1rem;
  }

  .wallet-ledger-status {
    padding: 0 10px;
  }

  .wallet-ledger-balance-panel {
    padding: 26px 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wallet-ledger-status i,
  .wallet-ledger-balance p i,
  .wallet-ledger-balance-panel::after {
    animation: none;
  }
}

/* 75. Keep every Built for Partners page on the homepage content grid */
@media (min-width: 761px) {
  .partner-topbar,
  .partner-page main,
  .partner-footer {
    width: min(calc(100% - var(--page-gutter-total)), var(--container));
  }
}

/* 76. Initial Grataste centre-card reveal */
.site-loader {
  --loader-cover-scale: 12;
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  place-items: center;
  overflow: hidden;
  background: #FFFFFF;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  isolation: isolate;
  transition: none;
}

.site-loader::before,
.site-loader::after {
  content: none;
}

.grataste-loader-card {
  position: relative;
  display: grid;
  width: clamp(160px, 15.3vw, 220px);
  aspect-ratio: 44 / 29;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: clamp(18px, 1.7vw, 24px);
  background:
    linear-gradient(138deg, rgba(255, 255, 255, 0.12), transparent 42%),
    linear-gradient(135deg, var(--brand-primary) 0%, #E96D28 54%, var(--brand-accent) 128%);
  box-shadow:
    0 22px 58px rgba(143, 47, 23, 0.2),
    0 8px 20px rgba(36, 24, 18, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
  opacity: 0;
  transform: translateZ(0) scale(0.65);
  transform-origin: 50% 50%;
  animation: gratasteLoaderMaterialize 650ms 200ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity, border-radius;
  contain: layout paint style;
}

.grataste-loader-card::before {
  position: absolute;
  inset: -34%;
  content: "";
  background:
    radial-gradient(circle at 28% 32%, rgba(255, 249, 237, 0.5), transparent 27%),
    radial-gradient(circle at 72% 68%, rgba(247, 183, 51, 0.5), transparent 32%);
  opacity: 0.62;
  transform: translate3d(-3%, -2%, 0) scale(1.04);
  animation: gratasteLoaderGradientDrift 2200ms ease-in-out infinite alternate;
  pointer-events: none;
}

.grataste-loader-card::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: inherit;
  content: "";
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -1px 0 rgba(143, 47, 23, 0.12);
  pointer-events: none;
}

.grataste-loader-glow {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 72%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 249, 237, 0.2);
  opacity: 0.7;
  transform: translate3d(-50%, -50%, 0);
  pointer-events: none;
}

.grataste-loader-logo {
  position: relative;
  z-index: 1;
  width: 76%;
  height: auto;
  opacity: 0;
  filter: brightness(0) invert(1);
  transform: translateZ(0) scale(0.92);
  animation: gratasteLoaderLogoEnter 300ms 850ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
  will-change: transform, opacity;
}

.site-loader.is-exiting {
  animation: gratasteLoaderOverlayExit 400ms 800ms ease forwards;
}

.site-loader.is-exiting .grataste-loader-card {
  animation: gratasteLoaderExpand 800ms 200ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.site-loader.is-exiting .grataste-loader-card::before {
  animation-play-state: paused;
}

.site-loader.is-exiting .grataste-loader-logo {
  animation: gratasteLoaderLogoExit 300ms ease forwards;
}

.site-loader.is-exiting .grataste-loader-glow {
  opacity: 0;
  transition: opacity 300ms ease;
}

body.loader-active .site-header,
body.loader-active .hero-card {
  opacity: 0;
}

body.loader-active .hero-card {
  transform: translate3d(0, 12px, 0) scale(1.01);
}

body.loader-revealing .site-header {
  animation: gratasteLoaderHeaderReveal 520ms 820ms ease both;
}

body.loader-revealing .hero-card {
  animation: gratasteLoaderHeroReveal 650ms 780ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

body.loader-complete:not(.loader-revealing) .site-header,
body.loader-complete:not(.loader-revealing) .hero-card {
  opacity: 1;
}

body.loader-complete:not(.loader-revealing) .hero-card {
  transform: none;
  animation: none;
}

@keyframes gratasteLoaderMaterialize {
  from {
    opacity: 0;
    transform: translateZ(0) scale(0.65);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

@keyframes gratasteLoaderGradientDrift {
  from {
    transform: translate3d(-3%, -2%, 0) scale(1.04);
  }
  to {
    transform: translate3d(4%, 3%, 0) scale(1.08);
  }
}

@keyframes gratasteLoaderLogoEnter {
  from {
    opacity: 0;
    transform: translateZ(0) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
}

@keyframes gratasteLoaderLogoExit {
  from {
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateZ(0) scale(0.96);
  }
}

@keyframes gratasteLoaderExpand {
  from {
    border-radius: clamp(18px, 1.7vw, 24px);
    box-shadow:
      0 22px 58px rgba(143, 47, 23, 0.2),
      0 8px 20px rgba(36, 24, 18, 0.08),
      inset 0 1px 0 rgba(255, 255, 255, 0.4);
    opacity: 1;
    transform: translateZ(0) scale(1);
  }
  to {
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    transform: translateZ(0) scale(var(--loader-cover-scale));
  }
}

@keyframes gratasteLoaderOverlayExit {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes gratasteLoaderHeroReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 12px, 0) scale(1.01);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes gratasteLoaderHeaderReveal {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .grataste-loader-card {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
  }

  .grataste-loader-card::before {
    animation: none !important;
  }

  .grataste-loader-logo {
    opacity: 1;
    transform: none;
    animation: none !important;
    will-change: auto;
  }

  .site-loader.is-exiting {
    opacity: 0;
    animation: none !important;
    transition: opacity 220ms ease !important;
  }

  .site-loader.is-exiting .grataste-loader-card {
    transform: none;
    animation: none !important;
  }

  .site-loader.is-exiting .grataste-loader-logo {
    opacity: 0;
    animation: none !important;
    transition: opacity 160ms ease !important;
  }

  body.loader-active .hero-card {
    transform: none;
  }

  body.loader-revealing .site-header,
  body.loader-revealing .hero-card {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: opacity 200ms ease !important;
  }
}

/* 77. Footer closing-panel source-order guard */
footer.site-footer {
  display: block;
  width: min(calc(100% - var(--page-gutter-total)), var(--container));
  margin: clamp(56px, 7vw, 104px) auto 0;
  padding: clamp(30px, 4.4vw, 64px);
  color: var(--footer-cream);
  background:
    radial-gradient(circle at 80% 14%, rgba(255, 211, 90, 0.36), transparent 22%),
    radial-gradient(circle at 10% 88%, rgba(255, 253, 247, 0.14), transparent 28%),
    linear-gradient(132deg, var(--footer-orange) 0%, #D95A1B 48%, var(--footer-burnt) 100%);
  border: 1px solid rgba(255, 253, 247, 0.28);
  border-bottom: 0;
  border-radius: clamp(30px, 3.2vw, 42px) clamp(30px, 3.2vw, 42px) 0 0;
  box-shadow:
    0 -20px 72px rgba(36, 24, 18, 0.1),
    0 30px 92px rgba(36, 24, 18, 0.14),
    inset 0 1px 0 rgba(255, 253, 247, 0.3);
}

footer.site-footer::before {
  left: clamp(20px, 3vw, 56px);
  bottom: clamp(-22px, -1vw, -10px);
  z-index: -1;
  color: transparent;
  font-size: clamp(5rem, 12vw, 13rem);
  font-weight: 900;
  line-height: 0.76;
  opacity: 0.16;
  -webkit-text-stroke: 1px rgba(255, 253, 247, 0.64);
}

footer.site-footer::after {
  right: clamp(-86px, -5vw, -34px);
  top: clamp(-112px, -7vw, -44px);
  z-index: -1;
  width: min(410px, 32vw);
  border: clamp(28px, 3.5vw, 54px) solid rgba(255, 253, 247, 0.1);
  box-shadow:
    inset 0 0 0 clamp(12px, 1.5vw, 22px) rgba(255, 211, 90, 0.1),
    0 0 78px rgba(255, 211, 90, 0.16);
}

footer.site-footer h2 {
  max-width: 9ch;
  margin: 0;
  color: var(--footer-cream);
  font-size: clamp(3.15rem, 5.15vw, 5.6rem);
  letter-spacing: 0;
  line-height: 0.9;
}

@media (max-width: 720px) {
  footer.site-footer {
    width: min(calc(100% - 28px), var(--container));
    margin-top: 48px;
    padding: 26px 20px 24px;
    border-radius: 28px 28px 0 0;
  }

  footer.site-footer h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.75vw, 3rem);
    line-height: 0.94;
    overflow-wrap: anywhere;
  }
}

/* 78. Final custom quote source-order guard */
body.partner-page main > section.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(470px, 0.72fr);
  gap: clamp(30px, 5vw, 84px);
  align-items: center;
  min-height: clamp(720px, 58vw, 900px);
  padding: clamp(42px, 5vw, 76px) !important;
  background:
    radial-gradient(circle at 12% 13%, rgba(255, 211, 90, 0.22), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(255, 211, 90, 0.24), transparent 30%),
    radial-gradient(circle at 9% 86%, rgba(239, 79, 0, 0.08), transparent 34%),
    linear-gradient(rgba(217, 90, 27, 0.012) 1px, transparent 1px),
    linear-gradient(90deg, rgba(217, 90, 27, 0.01) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 255, 255, 0.96), rgba(255, 252, 246, 0.84) 48%, rgba(255, 241, 222, 0.72));
  background-size: auto, auto, auto, 34px 34px, 34px 34px, auto;
}

body.partner-page main > section.quote-section .quote-section-copy h2 {
  max-width: 10.8ch;
  color: #22130E;
  font-size: clamp(3.2rem, 5.2vw, 6.1rem);
  line-height: 0.92;
}

body.partner-page main > section.quote-section .quote-highlight-grid,
body.partner-page main > section.quote-section .quote-support-card {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

body.partner-page main > section.quote-section .quote-highlight-grid {
  margin-top: clamp(24px, 3vw, 38px);
}

body.partner-page main > section.quote-section .quote-support-card {
  width: min(100%, 620px);
  margin-top: 14px;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

body.partner-page main > section.quote-section .quote-form.partner-contact-card {
  align-self: center;
  gap: clamp(16px, 1.7vw, 22px);
  padding: clamp(20px, 2.2vw, 30px) !important;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.68), transparent 44%),
    radial-gradient(circle at 90% 8%, rgba(255, 211, 90, 0.2), transparent 30%),
    linear-gradient(145deg, rgba(255, 253, 247, 0.9), rgba(255, 240, 220, 0.74));
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: clamp(24px, 2vw, 34px);
  box-shadow:
    0 34px 96px rgba(36, 24, 18, 0.13),
    0 0 0 8px rgba(255, 253, 247, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

body.partner-page main > section.quote-section .quote-form-head {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding-right: 72px;
}

body.partner-page main > section.quote-section .quote-form-head p {
  margin: 4px 0 0;
  color: rgba(79, 64, 56, 0.7);
  font-size: 0.88rem;
  font-weight: 760;
}

body.partner-page main > section.quote-section .quote-meal-options {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.partner-page main > section.quote-section .quote-form-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.72fr);
}

body.partner-page main > section.quote-section .quote-honeypot,
body.partner-page main > section.quote-section .quote-honeypot[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  body.partner-page main > section.quote-section {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  body.partner-page main > section.quote-section .quote-highlight-grid,
  body.partner-page main > section.quote-section .quote-support-card {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }
}

@media (max-width: 760px) {
  body.partner-page main > section.quote-section {
    padding: 24px !important;
  }

  body.partner-page main > section.quote-section .quote-section-copy h2 {
    max-width: 9.5ch;
    font-size: clamp(2.65rem, 12.2vw, 3.55rem);
    line-height: 0.98;
  }

  body.partner-page main > section.quote-section .quote-highlight-grid,
  body.partner-page main > section.quote-section .quote-support-card,
  body.partner-page main > section.quote-section .quote-form-grid,
  body.partner-page main > section.quote-section .quote-form-actions {
    grid-template-columns: 1fr;
  }

  body.partner-page main > section.quote-section .quote-form-head {
    grid-template-columns: 1fr;
    padding-right: 54px;
  }

  body.partner-page main > section.quote-section .quote-meal-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.partner-page main > section.quote-section .quote-form.partner-contact-card {
    padding: 16px !important;
  }
}

/* 79. Homepage footer headline and divider balance */
footer.site-footer .footer-primary {
  grid-template-columns: minmax(250px, 0.7fr) minmax(500px, 1.42fr) minmax(250px, 0.58fr);
  gap: clamp(22px, 2.6vw, 38px);
  align-items: stretch;
}

footer.site-footer .footer-main {
  position: relative;
  z-index: 2;
  justify-content: center;
  padding-right: clamp(8px, 1vw, 16px);
}

footer.site-footer h2 {
  max-width: 9.8ch;
  font-size: clamp(3rem, 3.95vw, 4.65rem);
  line-height: 0.93;
  white-space: normal;
}

footer.site-footer .footer-side {
  position: relative;
  z-index: 3;
  justify-self: end;
  width: min(100%, 300px);
}

footer.site-footer .footer-directory-wrap {
  margin-top: clamp(58px, 6.4vw, 88px);
  padding-top: clamp(28px, 3.2vw, 40px);
}

@media (max-width: 1180px) {
  footer.site-footer .footer-primary {
    grid-template-columns: minmax(220px, 0.66fr) minmax(0, 1.1fr);
  }

  footer.site-footer h2 {
    white-space: normal;
  }

  footer.site-footer .footer-side {
    grid-column: 1 / -1;
    justify-self: stretch;
    width: 100%;
  }
}

@media (max-width: 760px) {
  footer.site-footer .footer-primary {
    grid-template-columns: 1fr;
  }

  footer.site-footer h2 {
    max-width: 100%;
    font-size: clamp(2.45rem, 11.75vw, 3rem);
    line-height: 0.94;
  }

  footer.site-footer .footer-main {
    padding-right: 0;
  }

  footer.site-footer .footer-directory-wrap {
    margin-top: 34px;
    padding-top: 24px;
  }
}

/* 80. Partner quote meal option containment */
body.partner-page main > section.quote-section .quote-meal-options {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  width: 100%;
  min-width: 0;
}

body.partner-page main > section.quote-section .quote-meal-options label {
  width: 100%;
  min-width: 0;
  justify-content: flex-start;
  gap: 9px;
  padding: 0 12px;
  overflow: hidden;
}

body.partner-page main > section.quote-section .quote-meal-options input[type="checkbox"] {
  flex: 0 0 16px;
  width: 16px;
  min-width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  border-radius: 4px;
  box-shadow: none;
  accent-color: #D95A1B;
  appearance: auto;
  -webkit-appearance: checkbox;
}

body.partner-page main > section.quote-section .quote-meal-options label span {
  min-width: 0;
  overflow-wrap: anywhere;
}
