:root {
  --color-coral: #FF5A7D;
  --color-aqua: #3FFFD0;
  --color-indigo: #2E1A47;
  --color-lemon: #FFF05A;
  --color-lilac: #D6CDEA;
  --color-white: #ffffff;
  --color-text: #2E1A47;
  --color-text-muted: #5c4a78;
  --color-bg: #faf8ff;
  --color-bg-dark: #1a0f2e;
  --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.35rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: clamp(2rem, 5vw, 3.25rem);
  --fs-hero: clamp(2.5rem, 7vw, 4rem);
  --fw-normal: 400;
  --fw-semibold: 600;
  --fw-bold: 700;
  --lh-tight: 1.15;
  --lh-body: 1.6;
  --shadow-sm: 0 2px 8px rgba(46, 26, 71, 0.08);
  --shadow-md: 0 8px 24px rgba(46, 26, 71, 0.12);
  --shadow-lg: 0 20px 50px rgba(46, 26, 71, 0.18);
  --shadow-glow-coral: 0 0 40px rgba(255, 90, 125, 0.45), 0 12px 32px rgba(46, 26, 71, 0.2);
  --shadow-glow-aqua: 0 0 36px rgba(63, 255, 208, 0.35), 0 8px 24px rgba(46, 26, 71, 0.15);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-section: clamp(3rem, 8vw, 5.5rem);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(214, 205, 234, 0.55);
  --glass-dark: rgba(46, 26, 71, 0.88);
  --transition-fast: 0.18s ease;
  --transition-med: 0.28s ease;
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --max-width: 1200px;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  overflow-x: hidden;
}

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

a {
  color: var(--color-indigo);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-coral);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-sm);
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-indigo);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: var(--space-md);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-md);
  color: var(--color-indigo);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--color-coral);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-lg);
  justify-content: flex-end;
}

.site-nav a {
  font-weight: var(--fw-semibold);
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--color-text);
}

.site-nav a:hover {
  color: var(--color-coral);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--color-indigo);
  border-radius: var(--radius-sm);
  padding: var(--space-sm) var(--space-md);
  font-weight: var(--fw-semibold);
  cursor: pointer;
  color: var(--color-indigo);
}

.hero.hero-horizon {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.25rem) var(--space-lg) var(--space-section);
  background: #0a0614;
  color: var(--color-white);
  overflow: hidden;
  isolation: isolate;
}

.hero.hero-horizon::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(165deg, #0f0824 0%, var(--color-indigo) 42%, #1a1330 72%, #251a38 100%);
  clip-path: polygon(0 0, 100% 0, 100% min(96%, 100%), 0 100%);
  z-index: 0;
  pointer-events: none;
}

.hero-horizon-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero-hz-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(255, 90, 125, 0.38) 0%, transparent 55%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(63, 255, 208, 0.22) 0%, transparent 50%);
  opacity: 0.95;
}

.hero-hz-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: hzGlowDrift 14s ease-in-out infinite;
}

.hero-hz-glow-a {
  width: min(55vw, 480px);
  height: min(55vw, 480px);
  background: var(--color-coral);
  top: -18%;
  right: -12%;
  animation-delay: 0s;
}

.hero-hz-glow-b {
  width: min(40vw, 380px);
  height: min(40vw, 380px);
  background: var(--color-aqua);
  bottom: -8%;
  left: -14%;
  animation-delay: -5s;
}

@keyframes hzGlowDrift {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
  50% { transform: translate(-16px, 14px) scale(1.06); opacity: 0.62; }
}

.hero-hz-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 42%,
    transparent 58%
  );
  animation: hzSheenMove 18s ease-in-out infinite;
}

@keyframes hzSheenMove {
  0%, 100% { opacity: 0.85; transform: translateX(-4%); }
  50% { opacity: 1; transform: translateX(4%); }
}

.hero-hz-gridlines {
  position: absolute;
  inset: 0;
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.4) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.25) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(180deg, black 15%, rgba(0, 0, 0, 0.45) 55%, transparent 92%);
}

.hero-hz-arc {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  pointer-events: none;
}

.hero-hz-arc-1 {
  width: min(140vw, 980px);
  height: min(140vw, 980px);
  left: 50%;
  bottom: -88%;
  transform: translateX(-50%);
  opacity: 0.7;
}

.hero-hz-arc-2 {
  width: min(95vw, 620px);
  height: min(95vw, 620px);
  right: -40%;
  top: 8%;
  opacity: 0.45;
  border-color: rgba(63, 255, 208, 0.22);
}

.hero-grid.hero-grid-horizon,
.hero-grid-horizon {
  position: relative;
  z-index: 2;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.12fr);
  gap: clamp(1.75rem, 4.5vw, 3.25rem);
  align-items: start;
}

@media (max-width: 900px) {
  .hero-grid.hero-grid-horizon {
    grid-template-columns: none;
  }

  .hero-showcase-column {
    order: 2;
  }

  .hero-main-column {
    order: 1;
  }

  .hero-stage-horizon {
    min-height: min(58vw, 340px);
  }
}

.hero-showcase-column {
  position: relative;
  animation: heroColReveal 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s both;
}

@keyframes heroColReveal {
  from {
    opacity: 0;
    transform: translateX(-28px) scale(0.97);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

.hero-stage {
  position: relative;
  min-height: min(70vw, 420px);
  max-width: 440px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  --parallax-x: 0deg;
  --parallax-y: 0deg;
}

.hero-stage-horizon {
  gap: var(--space-md);
}

.hero-visual-plinth {
  position: absolute;
  left: 50%;
  bottom: 18%;
  width: 78%;
  max-width: 300px;
  height: 28%;
  transform: translateX(-50%) rotateX(68deg);
  transform-origin: center bottom;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.55) 0%, transparent 68%);
  opacity: 0.85;
  filter: blur(10px);
  pointer-events: none;
  z-index: 0;
}

.hero-visual-shell {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 340px;
  margin: 0 auto;
  padding: clamp(var(--space-md), 4vw, var(--space-xl));
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.1) 0%, rgba(46, 26, 71, 0.35) 100%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 0 0 1px rgba(63, 255, 208, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-visual-shell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(125deg, rgba(63, 255, 208, 0.45), rgba(255, 90, 125, 0.35), rgba(255, 240, 90, 0.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  opacity: 0.65;
}

.hero-visual-notch {
  position: absolute;
  width: 22px;
  height: 22px;
  border: 3px solid var(--color-lemon);
  opacity: 0.85;
  pointer-events: none;
  z-index: 3;
}

.hero-visual-notch-tl {
  top: 12px;
  left: 12px;
  border-right: none;
  border-bottom: none;
  border-radius: 6px 0 0 0;
}

.hero-visual-notch-br {
  bottom: 12px;
  right: 12px;
  border-left: none;
  border-top: none;
  border-radius: 0 0 6px 0;
}

.hero-horizon .hero-product-img {
  --parallax-x: 0deg;
  --parallax-y: 0deg;
  position: relative;
  z-index: 2;
  margin: 0;
  filter:
    drop-shadow(0 12px 28px rgba(0, 0, 0, 0.5))
    drop-shadow(0 0 24px rgba(63, 255, 208, 0.25));
  transform: rotateZ(var(--parallax-y)) rotateY(var(--parallax-x)) translateZ(8px);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  animation: heroProductFloatHz 6s ease-in-out infinite;
}

@keyframes heroProductFloatHz {
  0%, 100% { margin-top: 0; }
  50% { margin-top: -8px; }
}

.hero-chip-row {
  position: relative;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
}

.hero-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  font-size: 0.7rem;
  font-weight: var(--fw-semibold);
  letter-spacing: 0.02em;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, 0.95);
  background: rgba(15, 8, 36, 0.62);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

.hero-chip .fa-solid {
  color: var(--color-aqua);
  opacity: 0.95;
  font-size: 0.85em;
}

.hero-main-column {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding-top: var(--space-sm);
}

.hero-main-column > * {
  margin-bottom: var(--space-md);
}

.hero-main-column > *:last-child {
  margin-bottom: 0;
}

.hero-eyebrow {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  animation: heroEnterUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.hero-eyebrow-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-aqua);
  box-shadow: 0 0 14px var(--color-coral);
  animation: dotPing 2.2s ease-in-out infinite;
}

@keyframes dotPing {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.25); opacity: 0.75; }
}

.hero-main-column .trust-row.hero-enter {
  animation: heroEnterUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.hero-stars-pulse {
  animation: starsPulse 2.6s ease-in-out infinite;
}

@keyframes starsPulse {
  0%, 100% { transform: scale(1); filter: brightness(1); }
  50% { transform: scale(1.05); filter: brightness(1.15); }
}

.badge-live {
  animation: badgeGlow 3s ease-in-out infinite;
}

.badge-strip .badge-live:nth-child(2) {
  animation-delay: 1s;
}

@keyframes badgeGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(63, 255, 208, 0); }
  50% { box-shadow: 0 0 16px 2px rgba(255, 90, 125, 0.28); }
}

.hero-title-split {
  font-family: var(--font-heading);
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  margin: 0 0 var(--space-md);
  letter-spacing: -0.035em;
}

.hero-title-row {
  display: block;
  color: rgba(255, 255, 255, 0.92);
  animation: heroTitleSlide 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.hero-title-emphasis {
  background: linear-gradient(105deg, var(--color-aqua) 0%, var(--color-lemon) 38%, var(--color-coral) 72%, var(--color-white) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitleSlide 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both, heroGradientDrift 8s ease-in-out infinite;
}

.hero-horizon .hero-title-emphasis {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: var(--color-aqua);
  text-shadow: 0 0 36px rgba(63, 255, 208, 0.35), 0 2px 0 rgba(46, 26, 71, 0.45);
  border-bottom: 3px solid var(--color-lemon);
  padding-bottom: 0.06em;
  display: inline-block;
  animation: heroTitleSlide 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.34s both;
}

.hero-horizon .hero-title-row:first-of-type {
  border-left: 3px solid rgba(255, 90, 125, 0.65);
  padding-left: var(--space-md);
  margin-left: calc(-1 * var(--space-md) - 3px);
}

@keyframes heroTitleSlide {
  from {
    opacity: 0;
    transform: translateY(28px) skewY(2deg);
  }
  to {
    opacity: 1;
    transform: translateY(0) skewY(0deg);
  }
}

@keyframes heroGradientDrift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

.hero-main-column .lead.hero-enter {
  animation: heroEnterUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.lead-shimmer {
  position: relative;
  max-width: 40ch;
}

.lead-shimmer::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  max-width: 12rem;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-aqua), transparent);
  background-size: 200% 100%;
  animation: lineShimmer 3s ease-in-out infinite;
  opacity: 0.75;
  border-radius: var(--radius-full);
}

@keyframes lineShimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.price-block.hero-enter {
  animation: heroEnterUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.52s both;
}

.price-pop {
  animation: priceNudge 4s ease-in-out infinite;
}

@keyframes priceNudge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.04); }
}

.highlights-stagger.hero-enter {
  animation: heroEnterUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.6s both;
}

.highlights-stagger li {
  animation: highlightSlide 0.6s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.highlights-stagger li:nth-child(1) { animation-delay: 0.65s; }
.highlights-stagger li:nth-child(2) { animation-delay: 0.74s; }
.highlights-stagger li:nth-child(3) { animation-delay: 0.83s; }

@keyframes highlightSlide {
  from {
    opacity: 0;
    transform: translateX(-16px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-form-card-horizon.hero-enter {
  animation: heroEnterUp 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.72s both, cardBorderGlowHz 6s ease-in-out infinite;
}

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

@keyframes cardBorderGlow {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 0 0 rgba(63, 255, 208, 0); }
  50% { box-shadow: var(--shadow-lg), 0 0 28px -4px rgba(255, 90, 125, 0.35); }
}

@keyframes cardBorderGlowHz {
  0%, 100% {
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.12), 0 0 0 0 rgba(63, 255, 208, 0);
  }
  50% {
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(63, 255, 208, 0.22), 0 0 32px -6px rgba(255, 90, 125, 0.32);
  }
}

.btn-pulse-glow {
  animation: btnGlowPulse 2.8s ease-in-out infinite;
}

@keyframes btnGlowPulse {
  0%, 100% { box-shadow: var(--shadow-glow-coral); }
  50% { box-shadow: 0 0 44px rgba(255, 90, 125, 0.65), 0 0 60px rgba(63, 255, 208, 0.25); }
}

.hero-horizon .hero-main-column .lead {
  font-size: var(--fs-lg);
  opacity: 0.92;
  margin: 0 0 var(--space-lg);
}

@media (prefers-reduced-motion: reduce) {
  .hero-horizon *,
  .hero-horizon *::before,
  .hero-horizon *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .hero-horizon .hero-product-img {
    animation: none;
  }
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.stars {
  color: var(--color-lemon);
  font-size: var(--fs-lg);
  letter-spacing: 2px;
}

.badge-strip {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}

.price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-horizon .price-block {
  align-items: flex-start;
}

.hero-horizon .hero-form-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow:
    var(--shadow-lg),
    0 0 0 1px rgba(46, 26, 71, 0.06);
}

.price-note {
  flex: 1 1 100%;
  margin: 0;
  font-size: var(--fs-xs);
  line-height: 1.45;
  opacity: 0.85;
  max-width: 42ch;
}

.hero-trust-note {
  margin: 0;
  flex: 1 1 100%;
  font-size: var(--fs-xs);
  line-height: 1.45;
  opacity: 0.88;
  max-width: 44ch;
}

.price-current {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-aqua);
}

.price-old {
  font-size: var(--fs-md);
  text-decoration: line-through;
  opacity: 0.75;
}

.highlights {
  list-style: none;
  margin: 0 0 var(--space-xl);
  padding: 0;
}

.highlights li {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding-left: 0;
  margin-bottom: var(--space-sm);
  font-size: var(--fs-sm);
}

.highlight-icon {
  flex-shrink: 0;
  width: 1.5rem;
  text-align: center;
  color: var(--color-lemon);
  margin-top: 0.1em;
}

.highlight-icon .fa-solid {
  font-size: 1rem;
}

.hero-form-card {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.hero-form-card h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xl);
  color: var(--color-indigo);
}

.form-intro {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--color-text-muted, #5c5c6f);
  line-height: 1.5;
}

.form-status {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: #c41e3a;
  min-height: 1.25em;
}

.form-status:empty {
  display: none;
}

.req-star {
  color: #c41e3a;
  font-weight: var(--fw-bold);
}

.form-label-optional {
  font-weight: var(--fw-regular);
  opacity: 0.85;
}

.form-hint {
  display: block;
  font-size: var(--fs-xs);
  color: var(--color-text-muted, #5c5c6f);
  margin-top: var(--space-xs);
  line-height: 1.4;
}

.form-fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid var(--color-lilac);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  background: var(--color-surface, #fff);
  color: inherit;
}

.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23555' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right var(--space-md) center;
  padding-right: calc(var(--space-md) * 2 + 12px);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-coral);
  box-shadow: 0 0 0 3px rgba(255, 90, 125, 0.2);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

.field-error {
  display: none;
  font-size: var(--fs-xs);
  color: #c41e3a;
  margin-top: var(--space-xs);
}

.form-group.is-invalid .field-error {
  display: block;
}

.form-group.is-invalid input,
.form-group.is-invalid textarea,
.form-group.is-invalid select {
  border-color: #c41e3a;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-row input {
  margin-top: 4px;
}

.checkbox-row label {
  font-size: var(--fs-xs);
  line-height: 1.5;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  font-family: inherit;
  font-size: var(--fs-base);
  font-weight: var(--fw-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-fast);
}

.btn-primary {
  background: var(--color-coral);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 0 50px rgba(255, 90, 125, 0.55), 0 16px 40px rgba(46, 26, 71, 0.25);
}

.btn-primary:active {
  transform: translateY(0) scale(0.98);
}

.btn-secondary {
  background: transparent;
  color: var(--color-indigo);
  border: 2px solid var(--color-indigo);
}

.btn-secondary:hover {
  background: var(--color-indigo);
  color: var(--color-white);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.magnetic-wrap {
  display: inline-block;
}

.section {
  padding: var(--space-section) var(--space-lg);
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-2xl);
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md);
  color: var(--color-indigo);
}

.section-head p {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--transition-slow), transform 0.7s var(--transition-slow);
}

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

.social-proof {
  background: linear-gradient(180deg, var(--color-bg) 0%, rgba(214, 205, 234, 0.35) 100%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-xl);
  align-items: start;
}

.proof-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(214, 205, 234, 0.6);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-aqua);
}

.proof-rating-big {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-indigo);
}

.review-preview {
  margin-top: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

.review-author {
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
}

.bento-categories {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

@media (max-width: 768px) {
  .bento-categories {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }
}

.bento-cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  color: var(--color-white);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  box-shadow: var(--shadow-md);
}

.bento-cat-icon {
  position: absolute;
  top: var(--space-lg);
  left: var(--space-xl);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  opacity: 0.88;
  line-height: 1;
}

.bento-vitamins .bento-cat-icon,
.bento-immunity .bento-cat-icon {
  color: var(--color-indigo);
  opacity: 0.9;
}

.bento-cat-card:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-glow-coral);
}

.bento-cat-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-xl);
}

.bento-cat-card p {
  margin: 0;
  font-size: var(--fs-sm);
  opacity: 0.9;
}

.bento-energy {
  grid-row: span 2;
  background: linear-gradient(145deg, var(--color-indigo), #5a3d7a);
  min-height: 320px;
}

@media (max-width: 768px) {
  .bento-energy {
    grid-row: auto;
    min-height: 200px;
  }
}

.bento-muscle {
  background: linear-gradient(145deg, var(--color-coral), #ff8fa8);
}

.bento-immunity {
  background: linear-gradient(145deg, #0d9488, var(--color-aqua));
  color: var(--color-indigo);
}

.bento-vitamins {
  background: linear-gradient(145deg, var(--color-lemon), #ffe566);
  color: var(--color-indigo);
}

.benefits-bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: minmax(140px, auto);
  gap: var(--space-md);
}

@media (max-width: 1024px) {
  .benefits-bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .benefits-bento {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-lilac);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.benefit-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-aqua);
}

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

.benefit-card.tall {
  grid-row: span 2;
}

@media (max-width: 520px) {
  .benefit-card.wide,
  .benefit-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-aqua), var(--color-coral));
  opacity: 0.9;
  margin-bottom: var(--space-sm);
  color: var(--color-white);
  font-size: 1.15rem;
}

.benefit-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-md);
  color: var(--color-indigo);
}

.benefit-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.ingredient-spot {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 2px solid var(--color-lilac);
  overflow: hidden;
  min-height: 200px;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}

.ingredient-spot:hover {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-glow-coral);
}

.ingredient-spot-front,
.ingredient-spot-back {
  padding: var(--space-lg);
  transition: opacity var(--transition-med), transform var(--transition-med);
}

.ingredient-spot-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-indigo), #4a2d6e);
  color: var(--color-white);
  opacity: 0;
  transform: translateY(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredient-spot:hover .ingredient-spot-front {
  opacity: 0;
  transform: translateY(-8px);
}

.ingredient-spot:hover .ingredient-spot-back {
  opacity: 1;
  transform: translateY(0);
}

.spotlight-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(214, 205, 234, 0.65);
  color: var(--color-indigo);
  font-size: 1.1rem;
}

.ingredient-spot-back .spotlight-icon {
  display: none;
}

.ingredient-spot-front h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-indigo);
}

.ingredient-spot-back h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-aqua);
}

.trust-science {
  background: var(--color-indigo);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
}

.trust-science-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  text-align: center;
}

.trust-icon {
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  font-size: 1.65rem;
  color: var(--color-aqua);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(63, 255, 208, 0.35);
  box-shadow: 0 0 24px rgba(255, 90, 125, 0.15);
  transition: transform 0.55s ease, color 0.25s ease, box-shadow 0.35s ease;
}

.trust-item:nth-child(2) .trust-icon {
  color: var(--color-lemon);
  border-color: rgba(255, 240, 90, 0.4);
}

.trust-item:nth-child(3) .trust-icon {
  color: var(--color-coral);
  border-color: rgba(255, 90, 125, 0.4);
}

.trust-item:hover .trust-icon {
  transform: rotateY(14deg) scale(1.06);
  box-shadow: 0 0 28px rgba(63, 255, 208, 0.35);
}

.trust-item h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-md);
  color: var(--color-aqua);
}

.trust-item p {
  margin: 0;
  font-size: var(--fs-sm);
  opacity: 0.88;
}

.carousel-section {
  overflow: hidden;
}

.carousel-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track {
  display: flex;
  transition: transform var(--transition-slow);
}

.carousel-slide {
  flex: 0 0 100%;
  padding: var(--space-lg);
  display: flex;
  justify-content: center;
}

.carousel-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 320px;
  text-align: center;
  box-shadow: var(--shadow-glow-coral);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.carousel-card.tilt-active {
  transform-style: preserve-3d;
}

.carousel-card img {
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-lilac);
  cursor: pointer;
  padding: 0;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot[aria-current="true"] {
  background: var(--color-coral);
  transform: scale(1.2);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-indigo);
  background: var(--color-white);
  cursor: pointer;
  font-size: 1.25rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.carousel-btn:hover {
  background: var(--color-indigo);
  color: var(--color-white);
}

.carousel-btn-prev {
  left: 0;
}

.carousel-btn-next {
  right: 0;
}

@media (max-width: 640px) {
  .carousel-btn {
    display: none;
  }
}

.split-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

@media (max-width: 900px) {
  .split-story {
    grid-template-columns: 1fr;
  }
}

.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.spec-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border-left: 4px solid var(--color-coral);
  box-shadow: var(--shadow-sm);
}

.spec-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: rgba(214, 205, 234, 0.45);
  color: var(--color-indigo);
  font-size: 1.15rem;
}

.spec-card-body {
  min-width: 0;
}

.spec-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-indigo);
}

.spec-card p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
}

.step-card {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-lilac);
}

.step-num {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  border-radius: 50%;
  background: var(--color-lemon);
  color: var(--color-indigo);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--space-md);
}

.ingredient-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-lilac);
}

.matrix-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(63, 255, 208, 0.18);
  color: var(--color-indigo);
  font-size: 1rem;
}

.ingredient-card h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-sm);
  color: var(--color-indigo);
}

.ingredient-card p {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.use-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 560px;
}

.use-steps li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  position: relative;
  padding-left: 0;
  margin-bottom: var(--space-lg);
}

.use-step-glyph {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-indigo);
  color: var(--color-aqua);
  border-radius: 50%;
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-aqua);
}

.review-quote-icon {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  font-size: 1.5rem;
  color: rgba(214, 205, 234, 0.9);
  line-height: 1;
  pointer-events: none;
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--color-lilac);
}

.faq-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-lg) var(--space-sm);
  font-family: inherit;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-indigo);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
  transition: color var(--transition-fast);
}

.faq-trigger:hover {
  color: var(--color-coral);
}

.faq-icon {
  flex-shrink: 0;
  transition: transform var(--transition-med);
}

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

.faq-panel {
  display: none;
  padding: 0 var(--space-sm) var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.cta-final {
  text-align: center;
  background: linear-gradient(135deg, var(--color-coral), #ff8fa8);
  color: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-3xl) var(--space-xl);
  box-shadow: var(--shadow-glow-coral);
}

.cta-final h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-3xl);
}

.cta-final p {
  margin: 0 auto var(--space-xl);
  max-width: 520px;
  opacity: 0.95;
}

.disclaimer-block {
  background: rgba(214, 205, 234, 0.4);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-2xl);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--space-2xl) var(--space-lg);
  margin-top: var(--space-section);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-grid h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-aqua);
}

.footer-grid ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-grid a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.footer-grid a:hover {
  color: var(--color-lemon);
}

.footer-legal-box {
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-bottom: var(--space-xl);
  font-size: var(--fs-xs);
  line-height: 1.6;
  opacity: 0.92;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
  font-size: var(--fs-xs);
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2000;
  padding: var(--space-md);
  display: none;
}

.cookie-banner.is-active {
  display: block;
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: var(--glass-dark);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.cookie-inner p {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-sm);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  padding: var(--space-sm) var(--space-lg);
  font-size: var(--fs-sm);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: rgba(46, 26, 71, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-overlay.is-open {
  display: flex;
}

.modal-panel {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.modal-panel h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xl);
  color: var(--color-indigo);
}

.cookie-category {
  margin-bottom: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--color-lilac);
}

.cookie-category h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-sm);
}

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  inset: 0;
  background: var(--color-lilac);
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  top: 3px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform var(--transition-fast);
}

.switch input:checked + .switch-slider {
  background: var(--color-coral);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .switch-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.page-hero {
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(135deg, var(--color-lilac), var(--color-white));
  text-align: center;
}

.page-hero h1 {
  margin: 0;
  font-size: var(--fs-2xl);
  color: var(--color-indigo);
}

.policy-article {
  max-width: 760px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
}

.policy-article h2 {
  margin-top: var(--space-xl);
  font-size: var(--fs-lg);
  color: var(--color-indigo);
}

.policy-article h2:first-child {
  margin-top: 0;
}

.policy-article p,
.policy-article li {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.policy-article ul {
  padding-left: var(--space-lg);
}

.thankyou-main {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
}

.thankyou-card {
  max-width: 520px;
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-lilac);
}

.thankyou-card h1 {
  margin: 0 0 var(--space-md);
  color: var(--color-indigo);
}

.thankyou-card p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
}

.product-tilt {
  transition: transform 0.15s ease-out;
}

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

.footer-lead {
  margin: 0;
  font-size: var(--fs-sm);
}

.btn-full-gap {
  margin-top: var(--space-md);
  width: 100%;
}

.ingredient-spot:focus-within {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-glow-coral);
}

.ingredient-spot:focus-within .ingredient-spot-front {
  opacity: 0;
  transform: translateY(-8px);
}

.ingredient-spot:focus-within .ingredient-spot-back {
  opacity: 1;
  transform: translateY(0);
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 10001;
  background: linear-gradient(90deg, var(--color-coral), var(--color-aqua), var(--color-lemon));
  background-size: 200% 100%;
  animation: scrollGradient 6s linear infinite;
  pointer-events: none;
}

@keyframes scrollGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

body.is-nav-open {
  overflow: hidden;
}

.burger {
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 90, 125, 0.15), rgba(63, 255, 208, 0.2));
  box-shadow: inset 0 0 0 2px var(--color-indigo);
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.burger:hover {
  transform: scale(1.04);
  box-shadow: inset 0 0 0 2px var(--color-coral), var(--shadow-glow-aqua);
}

.burger-lines {
  width: 22px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}

.burger-bar {
  display: block;
  height: 2px;
  background: var(--color-indigo);
  border-radius: var(--radius-full);
  transition: transform 0.35s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.2s ease, width 0.25s ease;
  transform-origin: center;
}

.burger.is-open .burger-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.burger.is-open .burger-bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0.2);
}

.burger.is-open .burger-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.live-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.stat-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(214, 205, 234, 0.55));
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  border: 1px solid rgba(46, 26, 71, 0.08);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  animation: statPop 0.8s var(--transition-slow) both;
}

.stat-icon {
  font-size: 1.5rem;
  color: var(--color-indigo);
  opacity: 0.82;
  line-height: 1;
}

.stat-block:nth-child(1) { animation-delay: 0.05s; }
.stat-block:nth-child(2) { animation-delay: 0.12s; }
.stat-block:nth-child(3) { animation-delay: 0.2s; }

.stat-block:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-coral);
}

@keyframes statPop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.proof-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: var(--space-sm);
  border-radius: var(--radius-sm);
  background: rgba(214, 205, 234, 0.55);
  color: var(--color-indigo);
  font-size: 1.1rem;
}

.stat-number {
  display: block;
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-indigo);
  letter-spacing: -0.02em;
}

.stat-caption {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.proof-card-rise {
  animation: riseIn 0.85s var(--transition-slow) both;
}

.proof-grid-delay .proof-card:nth-child(1) { animation: riseIn 0.85s var(--transition-slow) 0.05s both; }
.proof-grid-delay .proof-card:nth-child(2) { animation: riseIn 0.85s var(--transition-slow) 0.12s both; }
.proof-grid-delay .proof-card:nth-child(3) { animation: riseIn 0.85s var(--transition-slow) 0.2s both; }

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

.ritual-section {
  background: radial-gradient(120% 80% at 10% 20%, rgba(255, 90, 125, 0.12), transparent 55%),
    radial-gradient(100% 60% at 90% 0%, rgba(63, 255, 208, 0.14), transparent 50%), var(--color-bg);
}

.ritual-shell {
  display: grid;
  gap: var(--space-xl);
  align-items: start;
}

@media (min-width: 900px) {
  .ritual-shell {
    grid-template-columns: minmax(220px, 280px) 1fr;
  }
}

.ritual-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  position: sticky;
  top: calc(var(--header-h) + var(--space-md));
}

.ritual-tab {
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-align: left;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border: 2px solid var(--color-lilac);
  background: var(--color-white);
  color: var(--color-indigo);
  cursor: pointer;
  transition: border-color var(--transition-fast), transform var(--transition-med), box-shadow var(--transition-med), background var(--transition-fast);
}

.ritual-tab:hover,
.ritual-tab:focus-visible {
  border-color: var(--color-coral);
  transform: translateX(6px);
  outline: none;
  box-shadow: var(--shadow-glow-aqua);
}

.ritual-tab.is-active {
  background: linear-gradient(135deg, var(--color-indigo), #4a2d6e);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-glow-coral);
}

.ritual-tab i {
  opacity: 0.95;
  flex-shrink: 0;
}

.ritual-panels {
  min-height: 320px;
}

.ritual-panel {
  display: none;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  background: var(--color-white);
  border: 1px solid rgba(214, 205, 234, 0.8);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px) scale(0.985);
  animation: panelSwap 0.55s var(--transition-slow) forwards;
}

.ritual-panel.is-active {
  display: block;
  animation-name: panelSwap;
}

@keyframes panelSwap {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.ritual-visual {
  position: relative;
  height: 160px;
  margin-bottom: var(--space-lg);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.ritual-visual-morning {
  background: conic-gradient(from 210deg, var(--color-coral), var(--color-lemon), var(--color-aqua), var(--color-coral));
  animation: spinSoft 18s linear infinite;
}

.ritual-ring {
  position: absolute;
  inset: 0;
  margin: auto;
  border-radius: 50%;
  border: 3px solid rgba(255, 255, 255, 0.45);
  animation: pulseRing 3.2s ease-in-out infinite;
}

.rit-1 { width: 120px; height: 120px; }
.rit-2 { width: 180px; height: 180px; animation-delay: -1s; opacity: 0.55; }

.ritual-core {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-white);
  box-shadow: 0 0 0 12px rgba(46, 26, 71, 0.12);
}

.ritual-visual-noon {
  background: linear-gradient(135deg, #2E1A47 0%, #5a3d7a 40%, #3FFFD0 100%);
}

.ritual-grid-lines {
  position: absolute;
  inset: 12px;
  background: repeating-linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.12) 0,
    rgba(255, 255, 255, 0.12) 1px,
    transparent 1px,
    transparent 24px
  ),
  repeating-linear-gradient(
    0deg,
    rgba(255, 255, 255, 0.1) 0,
    rgba(255, 255, 255, 0.1) 1px,
    transparent 1px,
    transparent 22px
  );
  border-radius: var(--radius-md);
  animation: gridShift 12s linear infinite;
}

.ritual-burst {
  position: absolute;
  width: 100px;
  height: 100px;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, var(--color-lemon) 0%, transparent 70%);
  filter: blur(10px);
  animation: burstPulse 2.8s ease-in-out infinite;
}

.ritual-visual-evening {
  background: radial-gradient(circle at 30% 30%, rgba(255, 90, 125, 0.35), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(46, 26, 71, 0.95), #1a0f2e);
}

.ritual-moon {
  position: absolute;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fffef0, var(--color-lilac));
  top: 24px;
  right: 28px;
  box-shadow: 0 0 40px rgba(255, 240, 90, 0.35);
}

.ritual-trail {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(0deg, rgba(63, 255, 208, 0.25), transparent);
}

.ritual-panel h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-xl);
  color: var(--color-indigo);
}

.ritual-panel p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  max-width: 52ch;
}

.ritual-chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.chip-glow {
  display: inline-block;
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  background: rgba(63, 255, 208, 0.2);
  border: 1px solid rgba(46, 26, 71, 0.12);
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.chip-glow:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-aqua);
}

.ritual-cta-strip {
  margin-top: var(--space-2xl);
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(46, 26, 71, 0.08), rgba(255, 90, 125, 0.12));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.ritual-cta-text {
  margin: 0;
  flex: 1;
  min-width: 240px;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.ritual-cta-link {
  flex-shrink: 0;
}

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

@keyframes pulseRing {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 0.45; }
}

@keyframes gridShift {
  from { background-position: 0 0, 0 0; }
  to { background-position: 120px 0, 0 88px; }
}

@keyframes burstPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.9; }
  50% { transform: translate(-50%, -50%) scale(1.25); opacity: 0.55; }
}

.policy-body {
  background: var(--color-bg);
}

.policy-mesh {
  position: relative;
  padding: clamp(2.5rem, 6vw, 4.5rem) var(--space-lg);
  overflow: hidden;
  background: linear-gradient(140deg, #2E1A47 0%, #4a2d6e 40%, #1a0f2e 100%);
  color: var(--color-white);
}

.policy-mesh::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(40% 55% at 15% 25%, rgba(255, 90, 125, 0.42), transparent 60%),
    radial-gradient(35% 40% at 85% 15%, rgba(63, 255, 208, 0.35), transparent 55%),
    radial-gradient(50% 50% at 70% 80%, rgba(255, 240, 90, 0.18), transparent 60%);
  opacity: 0.95;
  pointer-events: none;
}

.policy-mesh-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .policy-mesh-inner {
    grid-template-columns: 1fr auto;
    align-items: end;
  }
}

.policy-mesh h1 {
  margin: 0;
  font-size: clamp(1.85rem, 4vw, 3rem);
  line-height: var(--lh-tight);
  letter-spacing: -0.02em;
}

.policy-lead-mesh {
  margin: 0;
  max-width: 46ch;
  font-size: var(--fs-md);
  opacity: 0.92;
}

.policy-meta-banner {
  margin: 0;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  font-size: var(--fs-sm);
  align-self: end;
}

.policy-meta-banner a {
  color: var(--color-aqua);
}

.policy-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 960px) {
  .policy-layout {
    grid-template-columns: 260px 1fr;
    align-items: start;
  }
}

.policy-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--space-md));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid var(--color-lilac);
  box-shadow: var(--shadow-md);
}

.policy-toc strong {
  display: block;
  margin-bottom: var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-indigo);
}

.policy-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.policy-toc a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  color: var(--color-text-muted);
  transition: color var(--transition-fast), transform var(--transition-fast);
}

.policy-toc a:hover {
  color: var(--color-coral);
  transform: translateX(4px);
}

.policy-flow {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.policy-block {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  padding: clamp(1.25rem, 3vw, 2rem);
  border: 1px solid rgba(214, 205, 234, 0.75);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-med);
}

.policy-block:hover {
  border-color: rgba(255, 90, 125, 0.35);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.policy-block h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-lg);
  color: var(--color-indigo);
}

.policy-block p,
.policy-block li {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.policy-block ul {
  padding-left: var(--space-lg);
  margin: 0 0 var(--space-sm);
}

.policy-block code {
  font-size: 0.9em;
  padding: 0.15em 0.4em;
  border-radius: var(--radius-sm);
  background: rgba(214, 205, 234, 0.55);
  color: var(--color-indigo);
}

.policy-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.policy-pill {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  background: rgba(63, 255, 208, 0.25);
  color: var(--color-indigo);
}

.policy-note {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 240, 90, 0.22);
  border-left: 4px solid var(--color-coral);
  font-size: var(--fs-xs);
  color: var(--color-text);
}

.policy-closure {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: linear-gradient(180deg, rgba(214, 205, 234, 0.35), var(--color-bg));
}

.policy-closure-box {
  max-width: 720px;
  margin: 0 auto;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: var(--color-white);
  border: 1px solid var(--color-lilac);
  box-shadow: var(--shadow-lg);
}

.policy-closure-box p {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.policy-cta-wrap {
  margin-top: var(--space-md);
}

.thankyou-badge {
  display: inline-block;
  margin-bottom: var(--space-md);
}

.thankyou-hero {
  position: relative;
  padding: clamp(2.75rem, 7vw, 5rem) var(--space-lg);
  background: linear-gradient(155deg, var(--color-indigo), #1a0f2e);
  overflow: hidden;
  color: var(--color-white);
}

.thankyou-hero::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 20% 20%, rgba(255, 90, 125, 0.45), transparent 45%),
    radial-gradient(circle at 80% 0%, rgba(63, 255, 208, 0.4), transparent 40%);
  animation: thankGlow 16s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes thankGlow {
  0% { transform: translate(0, 0); }
  100% { transform: translate(20px, -16px); }
}

.thankyou-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 840px;
  margin: 0 auto;
  text-align: center;
}

.thankyou-hero-inner h1 {
  margin: 0 0 var(--space-md);
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: var(--lh-tight);
}

.thankyou-hero-inner p {
  margin: 0 auto var(--space-lg);
  max-width: 48ch;
  font-size: var(--fs-md);
  opacity: 0.92;
}

.thankyou-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) var(--space-3xl);
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 720px) {
  .thankyou-grid {
    grid-template-columns: 1.1fr 0.9fr;
  }
}

.thankyou-card-lg {
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  background: var(--color-white);
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.thankyou-card-lg::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: inherit;
  background: linear-gradient(135deg, var(--color-coral), var(--color-aqua), var(--color-lemon));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.thankyou-card-lg h2 {
  margin: 0 0 var(--space-md);
  color: var(--color-indigo);
  font-size: var(--fs-xl);
}

.thankyou-card-lg p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.thankyou-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.thankyou-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(214, 205, 234, 0.4), rgba(255, 255, 255, 0.95));
  border: 1px solid rgba(46, 26, 71, 0.08);
  animation: riseIn 0.75s var(--transition-slow) both;
}

.thankyou-steps li:nth-child(2) { animation-delay: 0.1s; }
.thankyou-steps li:nth-child(3) { animation-delay: 0.18s; }

.thankyou-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  background: var(--color-indigo);
  color: var(--color-aqua);
  flex-shrink: 0;
}

.thankyou-highlight {
  margin: 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (max-width: 768px) {
  .burger {
    display: inline-flex;
  }

  .nav-toggle:not(.burger) {
    display: none;
  }

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--glass-bg);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav.is-open {
    max-height: min(78vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav ul {
    flex-direction: column;
    padding: var(--space-md) var(--space-lg) var(--space-xl);
  }

  .site-nav a {
    padding: var(--space-sm) 0;
    display: block;
  }

  .header-inner {
    position: relative;
  }

  .site-header {
    position: sticky;
  }
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }
}

@media (max-width: 360px) {
  .header-inner {
    padding: 0 var(--space-md);
    gap: var(--space-sm);
  }

  .brand {
    font-size: var(--fs-sm);
    line-height: 1.2;
    max-width: min(200px, 62vw);
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .section,
  .hero {
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .hero-form-card {
    padding: var(--space-md);
  }

  .price-current {
    font-size: var(--fs-xl);
  }

  .bento-categories {
    gap: var(--space-sm);
  }

  .benefits-bento {
    gap: var(--space-sm);
  }

  .footer-grid {
    gap: var(--space-md);
  }

  .cookie-inner {
    padding: var(--space-md);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
  }

  .policy-layout {
    padding: var(--space-lg) var(--space-md) var(--space-2xl);
  }

  .policy-toc {
    position: static;
  }

  .thankyou-grid {
    padding: var(--space-lg) var(--space-md);
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93%;
  }

  :root {
    --fs-hero: clamp(1.72rem, 11vw, 2.5rem);
    --fs-3xl: clamp(1.55rem, 8.5vw, 2.1rem);
    --fs-2xl: clamp(1.35rem, 7vw, 1.95rem);
    --fs-xl: clamp(1.12rem, 5vw, 1.55rem);
    --space-section: clamp(2rem, 7vw, 3.25rem);
    --header-h: 64px;
  }

  body {
    overflow-wrap: anywhere;
    word-wrap: break-word;
  }

  [id] {
    scroll-margin-top: calc(var(--header-h) + 10px);
  }

  .header-inner {
    padding: 0 var(--space-sm);
    gap: var(--space-xs);
  }

  .brand {
    font-size: clamp(0.7rem, 3.4vw, var(--fs-sm));
    max-width: min(175px, 52vw);
    line-height: 1.15;
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .nav-toggle.burger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    padding: var(--space-xs);
  }

  .skip-link:focus {
    left: var(--space-sm);
  }

  .site-nav ul {
    padding: var(--space-sm) var(--space-sm) var(--space-lg);
    gap: var(--space-sm);
  }

  .site-nav a {
    padding: var(--space-sm) 0;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .hero.hero-horizon {
    padding: clamp(1.75rem, 5vw, 2.5rem) var(--space-sm) var(--space-section);
  }

  .hero-grid-horizon {
    gap: var(--space-md);
    width: 100%;
    max-width: 100%;
  }

  .hero-stage {
    min-height: min(52vw, 240px);
    max-width: min(100%, 360px);
  }

  .hero-title-split {
    letter-spacing: -0.04em;
  }

  .hero-horizon .hero-main-column .lead {
    font-size: var(--fs-md);
    max-width: 100%;
  }

  .lead-shimmer::after {
    max-width: 10rem;
  }

  .hero-horizon .hero-title-row:first-of-type {
    margin-left: 0;
    padding-left: var(--space-sm);
    border-left-width: 2px;
  }

  .hero-visual-shell {
    padding: var(--space-md);
    max-width: 100%;
  }

  .hero-chip {
    font-size: 0.62rem;
    padding: 5px var(--space-sm);
  }

  .hero-chip-row {
    gap: var(--space-xs);
  }

  .stars {
    font-size: var(--fs-md);
    letter-spacing: 1px;
  }

  .badge {
    padding: 5px var(--space-sm);
    font-size: 0.68rem;
  }

  .badge-strip {
    gap: var(--space-xs);
  }

  .price-current {
    font-size: var(--fs-xl);
  }

  .highlights li {
    font-size: var(--fs-xs);
    gap: var(--space-xs);
  }

  .hero-form-card {
    padding: var(--space-sm);
  }

  .hero-form-card h2 {
    font-size: var(--fs-lg);
    line-height: var(--lh-tight);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    font-size: 16px;
    padding: 10px var(--space-sm);
  }

  .checkbox-row label {
    font-size: 0.68rem;
  }

  .section {
    padding: var(--space-section) var(--space-sm);
  }

  .section-head {
    margin-bottom: var(--space-xl);
    padding: 0 var(--space-xs);
  }

  .section-head h2 {
    font-size: var(--fs-3xl);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .section-head p {
    font-size: var(--fs-sm);
  }

  .proof-grid {
    gap: var(--space-md);
    grid-template-columns: minmax(0, 1fr);
  }

  .ritual-cta-strip {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-md);
    gap: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .ritual-cta-text {
    min-width: 0;
    font-size: var(--fs-xs);
  }

  .bento-cat-card {
    padding: var(--space-md);
    min-height: 132px;
  }

  .bento-cat-card h3 {
    font-size: var(--fs-md);
  }

  .bento-cat-icon {
    top: var(--space-md);
    left: var(--space-md);
    font-size: 1.35rem;
  }

  .bento-energy {
    min-height: 168px;
  }

  .benefit-card {
    padding: var(--space-md);
  }

  .spotlight-grid,
  .ingredients-grid,
  .reviews-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-md);
  }

  .ingredient-spot-front,
  .ingredient-spot-back {
    padding: var(--space-md);
  }

  .review-card {
    padding: var(--space-md);
  }

  .use-step {
    gap: var(--space-sm);
    margin-bottom: var(--space-md);
  }

  .use-step-glyph {
    width: 36px;
    height: 36px;
    font-size: 0.9rem;
  }

  .split-story {
    gap: var(--space-lg);
  }

  .spec-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
  }

  .spec-card {
    padding: var(--space-md);
    gap: var(--space-sm);
  }

  .faq-trigger {
    padding: var(--space-md) var(--space-xs);
    font-size: var(--fs-sm);
    gap: var(--space-sm);
    align-items: flex-start;
    line-height: 1.35;
  }

  .faq-panel {
    padding: 0 var(--space-xs) var(--space-md);
    font-size: var(--fs-xs);
  }

  .cta-final {
    padding: var(--space-2xl) var(--space-sm);
    border-radius: var(--radius-lg);
  }

  .cta-final h2 {
    font-size: var(--fs-3xl);
    line-height: var(--lh-tight);
  }

  .cta-final p {
    font-size: var(--fs-sm);
  }

  .disclaimer-block {
    padding: var(--space-md);
    font-size: 0.68rem;
  }

  .site-footer {
    padding: var(--space-xl) var(--space-sm);
  }

  .footer-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-lg);
  }

  .footer-legal-box {
    padding: var(--space-md);
  }

  .trust-row {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }

  .live-stats {
    grid-template-columns: minmax(0, 1fr);
    gap: var(--space-sm);
  }

  .stat-block {
    padding: var(--space-md);
  }

  .ritual-tab {
    padding: 10px var(--space-sm);
    font-size: 0.68rem;
    gap: var(--space-xs);
    line-height: 1.3;
  }

  .ritual-tab i {
    font-size: 0.85em;
  }

  .ritual-tabs {
    top: calc(var(--header-h) + var(--space-xs));
  }

  .ritual-panel {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .ritual-visual {
    height: 112px;
    margin-bottom: var(--space-md);
  }

  .ritual-panels {
    min-height: 260px;
  }

  .btn {
    padding: 12px var(--space-md);
    width: 100%;
    min-height: 44px;
    box-sizing: border-box;
  }

  .btn-secondary,
  .btn-primary {
    justify-content: center;
    text-align: center;
  }

  .magnetic-wrap {
    display: block;
    width: 100%;
  }

  .magnetic-wrap .btn {
    width: 100%;
  }

  .cookie-inner {
    padding: var(--space-sm);
  }

  .cookie-banner {
    padding: var(--space-sm);
  }

  .thankyou-hero-inner {
    padding: 0 var(--space-xs);
  }

  .thankyou-hero-inner h1 {
    font-size: var(--fs-3xl);
    line-height: var(--lh-tight);
    hyphens: auto;
    -webkit-hyphens: auto;
  }

  .thankyou-grid {
    padding: var(--space-md) var(--space-sm);
  }

  .thankyou-card-lg {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .thankyou-steps li {
    grid-template-columns: auto 1fr;
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .thankyou-step-num {
    width: 36px;
    height: 36px;
    font-size: var(--fs-sm);
  }

  .thankyou-actions {
    flex-direction: column;
  }

  .thankyou-actions .btn {
    flex: 1 1 auto;
    width: 100%;
  }

  .policy-layout {
    padding: var(--space-md) var(--space-sm) var(--space-xl);
  }

  .policy-layout table {
    display: block;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .stat-number {
    font-size: var(--fs-xl);
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-sm);
  }
}
