:root {
  --color-coral: #ff6f61;
  --color-mint: #2ee6c6;
  --color-lime: #c7ff4a;
  --color-violet: #6c3bff;
  --color-sky: #3ab0ff;
  --color-base: #0f1118;
  --color-surface: #161a24;
  --color-elevated: #1e2433;
  --color-text: #f4f6fb;
  --color-text-muted: #a8b0c4;
  --color-white: #ffffff;
  --color-border: rgba(255, 255, 255, 0.08);
  --font-sans: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-display: "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --fs-body: clamp(1rem, 0.95rem + 0.3vw, 1.0625rem);
  --fs-md: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
  --fs-lg: clamp(1.35rem, 1.1rem + 0.9vw, 1.65rem);
  --fs-xl: clamp(1.75rem, 1.3rem + 1.4vw, 2.25rem);
  --fs-hero: clamp(2.25rem, 1.5rem + 3vw, 3.75rem);
  --fw-normal: 400;
  --fw-medium: 600;
  --fw-bold: 700;
  --lh-tight: 1.15;
  --lh-body: 1.6;
  --shadow-sm: 0 4px 14px rgba(108, 59, 255, 0.15);
  --shadow-md: 0 12px 40px rgba(108, 59, 255, 0.22);
  --shadow-glow-coral: 0 0 32px rgba(255, 111, 97, 0.45);
  --shadow-glow-mint: 0 0 28px rgba(46, 230, 198, 0.4);
  --shadow-glow-violet: 0 0 36px rgba(108, 59, 255, 0.5);
  --radius-sm: 0.5rem;
  --radius-md: 0.875rem;
  --radius-lg: 1.25rem;
  --radius-xl: 1.75rem;
  --radius-full: 9999px;
  --space-xs: 0.375rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --header-h: 4.25rem;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  --glass-bg: rgba(22, 26, 36, 0.72);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(16px);
  --lux-gold: #d4af37;
  --lux-gold-soft: #f4e4bc;
  --lux-ink: #0a0c10;
  --lux-ivory: #f8f6f0;
  --font-serif: "Georgia", "Times New Roman", serif;
}

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

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

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--color-text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(108, 59, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 50%, rgba(255, 111, 97, 0.12), transparent 50%),
    var(--color-base);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: var(--space-sm) var(--space-md);
  background: var(--color-violet);
  color: var(--color-white);
  font-weight: var(--fw-medium);
}

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

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

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

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

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

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  z-index: 1000;
  background: linear-gradient(90deg, var(--color-coral), var(--color-mint), var(--color-violet));
  background-size: 200% 100%;
  animation: scroll-hue 8s linear infinite;
  pointer-events: none;
  transition: width 0.12s ease-out;
}

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

.burger-lux {
  position: relative;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(30, 36, 51, 0.95), rgba(15, 17, 24, 0.98));
  cursor: pointer;
  color: var(--color-text);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.04), 0 8px 28px rgba(108, 59, 255, 0.2);
  transition: transform var(--transition-fast), border-color var(--transition-base), box-shadow var(--transition-base);
}

.burger-lux:hover {
  transform: scale(1.04);
  border-color: rgba(46, 230, 198, 0.55);
  box-shadow: 0 0 24px rgba(46, 230, 198, 0.2);
}

.burger-lux__glow {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(199, 255, 74, 0.15), transparent 55%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.burger-lux:hover .burger-lux__glow {
  opacity: 1;
}

.burger-lux__bars {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  height: 100%;
}

.burger-lux__bar {
  display: block;
  width: 1.125rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #d4af37, var(--color-mint));
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1), width 0.35s ease, opacity 0.25s ease;
}

.burger-lux__bar:nth-child(2) {
  width: 0.875rem;
}

.burger-lux[aria-expanded="true"] .burger-lux__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
  width: 1.25rem;
}

.burger-lux[aria-expanded="true"] .burger-lux__bar:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.burger-lux[aria-expanded="true"] .burger-lux__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
  width: 1.25rem;
}

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

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(6, 8, 12, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

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

.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 150;
  width: min(22rem, 100vw);
  height: 100vh;
  height: 100dvh;
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-xl);
  background: linear-gradient(165deg, rgba(22, 26, 36, 0.97) 0%, rgba(12, 14, 20, 0.99) 45%, rgba(30, 24, 40, 0.98) 100%);
  border-left: 1px solid rgba(212, 175, 55, 0.2);
  box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
  transform: translateX(105%);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.nav-drawer__link {
  display: block;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  text-decoration: none;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  opacity: 0;
  transform: translateX(1.25rem);
  transition: color var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast), transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease;
}

.nav-drawer.is-open .nav-drawer__link {
  opacity: 1;
  transform: translateX(0);
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(1) .nav-drawer__link {
  transition-delay: 0.05s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(2) .nav-drawer__link {
  transition-delay: 0.1s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(3) .nav-drawer__link {
  transition-delay: 0.14s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(4) .nav-drawer__link {
  transition-delay: 0.18s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(5) .nav-drawer__link {
  transition-delay: 0.22s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(6) .nav-drawer__link {
  transition-delay: 0.26s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(7) .nav-drawer__link {
  transition-delay: 0.3s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(8) .nav-drawer__link {
  transition-delay: 0.34s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(9) .nav-drawer__link {
  transition-delay: 0.38s;
}

.nav-drawer.is-open .nav-drawer__list li:nth-child(10) .nav-drawer__link {
  transition-delay: 0.42s;
}

.nav-drawer__link:hover,
.nav-drawer__link:focus-visible {
  background: rgba(108, 59, 255, 0.18);
  border-color: rgba(58, 176, 255, 0.35);
  color: var(--color-mint);
}

body.nav-open {
  overflow: hidden;
}

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

.site-nav--desktop a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  position: relative;
}

.site-nav--desktop a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.2em;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-mint));
  transition: width var(--transition-base);
}

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

.site-nav--desktop a:hover::after {
  width: 100%;
}

@media (max-width: 899px) {
  .site-nav--desktop {
    display: none;
  }
}

main {
  overflow-x: hidden;
}

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

.section-inner {
  max-width: 72rem;
  margin: 0 auto;
}

.section-title {
  position: relative;
  display: inline-block;
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: var(--lh-tight);
  margin: 0 0 var(--space-md);
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0 0 var(--space-lg);
  color: var(--color-text-muted);
  max-width: 40rem;
}

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

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

.hero--lux {
  position: relative;
  padding-top: var(--space-xl);
  padding-bottom: calc(var(--space-2xl) + 2.5rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-lux-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-lux-mesh {
  position: absolute;
  inset: -20%;
  background: conic-gradient(from 210deg at 50% 50%, rgba(108, 59, 255, 0.22), rgba(46, 230, 198, 0.12), rgba(255, 111, 97, 0.1), rgba(58, 176, 255, 0.14), rgba(108, 59, 255, 0.22));
  animation: hero-mesh-rotate 32s linear infinite;
  opacity: 0.85;
}

@keyframes hero-mesh-rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-lux-gridlines {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 40%, #000 20%, transparent 75%);
  animation: hero-grid-fade 10s ease-in-out infinite alternate;
}

@keyframes hero-grid-fade {
  from {
    opacity: 0.35;
  }
  to {
    opacity: 0.65;
  }
}

.hero-lux-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(64px);
  animation: hero-orb-float 16s ease-in-out infinite;
}

.hero-lux-orb--a {
  width: min(48vw, 320px);
  height: min(48vw, 320px);
  background: rgba(108, 59, 255, 0.45);
  top: -12%;
  left: -8%;
}

.hero-lux-orb--b {
  width: min(40vw, 260px);
  height: min(40vw, 260px);
  background: rgba(255, 111, 97, 0.28);
  bottom: 5%;
  right: -10%;
  animation-delay: -5s;
}

.hero-lux-orb--c {
  width: min(32vw, 200px);
  height: min(32vw, 200px);
  background: rgba(46, 230, 198, 0.32);
  top: 38%;
  right: 15%;
  animation-delay: -9s;
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  40% {
    transform: translate(5%, 8%) scale(1.08);
  }
  70% {
    transform: translate(-4%, 5%) scale(0.94);
  }
}

.hero-lux-spark {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--lux-gold-soft);
  box-shadow: 0 0 12px rgba(244, 228, 188, 0.9);
  animation: hero-spark-twinkle 3.2s ease-in-out infinite;
}

.hero-lux-spark--1 {
  top: 18%;
  left: 22%;
  animation-delay: 0s;
}

.hero-lux-spark--2 {
  top: 55%;
  left: 8%;
  animation-delay: 0.9s;
}

.hero-lux-spark--3 {
  top: 32%;
  right: 18%;
  animation-delay: 1.6s;
}

@keyframes hero-spark-twinkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.6);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
}

.hero-lux-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: hero-noise-shift 0.5s steps(2) infinite;
}

@keyframes hero-noise-shift {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-2%, -2%);
  }
}

.hero .section-inner,
.hero .hero-grid,
.hero .reveal {
  position: relative;
  z-index: 1;
}

.hero-grid--lux {
  align-items: stretch;
}

.hero-lux-col--copy {
  display: flex;
  flex-direction: column;
}

.hero-lux-eyebrow {
  margin: 0 0 var(--space-md);
  overflow: hidden;
}

.hero-lux-eyebrow__track {
  display: inline-block;
  font-size: var(--fs-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(244, 228, 188, 0.85);
  padding: var(--space-xs) 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.15), transparent);
  background-size: 200% 100%;
  animation: hero-eyebrow-shine 4s ease-in-out infinite;
}

@keyframes hero-eyebrow-shine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-lux-visual-shell {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-md);
  min-height: min(52vw, 340px);
}

@media (min-width: 960px) {
  .hero-lux-visual-shell {
    min-height: 360px;
  }
}

.hero-lux-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid transparent;
  pointer-events: none;
}

.hero-lux-ring--outer {
  width: min(72vw, 380px);
  height: min(72vw, 380px);
  background: linear-gradient(var(--color-base), var(--color-base)) padding-box,
    conic-gradient(from 0deg, rgba(212, 175, 55, 0.5), rgba(46, 230, 198, 0.45), rgba(108, 59, 255, 0.5), rgba(212, 175, 55, 0.5)) border-box;
  animation: hero-ring-spin 20s linear infinite;
  opacity: 0.75;
}

.hero-lux-ring--inner {
  width: min(58vw, 300px);
  height: min(58vw, 300px);
  border-color: rgba(255, 255, 255, 0.08);
  animation: hero-ring-spin-reverse 26s linear infinite;
}

@keyframes hero-ring-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-ring-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

.hero-visual--lux {
  position: relative;
  z-index: 2;
  animation: hero-product-float 7s ease-in-out infinite;
}

.hero-icon-figure {
  margin: 0;
}

.hero-product-icon-box {
  width: 400px;
  max-width: 100%;
  height: 520px;
  max-height: min(72vh, 520px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(30, 36, 51, 0.95), rgba(15, 17, 24, 0.98));
  border: 1px solid rgba(46, 230, 198, 0.25);
  box-shadow: 0 24px 48px rgba(108, 59, 255, 0.35), 0 0 40px rgba(46, 230, 198, 0.12);
  transition: transform 0.2s ease-out, box-shadow var(--transition-base);
  transform-style: preserve-3d;
}

.hero-fa-product {
  font-size: clamp(7rem, 22vw, 11rem);
  line-height: 1;
  background: linear-gradient(135deg, var(--color-mint), var(--color-sky), var(--color-violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 4px 20px rgba(108, 59, 255, 0.4));
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-visual--lux:hover .hero-product-icon-box {
  box-shadow: 0 28px 56px rgba(108, 59, 255, 0.42), 0 0 48px rgba(46, 230, 198, 0.18);
}

.hero-visual--lux:hover .hero-fa-product {
  transform: scale(1.06) translateY(-4px);
}

@keyframes hero-product-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}

.hero-badge--lux {
  position: absolute;
  top: 0;
  right: 6%;
  width: 120px;
  height: 120px;
  max-width: 22vw;
  max-height: 22vw;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, rgba(244, 228, 188, 0.95), rgba(248, 246, 240, 1));
  border: 2px solid var(--color-lime);
  animation: hero-badge-pop 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 20px rgba(199, 255, 74, 0.25));
}

.hero-fa-badge {
  font-size: clamp(2.5rem, 8vw, 3.25rem);
  color: var(--color-violet);
  line-height: 1;
}

@keyframes hero-badge-pop {
  0%,
  100% {
    transform: scale(1) rotate(0deg);
  }
  50% {
    transform: scale(1.06) rotate(4deg);
  }
}

.hero-rating--lux {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  background: rgba(12, 14, 20, 0.55);
  border: 1px solid rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: fit-content;
  max-width: 100%;
  margin-bottom: var(--space-md);
}

.stars--lux {
  display: inline-block;
  animation: hero-stars-pulse 4s ease-in-out infinite;
}

@keyframes hero-stars-pulse {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.25);
  }
}

.hero-lux-title {
  display: flex;
  flex-direction: column;
  gap: 0.1em;
  margin: 0 0 var(--space-md);
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.05;
}

.hero-lux-title__line {
  display: block;
  font-size: clamp(2.5rem, 7vw, 4rem);
  color: var(--lux-ivory);
  letter-spacing: -0.02em;
  opacity: 0;
  transform: translateY(1.1rem);
}

.reveal.is-visible .hero-lux-title__line {
  animation: hero-title-rise 0.95s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.reveal.is-visible .hero-lux-title__line:nth-child(2) {
  animation-delay: 0.12s;
}

@keyframes hero-title-rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lux-title__line--accent {
  font-size: clamp(1.35rem, 4.2vw, 2rem);
  background: linear-gradient(105deg, var(--lux-gold-soft) 0%, var(--color-mint) 45%, var(--color-sky) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  letter-spacing: 0.02em;
}

.hero-desc--lux {
  font-size: var(--fs-md);
  line-height: 1.65;
  color: rgba(200, 198, 210, 0.92);
  margin: 0 0 var(--space-lg);
  max-width: 38rem;
  opacity: 0;
  transform: translateY(12px);
}

.reveal.is-visible .hero-desc--lux {
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.35s forwards;
}

@keyframes hero-fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-lux-priceblock {
  position: relative;
  width: fit-content;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(135deg, rgba(20, 22, 32, 0.9), rgba(10, 12, 18, 0.95));
  opacity: 0;
  transform: translateY(14px);
}

.reveal.is-visible .hero-lux-priceblock {
  animation: hero-fade-up 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.5s forwards;
}

.hero-lux-price-glow {
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(120deg, transparent 30%, rgba(46, 230, 198, 0.15) 50%, transparent 70%);
  background-size: 220% 100%;
  animation: hero-price-sweep 5s ease-in-out infinite;
  pointer-events: none;
  z-index: -1;
}

@keyframes hero-price-sweep {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.price-row--lux {
  margin-bottom: 0;
  align-items: center;
}

.price-current--lux {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.15rem);
  background: linear-gradient(90deg, var(--color-mint), var(--lux-gold-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-price-shimmer 6s ease-in-out infinite;
}

@keyframes hero-price-shimmer {
  0%,
  100% {
    filter: brightness(1);
  }
  50% {
    filter: brightness(1.15);
  }
}

.order-card--lux {
  background: linear-gradient(155deg, rgba(30, 32, 44, 0.92) 0%, rgba(14, 16, 24, 0.98) 100%);
  border: 1px solid rgba(212, 175, 55, 0.18);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}

.order-card--lux::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.6), var(--color-mint), transparent);
  background-size: 200% 100%;
  animation: hero-form-bar 4s linear infinite;
}

@keyframes hero-form-bar {
  to {
    background-position: 200% 0;
  }
}

.order-card--lux h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--lux-gold-soft);
  letter-spacing: 0.02em;
}

.hero-lux-scroll {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  text-decoration: none;
  color: rgba(200, 198, 210, 0.75);
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  z-index: 2;
  animation: hero-scroll-bob 2.8s ease-in-out infinite;
}

.hero-lux-scroll:hover {
  color: var(--color-mint);
}

.hero-lux-scroll__line {
  width: 1px;
  height: 2.25rem;
  background: linear-gradient(to bottom, var(--lux-gold), transparent);
  animation: hero-scroll-line 2s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }
  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

@keyframes hero-scroll-bob {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(6px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-lux-mesh,
  .hero-lux-ring--outer,
  .hero-lux-ring--inner,
  .hero-lux-noise,
  .hero-lux-spark,
  .hero-visual--lux,
  .hero-badge--lux,
  .stars--lux,
  .hero-lux-price-glow,
  .price-current--lux,
  .order-card--lux::before,
  .hero-lux-scroll,
  .hero-lux-scroll__line,
  .hero-lux-eyebrow__track {
    animation: none;
  }

  .hero-lux-mesh {
    transform: none;
  }

  .hero-visual--lux {
    transform: none;
  }

  .reveal.is-visible .hero-lux-title__line,
  .reveal.is-visible .hero-desc--lux,
  .reveal.is-visible .hero-lux-priceblock {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

.section-title::after {
  content: "";
  display: block;
  height: 3px;
  width: 100%;
  margin-top: var(--space-xs);
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-violet), var(--color-mint), transparent);
  transform-origin: left;
}

.reveal .section-title::after {
  transform: scaleX(0);
}

.reveal.is-visible .section-title::after {
  animation: title-line-grow 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes title-line-grow {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--stagger, 0s);
}

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

.section--stats {
  position: relative;
}

.section--stats::before {
  content: "";
  position: absolute;
  inset: 10% 5%;
  border-radius: var(--radius-xl);
  background: radial-gradient(ellipse at center, rgba(108, 59, 255, 0.12), transparent 70%);
  pointer-events: none;
}

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

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

@media (min-width: 960px) {
  .stat-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-card {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, rgba(30, 36, 51, 0.9), rgba(15, 17, 24, 0.95));
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
  overflow: hidden;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.4), transparent 40%, rgba(46, 230, 198, 0.35));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 20px 50px rgba(108, 59, 255, 0.2);
}

.stat-card:hover::before {
  opacity: 1;
}

.stat-card__value {
  font-family: var(--font-display);
  font-size: clamp(2rem, 6vw, 2.75rem);
  font-weight: var(--fw-bold);
  background: linear-gradient(135deg, #f4e4bc, var(--color-mint));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1.1;
  margin-bottom: var(--space-xs);
}

.stat-card__suffix {
  font-size: var(--fs-lg);
  font-weight: var(--fw-bold);
  color: var(--color-mint);
  vertical-align: top;
}

.stat-card__label {
  margin: 0;
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.stat-card__hint {
  margin: var(--space-sm) 0 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

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

@media (min-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
  }
}

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

.stars {
  color: var(--color-lime);
  letter-spacing: 0.1em;
  font-size: var(--fs-md);
}

.rating-caption {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

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

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

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

.order-card {
  background: linear-gradient(145deg, rgba(108, 59, 255, 0.2), rgba(22, 26, 36, 0.95));
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-xl);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
}

.order-card h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-lg);
}

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

.form-field label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
  color: var(--color-text-muted);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(15, 17, 24, 0.6);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--fs-body);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-violet);
  box-shadow: 0 0 0 3px rgba(108, 59, 255, 0.25);
}

.form-field textarea {
  min-height: 6rem;
  resize: vertical;
}

.form-field.is-invalid input,
.form-field.is-invalid textarea {
  border-color: var(--color-coral);
}

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

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

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

.checkbox-field input {
  margin-top: 0.35rem;
  width: 1.1rem;
  height: 1.1rem;
  accent-color: var(--color-violet);
}

.checkbox-field label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral), var(--color-violet));
  color: var(--color-white);
  box-shadow: var(--shadow-glow-coral);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-violet);
}

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

.btn-secondary:hover {
  background: rgba(46, 230, 198, 0.12);
}

.btn-block {
  width: 100%;
}

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

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

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

  .bento-item--large {
    grid-column: span 2;
    min-height: 10rem;
  }

  .bento-item--tall {
    grid-row: span 2;
    min-height: 14rem;
  }
}

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

  .bento-item--large {
    grid-column: span 2;
    grid-row: span 1;
  }

  .bento-item--tall {
    grid-column: span 1;
    grid-row: span 2;
  }

  .bento-item--wide {
    grid-column: span 2;
  }
}

.bento-item {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(160deg, var(--color-elevated), var(--color-surface));
  overflow: hidden;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.bento-item:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 74, 0.35);
  box-shadow: var(--shadow-glow-mint);
}

.bento-item h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-lg);
}

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

.bento-accent {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  filter: blur(48px);
  opacity: 0.5;
  pointer-events: none;
  right: -20px;
  bottom: -20px;
}

.bento-accent--coral {
  background: var(--color-coral);
}

.bento-accent--mint {
  background: var(--color-mint);
}

.bento-accent--violet {
  background: var(--color-violet);
}

.bento-accent--sky {
  background: var(--color-sky);
}

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

@media (min-width: 720px) {
  .ingredient-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .ingredient-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.ingredient-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ingredient-card__icon {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, rgba(30, 36, 51, 0.98), rgba(15, 17, 24, 1));
  border-radius: var(--radius-lg);
}

.ingredient-fa {
  font-size: clamp(3.5rem, 12vw, 5rem);
  line-height: 1;
  color: var(--color-mint);
  opacity: 0.9;
}

.ingredient-card:nth-child(2) .ingredient-fa {
  color: var(--color-violet);
}

.ingredient-card:nth-child(3) .ingredient-fa {
  color: var(--color-coral);
}

.ingredient-card:nth-child(4) .ingredient-fa {
  color: var(--color-lime);
}

.ingredient-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-violet);
}

.ingredient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 17, 24, 0.95), transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--space-md);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.ingredient-card:hover .ingredient-overlay,
.ingredient-card:focus-within .ingredient-overlay {
  opacity: 1;
}

.ingredient-overlay h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-md);
  color: var(--color-lime);
}

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

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

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

.trust-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--color-surface);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.trust-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-sky);
}

.trust-card__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: rgba(108, 59, 255, 0.12);
  border: 1px solid rgba(58, 176, 255, 0.25);
  animation: trust-float 4s ease-in-out infinite;
}

.trust-fa {
  font-size: 1.75rem;
  color: var(--color-sky);
}

.trust-card:nth-child(2) .trust-card__icon {
  animation-delay: 0.5s;
}

.trust-card:nth-child(2) .trust-fa {
  color: var(--color-mint);
}

.trust-card:nth-child(3) .trust-card__icon {
  animation-delay: 1s;
}

.trust-card:nth-child(3) .trust-fa {
  color: var(--color-lime);
}

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

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

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

.atelier {
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 900px) {
  .atelier {
    grid-template-columns: minmax(0, 11rem) minmax(0, 1fr);
    align-items: start;
  }
}

.atelier__tabs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

@media (min-width: 900px) {
  .atelier__tabs {
    flex-direction: column;
    position: sticky;
    top: calc(var(--header-h) + var(--space-md));
  }
}

.atelier__tab {
  font-family: inherit;
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(22, 26, 36, 0.85);
  color: var(--color-text-muted);
  cursor: pointer;
  text-align: left;
  transition: color var(--transition-fast), border-color var(--transition-base), background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-base);
}

.atelier__tab:hover {
  color: var(--color-text);
  border-color: rgba(212, 175, 55, 0.45);
  transform: translateX(2px);
}

.atelier__tab[aria-selected="true"] {
  color: var(--color-base);
  background: linear-gradient(135deg, #f4e4bc, var(--color-mint));
  border-color: transparent;
  box-shadow: 0 12px 36px rgba(46, 230, 198, 0.25);
}

.atelier__panel-wrap {
  position: relative;
  min-height: 18rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: linear-gradient(155deg, rgba(24, 28, 40, 0.95), rgba(12, 14, 20, 0.98));
  padding: var(--space-lg);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 24px 60px rgba(0, 0, 0, 0.35);
}

.atelier__panel-wrap::before {
  content: "";
  position: absolute;
  width: 200%;
  height: 200%;
  top: -50%;
  left: -50%;
  background: conic-gradient(from 120deg, transparent 0deg, rgba(108, 59, 255, 0.07) 60deg, transparent 120deg, rgba(46, 230, 198, 0.06) 200deg, transparent 280deg);
  animation: atelier-spin 28s linear infinite;
  pointer-events: none;
}

@keyframes atelier-spin {
  to {
    transform: rotate(360deg);
  }
}

.atelier__panel {
  position: relative;
  z-index: 1;
  display: none;
  animation: atelier-enter 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.atelier__panel.is-active {
  display: block;
}

@keyframes atelier-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.atelier__panel h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-lg);
  color: #f4e4bc;
}

.atelier__panel p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
  max-width: 40rem;
}

.atelier__diagram {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-sm);
  margin-top: var(--space-lg);
  max-width: 22rem;
}

.atelier__node {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  border: 1px solid rgba(58, 176, 255, 0.25);
  background: linear-gradient(145deg, rgba(108, 59, 255, 0.2), rgba(15, 17, 24, 0.9));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  color: var(--color-mint);
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.atelier__panel.is-active .atelier__node {
  animation: node-pop 0.5s ease backwards;
}

.atelier__panel.is-active .atelier__node:nth-child(1) {
  animation-delay: 0.05s;
}

.atelier__panel.is-active .atelier__node:nth-child(2) {
  animation-delay: 0.12s;
}

.atelier__panel.is-active .atelier__node:nth-child(3) {
  animation-delay: 0.19s;
}

.atelier__panel.is-active .atelier__node:nth-child(4) {
  animation-delay: 0.26s;
}

@keyframes node-pop {
  from {
    opacity: 0;
    transform: scale(0.85);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.atelier__node:hover {
  transform: translateY(-4px) scale(1.03);
  border-color: rgba(199, 255, 74, 0.5);
  box-shadow: 0 0 20px rgba(108, 59, 255, 0.35);
}

.specs-list {
  display: grid;
  gap: var(--space-sm);
  max-width: 40rem;
}

.specs-list dt {
  font-weight: var(--fw-bold);
  color: var(--color-mint);
  margin-top: var(--space-md);
}

.specs-list dt:first-child {
  margin-top: 0;
}

.specs-list dd {
  margin: 0;
  color: var(--color-text-muted);
}

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

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

.benefit-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(46, 230, 198, 0.08), rgba(15, 17, 24, 0.9));
  transition: transform var(--transition-base);
}

.benefit-card:hover {
  transform: translateY(-3px);
}

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

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

.prose-block {
  max-width: 48rem;
  color: var(--color-text-muted);
}

.prose-block p {
  margin: 0 0 var(--space-md);
}

.cta-band {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(120deg, rgba(108, 59, 255, 0.25), rgba(255, 111, 97, 0.15));
}

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

.cta-band p {
  margin: 0 0 var(--space-lg);
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.steps-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  max-width: 40rem;
}

.steps-list li {
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-muted);
}

.steps-list li::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-full);
  background: var(--color-violet);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ingredient-table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--fs-sm);
}

.ingredient-table th,
.ingredient-table td {
  padding: var(--space-sm) var(--space-md);
  text-align: left;
  border-bottom: 1px solid var(--glass-border);
}

.ingredient-table th {
  color: var(--color-lime);
  font-weight: var(--fw-bold);
}

.ingredient-table td {
  color: var(--color-text-muted);
}

.ingredient-table-note {
  margin: var(--space-md) 0 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.55;
  max-width: 42rem;
}

.hero-lux-price-note {
  margin: var(--space-sm) 0 0;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
  max-width: 22rem;
}

.order-card-note {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.5;
}

.compliance-panel {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(15, 17, 24, 0.65);
  max-width: 48rem;
}

.compliance-panel p {
  margin: 0 0 var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  line-height: 1.65;
}

.compliance-panel p:last-child {
  margin-bottom: 0;
}

.compliance-panel strong {
  color: var(--color-text);
  font-weight: var(--fw-medium);
}

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

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

.review-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--color-surface);
  transition: border-color var(--transition-base);
}

.review-card:hover {
  border-color: rgba(58, 176, 255, 0.4);
}

.review-card blockquote {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-style: normal;
}

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

.faq-list details {
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  margin-bottom: var(--space-sm);
  background: var(--color-surface);
  transition: border-color var(--transition-fast);
}

.faq-list details[open] {
  border-color: var(--color-mint);
}

.faq-list summary {
  font-weight: var(--fw-bold);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list details p {
  margin: var(--space-sm) 0 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.disclaimer-box {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px dashed var(--glass-border);
  background: rgba(15, 17, 24, 0.6);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.disclaimer-box strong {
  color: var(--color-text);
}

.site-footer {
  padding: var(--space-xl) var(--space-md);
  border-top: 1px solid var(--glass-border);
  background: var(--color-surface);
}

.footer-inner {
  max-width: 72rem;
  margin: 0 auto;
}

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

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand {
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

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

.footer-links li {
  margin-bottom: var(--space-xs);
}

.footer-links a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.footer-links a:hover {
  color: var(--color-mint);
}

.footer-legal {
  margin-top: var(--space-xl);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.footer-ads-disclaimer {
  margin-bottom: var(--space-md);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(108, 59, 255, 0.12);
  border: 1px solid var(--glass-border);
  line-height: 1.65;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: var(--space-md);
  transform: translateY(110%);
  transition: transform var(--transition-base);
}

.cookie-banner.is-visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: 56rem;
  margin: 0 auto;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: var(--shadow-md);
}

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

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

.cookie-modal-lead {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}

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

.footer-ads-disclaimer-text {
  margin: 0;
}

.footer-copy {
  margin: 0;
}

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

.policy-footer-nav a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--fs-sm);
}

.policy-footer-nav a:hover {
  color: var(--color-mint);
}

.ingredient-card:focus {
  outline: 2px solid var(--color-lime);
  outline-offset: 3px;
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(10, 12, 18, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-dialog {
  width: 100%;
  max-width: 28rem;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  transform: scale(0.94);
  transition: transform var(--transition-base);
}

.modal-overlay.is-open .modal-dialog {
  transform: scale(1);
}

.modal-dialog h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-lg);
}

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-sm) 0;
  border-bottom: 1px solid var(--glass-border);
  font-size: var(--fs-sm);
}

.cookie-toggle-row:last-of-type {
  border-bottom: none;
}

.switch {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  flex-shrink: 0;
}

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

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

.switch-slider::before {
  content: "";
  position: absolute;
  height: 1.1rem;
  width: 1.1rem;
  left: 3px;
  bottom: 2px;
  background: var(--color-text-muted);
  border-radius: 50%;
  transition: transform var(--transition-fast), background var(--transition-fast);
}

.switch input:checked + .switch-slider {
  background: rgba(108, 59, 255, 0.5);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(1.35rem);
  background: var(--color-lime);
}

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

.modal-close {
  margin-top: var(--space-lg);
  width: 100%;
}

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

.policy-page .section-inner {
  max-width: 48rem;
}

.policy-page h1 {
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-md);
}

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

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

.policy-page ul {
  padding-left: 1.25rem;
}

.policy-contact {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--color-surface);
}

.policy-contact h2 {
  margin-top: 0;
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

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

.thankyou-main h1 {
  font-size: var(--fs-xl);
  margin: 0 0 var(--space-md);
}

.thankyou-main p {
  color: var(--color-text-muted);
  max-width: 32rem;
  margin: 0 auto var(--space-lg);
}

.table-scroll {
  overflow-x: auto;
}

.footer-col-title {
  margin: 0 0 var(--space-sm);
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
}

.footer-address {
  margin: 0;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  max-width: 28rem;
}

.page-luxury {
  background: radial-gradient(ellipse 110% 70% at 50% -15%, rgba(212, 175, 55, 0.09), transparent 52%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(108, 59, 255, 0.1), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 60%, rgba(46, 230, 198, 0.06), transparent 50%),
    var(--lux-ink);
  color: #e8e4dc;
}

.page-luxury .site-header {
  border-bottom-color: rgba(212, 175, 55, 0.18);
  background: rgba(10, 12, 16, 0.88);
}

.page-luxury .brand {
  color: var(--lux-gold-soft);
  letter-spacing: 0.02em;
}

.page-luxury .burger-lux {
  border-color: rgba(212, 175, 55, 0.4);
}

.page-luxury .site-nav--desktop a {
  color: #c4bfb5;
}

.page-luxury .site-footer {
  background: #07080c;
  border-top-color: rgba(212, 175, 55, 0.15);
}

.page-luxury .cookie-inner {
  border-color: rgba(212, 175, 55, 0.22);
  background: rgba(12, 14, 18, 0.92);
}

.lux-main {
  padding: var(--space-xl) var(--space-md) var(--space-2xl);
}

.lux-frame {
  max-width: 48rem;
  margin: 0 auto;
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(165deg, rgba(20, 22, 30, 0.96), rgba(10, 11, 16, 0.99));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
}

.lux-frame::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(212, 175, 55, 0.08);
  border-radius: calc(var(--radius-xl) - 8px);
  pointer-events: none;
}

.lux-doc-head {
  text-align: center;
  margin-bottom: var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.lux-kicker {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--lux-gold);
}

.lux-doc-title {
  margin: 0 0 var(--space-md);
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 5vw, 2.5rem);
  font-weight: 400;
  color: var(--lux-ivory);
  line-height: 1.2;
}

.lux-doc-meta {
  margin: 0;
  font-size: var(--fs-sm);
  color: #a39e93;
}

.js-doc-date {
  color: var(--lux-gold-soft);
  font-weight: var(--fw-medium);
}

.lux-toc {
  margin-bottom: var(--space-xl);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(212, 175, 55, 0.06);
  border: 1px solid rgba(212, 175, 55, 0.12);
}

.lux-toc-title {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--lux-gold);
}

.lux-toc-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.lux-toc-list a {
  color: #c9c3b8;
  text-decoration: none;
  font-size: var(--fs-sm);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.lux-toc-list a:hover {
  color: var(--lux-gold-soft);
  padding-left: 4px;
}

.lux-prose h2 {
  margin: var(--space-xl) 0 var(--space-md);
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  font-weight: 400;
  color: var(--lux-gold-soft);
  padding-left: var(--space-md);
  border-left: 3px solid var(--lux-gold);
}

.lux-prose h2:first-of-type {
  margin-top: 0;
}

.lux-prose p,
.lux-prose li {
  color: #b8b3a8;
  font-size: var(--fs-sm);
  line-height: 1.75;
}

.lux-prose p {
  margin: 0 0 var(--space-md);
}

.lux-prose ul {
  margin: 0 0 var(--space-md);
  padding-left: 1.35rem;
}

.lux-prose strong {
  color: var(--lux-ivory);
  font-weight: var(--fw-medium);
}

.lux-divider {
  height: 1px;
  margin: var(--space-xl) 0;
  background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.35), transparent);
  border: none;
}

.lux-card {
  margin-top: var(--space-xl);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(212, 175, 55, 0.2);
  background: rgba(8, 10, 14, 0.6);
}

.lux-card h2 {
  margin: 0 0 var(--space-sm);
  font-family: var(--font-serif);
  font-size: var(--fs-md);
  color: var(--lux-gold-soft);
  border: none;
  padding: 0;
}

.lux-card p {
  margin: 0;
}

.page-luxury .thankyou-main {
  min-height: 75vh;
  padding: var(--space-xl) var(--space-md);
}

.lux-thank {
  max-width: 40rem;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(212, 175, 55, 0.25);
  background: linear-gradient(160deg, rgba(22, 24, 32, 0.95), rgba(8, 9, 12, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.lux-thank::after {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  width: 120%;
  height: 80%;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 65%);
  pointer-events: none;
}

.lux-thank__inner {
  position: relative;
  z-index: 1;
}

.lux-thank__mark {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid var(--lux-gold);
  color: var(--lux-gold-soft);
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  animation: thank-pulse 3s ease-in-out infinite;
}

@keyframes thank-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(212, 175, 55, 0.35);
  }
  50% {
    box-shadow: 0 0 0 12px rgba(212, 175, 55, 0);
  }
}

.lux-thank__subdate {
  margin-bottom: var(--space-md);
}

.lux-thank h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--lux-ivory);
  margin: 0 0 var(--space-md);
}

.lux-thank p {
  color: #b8b3a8;
  font-size: var(--fs-sm);
  line-height: 1.75;
  margin: 0 0 var(--space-md);
}

.lux-thank .btn-primary {
  background: linear-gradient(135deg, #c9a227, var(--lux-gold));
  color: #1a1a12;
  box-shadow: 0 12px 40px rgba(212, 175, 55, 0.25);
}

.faq-list--shine details {
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq-list--shine details[open] {
  transform: scale(1.01);
  box-shadow: 0 12px 40px rgba(108, 59, 255, 0.12);
}

.interactive-band {
  position: relative;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: rgba(22, 26, 36, 0.5);
  overflow: hidden;
}

.interactive-band::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 40%, rgba(58, 176, 255, 0.06) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: band-shine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes band-shine {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: -100% 0;
  }
}

.interactive-band > * {
  position: relative;
  z-index: 1;
}

@media (max-width: 360px) {
  :root {
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2.25rem;
    --space-2xl: 3rem;
    --header-h: 3.85rem;
  }

  .header-inner {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

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

  .hero-lux-title__line {
    font-size: clamp(2rem, 9vw, 3.25rem);
  }

  .hero-lux-title__line--accent {
    font-size: clamp(1.1rem, 4.5vw, 1.65rem);
  }

  .hero-lux-visual-shell {
    min-height: min(58vw, 280px);
  }

  .hero-lux-scroll {
    letter-spacing: 0.18em;
  }

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

  .bento-item {
    padding: var(--space-md);
  }

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

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

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

  .lux-frame {
    padding: var(--space-md);
  }

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

  .atelier__tab {
    font-size: 0.7rem;
    padding: var(--space-xs) var(--space-sm);
    letter-spacing: 0.04em;
  }

  .atelier__panel-wrap {
    padding: var(--space-md);
    min-height: auto;
  }

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

  .ingredient-table th,
  .ingredient-table td {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.75rem;
  }
}

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

  .brand {
    font-size: 0.8rem;
    max-width: 9.5rem;
    line-height: 1.25;
  }

  .burger-lux {
    width: 2.65rem;
    height: 2.65rem;
    flex-shrink: 0;
  }

  .burger-lux__bar {
    width: 0.95rem;
  }

  .burger-lux[aria-expanded="true"] .burger-lux__bar:nth-child(1),
  .burger-lux[aria-expanded="true"] .burger-lux__bar:nth-child(3) {
    width: 1.05rem;
  }

  .nav-drawer {
    width: 100%;
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .nav-drawer__link {
    font-size: var(--fs-sm);
    padding: var(--space-xs) var(--space-sm);
  }

  .price-row {
    flex-wrap: wrap;
    gap: var(--space-xs);
  }

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

  .hero-badge--lux {
    width: 56px;
    height: 56px;
    right: 4%;
  }

  .hero-lux-ring--outer {
    width: min(78vw, 300px);
    height: min(78vw, 300px);
  }

  .hero-lux-ring--inner {
    width: min(64vw, 240px);
    height: min(64vw, 240px);
  }

  .scroll-progress {
    height: 2px;
  }

  .lux-doc-title {
    font-size: 1.5rem;
  }

  .lux-toc-list a {
    font-size: var(--fs-xs);
    word-break: break-word;
  }

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