:root {
  color-scheme: dark;
  --bg: #0d0a12;
  --bg-soft: #15101f;
  --text: #f8f6ff;
  --muted: #cfc9de;
  --accent-lime: #b8ff46;
  --accent-mango: #ffb24f;
  --accent-cyan: #42d8ff;
  --accent-plum: #b47dff;
  --glass-thin: rgba(33, 25, 46, 0.5);
  --glass-med: rgba(26, 20, 39, 0.68);
  --glass-thick: rgba(18, 14, 28, 0.86);
  --border: rgba(193, 175, 229, 0.3);
  --shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

html[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f3ee;
  --bg-soft: #ece8de;
  --text: #171222;
  --muted: #4f4a5e;
  --accent-lime: #5f9f16;
  --accent-mango: #c26f0a;
  --accent-cyan: #1377a5;
  --accent-plum: #7a38c9;
  --glass-thin: rgba(255, 255, 255, 0.64);
  --glass-med: rgba(253, 250, 242, 0.86);
  --glass-thick: rgba(255, 255, 255, 0.96);
  --border: rgba(103, 92, 132, 0.26);
  --shadow: 0 16px 44px rgba(42, 37, 56, 0.15);
}

* {
  box-sizing: border-box;
}

html {
  height: -webkit-fill-available;
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  padding-top: calc(env(safe-area-inset-top, 0px) + 16px);
  padding-bottom: clamp(128px, 18vw, 160px);
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% -5%, rgba(170, 91, 255, 0.26), transparent 28%),
    radial-gradient(circle at 90% 8%, rgba(61, 221, 255, 0.2), transparent 24%),
    radial-gradient(circle at 52% 112%, rgba(197, 255, 82, 0.18), transparent 30%),
    linear-gradient(164deg, var(--bg), #08060e 48%, #0f0a17 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
}

.page-shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.section {
  margin-top: clamp(3rem, 8vw, 6.25rem);
}

.section-head {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}

.eyebrow {
  margin: 0;
  font-family: "Space Mono", monospace;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--accent-cyan);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.25rem, 6.8vw, 5rem);
  letter-spacing: -0.03em;
  max-width: 15ch;
}

h2 {
  font-size: clamp(1.5rem, 3.8vw, 2.75rem);
  letter-spacing: -0.02em;
  max-width: 18ch;
}

p {
  margin: 0;
}

.ambient-desktop {
  display: none;
}

.site-header {
  position: sticky;
  top: calc(env(safe-area-inset-top, 0px) + 10px);
  z-index: 25;
  padding-inline: 1rem;
}

.nav-shell {
  width: min(1160px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: space-between;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--glass-med);
  box-shadow: var(--shadow);
  backdrop-filter: blur(15px);
}

.brand {
  min-height: 44px;
  padding: 0.45rem 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.brand-icon {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--accent-lime), var(--accent-plum));
  box-shadow: 0 0 20px rgba(181, 130, 255, 0.7);
}

.brand-version {
  font-family: "Space Mono", monospace;
  font-size: 0.66rem;
  letter-spacing: 0.08em;
  color: var(--accent-mango);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: none;
  align-items: center;
  gap: 0.65rem;
}

.nav-links a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: var(--muted);
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  font-size: 0.95rem;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.theme-toggle,
.btn {
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-family: "Manrope", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
}

.theme-toggle {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  padding: 0.55rem 0.95rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.2rem;
}

.btn-primary {
  color: #130f1f;
  border: none;
  background: linear-gradient(135deg, var(--accent-lime), var(--accent-cyan) 54%, #f6ff8f);
  box-shadow: 0 12px 30px rgba(94, 235, 160, 0.38);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: -180% auto -180% -35%;
  width: 32%;
  transform: rotate(20deg);
  background: rgba(255, 255, 255, 0.52);
  filter: blur(2px);
  animation: shine 5s linear infinite;
}

.btn-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--border);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.theme-toggle:hover,
.theme-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.13);
  outline: none;
}

.hero {
  display: grid;
  gap: 1.65rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-subcopy {
  color: var(--muted);
  max-width: 56ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}

.hero-trust {
  margin: 0.85rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-trust li {
  font-size: 0.82rem;
  font-family: "Space Mono", monospace;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  background: var(--glass-thin);
}

.hero-media {
  position: relative;
  border-radius: 28px;
  overflow: clip;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-media img {
  width: 100%;
  height: clamp(280px, 46vw, 520px);
  object-fit: cover;
  filter: saturate(1.08) contrast(1.05);
}

.hero-stat {
  position: absolute;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--glass-med);
  backdrop-filter: blur(14px);
  padding: 0.7rem 0.85rem;
  box-shadow: var(--shadow);
}

.stat-primary {
  left: 1rem;
  bottom: 1rem;
}

.stat-secondary {
  right: 1rem;
  top: 1rem;
}

.stat-label {
  font-family: "Space Mono", monospace;
  color: var(--muted);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.stat-value {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: 1.15rem;
}

.category-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(145px, 1fr);
  gap: 0.8rem;
  overflow-x: auto;
  padding-bottom: 0.6rem;
  scrollbar-width: thin;
  scroll-snap-type: x mandatory;
}

.category-chip {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--glass-thin);
  padding: 0.5rem;
  display: grid;
  gap: 0.45rem;
  text-align: center;
  scroll-snap-align: start;
}

.category-chip img {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  object-fit: cover;
}

.category-chip span {
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.signature .menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.menu-card {
  display: grid;
  border-radius: 22px;
  overflow: clip;
  border: 1px solid var(--border);
  background: var(--glass-med);
  box-shadow: var(--shadow);
}

.menu-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.menu-content {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.menu-content p {
  color: var(--muted);
  font-size: 0.94rem;
}

.menu-badge {
  width: fit-content;
  font-family: "Space Mono", monospace;
  color: var(--accent-mango);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.07);
}

.menu-meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--muted);
  font-family: "Space Mono", monospace;
  font-size: 0.78rem;
}

.price {
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 700;
}

.value-strip {
  border-radius: 28px;
  border: 1px solid var(--border);
  background:
    radial-gradient(circle at 90% 20%, rgba(66, 216, 255, 0.2), transparent 45%),
    radial-gradient(circle at 10% 80%, rgba(184, 255, 70, 0.15), transparent 44%),
    linear-gradient(145deg, var(--glass-thick), rgba(12, 10, 19, 0.78));
  padding: clamp(1rem, 2.8vw, 2rem);
  display: grid;
  gap: 1.15rem;
}

.value-copy p:last-of-type {
  margin-top: 0.75rem;
  color: var(--muted);
  max-width: 62ch;
}

.value-metrics {
  display: grid;
  gap: 0.8rem;
}

.metric-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass-thin);
  padding: 0.9rem 1rem;
}

.metric-number {
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(1.7rem, 5vw, 2.3rem);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.metric-card p:last-child {
  color: var(--muted);
}

.customize {
  display: grid;
  gap: 1.2rem;
}

.customize-copy {
  display: grid;
  gap: 0.8rem;
}

.customize-copy p:nth-of-type(2) {
  color: var(--muted);
}

.ingredient-board {
  display: grid;
  gap: 0.9rem;
}

.ingredient-card {
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: clip;
  background: var(--glass-med);
}

.ingredient-card img {
  aspect-ratio: 5 / 3;
  object-fit: cover;
}

.ingredient-card h3,
.ingredient-card p {
  padding-inline: 0.95rem;
}

.ingredient-card h3 {
  margin-top: 0.75rem;
  font-size: 1.2rem;
}

.ingredient-card p {
  margin-bottom: 0.9rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.rewards {
  display: grid;
  gap: 1.25rem;
}

.rewards-copy {
  display: grid;
  gap: 0.75rem;
}

.rewards-copy p:nth-of-type(2),
.rewards-copy li {
  color: var(--muted);
}

.rewards-copy ul {
  margin: 0;
  padding-left: 1rem;
}

.rewards-visual {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 1rem;
  background: var(--glass-med);
}

.phone-shell {
  border: 1px solid var(--border);
  border-radius: 26px;
  overflow: clip;
  background: #000;
  box-shadow: var(--shadow);
}

.phone-shell img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.badge-cluster {
  position: absolute;
  right: 0.6rem;
  bottom: 0.8rem;
  display: grid;
  gap: 0.45rem;
}

.badge-cluster span {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.4rem 0.65rem;
  font-family: "Space Mono", monospace;
  font-size: 0.7rem;
  background: var(--glass-thin);
  backdrop-filter: blur(10px);
}

.reward-pulse {
  animation: pulse 8s ease-in-out infinite;
}

.testimonial-grid {
  display: grid;
  gap: 0.8rem;
}

.testimonial-card {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--glass-thin);
  padding: 1rem;
}

.stars {
  font-family: "Space Mono", monospace;
  color: var(--accent-mango);
  margin-bottom: 0.65rem;
}

.testimonial-card blockquote {
  margin: 0;
  font-size: 0.96rem;
}

.author {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.86rem;
}

.faq-list {
  display: grid;
  gap: 0.6rem;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--glass-thin);
}

.faq-trigger {
  width: 100%;
  min-height: 44px;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  line-height: 1.35;
  cursor: pointer;
  padding: 0.95rem 1rem;
  position: relative;
}

.faq-trigger::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 0.95rem;
  font-size: 1.3rem;
  line-height: 1;
  color: var(--accent-cyan);
  transition: transform 0.3s ease;
}

.faq-item.is-open .faq-trigger::after {
  transform: rotate(45deg);
}

.faq-panel {
  padding: 0 1rem 1rem;
}

.faq-panel p {
  color: var(--muted);
}

.final-cta .cta-banner {
  position: relative;
  border-radius: 26px;
  overflow: clip;
  border: 1px solid var(--border);
  min-height: 320px;
}

.cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1);
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(140deg, rgba(9, 8, 18, 0.82), rgba(30, 25, 44, 0.45)),
    radial-gradient(circle at 85% 25%, rgba(185, 255, 74, 0.35), transparent 38%);
}

.cta-content {
  position: relative;
  z-index: 1;
  padding: clamp(1rem, 2.8vw, 2rem);
  display: grid;
  gap: 0.75rem;
  max-width: 56ch;
}

.cta-content p:nth-of-type(2) {
  color: #ece5ff;
}

.site-footer {
  width: min(1180px, calc(100vw - 2rem));
  margin: clamp(3rem, 7vw, 5rem) auto 0;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--glass-thick);
  padding: 1.2rem;
  position: relative;
  overflow: clip;
}

.footer-grid {
  display: grid;
  gap: 1rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

.footer-grid a {
  text-decoration: none;
  color: var(--muted);
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
  color: var(--text);
}

.footer-title,
.brand-footer {
  font-family: "Space Mono", monospace;
  text-transform: uppercase;
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  margin-bottom: 0.45rem;
}

.brand-footer {
  color: var(--accent-lime);
}

.footer-copy {
  color: var(--muted);
  max-width: 34ch;
  font-size: 0.9rem;
}

.footer-watermark {
  position: absolute;
  right: 0.8rem;
  bottom: -0.35rem;
  margin: 0;
  font-family: "Bricolage Grotesque", sans-serif;
  font-size: clamp(2rem, 8vw, 5rem);
  letter-spacing: -0.02em;
  color: rgba(255, 255, 255, 0.06);
  user-select: none;
  pointer-events: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px) scale(0.98);
  transition:
    opacity 620ms cubic-bezier(0.34, 1.4, 0.64, 1),
    transform 620ms cubic-bezier(0.34, 1.4, 0.64, 1);
  transition-delay: var(--delay, 0ms);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@keyframes shine {
  0% {
    transform: rotate(20deg) translateX(-260%);
  }

  34%,
  100% {
    transform: rotate(20deg) translateX(390%);
  }
}

@keyframes floatWave {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(-2%, 1.2%, 0) scale(1.03);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }

  6% {
    transform: scale(1.03);
  }

  12% {
    transform: scale(1);
  }
}

@media (min-width: 760px) {
  .nav-shell {
    padding: 0.7rem 1rem;
  }

  .hero {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
    gap: 1.6rem;
  }

  .value-metrics {
    grid-template-columns: repeat(3, 1fr);
  }

  .customize {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

  .rewards {
    grid-template-columns: 0.95fr 1.05fr;
    align-items: start;
  }

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

  .footer-grid {
    grid-template-columns: 1.1fr 0.7fr 0.7fr 0.8fr;
  }
}

@media (min-width: 980px) {
  .nav-links {
    display: flex;
  }

  .site-header.compact .nav-shell {
    width: min(980px, 95vw);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28);
  }

  .menu-card {
    transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), box-shadow 0.35s ease;
  }

  .menu-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 52px rgba(0, 0, 0, 0.4);
  }

  .ambient-desktop {
    display: block;
    position: fixed;
    inset: 0;
    pointer-events: none;
    overflow: clip;
    z-index: -1;
  }

  .orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: floatWave 15s ease-in-out infinite;
  }

  .orb-lime {
    width: 320px;
    height: 320px;
    background: rgba(184, 255, 70, 0.38);
    top: -80px;
    left: 64%;
  }

  .orb-cyan {
    width: 400px;
    height: 400px;
    background: rgba(66, 216, 255, 0.28);
    bottom: -180px;
    left: -80px;
    animation-delay: 2s;
  }

  .orb-mango {
    width: 260px;
    height: 260px;
    background: rgba(255, 178, 79, 0.25);
    top: 42%;
    right: -60px;
    animation-delay: 4s;
  }
}

@media (max-width: 560px) {
  .brand-version,
  .nav-order {
    display: none;
  }

  .brand {
    padding-inline: 0.7rem;
  }

  .theme-toggle {
    padding-inline: 0.7rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .btn-primary::after,
  .reward-pulse,
  .ambient-desktop,
  .orb {
    animation: none;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
