:root {
  --color-mystic-violet: #9B59B6;
  --color-soft-lilac: #D8BFD8;
  --color-sunset-coral: #FF6F61;
  --color-aqua-teal: #4DD0E1;
  --color-deep-charcoal: #2B2B2B;
  --color-white: #FFFFFF;
  --color-off-white: #FAF8FC;
  --color-text: #2B2B2B;
  --color-text-muted: #5C5C5C;
  --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: 2.5rem;
  --font-size-hero: clamp(2rem, 5vw, 3.75rem);
  --line-tight: 1.15;
  --line-body: 1.65;
  --weight-regular: 400;
  --weight-medium: 600;
  --weight-bold: 700;
  --shadow-sm: 0 2px 8px rgba(43, 43, 43, 0.08);
  --shadow-md: 0 8px 24px rgba(155, 89, 182, 0.15);
  --shadow-lg: 0 16px 48px rgba(155, 89, 182, 0.22);
  --shadow-glow-coral: 0 0 32px rgba(255, 111, 97, 0.45), 0 12px 40px rgba(155, 89, 182, 0.25);
  --shadow-glow-teal: 0 0 28px rgba(77, 208, 225, 0.35);
  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --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, 5.5rem);
  --header-h: 4.25rem;
  --transition-fast: 0.2s ease;
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(155, 89, 182, 0.18);
  --glass-blur: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-body);
  color: var(--color-text);
  background: linear-gradient(165deg, var(--color-off-white) 0%, #EDE4F5 45%, #E8F8FB 100%);
  min-height: 100vh;
  padding-top: var(--header-h);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-mystic-violet);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-sunset-coral);
}

:focus-visible {
  outline: 3px solid var(--color-aqua-teal);
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-md);
  z-index: 10000;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-deep-charcoal);
  color: var(--color-white);
  border-radius: var(--radius-sm);
}

.skip-link:focus {
  left: var(--space-md);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), background var(--transition-base);
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-md);
  background: rgba(255, 255, 255, 0.88);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.brand {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--font-size-xl);
  color: var(--color-mystic-violet);
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand:hover {
  color: var(--color-sunset-coral);
}

.brand span {
  display: block;
  font-size: var(--font-size-xs);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

.burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 2px solid rgba(155, 89, 182, 0.35);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  z-index: 1002;
  transition: border-color var(--transition-fast), box-shadow var(--transition-base), background var(--transition-fast);
}

.burger:hover {
  border-color: var(--color-sunset-coral);
  box-shadow: var(--shadow-sm);
}

.burger.is-active {
  background: rgba(155, 89, 182, 0.12);
  border-color: var(--color-mystic-violet);
}

.burger-box {
  position: relative;
  display: block;
  width: 22px;
  height: 16px;
}

.burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 1px;
  background: var(--color-deep-charcoal);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease, top 0.35s ease, bottom 0.35s ease;
}

.burger-line--top {
  top: 0;
}

.burger-line--mid {
  top: 7px;
}

.burger-line--bot {
  bottom: 0;
}

.burger.is-active .burger-line--top {
  top: 7px;
  transform: rotate(45deg);
}

.burger.is-active .burger-line--mid {
  opacity: 0;
  transform: scaleX(0.2);
}

.burger.is-active .burger-line--bot {
  bottom: auto;
  top: 7px;
  transform: rotate(-45deg);
}

.nav-scrim {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 900;
  background: rgba(43, 43, 43, 0.42);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.nav-scrim.is-visible {
  display: block;
}

.body--nav-open {
  overflow: hidden;
}

.site-header--nav-open .site-nav {
  box-shadow: -12px 0 40px rgba(43, 43, 43, 0.18);
}

.hero--animated {
  animation: hero-mesh-shift 22s ease-in-out infinite alternate;
}

@keyframes hero-mesh-shift {
  0% {
    filter: saturate(1) hue-rotate(0deg);
  }
  100% {
    filter: saturate(1.12) hue-rotate(10deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero--animated {
    animation: none;
  }
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.45;
  pointer-events: none;
  animation: orb-float 14s ease-in-out infinite;
}

.hero-orb--one {
  width: min(42vw, 320px);
  height: min(42vw, 320px);
  top: 8%;
  right: 6%;
  background: radial-gradient(circle, rgba(155, 89, 182, 0.9), transparent 68%);
}

.hero-orb--two {
  width: min(36vw, 260px);
  height: min(36vw, 260px);
  bottom: 14%;
  left: 4%;
  background: radial-gradient(circle, rgba(255, 111, 97, 0.65), transparent 70%);
  animation-delay: -4s;
}

.hero-orb--three {
  width: min(28vw, 200px);
  height: min(28vw, 200px);
  top: 42%;
  left: 35%;
  background: radial-gradient(circle, rgba(77, 208, 225, 0.55), transparent 68%);
  animation-delay: -7s;
  opacity: 0.35;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-12px, 10px) scale(1.05);
  }
  66% {
    transform: translate(10px, -8px) scale(0.96);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-orb {
    animation: none;
  }
}

.hero-canvas {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.hero-grid-layer {
  position: absolute;
  inset: -40%;
  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: 48px 48px;
  animation: hero-grid-drift 24s linear infinite;
  transform: rotate(-8deg) scale(1.2);
  opacity: 0.85;
}

@keyframes hero-grid-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 48px 48px;
  }
}

.hero-aurora {
  position: absolute;
  inset: 0;
  background: conic-gradient(from 120deg at 50% 120%, transparent 0deg, rgba(155, 89, 182, 0.15) 60deg, transparent 120deg, rgba(77, 208, 225, 0.12) 200deg, transparent 280deg, rgba(255, 111, 97, 0.1) 320deg, transparent 360deg);
  animation: hero-aurora-spin 28s linear infinite;
  mix-blend-mode: screen;
  opacity: 0.7;
}

@keyframes hero-aurora-spin {
  from {
    transform: rotate(0deg) scale(1.4);
  }
  to {
    transform: rotate(360deg) scale(1.4);
  }
}

.hero-diagonal {
  position: absolute;
  top: -20%;
  right: -30%;
  width: 80%;
  height: 140%;
  background: linear-gradient(115deg, transparent 35%, rgba(255, 111, 97, 0.09) 48%, transparent 62%);
  animation: hero-diagonal-sway 16s ease-in-out infinite alternate;
  transform-origin: 100% 0;
}

@keyframes hero-diagonal-sway {
  from {
    transform: skewX(-6deg) translateX(0);
    opacity: 0.6;
  }
  to {
    transform: skewX(-2deg) translateX(-3%);
    opacity: 1;
  }
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.85);
  animation: hero-spark-twinkle 3.2s ease-in-out infinite;
}

.hero-spark--a {
  top: 18%;
  left: 22%;
  background: var(--color-aqua-teal);
  animation-delay: 0s;
}

.hero-spark--b {
  top: 55%;
  right: 18%;
  background: var(--color-sunset-coral);
  animation-delay: 1s;
}

.hero-spark--c {
  bottom: 22%;
  left: 40%;
  background: var(--color-soft-lilac);
  animation-delay: 0.5s;
}

@keyframes hero-spark-twinkle {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.35;
  }
  50% {
    transform: scale(1.4);
    opacity: 1;
  }
}

.hero--cinema .hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  margin: 0 0 var(--space-md);
  padding: var(--space-xs) var(--space-md) var(--space-xs) var(--space-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.95);
  background: rgba(0, 0, 0, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-full);
  backdrop-filter: blur(10px);
  animation: hero-eyebrow-in 0.85s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.hero-eyebrow__pulse {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-aqua-teal);
  box-shadow: 0 0 0 0 rgba(77, 208, 225, 0.55);
  animation: hero-pulse-dot 2.2s ease-out infinite;
}

@keyframes hero-pulse-dot {
  0% {
    box-shadow: 0 0 0 0 rgba(77, 208, 225, 0.55);
  }
  70% {
    box-shadow: 0 0 0 12px rgba(77, 208, 225, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(77, 208, 225, 0);
  }
}

@keyframes hero-eyebrow-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }
}

.hero-headline {
  margin: 0 0 var(--space-lg);
  font-family: var(--font-heading);
  font-size: var(--font-size-hero);
  font-weight: var(--weight-bold);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.hero-headline__line {
  display: block;
}

.hero-headline__line--flow {
  margin-top: 0.08em;
  display: flex;
  flex-wrap: wrap;
  gap: 0.18em 0.28em;
  align-items: baseline;
}

.hero-headline__word {
  display: inline-block;
  background: linear-gradient(100deg, #ffffff 0%, #c5eef5 28%, #e8d4f2 55%, #ffeae8 78%, #ffffff 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation:
    hero-word-rise 0.85s cubic-bezier(0.34, 1.15, 0.64, 1) both,
    hero-word-shine 8s ease-in-out infinite;
  animation-delay: calc(0.09s * var(--w)), calc(0.5s + 0.12s * var(--w));
}

@keyframes hero-word-rise {
  from {
    opacity: 0;
    transform: translateY(45%) rotateX(-22deg);
    filter: blur(6px);
  }
}

@keyframes hero-word-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-lead--cinema {
  animation: hero-lead-reveal 1s cubic-bezier(0.33, 1, 0.68, 1) 0.35s both;
}

@keyframes hero-lead-reveal {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
}

.hero-kpis {
  list-style: none;
  margin: 0 0 var(--space-lg);
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  animation: hero-lead-reveal 1s cubic-bezier(0.33, 1, 0.68, 1) 0.5s both;
}

.hero-kpi {
  display: flex;
  flex-direction: column;
  min-width: 4.5rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  transition: transform var(--transition-base), border-color var(--transition-fast), box-shadow var(--transition-base);
  animation: hero-kpi-pop 0.65s cubic-bezier(0.34, 1.25, 0.64, 1) both;
  animation-delay: calc(0.55s + var(--k, 0) * 0.08s);
}

.hero-kpi:nth-child(1) {
  --k: 0;
}

.hero-kpi:nth-child(2) {
  --k: 1;
}

.hero-kpi:nth-child(3) {
  --k: 2;
}

.hero-kpi:hover {
  transform: translateY(-4px);
  border-color: rgba(77, 208, 225, 0.45);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

@keyframes hero-kpi-pop {
  from {
    opacity: 0;
    transform: scale(0.88) translateY(12px);
  }
}

.hero-kpi__val {
  font-size: var(--font-size-xl);
  font-weight: var(--weight-bold);
  color: var(--color-aqua-teal);
  line-height: 1.1;
}

.hero-kpi__lab {
  font-size: var(--font-size-xs);
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.hero-meta--cinema {
  animation: hero-lead-reveal 1s cubic-bezier(0.33, 1, 0.68, 1) 0.65s both;
}

.stars--pop {
  display: inline-block;
  animation: stars-wiggle 4s ease-in-out infinite;
}

@keyframes stars-wiggle {
  0%,
  100% {
    transform: translateY(0);
    filter: brightness(1);
  }
  40% {
    transform: translateY(-2px);
    filter: brightness(1.15);
  }
}

.trust-badge--lift {
  animation: hero-badge-breathe 5s ease-in-out infinite;
}

@keyframes hero-badge-breathe {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(155, 89, 182, 0);
  }
  50% {
    box-shadow: 0 0 22px rgba(155, 89, 182, 0.25);
  }
}

.hero-price-block {
  animation: hero-lead-reveal 1s cubic-bezier(0.33, 1, 0.68, 1) 0.78s both;
}

.price-row--cinema {
  margin-bottom: var(--space-sm);
}

.price-current--pop {
  animation: price-glow 3.5s ease-in-out infinite;
}

@keyframes price-glow {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: 0 0 24px rgba(77, 208, 225, 0.45);
  }
}

.hero-skip-form {
  display: inline-block;
  font-size: var(--font-size-sm);
  font-weight: var(--weight-medium);
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 2px;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.hero-skip-form:hover {
  color: var(--color-aqua-teal);
  border-bottom-color: var(--color-aqua-teal);
  transform: translateY(1px);
}

.hero-legal-slab {
  margin: 0 0 var(--space-lg);
  padding: var(--space-md);
  max-width: 50ch;
  font-size: var(--font-size-xs);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-md);
}

.hero-legal-slab a {
  color: var(--color-aqua-teal);
}

.hero-legal-slab a:hover {
  color: #b2ebf2;
}

.price-footnote {
  margin: 0 0 var(--space-sm);
  max-width: 42ch;
  font-size: var(--font-size-xs);
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.72);
}

.hero-reviews-link {
  color: rgba(255, 255, 255, 0.92);
  font-size: var(--font-size-sm);
  font-weight: var(--weight-medium);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.hero-reviews-link:hover {
  color: var(--color-aqua-teal);
}

.rating-row--neutral {
  margin: 0;
}

.order-intro {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.order-intro a {
  font-weight: var(--weight-medium);
}

.hero-inner--cinema {
  align-items: stretch;
}

.hero-visual--cinema {
  align-self: center;
}

.hero-deck {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-lg);
}

.hero-glow-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(340px, 90vw);
  height: min(420px, 110vw);
  transform: translate(-50%, -58%);
  border-radius: 32px;
  background: conic-gradient(from 0deg, var(--color-mystic-violet), var(--color-aqua-teal), var(--color-sunset-coral), var(--color-soft-lilac), var(--color-mystic-violet));
  animation: hero-ring-spin 10s linear infinite;
  opacity: 0.55;
  filter: blur(14px);
  z-index: 0;
}

@keyframes hero-ring-spin {
  from {
    transform: translate(-50%, -58%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -58%) rotate(360deg);
  }
}

.hero-visual-card {
  position: relative;
  z-index: 1;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: hero-card-float 7s ease-in-out infinite;
  max-width: 100%;
}

@keyframes hero-card-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  33% {
    transform: translateY(-10px) rotate(0.6deg);
  }
  66% {
    transform: translateY(4px) rotate(-0.45deg);
  }
}

.hero-figure {
  margin: 0;
}

.hero-figure img {
  margin: 0 auto;
  filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.42));
  animation: hero-bottle-glint 6s ease-in-out infinite;
}

@keyframes hero-bottle-glint {
  0%,
  100% {
    filter: drop-shadow(0 20px 36px rgba(0, 0, 0, 0.42)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 24px 40px rgba(77, 208, 225, 0.2)) brightness(1.05);
  }
}

.hero-float-tag {
  position: absolute;
  bottom: var(--space-md);
  right: var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  color: var(--color-deep-charcoal);
  background: linear-gradient(135deg, var(--color-aqua-teal), rgba(255,  255, 255, 0.92));
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  animation: hero-tag-bob 4s ease-in-out infinite;
}

@keyframes hero-tag-bob {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-5px) scale(1.03);
  }
}

.order-card--hero {
  position: relative;
  z-index: 2;
  margin-top: 0;
  width: 100%;
  max-width: 420px;
  animation: hero-order-glow 5s ease-in-out infinite;
}

@keyframes hero-order-glow {
  0%,
  100% {
    box-shadow: var(--shadow-lg);
  }
  50% {
    box-shadow:
      var(--shadow-lg),
      0 0 0 1px rgba(155, 89, 182, 0.2),
      0 0 40px rgba(155, 89, 182, 0.12);
  }
}

.hero-scroll-cue {
  position: absolute;
  bottom: var(--space-lg);
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  color: rgba(255, 255, 255, 0.75);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-decoration: none;
  animation: hero-cue-fade 1.2s ease 1.1s both;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

.hero-scroll-cue:hover {
  color: var(--color-aqua-teal);
  opacity: 1;
}

@keyframes hero-cue-fade {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(12px);
  }
}

.hero-scroll-cue__mouse {
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 12px;
  position: relative;
}

.hero-scroll-cue__mouse::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  width: 4px;
  height: 8px;
  margin-left: -2px;
  background: var(--color-aqua-teal);
  border-radius: 2px;
  animation: hero-scroll-wheel 2s ease-in-out infinite;
}

@keyframes hero-scroll-wheel {
  0%,
  100% {
    transform: translateY(0);
    opacity: 1;
  }
  50% {
    transform: translateY(10px);
    opacity: 0.35;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-grid-layer,
  .hero-aurora,
  .hero-diagonal,
  .hero-spark,
  .hero-eyebrow__pulse,
  .hero-headline__word,
  .hero-lead--cinema,
  .hero-kpis,
  .hero-kpi,
  .hero-meta--cinema,
  .hero-price-block,
  .hero--cinema .hero-eyebrow,
  .stars--pop,
  .trust-badge--lift,
  .price-current--pop,
  .hero-glow-ring,
  .hero-visual-card,
  .hero-figure img,
  .hero-float-tag,
  .order-card--hero,
  .hero-scroll-cue,
  .hero-scroll-cue__mouse::after {
    animation: none !important;
  }

  .hero-headline__word {
    color: var(--color-white);
    background: none;
    -webkit-text-fill-color: inherit;
    opacity: 1;
    transform: none;
    filter: none;
  }

  .hero-lead--cinema,
  .hero-kpis,
  .hero-kpi,
  .hero-meta--cinema,
  .hero-price-block,
  .hero-scroll-cue,
  .hero--cinema .hero-eyebrow {
    opacity: 1;
    transform: none;
  }

  .hero-visual-card {
    transform: none;
  }
}

.section-head--center {
  text-align: center;
}

.section-head--center p {
  margin-left: auto;
  margin-right: auto;
}

.section--mesh {
  position: relative;
  overflow: hidden;
}

.section--mesh::before {
  content: "";
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(155, 89, 182, 0.14), transparent 52%),
    radial-gradient(ellipse at 80% 70%, rgba(77, 208, 225, 0.16), transparent 48%);
  animation: mesh-pan 22s linear infinite;
  pointer-events: none;
}

@keyframes mesh-pan {
  0% {
    transform: rotate(0deg) scale(1);
  }
  100% {
    transform: rotate(360deg) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .section--mesh::before {
    animation: none;
  }
}

.stats-strip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65) 0%, rgba(216, 191, 216, 0.25) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
}

.stat-card {
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(155, 89, 182, 0.14);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.stat-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--shadow-glow-teal);
}

.stat-value {
  display: block;
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: var(--weight-bold);
  color: var(--color-mystic-violet);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  display: block;
  margin-top: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.routine-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: var(--space-2xl);
  align-items: center;
}

.routine-visual {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.routine-orbit {
  position: relative;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px dashed rgba(155, 89, 182, 0.35);
  animation: orbit-spin 28s linear infinite;
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.routine-node {
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  box-shadow: 0 0 18px rgba(255, 111, 97, 0.55);
}

.routine-node--a {
  top: 8%;
  left: 50%;
  margin-left: -9px;
  background: var(--color-sunset-coral);
}

.routine-node--b {
  bottom: 16%;
  right: 10%;
  background: var(--color-aqua-teal);
  animation: node-pulse 3s ease-in-out infinite;
}

.routine-node--c {
  bottom: 20%;
  left: 12%;
  background: var(--color-mystic-violet);
  animation: node-pulse 3s ease-in-out infinite 0.6s;
}

@keyframes node-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.25);
    opacity: 0.85;
  }
}

.routine-capsule-glow {
  position: absolute;
  width: 120px;
  height: 200px;
  border-radius: 60px;
  background: linear-gradient(180deg, rgba(77, 208, 225, 0.35), rgba(155, 89, 182, 0.4));
  box-shadow: 0 0 60px rgba(155, 89, 182, 0.35), inset 0 0 40px rgba(255, 255, 255, 0.15);
  animation: capsule-breathe 5s ease-in-out infinite;
}

@keyframes capsule-breathe {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.04);
  }
}

@media (prefers-reduced-motion: reduce) {
  .routine-orbit {
    animation: none;
  }

  .routine-node--b,
  .routine-node--c {
    animation: none;
  }

  .routine-capsule-glow {
    animation: none;
  }
}

.routine-panel {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(155, 89, 182, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.routine-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.routine-tab {
  flex: 1 1 auto;
  min-width: 120px;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid rgba(155, 89, 182, 0.25);
  border-radius: var(--radius-full);
  background: var(--color-white);
  font-family: inherit;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  cursor: pointer;
  transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

.routine-tab:hover {
  border-color: var(--color-aqua-teal);
  transform: translateY(-2px);
}

.routine-tab.is-active {
  background: linear-gradient(135deg, var(--color-mystic-violet), #7d3c98);
  color: var(--color-white);
  border-color: transparent;
  box-shadow: var(--shadow-md);
}

.routine-body {
  margin-bottom: var(--space-lg);
  animation: routine-fade 0.45s ease both;
}

.routine-body[hidden] {
  display: none;
}

@keyframes routine-fade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
}

.routine-body h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-mystic-violet);
  font-size: var(--font-size-xl);
}

.routine-body p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.routine-checklist {
  margin: 0;
  padding-left: var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.6;
}

.routine-checklist li + li {
  margin-top: var(--space-xs);
}

.routine-cta {
  width: 100%;
  text-align: center;
}

.pill-matrix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
  max-width: 900px;
  margin: 0 auto;
}

.pill-chip {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-lg) var(--space-xl);
  text-align: left;
  border-radius: var(--radius-full);
  border: 2px solid rgba(155, 89, 182, 0.2);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(216, 191, 216, 0.35));
  cursor: pointer;
  font-family: inherit;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
  min-height: 4.5rem;
}

.pill-chip:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--shadow-md);
  border-color: var(--color-aqua-teal);
}

.pill-chip.is-expanded {
  border-color: var(--color-sunset-coral);
  box-shadow: var(--shadow-glow-coral);
}

.pill-chip-label {
  font-weight: var(--weight-bold);
  color: var(--color-mystic-violet);
  font-size: var(--font-size-base);
}

.pill-chip-detail {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.45s ease, opacity 0.35s ease, margin 0.35s ease;
  margin: 0;
}

.pill-chip.is-expanded .pill-chip-detail {
  max-height: 8rem;
  opacity: 1;
  margin-top: var(--space-xs);
}

.has-stagger.reveal.is-visible .bento-grid > article {
  animation: stagger-rise 0.75s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.has-stagger.reveal.is-visible .bento-grid > article:nth-child(1) {
  animation-delay: 0.05s;
}

.has-stagger.reveal.is-visible .bento-grid > article:nth-child(2) {
  animation-delay: 0.12s;
}

.has-stagger.reveal.is-visible .bento-grid > article:nth-child(3) {
  animation-delay: 0.19s;
}

.has-stagger.reveal.is-visible .bento-grid > article:nth-child(4) {
  animation-delay: 0.26s;
}

.has-stagger.reveal.is-visible .bento-grid > article:nth-child(5) {
  animation-delay: 0.33s;
}

@keyframes stagger-rise {
  from {
    opacity: 0;
    transform: translateY(32px);
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md) var(--space-xl);
  align-items: center;
}

.site-nav a {
  font-weight: var(--weight-medium);
  color: var(--color-text);
  text-decoration: none;
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sunset-coral), var(--color-aqua-teal));
  transition: width var(--transition-base);
}

.site-nav a:hover::after {
  width: 100%;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: var(--space-section) var(--space-lg) calc(var(--space-3xl) + var(--space-xl));
  min-height: min(92vh, 58rem);
  background: linear-gradient(145deg, #1a1520 0%, var(--color-deep-charcoal) 28%, #4a235a 52%, #1a3a40 88%);
  color: var(--color-white);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse 85% 55% at 12% 18%, rgba(155, 89, 182, 0.5), transparent 58%),
    radial-gradient(ellipse 70% 45% at 92% 75%, rgba(77, 208, 225, 0.38), transparent 52%),
    radial-gradient(ellipse 45% 35% at 72% 12%, rgba(255, 111, 97, 0.28), transparent 48%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.hero-lead {
  font-size: var(--font-size-lg);
  opacity: 0.92;
  margin: 0 0 var(--space-lg);
  max-width: 34ch;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.rating-row {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
}

.stars {
  color: #FFD54F;
  letter-spacing: 0.05em;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) var(--space-md);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  backdrop-filter: blur(8px);
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.price-current {
  font-size: var(--font-size-3xl);
  font-weight: var(--weight-bold);
  color: var(--color-aqua-teal);
}

.price-old {
  font-size: var(--font-size-xl);
  text-decoration: line-through;
  opacity: 0.65;
}

.hero-visual {
  position: relative;
  perspective: 1000px;
}

.order-card {
  margin-top: var(--space-xl);
  padding: var(--space-xl);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  color: var(--color-text);
  box-shadow: var(--shadow-lg);
}

.order-card h2 {
  font-size: var(--font-size-xl);
  margin: 0 0 var(--space-lg);
  color: var(--color-mystic-violet);
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: var(--weight-medium);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-md);
  border: 2px solid rgba(155, 89, 182, 0.25);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--font-size-base);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-mystic-violet);
  box-shadow: 0 0 0 4px rgba(155, 89, 182, 0.15);
  outline: none;
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group .error-msg {
  display: none;
  color: #C62828;
  font-size: var(--font-size-sm);
  margin-top: var(--space-xs);
}

.form-group.is-invalid input,
.form-group.is-invalid textarea {
  border-color: #C62828;
}

.form-group.is-invalid .error-msg {
  display: block;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.checkbox-row input {
  width: auto;
  margin-top: 0.35rem;
}

.checkbox-row label {
  font-size: var(--font-size-sm);
  font-weight: var(--weight-regular);
}

.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-base);
  font-weight: var(--weight-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-sunset-coral), #E85D4C);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(255, 111, 97, 0.55), 0 14px 36px rgba(155, 89, 182, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--color-mystic-violet), #7D3C98);
  color: var(--color-white);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-magnetic {
  will-change: transform;
}

.btn-outline {
  background: transparent;
  color: var(--color-mystic-violet);
  border: 2px solid var(--color-mystic-violet);
}

.btn-outline:hover {
  background: rgba(155, 89, 182, 0.08);
}

.section {
  padding: var(--space-section) var(--space-lg);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  margin-bottom: var(--space-2xl);
}

.section-head h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: var(--weight-bold);
  color: var(--color-mystic-violet);
  margin: 0 0 var(--space-md);
  line-height: var(--line-tight);
}

.section-head p {
  margin: 0;
  color: var(--color-text-muted);
  max-width: 60ch;
  font-size: var(--font-size-lg);
}

.section-alt {
  background: rgba(255, 255, 255, 0.55);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: var(--space-md);
}

.bento-item {
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  background: linear-gradient(145deg, var(--color-white), rgba(216, 191, 216, 0.35));
  border: 1px solid rgba(155, 89, 182, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0;
}

.bento-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(155, 89, 182, 0.12);
  color: var(--color-mystic-violet);
  font-size: 1.35rem;
  line-height: 1;
  transition: transform var(--transition-base), background var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-base);
}

.bento-item--large .bento-icon {
  width: 3.75rem;
  height: 3.75rem;
  font-size: 1.65rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-sm);
}

.bento-item:hover .bento-icon {
  transform: scale(1.06);
  background: rgba(155, 89, 182, 0.2);
  color: #7d3c98;
}

.bento-item--large:hover .bento-icon {
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-md);
}

.bento-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.bento-item--large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 340px;
  background: linear-gradient(155deg, rgba(155, 89, 182, 0.12), rgba(77, 208, 225, 0.15));
}

.bento-item--wide {
  grid-column: span 2;
}

.bento-item h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-xl);
  color: var(--color-deep-charcoal);
}

.bento-item p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.bento-tag {
  align-self: flex-start;
  padding: var(--space-xs) var(--space-sm);
  background: var(--color-sunset-coral);
  color: var(--color-white);
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border-radius: var(--radius-sm);
  margin-bottom: var(--space-md);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.ingredient-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 220px;
  background: var(--color-white);
  border: 1px solid rgba(155, 89, 182, 0.15);
  box-shadow: var(--shadow-sm);
  cursor: default;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-glow-teal);
  transform: translateY(-4px);
}

.ingredient-card-front,
.ingredient-card-back {
  padding: var(--space-xl);
  transition: opacity var(--transition-base), transform var(--transition-base);
}

.ingredient-card-back {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--color-mystic-violet), #6C3483);
  color: var(--color-white);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ingredient-card:hover .ingredient-card-front {
  opacity: 0;
  transform: scale(0.96);
}

.ingredient-card:hover .ingredient-card-back {
  opacity: 1;
}

.ingredient-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-lg);
}

.ingredient-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: 1.55;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
}

.trust-item {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 89, 182, 0.12);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.trust-item:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.trust-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
}

.trust-icon svg {
  width: 100%;
  height: 100%;
}

.trust-item h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-mystic-violet);
  font-size: var(--font-size-lg);
}

.trust-item p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

@keyframes icon-pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.trust-icon.is-animated {
  animation: icon-pulse 3s ease-in-out infinite;
}

.trust-icon.is-animated-delay {
  animation: icon-pulse 3s ease-in-out infinite 0.5s;
}

.trust-icon.is-animated-delay-2 {
  animation: icon-pulse 3s ease-in-out infinite 1s;
}

.carousel-wrap {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.carousel {
  display: flex;
  gap: var(--space-xl);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: var(--space-lg) var(--space-sm);
  margin: 0 -var(--space-sm);
  scrollbar-width: thin;
}

.carousel::-webkit-scrollbar {
  height: 8px;
}

.carousel::-webkit-scrollbar-thumb {
  background: var(--color-soft-lilac);
  border-radius: var(--radius-full);
}

.product-card {
  flex: 0 0 min(280px, 85vw);
  scroll-snap-align: center;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid rgba(155, 89, 182, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  box-shadow: var(--shadow-sm);
  perspective: 800px;
}

.product-card.is-tilt {
  transform-style: preserve-3d;
}

.product-card:hover {
  box-shadow: var(--shadow-glow-coral);
}

.product-card figure {
  margin: 0 0 var(--space-md);
}

.product-card img {
  margin: 0 auto;
  border-radius: var(--radius-md);
}

.product-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-lg);
  color: var(--color-mystic-violet);
}

.product-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border: none;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-md);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-mystic-violet);
  transition: background var(--transition-fast), transform var(--transition-fast);
  z-index: 2;
}

.carousel-btn:hover {
  background: var(--color-white);
  transform: translateY(-50%) scale(1.05);
}

.carousel-btn--prev {
  left: -8px;
}

.carousel-btn--next {
  right: -8px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.spec-table th,
.spec-table td {
  padding: var(--space-md) var(--space-lg);
  text-align: left;
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.spec-table th {
  background: rgba(155, 89, 182, 0.08);
  font-weight: var(--weight-bold);
  color: var(--color-mystic-violet);
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
}

.benefits-list li {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-aqua-teal);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base);
}

.benefits-list li:hover {
  transform: translateX(6px);
}

.prose-block {
  background: rgba(255, 255, 255, 0.7);
  padding: var(--space-2xl);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 89, 182, 0.1);
}

.prose-block p + p {
  margin-top: var(--space-md);
}

.effects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-lg);
}

.effects-card {
  padding: var(--space-xl);
  background: linear-gradient(135deg, rgba(77, 208, 225, 0.12), rgba(155, 89, 182, 0.1));
  border-radius: var(--radius-lg);
  border: 1px solid rgba(77, 208, 225, 0.25);
}

.effects-card h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-deep-charcoal);
  font-size: var(--font-size-lg);
}

.effects-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.cta-banner {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  background: linear-gradient(120deg, var(--color-mystic-violet), #5B2C6F 50%, var(--color-aqua-teal));
  color: var(--color-white);
  border-radius: var(--radius-xl);
  margin: 0 var(--space-lg);
  max-width: 1168px;
  margin-left: auto;
  margin-right: auto;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.5rem, 3vw, 2rem);
}

.cta-banner p {
  margin: 0 0 var(--space-xl);
  opacity: 0.95;
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}

.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--space-lg);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--color-sunset-coral);
  color: var(--color-white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-sm);
}

.ingredients-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-lg);
}

.review-card {
  padding: var(--space-xl);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(155, 89, 182, 0.12);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card cite {
  display: block;
  font-style: normal;
  font-weight: var(--weight-bold);
  margin-top: var(--space-md);
  color: var(--color-mystic-violet);
  font-size: var(--font-size-sm);
}

.faq-list details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-md);
  border: 1px solid rgba(155, 89, 182, 0.12);
  overflow: hidden;
  transition: box-shadow var(--transition-base);
}

.faq-list details:hover {
  box-shadow: var(--shadow-sm);
}

.faq-list summary {
  padding: var(--space-lg);
  font-weight: var(--weight-bold);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  font-size: 1.25rem;
  color: var(--color-sunset-coral);
  transition: transform var(--transition-base);
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-list .faq-body {
  padding: 0 var(--space-lg) var(--space-lg);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.faq-list .faq-body p {
  margin: 0;
}

.disclaimer-box {
  background: rgba(43, 43, 43, 0.06);
  border: 1px solid rgba(43, 43, 43, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  max-width: 900px;
  margin: var(--space-2xl) auto 0;
}

.site-footer {
  background: var(--color-deep-charcoal);
  color: rgba(255, 255, 255, 0.88);
  padding: var(--space-3xl) var(--space-lg) var(--space-xl);
  margin-top: var(--space-section);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-2xl);
  margin-bottom: var(--space-2xl);
}

.footer-col h3 {
  font-size: var(--font-size-base);
  margin: 0 0 var(--space-md);
  color: var(--color-aqua-teal);
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: var(--space-sm);
}

.footer-col p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-body);
}

.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.footer-col a:hover {
  color: var(--color-sunset-coral);
}

.footer-legal-compliance {
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--font-size-xs);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-xl);
}

.footer-legal-compliance p {
  margin: 0 0 var(--space-md);
}

.footer-legal-compliance p:last-child {
  margin-bottom: 0;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: var(--font-size-sm);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9000;
  padding: var(--space-lg);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px rgba(43, 43, 43, 0.12);
  transform: translateY(100%);
  transition: transform var(--transition-slow);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-banner-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-banner p {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.cookie-actions .btn {
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-sm);
}

.btn-ghost {
  background: transparent;
  border: 2px solid var(--color-mystic-violet);
  color: var(--color-mystic-violet);
}

.btn-ghost:hover {
  background: rgba(155, 89, 182, 0.1);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9500;
  background: rgba(43, 43, 43, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base), visibility var(--transition-base);
}

.modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.modal {
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-2xl);
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  transform: scale(0.94);
  transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal {
  transform: scale(1);
}

.modal h2 {
  margin: 0 0 var(--space-lg);
  color: var(--color-mystic-violet);
  font-size: var(--font-size-xl);
}

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid rgba(155, 89, 182, 0.15);
}

.cookie-category:last-of-type {
  border-bottom: none;
}

.cookie-category p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.cookie-category strong {
  display: block;
  color: var(--color-deep-charcoal);
  margin-bottom: var(--space-xs);
}

.toggle {
  position: relative;
  width: 48px;
  height: 28px;
  flex-shrink: 0;
}

.toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #BDBDBD;
  border-radius: var(--radius-full);
  transition: background var(--transition-base);
}

.toggle-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  transition: transform var(--transition-base);
}

.toggle input:checked + .toggle-slider {
  background: var(--color-mystic-violet);
}

.toggle input:checked + .toggle-slider::before {
  transform: translateX(20px);
}

.toggle input:disabled + .toggle-slider {
  opacity: 0.65;
  cursor: not-allowed;
  background: var(--color-mystic-violet);
}

.modal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.modal-close {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--color-text-muted);
  line-height: 1;
  padding: var(--space-sm);
}

.modal {
  position: relative;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    order: -1;
  }

  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bento-item--large {
    grid-column: span 2;
    grid-row: span 1;
    min-height: 200px;
  }

  .trust-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn--prev {
    left: 0;
  }

  .carousel-btn--next {
    right: 0;
  }
}

@media (max-width: 720px) {
  .burger {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 20rem);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: calc(var(--header-h) + var(--space-md)) var(--space-lg) var(--space-xl);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--glass-border);
    border-bottom: none;
    box-shadow: -16px 0 48px rgba(43, 43, 43, 0.12);
    transform: translate3d(105%, 0, 0);
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 1001;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
  }

  .site-nav ul {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: var(--space-sm);
    padding: 0;
    align-items: stretch;
  }

  .site-nav a {
    display: block;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    transition: background var(--transition-fast);
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(155, 89, 182, 0.1);
  }

  .site-nav a::after {
    display: none;
  }

  .bento-grid {
    grid-template-columns: 1fr;
  }

  .bento-item--large,
  .bento-item--wide {
    grid-column: span 1;
  }

  .price-row {
    flex-wrap: wrap;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .routine-shell {
    grid-template-columns: 1fr;
  }

  .routine-visual {
    min-height: 200px;
  }

  .pill-matrix {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-bottom: calc(var(--space-2xl) + var(--space-lg));
  }

  .hero-scroll-cue {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: var(--space-xl) auto 0;
  }

  body {
    padding-top: var(--header-h);
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-toc {
    position: static;
    max-height: none;
  }
}

@media (max-width: 320px) {
  :root {
    --header-h: 3.75rem;
    --space-section: clamp(2rem, 6vw, 3rem);
    --font-size-base: 0.9375rem;
    --font-size-lg: 1.0625rem;
    --space-lg: 1.125rem;
    --space-xl: 1.5rem;
  }

  .header-inner {
    padding: 0 var(--space-sm);
    gap: var(--space-sm);
  }

  .brand {
    font-size: var(--font-size-base);
    max-width: 58vw;
    line-height: 1.2;
  }

  .brand span {
    font-size: 0.65rem;
    line-height: 1.3;
  }

  .burger {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
  }

  .site-nav {
    width: 100%;
    padding: calc(var(--header-h) + var(--space-sm)) var(--space-md) var(--space-lg);
  }

  .hero {
    padding: var(--space-xl) var(--space-sm) calc(var(--space-2xl) + var(--space-md));
    min-height: auto;
  }

  .hero-inner {
    gap: var(--space-lg);
  }

  .hero-scroll-cue {
    position: relative;
    bottom: auto;
    left: auto;
    transform: none;
    margin: var(--space-xl) auto 0;
    animation: none;
    opacity: 0.85;
  }

  .hero-scroll-cue__mouse::after {
    animation: hero-scroll-wheel 2s ease-in-out infinite;
  }

  .hero-glow-ring {
    opacity: 0.35;
    filter: blur(20px);
  }

  .order-card {
    padding: var(--space-md);
  }

  .section {
    padding: var(--space-section) var(--space-sm);
  }

  .section-head h2 {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .cta-banner {
    margin: 0 var(--space-sm);
    padding: var(--space-xl) var(--space-md);
  }

  .cookie-banner {
    padding: var(--space-md);
  }

  .cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-md);
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .footer-inner {
    padding: 0 var(--space-sm);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }

  .stat-card {
    padding: var(--space-md);
  }

  .routine-tabs {
    flex-direction: column;
  }

  .routine-tab {
    min-width: 0;
    width: 100%;
  }

  .pill-chip {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
    min-height: 0;
  }

  .legal-layout {
    grid-template-columns: 1fr !important;
  }

  .legal-toc {
    position: static !important;
    max-height: none !important;
  }

  .thank-layout {
    padding: var(--space-md) var(--space-sm) !important;
  }

  .legal-hero-inner {
    padding: var(--space-lg) var(--space-sm) !important;
  }

  .spec-table th,
  .spec-table td {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
  }
}

.legal-doc {
  padding-bottom: var(--space-3xl);
  background: linear-gradient(180deg, rgba(250, 248, 252, 1) 0%, rgba(232, 248, 251, 0.55) 55%, rgba(237, 228, 245, 0.9) 100%);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2b2b2b 0%, #4a235a 42%, #1a3a40 100%);
  color: var(--color-white);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(155, 89, 182, 0.5), transparent 55%),
    radial-gradient(ellipse at 85% 80%, rgba(77, 208, 225, 0.35), transparent 50%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-3xl) var(--space-lg);
}

.legal-hero h1 {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: var(--weight-bold);
  line-height: var(--line-tight);
}

.legal-lead {
  margin: 0;
  max-width: 54ch;
  opacity: 0.92;
  font-size: var(--font-size-lg);
  line-height: 1.55;
}

.legal-stamp {
  margin: var(--space-xl) 0 0;
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  backdrop-filter: blur(8px);
}

.legal-stamp time {
  font-weight: var(--weight-bold);
  color: var(--color-aqua-teal);
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 220px) minmax(0, 1fr);
  gap: var(--space-2xl);
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-2xl) var(--space-lg) 0;
  align-items: start;
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--space-md));
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(155, 89, 182, 0.15);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  max-height: calc(100vh - var(--header-h) - 3rem);
  overflow-y: auto;
}

.legal-toc h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-mystic-violet);
}

.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-toc li {
  margin-bottom: var(--space-xs);
}

.legal-toc a {
  display: block;
  padding: var(--space-sm) var(--space-sm);
  border-radius: var(--radius-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text);
  text-decoration: none;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.legal-toc a:hover {
  background: rgba(155, 89, 182, 0.1);
  color: var(--color-sunset-coral);
}

.legal-content {
  min-width: 0;
}

.legal-card {
  background: var(--color-white);
  border: 1px solid rgba(155, 89, 182, 0.12);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  scroll-margin-top: calc(var(--header-h) + var(--space-sm));
}

.legal-card:hover {
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-xl);
  color: var(--color-mystic-violet);
}

.legal-card h3 {
  margin: var(--space-xl) 0 var(--space-sm);
  font-size: var(--font-size-lg);
  color: var(--color-deep-charcoal);
}

.legal-card p,
.legal-card ul,
.legal-card ol {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: 1.65;
}

.legal-card ul,
.legal-card ol {
  padding-left: var(--space-xl);
}

.legal-card li + li {
  margin-top: var(--space-xs);
}

.legal-callout {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-aqua-teal);
  background: rgba(77, 208, 225, 0.1);
  margin: var(--space-lg) 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.legal-callout strong {
  color: var(--color-deep-charcoal);
}

.legal-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius-md);
  border: 1px solid rgba(155, 89, 182, 0.12);
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
}

.legal-table th,
.legal-table td {
  padding: var(--space-md);
  text-align: left;
  border-bottom: 1px solid rgba(155, 89, 182, 0.1);
}

.legal-table th {
  background: rgba(155, 89, 182, 0.08);
  color: var(--color-mystic-violet);
  font-weight: var(--weight-bold);
}

.thank-layout {
  min-height: calc(100vh - var(--header-h));
  background: linear-gradient(165deg, var(--color-off-white) 0%, #ede4f5 40%, #e8f8fb 100%);
  padding: var(--space-3xl) var(--space-lg);
}

.thank-stage {
  max-width: 720px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-xl);
}

.thank-hero-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-2xl);
  background: linear-gradient(135deg, rgba(43, 43, 43, 0.94), #4a235a 60%, #1a3a40);
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
}

.thank-hero-card::before {
  content: "";
  position: absolute;
  inset: -30%;
  background: radial-gradient(circle at 30% 30%, rgba(155, 89, 182, 0.45), transparent 55%);
  animation: thank-glow 10s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes thank-glow {
  from {
    transform: translate(-4%, -2%) rotate(0deg);
  }
  to {
    transform: translate(4%, 2%) rotate(8deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thank-hero-card::before {
    animation: none;
  }
}

.thank-hero-card .inner {
  position: relative;
  z-index: 1;
}

.thank-hero-card h1 {
  margin: 0 0 var(--space-md);
  font-size: clamp(1.75rem, 4vw, 2.35rem);
}

.thank-hero-card p {
  margin: 0;
  opacity: 0.93;
  line-height: 1.6;
  max-width: 50ch;
}

.thank-date-badge {
  display: inline-flex;
  margin-top: var(--space-lg);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  font-size: var(--font-size-sm);
}

.thank-date-badge time {
  font-weight: var(--weight-bold);
  color: var(--color-aqua-teal);
}

.thank-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-md);
}

.thank-panel {
  padding: var(--space-xl);
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.thank-panel h2 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-base);
  color: var(--color-mystic-violet);
}

.thank-panel p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: 1.55;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}
