:root {
  --color-fuchsia: #ff3baa;
  --color-teal: #00f3d6;
  --color-lime: #cfff21;
  --color-violet: #7d00ff;
  --color-sky: #33bfff;
  --color-base-dark: #06060a;
  --color-surface: #0f0f18;
  --color-surface-2: #161622;
  --color-surface-glass: rgba(22, 22, 34, 0.55);
  --color-text: #f4f4f8;
  --color-text-muted: #a8a8bc;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-success: #00f3d6;
  --color-error: #ff3baa;
  --font-family: "DM Sans", system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1rem;
  --font-size-md: 1.125rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.75rem;
  --font-size-hero: clamp(2.25rem, 5vw, 3.75rem);
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-bold: 700;
  --line-height-tight: 1.15;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.65;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.45);
  --shadow-glow-fuchsia: 0 0 40px rgba(255, 59, 170, 0.45);
  --shadow-glow-teal: 0 0 36px rgba(0, 243, 214, 0.35);
  --shadow-glow-violet: 0 0 42px rgba(125, 0, 255, 0.4);
  --shadow-glow-lime: 0 0 28px rgba(207, 255, 33, 0.35);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-section: clamp(3rem, 8vw, 5.5rem);
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s ease;
  --transition-slow: 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  --header-height: 72px;
  --max-width: 1180px;
  --lux-gold: #c9a962;
  --lux-gold-soft: rgba(201, 169, 98, 0.35);
  --lux-ink: #050508;
  --lux-cream: #f5f0e8;
}

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

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

body {
  margin: 0;
  font-family: var(--font-family);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-base-dark);
  background-image:
    radial-gradient(ellipse 80% 50% at 50% -20%, rgba(125, 0, 255, 0.35), transparent),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(255, 59, 170, 0.2), transparent),
    radial-gradient(ellipse 50% 30% at 0% 30%, rgba(0, 243, 214, 0.12), transparent);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

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

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

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

.container {
  width: min(100% - var(--space-xl), var(--max-width));
  margin-inline: auto;
}

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

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: var(--space-lg);
  width: 100%;
}

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

.brand span {
  background: linear-gradient(90deg, var(--color-fuchsia), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-toggle {
  display: none;
  position: relative;
  z-index: 920;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  width: 48px;
  height: 48px;
  padding: 0;
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.12), rgba(22, 22, 34, 0.9));
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.nav-toggle:hover {
  border-color: rgba(0, 243, 214, 0.45);
  box-shadow: 0 0 24px rgba(255, 59, 170, 0.2);
}

.nav-toggle--luxury .burger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-lime), var(--color-teal));
  border-radius: 2px;
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.25s ease, width 0.25s ease;
}

.nav-toggle--luxury .burger-line:nth-child(2) {
  margin: 6px 0;
}

.nav-toggle--luxury.is-active .burger-line:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle--luxury.is-active .burger-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

.nav-toggle--luxury.is-active .burger-line:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

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

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

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

main {
  overflow-x: hidden;
}

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

.section-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-sm);
  letter-spacing: -0.03em;
}

.section-lead {
  margin: 0 0 var(--space-xl);
  color: var(--color-text-muted);
  max-width: 42ch;
  line-height: var(--line-height-relaxed);
}

.hero {
  padding-block: var(--space-3xl) var(--space-section);
  position: relative;
}

.hero-cinema-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-2xl);
  align-items: center;
  position: relative;
  z-index: 2;
}

@media (min-width: 900px) {
  .hero-cinema-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.95fr);
    align-items: center;
  }

  .hero-cinema-grid .hero-form-span {
    grid-column: 1 / -1;
  }
}

@media (min-width: 1180px) {
  .hero-cinema-grid {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 380px) minmax(300px, 360px);
    gap: var(--space-xl);
    align-items: stretch;
  }

  .hero-cinema-grid .hero-form-span {
    grid-column: auto;
  }
}

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

@media (min-width: 1180px) {
  .hero-stage {
    min-height: 440px;
  }
}

.hero-ring-stack {
  position: relative;
  width: min(88vw, 400px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.hero-ring--a {
  inset: 0;
  border-color: rgba(0, 243, 214, 0.15);
  border-top-color: rgba(0, 243, 214, 0.55);
  border-right-color: rgba(51, 191, 255, 0.2);
  animation: hero-ring-spin 22s linear infinite;
}

.hero-ring--b {
  inset: 8%;
  border-color: rgba(255, 59, 170, 0.12);
  border-bottom-color: rgba(255, 59, 170, 0.45);
  animation: hero-ring-spin 18s linear infinite reverse;
}

.hero-ring--c {
  inset: 16%;
  border-color: rgba(125, 0, 255, 0.18);
  border-left-color: rgba(207, 255, 33, 0.35);
  animation: hero-ring-spin 14s linear infinite;
}

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

.hero-glow-core {
  inset: 18% 12%;
  filter: blur(36px);
  z-index: 0;
}

.hero-figure-stage {
  position: relative;
  z-index: 2;
  margin: 0;
  width: 55%;
  max-width: 220px;
  animation: hero-product-tilt 10s ease-in-out infinite;
}

@media (min-width: 600px) {
  .hero-figure-stage {
    width: 58%;
    max-width: 260px;
  }
}

.hero-figure-stage img {
  filter: drop-shadow(0 0 32px rgba(125, 0, 255, 0.45)) drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), filter 0.4s ease;
}

.hero-figure-stage:hover img {
  transform: scale(1.04) translateY(-6px);
  filter: drop-shadow(0 0 48px rgba(0, 243, 214, 0.35)) drop-shadow(0 24px 50px rgba(0, 0, 0, 0.55));
}

@keyframes hero-product-tilt {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg);
  }

  50% {
    transform: translateY(-12px) rotate(1.5deg);
  }
}

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

.hero-chip {
  position: absolute;
  padding: 0.35rem 0.75rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(244, 244, 248, 0.88);
  background: rgba(12, 12, 20, 0.75);
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
  animation: hero-chip-drift 7s ease-in-out infinite;
}

.hero-chip--1 {
  top: 8%;
  right: 0;
  animation-delay: 0s;
}

.hero-chip--2 {
  bottom: 22%;
  left: -4%;
  animation-delay: -2.3s;
}

.hero-chip--3 {
  top: 38%;
  right: -6%;
  animation-delay: -4.1s;
}

@keyframes hero-chip-drift {
  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(6px, -10px);
  }
}

.hero-glow {
  position: absolute;
  background: radial-gradient(circle, rgba(125, 0, 255, 0.5), rgba(255, 59, 170, 0.12), transparent 70%);
  pointer-events: none;
}

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

.stars {
  display: flex;
  gap: 2px;
  color: var(--color-lime);
  font-size: var(--font-size-lg);
  letter-spacing: 2px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-base);
}

.badge-pill:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
  box-shadow: var(--shadow-glow-teal);
}

.hero-display-title {
  font-size: var(--font-size-hero);
  font-weight: var(--font-weight-bold);
  line-height: 1.05;
  margin: 0 0 var(--space-lg);
  letter-spacing: -0.04em;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

.hero-title-line--sub {
  font-size: clamp(1.15rem, 3.5vw, 1.65rem);
  font-weight: var(--font-weight-medium);
  letter-spacing: 0.02em;
  color: var(--color-text-muted);
  margin-top: 0.35em;
}

.hero-title-inner {
  display: inline-block;
  animation: hero-line-rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line:nth-child(1) .hero-title-inner {
  animation-delay: 0.1s;
}

.hero-title-line:nth-child(2) .hero-title-inner {
  animation-delay: 0.22s;
}

.hero-title-line:nth-child(3) .hero-title-inner {
  animation-delay: 0.34s;
}

@keyframes hero-line-rise {
  from {
    opacity: 0;
    transform: translate3d(0, 108%, 0) rotateX(-12deg);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) rotateX(0);
  }
}

.hero-gradient-text {
  background: linear-gradient(120deg, var(--color-fuchsia), var(--color-violet), var(--color-teal), var(--color-lime));
  background-size: 280% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-gradient-flow 6s ease infinite;
}

@keyframes hero-gradient-flow {
  0%,
  100% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }
}

.hero-lead {
  font-size: var(--font-size-md);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  margin: 0 0 var(--space-lg);
  max-width: 48ch;
}

.hero-lead-reveal {
  animation: hero-fade-slide 1s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

@keyframes hero-fade-slide {
  from {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
    filter: blur(6px);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.hero-kicker {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-xs);
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero-kicker-glow {
  display: inline-block;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: linear-gradient(120deg, rgba(125, 0, 255, 0.15), rgba(0, 243, 214, 0.08));
  animation: hero-kicker-pulse 4s ease-in-out infinite, hero-border-shimmer 3.5s linear infinite;
  background-size: 200% 100%;
}

@keyframes hero-kicker-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 243, 214, 0.12);
  }

  50% {
    box-shadow: 0 0 24px 2px rgba(255, 59, 170, 0.15);
  }
}

@keyframes hero-border-shimmer {
  0% {
    background-position: 0% 50%;
  }

  100% {
    background-position: 200% 50%;
  }
}

.hero-trust {
  animation: hero-fade-slide 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

.hero-price-row {
  animation: hero-fade-slide 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.price-current--live {
  animation: hero-price-glow 2.8s ease-in-out infinite;
}

@keyframes hero-price-glow {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }

  50% {
    text-shadow: 0 0 20px rgba(207, 255, 33, 0.35);
  }
}

.hero-highlights li {
  opacity: 0;
  animation: hero-hl-enter 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-highlights li:nth-child(1) {
  animation-delay: 0.7s;
}

.hero-highlights li:nth-child(2) {
  animation-delay: 0.82s;
}

.hero-highlights li:nth-child(3) {
  animation-delay: 0.94s;
}

@keyframes hero-hl-enter {
  from {
    opacity: 0;
    transform: translate3d(-16px, 0, 0);
    border-left-color: transparent;
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-highlights .hero-hl-text {
  position: relative;
  padding-left: var(--space-sm);
  border-left: 2px solid rgba(0, 243, 214, 0.35);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.hero-highlights li:hover .hero-hl-text {
  border-left-color: var(--color-fuchsia);
  transform: translateX(4px);
}

.hero-highlights li::before {
  display: none;
}

.hero-form-heading {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-md);
}

.hero-form-card {
  animation: hero-form-enter 1s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
  position: relative;
  overflow: hidden;
}

.hero-form-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.04), transparent);
  animation: hero-form-sheen 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-form-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0) scale(1);
  }
}

@keyframes hero-form-sheen {
  0%,
  70% {
    left: -100%;
  }

  85% {
    left: 130%;
  }

  100% {
    left: 130%;
  }
}

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

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

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

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

.highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.4em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-teal), var(--color-sky));
  flex-shrink: 0;
}

.card-glass {
  background: var(--color-surface-glass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-md);
}

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

.form-order input,
.form-order textarea {
  width: 100%;
  padding: var(--space-md);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.25);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

.field-error {
  font-size: var(--font-size-xs);
  color: var(--color-error);
  margin-top: calc(-1 * var(--space-sm));
  margin-bottom: var(--space-sm);
  min-height: 1.2em;
}

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

.checkbox-row input {
  width: auto;
  margin: 0;
  accent-color: var(--color-fuchsia);
}

.checkbox-row label {
  margin: 0;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

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

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

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

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

.btn-secondary:hover {
  background: rgba(0, 243, 214, 0.1);
  box-shadow: var(--shadow-glow-teal);
}

.btn-magnetic {
  position: relative;
  will-change: transform;
}

.social-proof {
  background: var(--color-surface);
  border-block: 1px solid var(--color-border);
}

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

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

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

.proof-stat strong {
  display: block;
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(90deg, var(--color-lime), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.proof-label {
  display: block;
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.08em;
  color: var(--color-teal);
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
}

.ads-price-note {
  margin: 0 0 var(--space-lg);
  max-width: 52ch;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

.ads-form-notice {
  margin: 0 0 var(--space-lg);
  padding: var(--space-md);
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
  border: 1px solid rgba(0, 243, 214, 0.25);
  border-radius: var(--radius-md);
  background: rgba(0, 243, 214, 0.06);
}

.ads-section-note {
  margin: 0 auto var(--space-lg);
  max-width: 62ch;
  text-align: center;
  font-size: var(--font-size-xs);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-muted);
}

.review-context {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-teal);
}

.proof-stat span {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.review-mini {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

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

.review-mini p {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.review-mini cite {
  font-size: var(--font-size-xs);
  font-style: normal;
  color: var(--color-text);
}

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

@media (min-width: 720px) {
  .bento-categories {
    grid-template-rows: repeat(2, minmax(120px, auto));
  }

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

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

.bento-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-border);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-fast);
}

.bento-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent, rgba(255, 59, 170, 0.06));
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.bento-card:hover {
  transform: translateY(-6px);
  border-color: rgba(51, 191, 255, 0.35);
  box-shadow: var(--shadow-glow-teal);
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-lg);
}

.bento-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.bento-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  font-size: var(--font-size-xl);
}

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

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

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

  .benefit-span-3 {
    grid-column: span 3;
  }

  .benefit-span-4 {
    grid-column: span 4;
  }

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

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

.ingredient-card {
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  padding: var(--space-lg);
  cursor: default;
  transition: border-color var(--transition-base), transform var(--transition-base);
  position: relative;
  overflow: hidden;
}

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

.ingredient-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-base);
  color: var(--color-lime);
}

.ingredient-card .ingredient-summary {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.ingredient-card .ingredient-detail {
  position: absolute;
  inset: 0;
  padding: var(--space-lg);
  background: rgba(6, 6, 10, 0.92);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition-base);
}

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

.ingredient-detail p {
  margin: 0;
  font-size: var(--font-size-sm);
  line-height: var(--line-height-relaxed);
  color: var(--color-text);
}

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

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

.trust-item {
  text-align: center;
  padding: var(--space-xl);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: box-shadow var(--transition-slow), border-color var(--transition-base);
}

.trust-item:hover {
  border-color: var(--color-teal);
  box-shadow: var(--shadow-glow-teal);
}

.trust-item svg {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: block;
}

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

.trust-item p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.carousel-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

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

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

.carousel-slide figure {
  margin: 0;
  transition: transform var(--transition-base), filter var(--transition-base);
}

.carousel-slide img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-glow-fuchsia);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.carousel-slide.is-active figure {
  transform: scale(1.03);
}

.carousel-slide img:hover {
  box-shadow: var(--shadow-glow-lime), var(--shadow-lg);
}

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

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

.carousel-dot.is-active {
  opacity: 1;
  background: var(--color-fuchsia);
  transform: scale(1.2);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: var(--color-surface-glass);
  backdrop-filter: blur(8px);
  color: var(--color-text);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.carousel-arrow:hover {
  border-color: var(--color-lime);
  box-shadow: var(--shadow-glow-lime);
}

.carousel-arrow.prev {
  left: var(--space-md);
}

.carousel-arrow.next {
  right: var(--space-md);
}

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

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

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

.product-overview-grid figure {
  margin: 0;
}

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

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

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

.spec-card {
  padding: var(--space-lg);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  transition: border-color var(--transition-base);
}

.spec-card:hover {
  border-color: var(--color-sky);
}

.spec-card .icon {
  font-size: var(--font-size-xl);
  line-height: 1;
}

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

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

.steps-grid {
  display: grid;
  gap: var(--space-lg);
  counter-reset: step;
}

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

.step-card {
  padding: var(--space-xl);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  position: relative;
  padding-top: calc(var(--space-xl) + 28px);
  transition: transform var(--transition-base);
}

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

.step-card::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  top: var(--space-lg);
  left: var(--space-lg);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--color-violet), var(--color-fuchsia));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
}

.step-card h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-md);
}

.step-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

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

.ingredient-simple {
  padding: var(--space-lg);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.ingredient-simple h3 {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-base);
  color: var(--color-teal);
}

.ingredient-simple p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.instructions-ol {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-md);
  counter-reset: inst;
}

.instructions-ol li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-lg);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.instructions-ol li::before {
  counter-increment: inst;
  content: counter(inst);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background: rgba(207, 255, 33, 0.15);
  color: var(--color-lime);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
}

.instructions-ol strong {
  display: block;
  margin-bottom: var(--space-xs);
}

.instructions-ol p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.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-xl);
  background: var(--color-surface-2);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.review-card:hover {
  border-color: var(--color-fuchsia);
  box-shadow: var(--shadow-glow-fuchsia);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: var(--color-surface-2);
  overflow: hidden;
}

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

.faq-item button:hover {
  background: rgba(255, 255, 255, 0.03);
}

.faq-item button::after {
  content: "+";
  font-size: var(--font-size-xl);
  color: var(--color-teal);
  transition: transform var(--transition-base);
}

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

.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-slow);
}

.faq-panel-inner {
  padding: 0 var(--space-lg) var(--space-lg);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

.cta-final {
  text-align: center;
  padding-block: var(--space-3xl);
  background: linear-gradient(180deg, transparent, rgba(125, 0, 255, 0.12));
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
}

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

.cta-final p {
  margin: 0 auto var(--space-xl);
  max-width: 52ch;
  color: var(--color-text-muted);
}

.cta-final .cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
}

.disclaimer-block {
  padding: var(--space-xl);
  background: rgba(0, 0, 0, 0.35);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

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

.site-footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding-block: var(--space-2xl);
  margin-top: var(--space-section);
}

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

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

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

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

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

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

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

.footer-legal-box {
  margin-top: var(--space-2xl);
  padding: var(--space-lg);
  background: var(--color-surface-2);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 950;
  padding: var(--space-lg);
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
  transform: translateY(110%);
  transition: transform var(--transition-slow);
}

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

.cookie-inner {
  width: min(100%, var(--max-width));
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
}

.cookie-text {
  flex: 1 1 280px;
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

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

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
  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(100%, 520px);
  max-height: 90vh;
  overflow-y: auto;
  background: var(--color-surface-glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

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

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding-block: var(--space-md);
  border-bottom: 1px solid var(--color-border);
}

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

.switch-row p {
  margin: 0;
  font-size: var(--font-size-sm);
}

.switch-row small {
  display: block;
  color: var(--color-text-muted);
  font-size: var(--font-size-xs);
  margin-top: var(--space-xs);
}

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

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

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

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

.switch input:checked + .switch-slider {
  background: rgba(255, 59, 170, 0.35);
  border-color: var(--color-fuchsia);
}

.switch input:checked + .switch-slider::before {
  transform: translate(22px, -50%);
  background: var(--color-fuchsia);
}

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

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

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

.policy-page main.lux-article-wrap {
  padding-block: 0;
}

.policy-page article {
  max-width: 75ch;
}

.policy-page h1 {
  font-size: var(--font-size-2xl);
  margin-bottom: var(--space-lg);
}

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

.policy-page p,
.policy-page li {
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
}

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

.thank-page {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-page h1 {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-md);
}

.thank-page p {
  color: var(--color-text-muted);
  max-width: 48ch;
  margin-inline: auto var(--space-xl);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.1s linear;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

body.menu-open {
  overflow: hidden;
  touch-action: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: flex;
  }

  .site-nav--drawer {
    position: fixed;
    inset: 0;
    top: 0;
    z-index: 910;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-2xl);
    background:
      radial-gradient(ellipse 90% 60% at 50% 0%, rgba(125, 0, 255, 0.25), transparent 55%),
      radial-gradient(ellipse 70% 50% at 100% 100%, rgba(255, 59, 170, 0.12), transparent),
      linear-gradient(165deg, rgba(8, 8, 14, 0.97), rgba(12, 10, 20, 0.99));
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: none;
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.4s ease, visibility 0.4s ease;
  }

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

  .site-nav--drawer ul {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-xs);
    width: min(100%, 320px);
  }

  .site-nav--drawer a {
    display: block;
    padding: var(--space-md) var(--space-lg);
    font-family: "Cormorant Garamond", Georgia, serif;
    font-size: clamp(1.35rem, 5vw, 1.75rem);
    font-weight: 600;
    letter-spacing: 0.04em;
    color: rgba(244, 244, 248, 0.92);
    border: 1px solid transparent;
    border-radius: var(--radius-md);
    transition: border-color var(--transition-base), background var(--transition-base), color var(--transition-fast), transform var(--transition-base);
  }

  .site-nav--drawer a:hover {
    color: var(--color-teal);
    border-color: rgba(201, 169, 98, 0.25);
    background: rgba(255, 255, 255, 0.03);
    transform: translateX(6px);
  }

  .site-nav--drawer li {
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

  .site-nav--drawer.is-open li:nth-child(1) {
    transition-delay: 0.06s;
  }

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

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

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

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

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

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

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

@media (min-width: 901px) {
  .site-nav--drawer {
    position: static;
    display: block;
    min-height: 0;
    padding: 0;
    background: none;
    backdrop-filter: none;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  .site-nav--drawer ul {
    flex-direction: row;
    flex-wrap: wrap;
    width: auto;
    gap: var(--space-md) var(--space-lg);
  }

  .site-nav--drawer a {
    display: inline;
    padding: 0;
    font-family: var(--font-family);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    letter-spacing: normal;
    border: none;
    border-radius: 0;
  }

  .site-nav--drawer a:hover {
    transform: none;
    background: none;
    border-color: transparent;
  }

  .site-nav--drawer li {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.hero--interactive {
  position: relative;
  overflow: hidden;
}

.hero--cinema {
  isolation: isolate;
}

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

.hero-mesh {
  position: absolute;
  inset: -20%;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(51, 191, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(125, 0, 255, 0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: hero-mesh-pan 24s linear infinite;
  mask-image: radial-gradient(ellipse 70% 65% at 50% 45%, black 15%, transparent 70%);
}

@keyframes hero-mesh-pan {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }

  100% {
    transform: translate(-48px, -48px) rotate(0deg);
  }
}

.hero-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-flicker 0.15s steps(2) infinite;
}

@keyframes hero-noise-flicker {
  0% {
    opacity: 0.035;
  }

  100% {
    opacity: 0.055;
  }
}

.hero-beam {
  position: absolute;
  width: 140%;
  height: 2px;
  left: -20%;
  background: linear-gradient(90deg, transparent, rgba(0, 243, 214, 0.25), rgba(255, 59, 170, 0.2), transparent);
  filter: blur(1px);
  animation: hero-beam-sweep 8s ease-in-out infinite;
}

.hero-beam--1 {
  top: 28%;
  transform: rotate(-8deg);
  animation-delay: 0s;
}

.hero-beam--2 {
  top: 62%;
  opacity: 0.7;
  animation: hero-beam-sweep-b 9s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes hero-beam-sweep {
  0%,
  100% {
    opacity: 0.2;
    transform: translateX(-5%) rotate(-8deg);
  }

  50% {
    opacity: 0.55;
    transform: translateX(5%) rotate(-8deg);
  }
}

@keyframes hero-beam-sweep-b {
  0%,
  100% {
    opacity: 0.15;
    transform: translateX(4%) rotate(5deg);
  }

  50% {
    opacity: 0.45;
    transform: translateX(-6%) rotate(5deg);
  }
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-lime);
  box-shadow: 0 0 12px var(--color-teal);
  animation: hero-spark-twinkle 2.5s ease-in-out infinite;
}

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

.hero-spark--2 {
  top: 55%;
  right: 18%;
  animation-delay: -0.8s;
}

.hero-spark--3 {
  bottom: 25%;
  left: 40%;
  animation-delay: -1.6s;
}

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

  50% {
    opacity: 1;
    transform: scale(1);
  }
}

.hero-vignette {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: radial-gradient(ellipse 85% 75% at 50% 42%, transparent 30%, rgba(6, 6, 10, 0.65) 100%);
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: orb-float 14s ease-in-out infinite;
}

.hero-orb--a {
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  background: radial-gradient(circle, rgba(125, 0, 255, 0.55), transparent 70%);
  top: -15%;
  left: -10%;
}

.hero-orb--b {
  width: min(40vw, 300px);
  height: min(40vw, 300px);
  background: radial-gradient(circle, rgba(255, 59, 170, 0.4), transparent 70%);
  bottom: 10%;
  right: -5%;
  animation-delay: -4s;
}

.hero-orb--c {
  width: min(35vw, 260px);
  height: min(35vw, 260px);
  background: radial-gradient(circle, rgba(0, 243, 214, 0.35), transparent 70%);
  top: 40%;
  left: 35%;
  animation-delay: -7s;
}

@keyframes orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(3%, -4%) scale(1.05);
  }

  66% {
    transform: translate(-4%, 3%) scale(0.95);
  }
}

.hero-parallax {
  --px: 0px;
  --py: 0px;
}

.hero-parallax .hero-copy-block {
  transform: translate3d(calc(var(--px) * 1), calc(var(--py) * 0.75), 0);
  transition: transform 0.22s ease-out;
}

.hero-parallax .hero-stage {
  transform: translate3d(calc(var(--px) * -0.72), calc(var(--py) * -0.62), 0);
  transition: transform 0.22s ease-out;
}

.hero-parallax .hero-form-span {
  transform: translate3d(calc(var(--px) * 0.38), calc(var(--py) * 0.28), 0);
  transition: transform 0.22s ease-out;
}

.hero-glow--float {
  animation: glow-pulse 6s ease-in-out infinite;
}

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

  50% {
    opacity: 0.85;
    transform: scale(1.04);
  }
}


.btn-shine {
  position: relative;
  overflow: hidden;
}

.btn-shine::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn-shine:hover::after {
  transform: translateX(100%);
}

.lux-marquee-strip {
  overflow: hidden;
  border-block: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(90deg, rgba(201, 169, 98, 0.06), transparent, rgba(125, 0, 255, 0.08));
  padding-block: var(--space-sm);
}

.lux-marquee-track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 32s linear infinite;
}

.lux-marquee {
  display: flex;
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: var(--space-lg);
  padding-right: var(--space-lg);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 244, 248, 0.55);
}

.lux-marquee-dot {
  color: var(--lux-gold);
  opacity: 0.7;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.atelier-section {
  position: relative;
}

.atelier-shell {
  border: 1px solid rgba(201, 169, 98, 0.22);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(22, 22, 34, 0.85), rgba(8, 8, 14, 0.95));
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.atelier-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
  padding: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(0, 0, 0, 0.2);
}

.atelier-tab {
  flex: 1 1 auto;
  min-width: 0;
  padding: var(--space-sm) var(--space-md);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-md);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--color-text-muted);
  background: transparent;
  border: 1px solid transparent;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: color var(--transition-base), border-color var(--transition-base), background var(--transition-base), box-shadow var(--transition-slow);
}

.atelier-tab:hover {
  color: var(--color-text);
  border-color: rgba(51, 191, 255, 0.25);
}

.atelier-tab.is-active {
  color: var(--lux-cream);
  border-color: var(--lux-gold-soft);
  background: linear-gradient(135deg, rgba(255, 59, 170, 0.12), rgba(125, 0, 255, 0.15));
  box-shadow: 0 0 28px rgba(0, 243, 214, 0.12);
}

.atelier-panels {
  position: relative;
  min-height: 280px;
  padding: var(--space-xl);
}

.atelier-panel {
  display: none;
  animation: atelier-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.atelier-panel.is-active {
  display: block;
}

@keyframes atelier-in {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.atelier-panel-title {
  margin: 0 0 var(--space-md);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 2.35rem);
  font-weight: 600;
  color: var(--color-text);
}

.atelier-copy {
  margin: 0 0 var(--space-lg);
  color: var(--color-text-muted);
  line-height: var(--line-height-relaxed);
  max-width: 62ch;
}

.atelier-pillars {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-sm);
}

.atelier-pillars li {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: border-color var(--transition-base), transform var(--transition-base);
}

.atelier-pillars li:hover {
  border-color: rgba(0, 243, 214, 0.25);
  transform: translateX(4px);
}

.atelier-pillar-key {
  font-weight: var(--font-weight-medium);
  color: var(--color-teal);
}

.atelier-pillar-val {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.proof-stat strong {
  font-variant-numeric: tabular-nums;
}

.reveal-stagger-wrap .reveal:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger-wrap .reveal:nth-child(2) {
  transition-delay: 0.1s;
}

.reveal-stagger-wrap .reveal:nth-child(3) {
  transition-delay: 0.15s;
}

.reveal-stagger-wrap .reveal:nth-child(4) {
  transition-delay: 0.2s;
}

.reveal-stagger-wrap .reveal:nth-child(5) {
  transition-delay: 0.25s;
}

.reveal-stagger-wrap .reveal:nth-child(6) {
  transition-delay: 0.3s;
}

.reveal-stagger-wrap .reveal:nth-child(7) {
  transition-delay: 0.35s;
}

.reveal-stagger-wrap .reveal:nth-child(8) {
  transition-delay: 0.4s;
}

.luxury-doc {
  background: var(--lux-ink);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(125, 0, 255, 0.22), transparent),
    radial-gradient(ellipse 60% 40% at 100% 20%, rgba(201, 169, 98, 0.08), transparent);
  min-height: 100vh;
}

.lux-doc-frame {
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent);
}

.lux-doc-ribbon {
  text-align: center;
  padding: var(--space-sm) var(--space-md);
  font-size: var(--font-size-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.85);
}

.lux-article-wrap {
  padding-block: var(--space-2xl) var(--space-3xl);
}

.lux-article {
  max-width: 52rem;
  margin-inline: auto;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 98, 0.15);
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.92), rgba(6, 6, 10, 0.98));
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
}

.lux-article h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  margin: 0 0 var(--space-md);
  background: linear-gradient(135deg, var(--lux-cream), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.lux-doc-meta {
  margin: 0 0 var(--space-xl);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: var(--font-size-sm);
  color: rgba(244, 244, 248, 0.65);
}

.lux-doc-meta time {
  color: var(--lux-gold);
  font-weight: var(--font-weight-medium);
}

.lux-article h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: var(--font-size-xl);
  font-weight: 600;
  margin-top: var(--space-xl);
  margin-bottom: var(--space-md);
  color: rgba(245, 240, 232, 0.95);
}

.lux-article p,
.lux-article li {
  color: rgba(168, 168, 188, 0.95);
  line-height: 1.75;
}

.lux-article ul,
.lux-article ol {
  padding-left: var(--space-lg);
  margin: 0 0 var(--space-md);
}

.lux-article li {
  margin-bottom: var(--space-sm);
}

.lux-article a {
  color: var(--color-teal);
  border-bottom: 1px solid rgba(0, 243, 214, 0.25);
}

.lux-article a:hover {
  color: var(--lux-gold);
  border-bottom-color: var(--lux-gold);
}

.lux-callout {
  margin: var(--space-lg) 0;
  padding: var(--space-lg);
  border-left: 3px solid var(--lux-gold);
  background: rgba(201, 169, 98, 0.06);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.thank-lux {
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
}

.thank-lux-inner {
  text-align: center;
  max-width: 40rem;
  padding: var(--space-2xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: linear-gradient(160deg, rgba(22, 22, 34, 0.9), rgba(6, 6, 10, 0.98));
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.55);
}

.thank-lux-inner h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.25rem, 6vw, 3.25rem);
  font-weight: 600;
  margin: 0 0 var(--space-md);
  background: linear-gradient(135deg, var(--lux-cream), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.thank-lux-inner p {
  color: rgba(168, 168, 188, 0.95);
  line-height: 1.75;
  margin: 0 0 var(--space-xl);
}

@media (max-width: 360px) {
  :root {
    --font-size-hero: clamp(1.65rem, 10vw, 2.25rem);
    --space-section: clamp(2.25rem, 6vw, 3.5rem);
    --header-height: 64px;
  }

  .container {
    width: min(100% - 1rem, var(--max-width));
  }

  .brand {
    font-size: var(--font-size-sm);
    max-width: min(52vw, 11rem);
    line-height: 1.2;
  }

  .section-title {
    font-size: clamp(1.35rem, 6vw, 1.65rem);
  }

  .hero-lead {
    font-size: var(--font-size-sm);
  }

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

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

  .form-order input,
  .form-order textarea {
    min-height: 48px;
    font-size: 16px;
  }

  .form-order textarea {
    min-height: 120px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    padding-inline: var(--space-md);
  }

  .cta-final .cta-actions {
    flex-direction: column;
  }

  .cta-final .cta-actions .btn {
    width: 100%;
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

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

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

  .atelier-tabs {
    flex-direction: column;
  }

  .atelier-tab {
    width: 100%;
  }

  .atelier-panels {
    padding: var(--space-md);
    min-height: 0;
  }

  .lux-marquee {
    font-size: 0.65rem;
    letter-spacing: 0.12em;
  }

  .hero-ring-stack {
    width: min(92vw, 320px);
  }

  .hero-chip {
    font-size: 0.55rem;
    padding: 0.28rem 0.55rem;
  }

  .hero-chip--2 {
    left: 0;
  }

  .hero-chip--3 {
    right: 0;
  }

  .proof-stat strong {
    font-size: clamp(1.75rem, 8vw, 2.25rem);
  }

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

  .nav-toggle {
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 320px) {
  .container {
    width: min(100% - 0.75rem, var(--max-width));
  }

  .brand {
    font-size: 0.7rem;
    max-width: 9.5rem;
  }

  .section-lead {
    font-size: var(--font-size-xs);
    margin-bottom: var(--space-lg);
  }

  .badge-pill {
    font-size: 0.65rem;
    padding: 0.2rem 0.5rem;
  }

  .trust-row {
    gap: var(--space-sm);
  }

  .highlights li {
    font-size: 0.75rem;
  }

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

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

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

  .faq-item button {
    padding: var(--space-md);
    font-size: var(--font-size-sm);
  }

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

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

  .thank-lux-inner {
    padding: var(--space-lg);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .lux-marquee-track {
    animation: none;
  }

  .hero-orb,
  .hero-glow--float,
  .hero-figure-stage,
  .hero-ring,
  .hero-chip,
  .hero-mesh,
  .hero-noise,
  .hero-beam,
  .hero-spark,
  .hero-gradient-text,
  .hero-kicker-glow,
  .price-current--live,
  .hero-form-card::before {
    animation: none !important;
  }

  .hero-title-inner,
  .hero-lead-reveal,
  .hero-trust,
  .hero-price-row,
  .hero-highlights li,
  .hero-form-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}
