:root {
  --color-burgundy: #6D1A36;
  --color-midnight: #0B1F3A;
  --color-emerald: #0F8A5F;
  --color-gold: #D4AF37;
  --color-plum: #5A2A6C;
  --color-white: #ffffff;
  --color-cream: #f7f5f2;
  --color-text: #1a1a1a;
  --color-text-muted: #4a5568;
  --font-family-head: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-family-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: clamp(2rem, 5vw, 3.25rem);
  --font-size-hero: clamp(2.5rem, 6vw, 4rem);
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.2;
  --line-height-body: 1.6;
  --shadow-sm: 0 2px 8px rgba(11, 31, 58, 0.08);
  --shadow-md: 0 8px 24px rgba(11, 31, 58, 0.12);
  --shadow-lg: 0 16px 48px rgba(11, 31, 58, 0.18);
  --shadow-glow-emerald: 0 0 32px rgba(15, 138, 95, 0.45), 0 12px 40px rgba(90, 42, 108, 0.25);
  --shadow-glow-gold: 0 0 28px rgba(212, 175, 55, 0.35);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --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: 4rem;
  --space-section: clamp(3rem, 8vw, 5rem);
  --max-width: 1180px;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.12);
  --glass-border: rgba(255, 255, 255, 0.22);
  --glass-blur: 16px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-family-body);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: var(--color-cream);
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

.ads-notice {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  font-size: var(--font-size-sm);
  line-height: var(--line-height-body);
  color: var(--color-midnight);
  background: linear-gradient(180deg, rgba(15, 138, 95, 0.12), rgba(247, 245, 242, 0.95));
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.ads-notice a {
  color: var(--color-burgundy);
  text-decoration: underline;
}

.ads-notice strong {
  color: var(--color-burgundy);
}

@media (max-width: 360px) {
  .ads-notice {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-xs);
  }
}

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

a {
  color: var(--color-emerald);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

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

h1,
h2,
h3,
h4 {
  font-family: var(--font-family-head);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md);
}

h1 {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
}

h2 {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
}

h3 {
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
}

p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: var(--space-md) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  flex-wrap: wrap;
}

.brand {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: var(--color-midnight);
  letter-spacing: -0.02em;
}

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

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

.site-nav a {
  color: var(--color-midnight);
  font-weight: var(--font-weight-medium);
  font-size: var(--font-size-sm);
}

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

.hero {
  position: relative;
  background: var(--color-midnight);
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-lg) var(--space-section);
  overflow: hidden;
}

.hero--prism {
  isolation: isolate;
}

.hero__aurora {
  position: absolute;
  inset: -20% -30% -10%;
  background: conic-gradient(
    from 220deg at 30% 40%,
    rgba(109, 26, 54, 0.65),
    rgba(11, 31, 58, 0.9),
    rgba(15, 138, 95, 0.45),
    rgba(90, 42, 108, 0.55),
    rgba(212, 175, 55, 0.25),
    rgba(109, 26, 54, 0.65)
  );
  animation: heroAurora 22s ease-in-out infinite;
  z-index: 0;
  pointer-events: none;
  opacity: 0.95;
}

@keyframes heroAurora {
  0%,
  100% {
    transform: rotate(0deg) scale(1);
    filter: hue-rotate(0deg);
  }
  33% {
    transform: rotate(4deg) scale(1.03);
    filter: hue-rotate(12deg);
  }
  66% {
    transform: rotate(-3deg) scale(1.02);
    filter: hue-rotate(-8deg);
  }
}

.hero__grid-lines {
  position: absolute;
  inset: 0;
  background-image: 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: 56px 56px;
  animation: heroGridDrift 36s linear infinite;
  z-index: 0;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 30%, black 15%, transparent 75%);
}

@keyframes heroGridDrift {
  to {
    background-position: 56px 56px;
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.9);
  opacity: 0;
  animation: heroSpark 5.5s ease-in-out infinite;
}

.hero__particle:nth-child(1) {
  left: 12%;
  top: 22%;
  animation-delay: 0s;
}

.hero__particle:nth-child(2) {
  left: 78%;
  top: 18%;
  animation-delay: 0.4s;
}

.hero__particle:nth-child(3) {
  left: 66%;
  top: 55%;
  animation-delay: 0.8s;
  background: var(--color-emerald);
  box-shadow: 0 0 12px rgba(15, 138, 95, 0.9);
}

.hero__particle:nth-child(4) {
  left: 22%;
  top: 68%;
  animation-delay: 1.2s;
}

.hero__particle:nth-child(5) {
  left: 88%;
  top: 72%;
  animation-delay: 1.6s;
}

.hero__particle:nth-child(6) {
  left: 45%;
  top: 12%;
  animation-delay: 2s;
  width: 3px;
  height: 3px;
}

.hero__particle:nth-child(7) {
  left: 8%;
  top: 48%;
  animation-delay: 2.4s;
}

.hero__particle:nth-child(8) {
  left: 52%;
  top: 78%;
  animation-delay: 2.8s;
}

@keyframes heroSpark {
  0%,
  100% {
    opacity: 0;
    transform: translate(0, 0) scale(0.6);
  }
  25% {
    opacity: 1;
    transform: translate(6px, -14px) scale(1);
  }
  50% {
    opacity: 0.85;
    transform: translate(-4px, -28px) scale(0.85);
  }
  75% {
    opacity: 0.5;
    transform: translate(10px, -18px) scale(0.9);
  }
}

.hero__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }

  .hero__grid > .order-card {
    grid-column: 1 / -1;
  }
}

.hero__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(72vw, 420px);
  perspective: 1200px;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.22);
  pointer-events: none;
  animation: heroRingPulse 6s ease-in-out infinite;
}

.hero__ring--a {
  width: min(92%, 360px);
  aspect-ratio: 1;
  animation-delay: 0s;
}

.hero__ring--b {
  width: min(108%, 420px);
  aspect-ratio: 1;
  border-color: rgba(15, 138, 95, 0.2);
  animation-delay: -2s;
}

.hero__ring--c {
  width: min(124%, 480px);
  aspect-ratio: 1;
  border-color: rgba(255, 255, 255, 0.08);
  animation-delay: -4s;
}

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

.hero__beam {
  position: absolute;
  width: 2px;
  height: 120%;
  top: -10%;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(212, 175, 55, 0.4),
    transparent
  );
  opacity: 0.5;
  animation: heroBeam 4s ease-in-out infinite;
}

.hero__beam--1 {
  left: 18%;
  animation-delay: 0s;
}

.hero__beam--2 {
  right: 22%;
  animation-delay: 1.2s;
}

@keyframes heroBeam {
  0%,
  100% {
    transform: translateY(8%) scaleY(0.85);
    opacity: 0.35;
  }
  50% {
    transform: translateY(-8%) scaleY(1.05);
    opacity: 0.75;
  }
}

.hero__frame {
  position: relative;
  padding: var(--space-lg);
  z-index: 2;
}

.hero__corner {
  position: absolute;
  width: 28px;
  height: 28px;
  pointer-events: none;
  animation: heroCornerGlow 3.5s ease-in-out infinite;
}

.hero__corner--tl {
  top: 0;
  left: 0;
  border-top: 2px solid var(--color-gold);
  border-left: 2px solid var(--color-gold);
  border-radius: var(--radius-sm) 0 0 0;
}

.hero__corner--tr {
  top: 0;
  right: 0;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  border-radius: 0 var(--radius-sm) 0 0;
  animation-delay: 0.5s;
}

.hero__corner--bl {
  bottom: 0;
  left: 0;
  border-bottom: 2px solid var(--color-emerald);
  border-left: 2px solid var(--color-emerald);
  border-radius: 0 0 0 var(--radius-sm);
  animation-delay: 1s;
}

.hero__corner--br {
  bottom: 0;
  right: 0;
  border-bottom: 2px solid var(--color-emerald);
  border-right: 2px solid var(--color-emerald);
  border-radius: 0 0 var(--radius-sm) 0;
  animation-delay: 1.5s;
}

@keyframes heroCornerGlow {
  0%,
  100% {
    opacity: 0.55;
    filter: drop-shadow(0 0 4px rgba(212, 175, 55, 0.35));
  }
  50% {
    opacity: 1;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.55));
  }
}

.hero__visual--prism {
  position: relative;
  display: flex;
  justify-content: center;
  animation: heroProductTilt 10s ease-in-out infinite;
  transform-style: preserve-3d;
}

@keyframes heroProductTilt {
  0%,
  100% {
    transform: rotateY(-4deg) rotateX(2deg) translateY(0);
  }
  50% {
    transform: rotateY(4deg) rotateX(-2deg) translateY(-10px);
  }
}

.hero__glow {
  position: absolute;
  width: min(90%, 380px);
  aspect-ratio: 4/5;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.45) 0%, rgba(15, 138, 95, 0.15) 42%, transparent 68%);
  border-radius: var(--radius-xl);
  filter: blur(28px);
  animation: pulseGlow 5s ease-in-out infinite;
  z-index: 0;
}

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

.hero__shine {
  position: absolute;
  inset: 10% 5% 20%;
  background: linear-gradient(
    105deg,
    transparent 36%,
    rgba(255, 255, 255, 0.22) 48%,
    transparent 58%
  );
  z-index: 2;
  pointer-events: none;
  animation: heroShineSweep 7s ease-in-out infinite;
  mix-blend-mode: screen;
}

@keyframes heroShineSweep {
  0% {
    transform: translateX(-120%) skewX(-12deg);
    opacity: 0;
  }
  18% {
    opacity: 1;
  }
  40% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }
  100% {
    transform: translateX(120%) skewX(-12deg);
    opacity: 0;
  }
}

.hero__visual--prism img {
  position: relative;
  z-index: 1;
  filter: drop-shadow(var(--shadow-glow-emerald));
  animation: heroFloat 6s ease-in-out infinite;
}

.hero__kicker {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: rgba(255, 255, 255, 0.72);
  margin: 0 0 var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.02s backwards;
}

.hero__kicker-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-emerald), transparent);
  border-radius: var(--radius-full);
  animation: heroKickerExtend 2.4s ease-in-out infinite;
}

@keyframes heroKickerExtend {
  0%,
  100% {
    transform: scaleX(0.85);
    opacity: 0.8;
  }
  50% {
    transform: scaleX(1.1);
    opacity: 1;
  }
}

.hero__stars {
  animation: heroStarTwinkle 4s ease-in-out infinite;
}

@keyframes heroStarTwinkle {
  0%,
  100% {
    filter: brightness(1);
    letter-spacing: 0.1em;
  }
  50% {
    filter: brightness(1.25);
    letter-spacing: 0.14em;
  }
}

.hero__content h1 {
  margin-bottom: var(--space-md);
  line-height: 1.08;
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.08s backwards;
}

.hero__title-pre {
  display: block;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero__title-main {
  display: block;
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(
    120deg,
    var(--color-white) 0%,
    var(--color-gold) 38%,
    var(--color-white) 52%,
    var(--color-emerald) 78%,
    var(--color-white) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroTitleFlow 10s ease infinite;
  text-shadow: none;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

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

.hero__content p.lead {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.9);
  max-width: 38ch;
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.14s backwards;
}

.hero__price-wrap {
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s backwards;
}

.hero__price-row .hero__price {
  animation: heroPriceGlow 3.2s ease-in-out infinite;
}

@keyframes heroPriceGlow {
  0%,
  100% {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.35);
  }
  50% {
    text-shadow: 0 0 28px rgba(212, 175, 55, 0.65);
  }
}

.hero__save {
  margin: var(--space-sm) 0 0;
  font-size: var(--font-size-xs);
  color: rgba(180, 255, 220, 0.95);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  animation: heroSavePulse 2.8s ease-in-out infinite;
}

@keyframes heroSavePulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.hero__to-form {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  animation: heroReveal 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s backwards;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.hero__to-form:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-gold);
  color: var(--color-white);
}

.hero__chevron {
  display: inline-block;
  animation: heroChevronBounce 1.4s ease-in-out infinite;
}

@keyframes heroChevronBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(5px);
  }
}

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

.hero--prism .hero__rating {
  animation: heroReveal 0.82s cubic-bezier(0.22, 1, 0.36, 1) 0.05s backwards;
}

.stars {
  color: var(--color-gold);
  letter-spacing: 0.1em;
  font-size: var(--font-size-lg);
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.trust-badges span {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-full);
}

.hero--prism .trust-badges span {
  animation: heroBadgePop 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) backwards;
}

.hero--prism .trust-badges span:nth-child(1) {
  animation-delay: 0.16s;
}

.hero--prism .trust-badges span:nth-child(2) {
  animation-delay: 0.26s;
}

@keyframes heroBadgePop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(6px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

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

.price {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
}

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

.highlights {
  list-style: none;
  margin: 0 0 var(--space-xl);
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.highlights li {
  padding-left: var(--space-lg);
  position: relative;
  color: rgba(255, 255, 255, 0.88);
  font-size: var(--font-size-sm);
}

.highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-emerald);
  box-shadow: 0 0 10px rgba(15, 138, 95, 0.8);
}

.hero__highlights li {
  opacity: 0;
  animation: heroLiIn 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero__highlights li:nth-child(1) {
  animation-delay: 0.28s;
}

.hero__highlights li:nth-child(2) {
  animation-delay: 0.4s;
}

.hero__highlights li:nth-child(3) {
  animation-delay: 0.52s;
}

.hero__highlights li::before {
  animation: heroDotPulse 2.4s ease-in-out infinite;
}

.hero__highlights li:nth-child(2)::before {
  animation-delay: 0.3s;
}

.hero__highlights li:nth-child(3)::before {
  animation-delay: 0.6s;
}

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

@keyframes heroDotPulse {
  0%,
  100% {
    box-shadow: 0 0 10px rgba(15, 138, 95, 0.8);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 18px rgba(15, 138, 95, 1);
    transform: scale(1.15);
  }
}

@media (max-width: 899px) {
  .hero__column--copy {
    order: 1;
  }

  .hero__column--stage {
    order: 2;
  }
}

.order-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.order-card h2 {
  color: var(--color-white);
  font-size: var(--font-size-xl);
}

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

.form-group label {
  display: block;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.95);
  font-family: inherit;
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(15, 138, 95, 0.25);
}

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

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

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

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

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

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

.checkbox-row label {
  font-weight: var(--font-weight-normal);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-body);
}

.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(--font-size-md);
  font-weight: var(--font-weight-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-emerald), #0a6b47);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-emerald);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(15, 138, 95, 0.55), var(--shadow-lg);
}

.btn--gold {
  background: linear-gradient(135deg, var(--color-gold), #b8922a);
  color: var(--color-midnight);
  box-shadow: var(--shadow-glow-gold);
}

.btn--gold:hover {
  transform: translateY(-2px);
}

.btn--outline {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.6);
}

.btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

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

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

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

.section--alt {
  background: var(--color-white);
}

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

.section__header h2 {
  color: var(--color-midnight);
}

.section__header p {
  max-width: 56ch;
  margin-left: auto;
  margin-right: auto;
}

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

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

@media (min-width: 768px) {
  .social-proof {
    grid-template-columns: 1fr 1.2fr;
  }
}

.proof-summary {
  background: linear-gradient(160deg, var(--color-midnight), var(--color-plum));
  color: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.proof-summary .stars {
  margin-bottom: var(--space-sm);
}

.proof-summary p {
  color: rgba(255, 255, 255, 0.88);
  margin: 0;
}

.review-preview {
  display: grid;
  gap: var(--space-md);
}

.review-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 31, 58, 0.08);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.review-card .meta {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.bento {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: 1fr;
}

@media (min-width: 600px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }

  .bento__large {
    grid-column: span 2;
    min-height: 180px;
  }

  .bento__tall {
    grid-row: span 2;
  }
}

@media (min-width: 900px) {
  .bento--categories {
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, minmax(140px, auto));
  }

  .bento--categories .cat-energy {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
  }

  .bento--categories .cat-muscle {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  .bento--categories .cat-immunity {
    grid-column: 4 / 5;
    grid-row: 1 / 2;
  }

  .bento--categories .cat-vitamins {
    grid-column: 1 / 3;
    grid-row: 2 / 3;
  }
}

.bento-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.bento-card:not(.tilt-card):hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.bento-card.tilt-card:hover {
  box-shadow: var(--shadow-lg);
}

.bento-card h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.bento-card p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  font-size: var(--font-size-sm);
}

.bg-burgundy {
  background: linear-gradient(135deg, var(--color-burgundy), #4a1229);
}

.bg-midnight {
  background: linear-gradient(135deg, var(--color-midnight), #152d52);
}

.bg-emerald {
  background: linear-gradient(135deg, var(--color-emerald), #0a5c40);
}

.bg-plum {
  background: linear-gradient(135deg, var(--color-plum), #3d1d4a);
}

.bg-gold {
  background: linear-gradient(135deg, #c9a227, var(--color-gold));
  color: var(--color-midnight);
}

.bg-gold h3 {
  color: var(--color-midnight);
}

.bg-gold p {
  color: var(--color-midnight);
  opacity: 0.85;
}

.ingredient-spotlight {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.ingredient-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid rgba(11, 31, 58, 0.1);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: default;
  min-height: 140px;
}

.ingredient-card__front h3 {
  color: var(--color-midnight);
  font-size: var(--font-size-md);
  margin: 0 0 var(--space-sm);
}

.ingredient-card__front p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.ingredient-card__hover {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(15, 138, 95, 0.95), rgba(11, 31, 58, 0.95));
  color: var(--color-white);
  padding: var(--space-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.ingredient-card:hover .ingredient-card__hover,
.ingredient-card:focus-within .ingredient-card__hover {
  opacity: 1;
  transform: translateY(0);
}

.ingredient-card__hover p {
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
  font-size: var(--font-size-sm);
}

.icon-fa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-sizing: border-box;
}

.icon-fa--trust {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  font-size: 1.65rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, rgba(15, 138, 95, 0.18), rgba(109, 26, 54, 0.12));
  border: 1px solid rgba(15, 138, 95, 0.3);
  color: var(--color-emerald);
}

.icon-fa--trust i {
  line-height: 1;
}

.icon-fa--step {
  width: 48px;
  height: 48px;
  margin: 0 auto var(--space-md);
  font-size: 1.3rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-burgundy), #4a1229);
  color: var(--color-gold);
}

.icon-fa--step i {
  line-height: 1;
}

.icon-fa--instruction {
  width: 48px;
  height: 48px;
  font-size: 1.2rem;
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-midnight), var(--color-plum));
  color: var(--color-gold);
}

.icon-fa--instruction i {
  line-height: 1;
}

.trust-science {
  display: grid;
  gap: var(--space-xl);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .trust-science {
    grid-template-columns: repeat(3, 1fr);
  }
}

.trust-science__item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-science__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-gold);
}

.trust-science__item .icon-fa--trust {
  animation: floatIcon 4s ease-in-out infinite;
}

.trust-science__item:nth-child(2) .icon-fa--trust {
  animation-delay: 0.5s;
}

.trust-science__item:nth-child(3) .icon-fa--trust {
  animation-delay: 1s;
}

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

.trust-science__item h3 {
  color: var(--color-midnight);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--color-midnight);
  padding: var(--space-xl) 0;
}

.carousel__track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel__slide {
  min-width: 100%;
  display: flex;
  justify-content: center;
  padding: var(--space-md);
}

.carousel__slide figure {
  margin: 0;
  text-align: center;
}

.carousel__slide img {
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-glow-emerald);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.carousel__slide img:hover {
  transform: scale(1.02);
  box-shadow: 0 0 48px rgba(212, 175, 55, 0.45), var(--shadow-lg);
}

.carousel__slide figcaption {
  color: var(--color-white);
  font-weight: var(--font-weight-medium);
}

.carousel__nav {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.carousel__btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  font-size: 1.25rem;
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel__btn:hover {
  background: var(--color-emerald);
  transform: scale(1.08);
}

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

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

.split-story img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

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

.spec-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-emerald);
  box-shadow: var(--shadow-sm);
}

.spec-card h3 {
  font-size: var(--font-size-md);
  color: var(--color-midnight);
}

.steps {
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.step {
  text-align: center;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.step:hover {
  transform: translateY(-4px);
}

.step .icon-fa--step {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.step:hover .icon-fa--step {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(109, 26, 54, 0.25);
}

.ingredient-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.ingredient-simple {
  background: var(--color-cream);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.ingredient-simple h3 {
  color: var(--color-burgundy);
  font-size: var(--font-size-md);
}

.numbered-steps {
  counter-reset: usestep;
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: var(--space-lg);
}

.numbered-steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-lg);
  align-items: start;
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.numbered-steps li::before {
  counter-increment: usestep;
  content: counter(usestep);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-burgundy);
  color: var(--color-gold);
  font-weight: var(--font-weight-bold);
  border-radius: var(--radius-full);
}

.reviews-grid {
  display: grid;
  gap: var(--space-md);
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.review-full {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-gold);
}

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

.accordion__item {
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

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

.accordion__trigger:hover {
  color: var(--color-emerald);
}

.accordion__icon {
  flex-shrink: 0;
  transition: transform var(--transition-base);
}

.accordion__item.is-open .accordion__icon {
  transform: rotate(45deg);
}

.accordion__panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.accordion__panel-inner {
  padding: 0 var(--space-sm) var(--space-lg);
}

.accordion__panel-inner p {
  margin: 0;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, var(--color-midnight), var(--color-burgundy));
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--radius-xl);
  max-width: var(--max-width);
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
}

.final-cta h2 {
  color: var(--color-white);
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 50ch;
  margin-left: auto;
  margin-right: auto;
}

.disclaimer-block {
  background: rgba(11, 31, 58, 0.06);
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin-top: var(--space-xl);
  font-size: var(--font-size-sm);
}

.disclaimer-block p {
  margin: 0 0 var(--space-sm);
  color: var(--color-text-muted);
}

.disclaimer-block p:last-child {
  margin-bottom: 0;
}

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

.site-footer__grid {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: 2fr 1fr;
  }
}

.site-footer h2 {
  color: var(--color-white);
  font-size: var(--font-size-lg);
}

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

.site-footer a {
  color: rgba(255, 255, 255, 0.88);
}

.site-footer a:hover {
  color: var(--color-gold);
}

.footer-legal-box {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding: var(--space-lg);
  background: rgba(0, 0, 0, 0.25);
  border-radius: var(--radius-md);
  font-size: var(--font-size-xs);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal-box p {
  margin: 0 0 var(--space-sm);
  color: inherit;
}

.site-footer__bottom {
  max-width: var(--max-width);
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: var(--font-size-sm);
  text-align: center;
}

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

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

.cookie-banner__inner {
  max-width: var(--max-width);
  margin: 0 auto;
  background: rgba(11, 31, 58, 0.92);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.cookie-banner__actions .btn {
  font-size: var(--font-size-sm);
  padding: var(--space-sm) var(--space-md);
}

.btn--ghost {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--color-white);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

.btn--modal-close {
  margin-top: var(--space-sm);
  border-color: var(--color-midnight);
  color: var(--color-midnight);
}

.btn--modal-close:hover {
  background: rgba(11, 31, 58, 0.08);
}

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

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

.cookie-modal {
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: var(--radius-lg);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.cookie-modal h2 {
  color: var(--color-midnight);
}

.cookie-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.cookie-toggle label {
  font-weight: var(--font-weight-medium);
  color: var(--color-midnight);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
}

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

.switch__slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e0;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.switch__slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.switch input:checked + .switch__slider {
  background: var(--color-emerald);
}

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

.switch input:disabled + .switch__slider {
  background: var(--color-emerald);
  opacity: 0.6;
  cursor: not-allowed;
}

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

.policy-page h1 {
  color: var(--color-midnight);
}

.policy-page h2 {
  margin-top: var(--space-xl);
  font-size: var(--font-size-xl);
}

.policy-page section {
  margin-bottom: var(--space-xl);
}

.thankyou-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(160deg, var(--color-midnight), var(--color-emerald));
  color: var(--color-white);
  padding: var(--space-3xl) var(--space-lg);
}

.thankyou-hero h1 {
  color: var(--color-white);
}

.thankyou-hero p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 48ch;
  margin-left: auto;
  margin-right: auto;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

  html {
    scroll-behavior: auto;
  }

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

  .hero__aurora,
  .hero__grid-lines,
  .hero__particle,
  .hero__ring,
  .hero__beam,
  .hero__corner,
  .hero__shine,
  .hero__title-main,
  .hero__visual--prism,
  .hero__visual--prism img,
  .hero__kicker-line,
  .hero__stars,
  .hero__price-row .hero__price,
  .hero__save,
  .hero__chevron,
  .hero__highlights li::before {
    animation: none !important;
  }

  .hero__highlights li {
    opacity: 1;
    animation: none !important;
    transform: none;
  }

  .hero--prism .trust-badges span {
    animation: none !important;
  }

  .hero__title-main {
    color: var(--color-white);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    filter: none;
  }

  .rhythm-ticker__track,
  .rhythm-orbit__ring,
  .rhythm-orbit__dot {
    animation: none !important;
  }

  .hero--prism .hero__kicker,
  .hero--prism .hero__content h1,
  .hero--prism .hero__content .lead,
  .hero--prism .hero__price-wrap,
  .hero--prism .hero__rating,
  .hero--prism .hero__to-form {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.instruction-icons {
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
  margin-top: var(--space-md);
}

.instruction-icons .icon-fa--instruction {
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
}

.instruction-icons .icon-fa--instruction:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 28px rgba(11, 31, 58, 0.2);
}

.site-header__inner {
  flex-wrap: nowrap;
}

.brand {
  flex: 1;
  min-width: 0;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(11, 31, 58, 0.08);
  cursor: pointer;
  z-index: 902;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-toggle:hover {
  background: rgba(109, 26, 54, 0.12);
}

.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-midnight);
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

.site-header.menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.site-header.menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(11, 31, 58, 0.45);
  z-index: 899;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.nav-backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.site-nav--drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100vw - 3rem, 20rem);
  height: 100vh;
  height: 100dvh;
  margin: 0;
  padding: 5rem var(--space-xl) var(--space-xl);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98), rgba(247, 245, 242, 0.99));
  box-shadow: -12px 0 48px rgba(11, 31, 58, 0.18);
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 901;
  overflow-y: auto;
  border-left: 1px solid rgba(109, 26, 54, 0.12);
}

.site-header.menu-open .site-nav--drawer {
  transform: translateX(0);
}

.site-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.site-nav--drawer .site-nav__list a {
  display: block;
  padding: var(--space-sm) 0;
  font-size: var(--font-size-md);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
  color: var(--color-midnight);
}

.site-nav--drawer .site-nav__list a:hover {
  color: var(--color-emerald);
  padding-left: var(--space-xs);
}

@media (min-width: 960px) {
  .nav-toggle {
    display: none;
  }

  .nav-backdrop {
    display: none !important;
  }

  .site-nav--drawer {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    transform: none !important;
    box-shadow: none;
    background: transparent;
    border: none;
    overflow: visible;
  }

  .site-nav__list {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-md) var(--space-lg);
  }

  .site-nav--drawer .site-nav__list a {
    padding: 0;
    border: none;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
  }

  .site-nav--drawer .site-nav__list a:hover {
    padding-left: 0;
  }
}

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

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

.live-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-2xl);
  padding: var(--space-lg);
  background: linear-gradient(135deg, rgba(109, 26, 54, 0.06), rgba(15, 138, 95, 0.08));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

@media (max-width: 640px) {
  .live-stats {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.live-stat {
  text-align: center;
}

.live-stat__value {
  display: block;
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-burgundy);
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.live-stat__label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.section--interactive {
  position: relative;
}

.section--interactive::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 40% at 50% 0%, rgba(15, 138, 95, 0.07), transparent);
  pointer-events: none;
}

.rhythm-lab {
  position: relative;
  background: linear-gradient(155deg, var(--color-midnight) 0%, #142a52 40%, var(--color-plum) 100%);
  color: rgba(255, 255, 255, 0.92);
  overflow: hidden;
}

.rhythm-lab__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: radial-gradient(circle at 1px 1px, rgba(255, 255, 255, 0.35) 1px, transparent 0);
  background-size: 28px 28px;
  animation: meshShift 40s linear infinite;
  pointer-events: none;
}

@keyframes meshShift {
  to {
    background-position: 28px 28px;
  }
}

.rhythm-lab__inner {
  position: relative;
  z-index: 1;
}

.section__header--on-dark h2 {
  color: var(--color-white);
}

.section__header--on-dark p {
  color: rgba(255, 255, 255, 0.82);
}

.rhythm-panels-wrap {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .rhythm-panels-wrap {
    grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
    align-items: start;
  }
}

.rhythm-tabs {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

@media (max-width: 899px) {
  .rhythm-tabs {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.rhythm-tab {
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  text-align: left;
  transition: background var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
}

.rhythm-tab:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateX(4px);
}

.rhythm-tab.is-active {
  background: linear-gradient(135deg, var(--color-emerald), #0c6e4a);
  border-color: transparent;
  color: var(--color-white);
  box-shadow: 0 8px 28px rgba(15, 138, 95, 0.4);
}

.rhythm-stack {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  min-height: 280px;
}

.rhythm-panel h3 {
  color: var(--color-white);
  margin-top: 0;
}

.rhythm-panel p {
  color: rgba(255, 255, 255, 0.85);
}

.rhythm-panel .btn--gold {
  margin-top: var(--space-md);
}

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

.rhythm-meter__name {
  display: block;
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: var(--space-xs);
  color: rgba(255, 255, 255, 0.75);
}

.rhythm-meter__track {
  display: block;
  height: 8px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.rhythm-meter__fill {
  display: block;
  height: 100%;
  width: 0;
  max-width: var(--fill);
  background: linear-gradient(90deg, var(--color-gold), var(--color-emerald));
  border-radius: var(--radius-full);
  animation: meterGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  animation-delay: 0.3s;
}

.rhythm-meter__fill--delay-1 {
  animation-delay: 0.5s;
}

.rhythm-meter__fill--delay-2 {
  animation-delay: 0.7s;
}

@keyframes meterGrow {
  from {
    width: 0;
  }
  to {
    width: var(--fill);
  }
}

.rhythm-orbit {
  position: relative;
  height: 100px;
  margin: var(--space-lg) 0;
}

.rhythm-orbit__ring {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 88px;
  height: 88px;
  margin: -44px 0 0 -44px;
  border: 2px dashed rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  animation: orbitSpin 14s linear infinite;
}

.rhythm-orbit__dot {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  background: var(--color-gold);
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(212, 175, 55, 0.8);
  animation: orbitDot 14s linear infinite;
}

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

@keyframes orbitDot {
  0% {
    transform: rotate(0deg) translateX(44px) rotate(0deg);
  }
  100% {
    transform: rotate(360deg) translateX(44px) rotate(-360deg);
  }
}

.rhythm-steps-flow {
  margin: 0;
  padding-left: var(--space-lg);
  color: rgba(255, 255, 255, 0.88);
}

.rhythm-steps-flow li {
  margin-bottom: var(--space-sm);
}

.rhythm-badge-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.rhythm-badge {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.45);
  color: var(--color-gold);
  background: rgba(212, 175, 55, 0.1);
}

.rhythm-checklist {
  margin: var(--space-md) 0 var(--space-lg);
  padding-left: var(--space-lg);
  color: rgba(255, 255, 255, 0.9);
}

.rhythm-ticker {
  margin-top: var(--space-2xl);
  padding: var(--space-sm) 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.rhythm-ticker__track {
  display: flex;
  gap: var(--space-2xl);
  width: max-content;
  animation: ticker 28s linear infinite;
}

.rhythm-ticker__item {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: rgba(212, 175, 55, 0.95);
  white-space: nowrap;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.legal-doc {
  background: var(--color-cream);
  min-height: 100vh;
}

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

.legal-doc__shell--solo {
  display: block;
}

.legal-doc__shell--solo .legal-doc__main {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}

.legal-doc__shell--solo .thankyou-cards {
  margin-top: var(--space-2xl);
}

@media (min-width: 1000px) {
  .legal-doc__shell {
    grid-template-columns: 220px minmax(0, 1fr);
    align-items: start;
  }
}

.legal-doc__hero {
  grid-column: 1 / -1;
  position: relative;
  padding: var(--space-3xl) var(--space-xl);
  margin: 0 calc(-1 * var(--space-lg));
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
  background: linear-gradient(120deg, var(--color-midnight), var(--color-plum) 55%, var(--color-burgundy));
  color: var(--color-white);
  overflow: hidden;
}

.legal-doc__hero::after {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -80%;
  right: -60%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 55%);
  pointer-events: none;
}

.legal-doc__hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-doc__hero h1 {
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.legal-doc__hero p {
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
}

.legal-doc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  margin-top: var(--space-lg);
  font-size: var(--font-size-sm);
}

.legal-doc__pill {
  padding: var(--space-xs) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.legal-doc__pill time {
  font-weight: var(--font-weight-bold);
  color: var(--color-gold);
}

.legal-doc__aside {
  position: sticky;
  top: 5.5rem;
  align-self: start;
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.legal-doc__aside h2 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-burgundy);
  margin: 0 0 var(--space-md);
}

.legal-doc__toc {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-doc__toc a {
  display: block;
  padding: var(--space-xs) 0;
  font-size: var(--font-size-sm);
  color: var(--color-midnight);
  border-bottom: 1px solid rgba(11, 31, 58, 0.06);
}

.legal-doc__toc a:hover {
  color: var(--color-emerald);
}

.legal-doc__main {
  min-width: 0;
}

.legal-doc__section {
  margin-bottom: var(--space-2xl);
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11, 31, 58, 0.07);
  scroll-margin-top: 6rem;
}

.legal-doc__section h2 {
  color: var(--color-midnight);
  font-size: var(--font-size-xl);
  margin-top: 0;
}

.legal-doc__section h3 {
  font-size: var(--font-size-md);
  color: var(--color-burgundy);
}

.legal-doc__callout {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-emerald);
  background: linear-gradient(90deg, rgba(15, 138, 95, 0.08), transparent);
}

.legal-doc__grid-2 {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 700px) {
  .legal-doc__grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.legal-doc__card {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: var(--color-cream);
  border: 1px solid rgba(11, 31, 58, 0.08);
}

.legal-doc__table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  margin: var(--space-lg) 0;
}

.legal-doc__table th,
.legal-doc__table td {
  text-align: left;
  padding: var(--space-sm);
  border-bottom: 1px solid rgba(11, 31, 58, 0.1);
}

.legal-doc__table thead tr {
  border-bottom: 2px solid var(--color-midnight);
}

.legal-doc__timeline {
  margin: var(--space-lg) 0;
  padding-left: var(--space-lg);
  border-left: 3px solid var(--color-gold);
}

.legal-doc__timeline li {
  margin-bottom: var(--space-md);
  list-style: none;
  position: relative;
}

.legal-doc__timeline li::before {
  content: "";
  position: absolute;
  left: calc(-1 * var(--space-lg) - 8px);
  top: 0.35em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-burgundy);
}

.thankyou-page .legal-doc__hero {
  text-align: center;
}

.thankyou-page .legal-doc__hero-inner {
  max-width: 560px;
  margin: 0 auto;
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.thankyou-cards {
  grid-column: 1 / -1;
  display: grid;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 640px) {
  .thankyou-cards {
    grid-template-columns: repeat(3, 1fr);
  }
}

.thankyou-card {
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--color-emerald);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.thankyou-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.btn--thank-outline {
  background: linear-gradient(135deg, var(--color-white), #f0ebe3);
  color: var(--color-midnight);
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.15);
}

.btn--thank-outline:hover {
  transform: translateY(-2px);
}

.thankyou-card h2 {
  font-size: var(--font-size-md);
  color: var(--color-midnight);
  margin-top: 0;
}

.policy-page .legal-doc__shell {
  max-width: 100%;
  padding-bottom: var(--space-3xl);
}

body.policy-page {
  margin: 0;
}

@media (max-width: 360px) {
  :root {
    --space-section: 2.25rem;
    --space-3xl: 2.5rem;
    --font-size-2xl: 1.65rem;
  }

  .site-header__inner {
    padding: var(--space-sm) var(--space-md);
  }

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

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

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

  .final-cta {
    padding: var(--space-2xl) var(--space-md);
  }

  .btn {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
  }

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

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

  .legal-doc__hero {
    padding: var(--space-2xl) var(--space-md);
    margin-left: calc(-1 * var(--space-md));
    margin-right: calc(-1 * var(--space-md));
  }

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

  .rhythm-stack {
    padding: var(--space-md);
    min-height: 220px;
  }

  .live-stat__value {
    font-size: 1.4rem;
  }
}

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

  .brand {
    font-size: 0.78rem;
    line-height: 1.25;
    word-break: break-word;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
  }

  .site-nav--drawer {
    width: 100vw;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .price-row {
    flex-wrap: wrap;
  }

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

  .accordion__trigger {
    padding: var(--space-md) var(--space-xs);
    font-size: var(--font-size-sm);
  }

  .trust-badges span {
    font-size: 0.65rem;
  }

  .rhythm-tab {
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-sm);
  }

  .footer-legal-box {
    font-size: 0.65rem;
    padding: var(--space-md);
  }

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

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