:root {
  --color-coral: #FF6B81;
  --color-aqua: #00F2D7;
  --color-lime: #D4FF38;
  --color-violet: #7C00FF;
  --color-sky: #33B7FF;
  --color-base-dark: #0a0a12;
  --color-base-mid: #12121c;
  --color-surface: rgba(18, 18, 28, 0.72);
  --color-text: #f4f4f8;
  --color-text-muted: #b8b8c8;
  --color-white: #ffffff;
  --font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.35rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: clamp(2rem, 5vw, 3.25rem);
  --font-size-hero: clamp(2.5rem, 6vw, 4rem);
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.15;
  --line-height-body: 1.6;
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.35);
  --shadow-glow-coral: 0 0 32px rgba(255, 107, 129, 0.45);
  --shadow-glow-aqua: 0 0 28px rgba(0, 242, 215, 0.35);
  --shadow-glow-violet: 0 0 36px rgba(124, 0, 255, 0.4);
  --shadow-glow-lime: 0 0 24px rgba(212, 255, 56, 0.35);
  --shadow-card: 0 16px 48px rgba(10, 10, 18, 0.55);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --space-section: clamp(3rem, 8vw, 5.5rem);
  --transition-fast: 0.10s ease;
  --transition-med: 0.20s cubic-bezier(0.22, 1, 0.36, 1);
  --glass-bg: rgba(12, 12, 22, 0.55);
  --glass-border: rgba(255, 255, 255, 0.12);
  --header-h: 4.25rem;
  --luxury-gold: #c9a962;
  --luxury-gold-soft: #e8d5a3;
  --luxury-ink: #0c0b10;
  --font-serif: ui-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-family);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(124, 0, 255, 0.35), transparent 55%),
    radial-gradient(ellipse 80% 50% at 100% 30%, rgba(255, 107, 129, 0.2), transparent 50%),
    var(--color-base-dark);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--color-aqua);
  outline-offset: 3px;
}

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

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

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

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

.header-inner {
  width: min(1180px, 100% - var(--space-lg) * 2);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

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

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

.burger {
  display: none;
  position: relative;
  z-index: 950;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(201, 169, 98, 0.35);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(18, 18, 28, 0.9));
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast);
}

.burger:hover {
  border-color: rgba(0, 242, 215, 0.45);
  box-shadow: 0 0 28px rgba(124, 0, 255, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.burger__bar {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-lime), var(--color-aqua));
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, width 0.3s ease;
  transform-origin: center;
}

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

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

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

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: radial-gradient(ellipse at 30% 20%, rgba(124, 0, 255, 0.25), transparent 50%),
    radial-gradient(ellipse at 70% 80%, rgba(255, 107, 129, 0.15), transparent 45%),
    rgba(5, 5, 12, 0.72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

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

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

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

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

main {
  overflow-x: hidden;
}

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

.section-inner {
  width: min(1180px, 100% - var(--space-lg) * 2);
  margin-inline: auto;
}

.section-kicker {
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-coral);
  margin: 0 0 var(--space-sm);
}

.section-title {
  font-size: var(--font-size-3xl);
  line-height: var(--line-height-tight);
  margin: 0 0 var(--space-md);
  color: var(--color-white);
}

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

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

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

.hero {
  position: relative;
  padding-block: calc(var(--space-2xl) + var(--space-sm)) var(--space-section);
  overflow: hidden;
}

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

.hero-backdrop__mesh {
  position: absolute;
  inset: -30% -20%;
  background:
    radial-gradient(ellipse 55% 45% at 15% 25%, rgba(124, 0, 255, 0.45), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 20%, rgba(255, 107, 129, 0.35), transparent 50%),
    radial-gradient(ellipse 45% 50% at 50% 85%, rgba(0, 242, 215, 0.22), transparent 55%);
  animation: heroMeshShift 14s ease-in-out infinite alternate;
}

@keyframes heroMeshShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translate3d(2%, -3%, 0) scale(1.05);
    opacity: 0.92;
  }
}

.hero-backdrop__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  opacity: 0.55;
  animation: heroBlobFloat 18s ease-in-out infinite;
}

.hero-backdrop__blob--a {
  width: min(380px, 55vw);
  height: min(380px, 55vw);
  top: -8%;
  left: -6%;
  background: radial-gradient(circle, rgba(51, 183, 255, 0.55), transparent 68%);
  animation-delay: 0s;
}

.hero-backdrop__blob--b {
  width: min(320px, 48vw);
  height: min(320px, 48vw);
  bottom: 5%;
  right: -4%;
  background: radial-gradient(circle, rgba(212, 255, 56, 0.35), transparent 65%);
  animation-delay: -6s;
}

.hero-backdrop__blob--c {
  width: min(260px, 40vw);
  height: min(260px, 40vw);
  top: 38%;
  left: 42%;
  background: radial-gradient(circle, rgba(124, 0, 255, 0.5), transparent 70%);
  animation-delay: -12s;
}

@keyframes heroBlobFloat {
  0%, 100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  33% {
    transform: translate3d(4%, -6%, 0) scale(1.08);
  }
  66% {
    transform: translate3d(-5%, 4%, 0) scale(0.95);
  }
}

.hero-backdrop__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 75% 70% at 50% 45%, #000 20%, transparent 75%);
  opacity: 0.35;
  animation: heroGridDrift 22s linear infinite;
}

@keyframes heroGridDrift {
  0% {
    background-position: 0 0, 0 0;
  }
  100% {
    background-position: 48px 48px, 48px 48px;
  }
}

.hero-backdrop__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 242, 215, 0.18);
  left: 50%;
  top: 42%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.hero-backdrop__ring--outer {
  width: min(520px, 92vw);
  height: min(520px, 92vw);
  animation: heroRingSpin 48s linear infinite;
  box-shadow: 0 0 60px rgba(124, 0, 255, 0.12);
}

.hero-backdrop__ring--inner {
  width: min(420px, 78vw);
  height: min(420px, 78vw);
  border-color: rgba(255, 107, 129, 0.22);
  animation: heroRingSpin 32s linear infinite reverse;
}

@keyframes heroRingSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-backdrop__dots {
  position: absolute;
  inset: 0;
}

.hero-backdrop__dots span {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--color-aqua);
  box-shadow: 0 0 12px rgba(0, 242, 215, 0.7);
  opacity: 0.5;
  animation: heroDotTwinkle 3.2s ease-in-out infinite;
}

.hero-backdrop__dots span:nth-child(1) {
  top: 18%;
  left: 12%;
  animation-delay: 0s;
}

.hero-backdrop__dots span:nth-child(2) {
  top: 28%;
  left: 68%;
  background: var(--color-lime);
  box-shadow: 0 0 12px rgba(212, 255, 56, 0.65);
  animation-delay: 0.4s;
}

.hero-backdrop__dots span:nth-child(3) {
  top: 62%;
  left: 22%;
  animation-delay: 0.8s;
}

.hero-backdrop__dots span:nth-child(4) {
  top: 72%;
  left: 78%;
  background: var(--color-coral);
  box-shadow: 0 0 12px rgba(255, 107, 129, 0.6);
  animation-delay: 1.2s;
}

.hero-backdrop__dots span:nth-child(5) {
  top: 44%;
  left: 8%;
  animation-delay: 1.6s;
}

.hero-backdrop__dots span:nth-child(6) {
  top: 12%;
  left: 42%;
  animation-delay: 2s;
}

.hero-backdrop__dots span:nth-child(7) {
  top: 52%;
  left: 88%;
  animation-delay: 2.4s;
}

.hero-backdrop__dots span:nth-child(8) {
  top: 84%;
  left: 48%;
  animation-delay: 2.8s;
}

@keyframes heroDotTwinkle {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.15);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(260px, 1.05fr) minmax(300px, 1fr);
  gap: var(--space-xl);
  align-items: stretch;
}

.hero-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
  min-width: 0;
}

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

  .hero-backdrop__ring {
    top: 28%;
  }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  align-self: center;
  min-height: min(520px, 70vh);
}

.hero-visual-inner {
  position: relative;
  width: min(440px, 100%);
  aspect-ratio: 5 / 6;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero-glow--deep {
  width: 118%;
  height: 118%;
  left: 50%;
  top: 52%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(124, 0, 255, 0.42), rgba(255, 107, 129, 0.12) 45%, transparent 68%);
  filter: blur(28px);
  animation: heroGlowBreath 6s ease-in-out infinite alternate;
}

.hero-glow--mid {
  width: 88%;
  height: 88%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(0, 242, 215, 0.35), transparent 62%);
  filter: blur(18px);
  animation: heroGlowBreath 5s ease-in-out infinite alternate-reverse;
}

.hero-glow--halo {
  width: 72%;
  height: 72%;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(212, 255, 56, 0.2), transparent 58%);
  filter: blur(12px);
  animation: pulseGlow 4.5s ease-in-out infinite alternate;
}

@keyframes heroGlowBreath {
  from {
    transform: translate(-50%, -50%) scale(0.94);
    opacity: 0.75;
  }
  to {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

@keyframes pulseGlow {
  from {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.85;
  }
  to {
    transform: translate(-50%, -50%) scale(1.05);
    opacity: 1;
  }
}

.hero-orbit {
  position: absolute;
  width: 92%;
  height: 92%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 1px dashed rgba(0, 242, 215, 0.28);
  animation: heroOrbitSpin 28s linear infinite;
}

.hero-orbit--delayed {
  width: 78%;
  height: 78%;
  border-color: rgba(255, 107, 129, 0.22);
  animation-duration: 20s;
  animation-direction: reverse;
}

@keyframes heroOrbitSpin {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

.hero-figure {
  position: relative;
  z-index: 2;
  margin: 0;
  animation: heroProductFloat 5.5s ease-in-out infinite;
}

.hero-product-img {
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 24px 50px rgba(124, 0, 255, 0.45)) drop-shadow(0 0 28px rgba(0, 242, 215, 0.25));
  animation: heroProductBob 5.5s ease-in-out infinite;
}

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

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

.hero-chip {
  position: absolute;
  z-index: 3;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(12, 12, 22, 0.65);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-md), 0 0 24px rgba(0, 242, 215, 0.08);
  display: flex;
  flex-direction: column;
  gap: 2px;
  animation: heroChipBob 4s ease-in-out infinite;
}

.hero-chip__label {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
}

.hero-chip__value {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-md);
  color: var(--color-white);
}

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

.hero-chip--two {
  bottom: 18%;
  left: -6%;
  animation-delay: 0.6s;
}

.hero-chip--three {
  top: 42%;
  left: -10%;
  animation-delay: 1.2s;
}

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

.hero-eyebrow {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-aqua);
  margin: 0 0 var(--space-md);
  padding: var(--space-xs) var(--space-sm);
  display: inline-block;
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 242, 215, 0.35);
  background: linear-gradient(120deg, rgba(0, 242, 215, 0.12), rgba(124, 0, 255, 0.15));
  animation: heroEyebrowShine 4s ease-in-out infinite;
}

@keyframes heroEyebrowShine {
  0%, 100% {
    box-shadow: 0 0 0 rgba(0, 242, 215, 0);
  }
  50% {
    box-shadow: 0 0 24px rgba(0, 242, 215, 0.2);
  }
}

.hero-title {
  font-size: var(--font-size-hero);
  line-height: 1.08;
  margin: 0 0 var(--space-md);
  color: var(--color-white);
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.hero-title__line {
  display: block;
  animation: heroTitleReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title__accent {
  display: block;
  font-size: clamp(1.15rem, 2.8vw, 1.65rem);
  font-weight: var(--font-weight-medium);
  background: linear-gradient(90deg, var(--color-lime), var(--color-aqua), var(--color-sky), var(--color-coral), var(--color-lime));
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroGradientFlow 8s linear infinite, heroTitleReveal 0.95s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

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

@keyframes heroTitleReveal {
  from {
    opacity: 0;
    transform: translate3d(0, 28px, 0);
    filter: blur(6px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

.hero-content p.lead {
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
  margin: 0 0 var(--space-md);
}

.hero-anim {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  animation: heroStaggerIn 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-anim[data-anim="1"] {
  animation-delay: 0.05s;
}

.hero-anim[data-anim="2"] {
  animation-delay: 0.14s;
}

.hero-anim[data-anim="3"] {
  animation-delay: 0.22s;
}

.hero-anim[data-anim="4"] {
  animation-delay: 0.3s;
}

.hero-anim[data-anim="5"] {
  animation-delay: 0.38s;
}

.hero-anim[data-anim="6"] {
  animation-delay: 0.46s;
}

.hero-anim[data-anim="7"] {
  animation-delay: 0.54s;
}

.hero-anim[data-anim="8"] {
  animation-delay: 0.62s;
}

.hero-anim[data-anim="9"] {
  animation-delay: 0.7s;
}

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

.hero-stars-pop {
  animation: heroStarPulse 2.4s ease-in-out infinite;
}

@keyframes heroStarPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 transparent);
    transform: scale(1);
  }
  50% {
    filter: drop-shadow(0 0 10px rgba(212, 255, 56, 0.45));
    transform: scale(1.03);
  }
}

.badge--pulse {
  animation: heroBadgeGlow 3s ease-in-out infinite;
}

.badge--pulse:nth-child(2) {
  animation-delay: 0.4s;
}

.badge--pulse:nth-child(3) {
  animation-delay: 0.8s;
}

@keyframes heroBadgeGlow {
  0%, 100% {
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: none;
  }
  50% {
    border-color: rgba(0, 242, 215, 0.35);
    box-shadow: 0 0 14px rgba(124, 0, 255, 0.2);
  }
}

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

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

@keyframes heroPriceGlow {
  0%, 100% {
    text-shadow: 0 0 0 transparent;
  }
  50% {
    text-shadow: 0 0 20px rgba(0, 242, 215, 0.45);
  }
}

.price-note {
  flex-basis: 100%;
  font-size: var(--font-size-xs);
  color: var(--color-sky);
  letter-spacing: 0.04em;
}

.hero-highlights li {
  opacity: 0;
  transform: translate3d(-12px, 0, 0);
  animation: heroLiIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

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

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

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

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

.hero-actions__primary {
  width: auto;
  min-width: 10rem;
}

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

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(105deg, transparent 40%, rgba(255, 255, 255, 0.18) 50%, transparent 60%);
  transform: translateX(-100%);
  animation: heroShimmer 3.5s ease-in-out infinite;
}

@keyframes heroShimmer {
  0% {
    transform: translateX(-100%);
  }
  40%, 100% {
    transform: translateX(100%);
  }
}

.hero-order {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 242, 215, 0.22);
  box-shadow: var(--shadow-card), 0 0 40px rgba(124, 0, 255, 0.15);
  animation: heroCardPulse 5s ease-in-out infinite;
}

@keyframes heroCardPulse {
  0%, 100% {
    box-shadow: var(--shadow-card), 0 0 40px rgba(124, 0, 255, 0.12);
  }
  50% {
    box-shadow: var(--shadow-card), 0 0 52px rgba(0, 242, 215, 0.18);
  }
}

.hero-order__shine {
  position: absolute;
  top: 0;
  left: -60%;
  width: 50%;
  height: 100%;
  background: linear-gradient(95deg, transparent, rgba(255, 255, 255, 0.08), transparent);
  animation: heroOrderShine 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes heroOrderShine {
  0% {
    left: -60%;
  }
  50%, 100% {
    left: 130%;
  }
}

@media (max-width: 520px) {
  .hero-chip--three {
    left: -4%;
  }

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

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-backdrop__mesh,
  .hero-backdrop__blob,
  .hero-backdrop__grid,
  .hero-backdrop__ring,
  .hero-backdrop__dots span,
  .hero-glow--deep,
  .hero-glow--mid,
  .hero-glow--halo,
  .hero-orbit,
  .hero-figure,
  .hero-product-img,
  .hero-chip,
  .hero-eyebrow,
  .hero-title__line,
  .hero-title__accent,
  .hero-anim,
  .hero-stars-pop,
  .badge--pulse,
  .price-current--glow,
  .hero-highlights li,
  .btn-shimmer::after,
  .hero-order,
  .hero-order__shine {
    animation: none !important;
  }

  .hero-anim,
  .hero-highlights li {
    opacity: 1;
    transform: none;
  }

  .hero-title__accent {
    background-position: 0% 50%;
  }

  .hero-visual-inner {
    transform: none !important;
  }
}

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

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

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

.badge {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-text-muted);
}

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

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

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

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

.highlights li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--color-lime);
  flex-shrink: 0;
  box-shadow: var(--shadow-glow-lime);
}

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

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

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

.form-group 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-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--color-text);
  font-family: inherit;
  font-size: var(--font-size-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:hover,
.form-group textarea:hover {
  border-color: rgba(0, 242, 215, 0.4);
}

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

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

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

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

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

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--color-violet);
}

.checkbox-row label {
  font-size: var(--font-size-sm);
  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-lg);
  border-radius: var(--radius-md);
  border: none;
  font-family: inherit;
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

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

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

.btn-secondary:hover {
  background: rgba(0, 242, 215, 0.12);
  transform: translateY(-2px);
}

.btn-magnetic {
  position: relative;
}

.social-proof {
  background: linear-gradient(180deg, rgba(124, 0, 255, 0.12), transparent);
  border-block: 1px solid var(--glass-border);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  align-items: start;
}

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

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

.proof-stat strong {
  display: block;
  font-size: var(--font-size-3xl);
  color: var(--color-lime);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
}

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

.review-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--glass-border);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

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

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

.review-meta {
  margin-top: var(--space-sm);
  font-size: var(--font-size-xs);
  color: var(--color-sky);
}

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

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

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

.bento-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.05);
  transition: transform var(--transition-med), box-shadow var(--transition-med), border-color var(--transition-fast);
  position: relative;
  overflow: hidden;
}

.bento-card:hover {
  border-color: rgba(0, 242, 215, 0.45);
  box-shadow: var(--shadow-glow-aqua);
}

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

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

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

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

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

@media (max-width: 900px) {
  .bento-span-2 {
    grid-column: span 1;
  }
  .bento-tall {
    grid-row: span 1;
  }
}

.bento-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-sm);
  background: rgba(124, 0, 255, 0.35);
}

.benefits-bento .bento-card:nth-child(2) .bento-icon {
  background: rgba(255, 107, 129, 0.35);
}
.benefits-bento .bento-card:nth-child(3) .bento-icon {
  background: rgba(0, 242, 215, 0.25);
}
.benefits-bento .bento-card:nth-child(4) .bento-icon {
  background: rgba(212, 255, 56, 0.25);
}
.benefits-bento .bento-card:nth-child(5) .bento-icon {
  background: rgba(51, 183, 255, 0.3);
}

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

.spotlight-item {
  position: relative;
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.3);
  padding: var(--space-lg);
  min-height: 160px;
  overflow: hidden;
  cursor: default;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.spotlight-item:hover {
  border-color: var(--color-lime);
  transform: scale(1.02);
}

.spotlight-item h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-aqua);
  font-size: var(--font-size-lg);
}

.spotlight-item .spotlight-benefit {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-med), transform var(--transition-med);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.spotlight-item:hover .spotlight-benefit {
  opacity: 1;
  transform: translateY(0);
}

.trust-science {
  background: rgba(255, 255, 255, 0.03);
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

@media (max-width: 700px) {
  .trust-icons {
    grid-template-columns: 1fr;
  }
}

.trust-icon-wrap {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
}

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

.trust-icon-wrap h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-white);
}

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

.svg-pulse {
  animation: svgPulse 2.4s ease-in-out infinite;
}

@keyframes svgPulse {
  0%, 100% {
    filter: drop-shadow(0 0 0 transparent);
  }
  50% {
    filter: drop-shadow(0 0 12px rgba(0, 242, 215, 0.6));
  }
}

.section-formula-atlas {
  background: linear-gradient(180deg, rgba(124, 0, 255, 0.06), transparent 40%);
}

.atlas {
  display: grid;
  grid-template-columns: minmax(0, 220px) 1fr;
  gap: var(--space-lg);
  align-items: stretch;
}

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

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

.atlas-lane {
  display: flex;
  align-items: flex-start;
  gap: var(--space-md);
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.28);
  color: inherit;
  font-family: inherit;
  cursor: pointer;
  transition: border-color var(--transition-med), box-shadow var(--transition-med), transform var(--transition-fast), background var(--transition-fast);
}

.atlas-lane:hover {
  border-color: rgba(0, 242, 215, 0.35);
  transform: translateX(4px);
}

.atlas-lane.is-active {
  border-color: rgba(201, 169, 98, 0.45);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.12), rgba(124, 0, 255, 0.12));
  box-shadow: 0 0 32px rgba(124, 0, 255, 0.15);
}

.atlas-lane__glyph {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-bold);
  background: linear-gradient(135deg, var(--color-violet), var(--color-coral));
  color: var(--color-white);
  box-shadow: 0 4px 20px rgba(124, 0, 255, 0.35);
}

.atlas-lane h3 {
  margin: 0 0 var(--space-xs);
  font-size: var(--font-size-md);
  color: var(--color-white);
}

.atlas-lane p {
  margin: 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.atlas-stage {
  position: relative;
  min-height: 280px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 98, 0.2);
  background: radial-gradient(ellipse 80% 60% at 20% 30%, rgba(0, 242, 215, 0.08), transparent 55%),
    rgba(8, 8, 16, 0.75);
  overflow: hidden;
}

.atlas-panel {
  position: absolute;
  inset: 0;
  padding: var(--space-lg);
  opacity: 0;
  transform: translate3d(12px, 0, 0);
  pointer-events: none;
  transition: opacity 0.45s ease, transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  overflow-y: auto;
}

.atlas-panel.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  pointer-events: auto;
  z-index: 1;
}

.atlas-panel h3 {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-xl);
  color: var(--color-white);
}

.atlas-panel__bars {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.atlas-bar {
  position: relative;
  height: 10px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.atlas-bar > span {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-violet), var(--color-aqua));
  transform: scaleX(0);
  transform-origin: left center;
}

.atlas-panel.is-active .atlas-bar--w85 > span {
  width: 85%;
  animation: atlasBarGrow 1s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.atlas-panel.is-active .atlas-bar--w72 > span {
  width: 72%;
  animation: atlasBarGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.08s forwards;
}

.atlas-panel.is-active .atlas-bar--w68 > span {
  width: 68%;
  animation: atlasBarGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.16s forwards;
}

.atlas-panel.is-active .atlas-bar--w55 > span {
  width: 55%;
  animation: atlasBarGrow 1s cubic-bezier(0.22, 1, 0.36, 1) 0.24s forwards;
}

@keyframes atlasBarGrow {
  to {
    transform: scaleX(1);
  }
}

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

.atlas-panel__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.atlas-tag {
  font-size: var(--font-size-xs);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-full);
  border: 1px solid rgba(0, 242, 215, 0.25);
  color: var(--color-aqua);
}

.section-routine {
  border-block: 1px solid rgba(201, 169, 98, 0.12);
  background: rgba(0, 0, 0, 0.15);
}

.routine-head {
  text-align: center;
  max-width: 36rem;
  margin-inline: auto;
  margin-bottom: var(--space-xl);
}

.routine-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.routine-tab {
  padding: var(--space-sm) var(--space-lg);
  border-radius: var(--radius-full);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: border-color var(--transition-fast), color var(--transition-fast), box-shadow var(--transition-fast), transform var(--transition-fast);
}

.routine-tab:hover {
  border-color: rgba(201, 169, 98, 0.4);
  color: var(--color-white);
}

.routine-tab.is-active {
  border-color: rgba(201, 169, 98, 0.55);
  color: var(--color-white);
  background: linear-gradient(135deg, rgba(201, 169, 98, 0.15), rgba(124, 0, 255, 0.12));
  box-shadow: 0 0 24px rgba(124, 0, 255, 0.2);
  transform: translateY(-2px);
}

.routine-panels {
  position: relative;
  min-height: 200px;
}

.routine-panel {
  display: none;
  padding: var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: rgba(12, 12, 22, 0.55);
  backdrop-filter: blur(12px);
  animation: routineFade 0.5s ease;
}

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

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

.routine-panel h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-aqua);
}

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

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

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

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

.spec-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-md);
}

@media (max-width: 600px) {
  .spec-grid {
    grid-template-columns: 1fr;
  }
}

.spec-card {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
}

.spec-card dt {
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sky);
  margin: 0 0 var(--space-xs);
}

.spec-card dd {
  margin: 0;
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
}

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

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-md);
  align-items: start;
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.2);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-sky), var(--color-violet));
  color: var(--color-white);
  font-weight: var(--font-weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.ingredient-card {
  padding: var(--space-md);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.04);
  transition: transform var(--transition-med);
}

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

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

.numbered-steps {
  list-style: decimal;
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

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

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

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(0, 0, 0, 0.25);
  overflow: hidden;
}

.faq-item button {
  width: 100%;
  text-align: left;
  padding: var(--space-md);
  background: transparent;
  border: none;
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--font-size-md);
  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.05);
}

.faq-item button span.icon {
  font-size: var(--font-size-xl);
  color: var(--color-aqua);
  transition: transform var(--transition-fast);
}

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

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

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

.cta-final {
  text-align: center;
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: linear-gradient(135deg, rgba(124, 0, 255, 0.35), rgba(255, 107, 129, 0.2));
  box-shadow: var(--shadow-glow-violet);
}

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

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

.disclaimer-block {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px dashed rgba(255, 107, 129, 0.45);
  background: rgba(0, 0, 0, 0.35);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

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

.footer-grid {
  width: min(1180px, 100% - var(--space-lg) * 2);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
}

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

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

.footer-links h3,
.footer-contact h3 {
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin: 0 0 var(--space-md);
}

.footer-links ul {
  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-aqua);
}

.footer-contact p {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.footer-legal {
  width: min(1180px, 100% - var(--space-lg) * 2);
  margin: var(--space-xl) auto 0;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--glass-border);
}

.footer-legal p {
  margin: 0 0 var(--space-sm);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.65;
}

.copyright {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-md);
}

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

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

.cookie-inner {
  width: min(900px, 100%);
  margin-inline: auto;
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--glass-border);
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-inner p {
  margin: 0;
  flex: 1 1 240px;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

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

.cookie-actions button {
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  border: 1px solid var(--glass-border);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.cookie-actions button:hover {
  background: rgba(124, 0, 255, 0.45);
  transform: translateY(-1px);
}

.cookie-actions .btn-accept {
  background: linear-gradient(135deg, var(--color-coral), var(--color-violet));
  border: none;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(5, 5, 12, 0.72);
  backdrop-filter: blur(6px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
}

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

.modal {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: var(--radius-xl);
  border: 1px solid var(--glass-border);
  background: rgba(18, 18, 30, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: var(--space-lg);
  box-shadow: var(--shadow-card), var(--shadow-glow-violet);
}

.modal h2 {
  margin: 0 0 var(--space-md);
  color: var(--color-white);
}

.modal-section {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid var(--glass-border);
}

.modal-section:last-of-type {
  border-bottom: none;
}

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

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

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

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

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

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

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

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

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

.modal-footer-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

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

.policy-page article {
  width: min(800px, 100% - var(--space-lg) * 2);
  margin-inline: auto;
}

.policy-page h1 {
  color: var(--color-white);
  margin-bottom: var(--space-lg);
}

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

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

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

.thank-you-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.thank-you-hero h1 {
  font-size: var(--font-size-4xl);
  color: var(--color-white);
  margin-bottom: var(--space-md);
}

.thank-you-hero p {
  color: var(--color-text-muted);
  max-width: 36rem;
  margin-inline: auto;
}

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

  .site-nav {
    position: fixed;
    z-index: 920;
    top: 0;
    right: 0;
    width: min(100%, 380px);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + var(--space-xl)) var(--space-xl) var(--space-xl);
    background: linear-gradient(165deg, rgba(18, 16, 28, 0.98) 0%, rgba(10, 10, 18, 0.99) 45%, rgba(22, 18, 32, 0.98) 100%);
    border-left: 1px solid rgba(201, 169, 98, 0.22);
    box-shadow: -24px 0 80px rgba(0, 0, 0, 0.55);
    transform: translate3d(105%, 0, 0);
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
  }

  .site-nav ul {
    flex-direction: column;
    gap: var(--space-xs);
    padding: 0;
  }

  .site-nav li {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
    transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  }

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

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

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

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

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

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

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

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

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

  .site-nav a {
    display: block;
    padding: var(--space-md) var(--space-md);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    color: rgba(244, 244, 248, 0.88);
    border-radius: var(--radius-md);
    border: 1px solid transparent;
    transition: background var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast);
  }

  .site-nav a:hover {
    background: rgba(201, 169, 98, 0.08);
    border-color: rgba(201, 169, 98, 0.2);
    color: var(--color-white);
  }
}

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

body.luxury-doc-page {
  background: var(--luxury-ink);
  background-image:
    radial-gradient(ellipse 100% 80% at 50% -30%, rgba(124, 0, 255, 0.22), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 50%, rgba(201, 169, 98, 0.08), transparent 50%),
    linear-gradient(180deg, #0c0b10 0%, #12101a 100%);
}

.luxury-shell {
  padding-block: var(--space-2xl);
}

.luxury-shell__inner {
  width: min(920px, 100% - var(--space-lg) * 2);
  margin-inline: auto;
}

.luxury-frame {
  position: relative;
  padding: var(--space-xl);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: linear-gradient(145deg, rgba(22, 20, 32, 0.95), rgba(12, 11, 18, 0.98));
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.luxury-frame::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  background: linear-gradient(90deg, transparent, var(--luxury-gold), var(--luxury-gold-soft), var(--luxury-gold), transparent);
  opacity: 0.9;
}

.luxury-doc-header {
  text-align: center;
  padding-bottom: var(--space-xl);
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid rgba(201, 169, 98, 0.15);
}

.luxury-doc-crest {
  font-family: var(--font-serif);
  font-size: var(--font-size-xs);
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--luxury-gold-soft);
  margin: 0 0 var(--space-md);
}

.luxury-doc-header h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 4vw, 2.75rem);
  font-weight: 400;
  color: #faf8f4;
  margin: 0 0 var(--space-md);
  line-height: 1.2;
}

.luxury-doc-date {
  font-size: var(--font-size-sm);
  color: rgba(184, 184, 200, 0.9);
  margin: 0;
}

.luxury-doc-date time {
  color: var(--luxury-gold-soft);
  font-weight: var(--font-weight-medium);
}

.luxury-article {
  font-size: var(--font-size-md);
}

.luxury-article h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  font-weight: 400;
  color: #f0ebe3;
  margin: var(--space-xl) 0 var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(201, 169, 98, 0.12);
}

.luxury-article h2:first-of-type {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

.luxury-article h3 {
  font-size: var(--font-size-lg);
  color: var(--color-aqua);
  margin: var(--space-lg) 0 var(--space-sm);
  font-weight: var(--font-weight-medium);
}

.luxury-article p {
  color: rgba(200, 198, 212, 0.95);
  margin: 0 0 var(--space-md);
  line-height: 1.75;
}

.luxury-article ul,
.luxury-article ol {
  color: rgba(200, 198, 212, 0.95);
  margin: 0 0 var(--space-md);
  padding-left: 1.35rem;
}

.luxury-article li {
  margin-bottom: var(--space-sm);
  line-height: 1.65;
}

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

.luxury-callout p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(232, 228, 240, 0.92);
}

.luxury-table-wrap {
  overflow-x: auto;
  margin: var(--space-lg) 0;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201, 169, 98, 0.15);
}

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

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

.luxury-table th {
  background: rgba(201, 169, 98, 0.1);
  color: var(--luxury-gold-soft);
  font-weight: var(--font-weight-medium);
}

.luxury-table td {
  color: rgba(200, 198, 212, 0.9);
}

.luxury-table tr:last-child td {
  border-bottom: none;
}

.luxury-divider {
  height: 1px;
  margin: var(--space-xl) 0;
  background: linear-gradient(90deg, transparent, rgba(201, 169, 98, 0.35), transparent);
}

.thank-you-luxury .luxury-doc-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.thank-you-sections {
  display: grid;
  gap: var(--space-lg);
  margin-top: var(--space-xl);
}

.thank-you-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.2);
  transition: border-color var(--transition-med), transform var(--transition-fast);
}

.thank-you-card:hover {
  border-color: rgba(201, 169, 98, 0.3);
  transform: translateY(-3px);
}

.thank-you-card h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  color: var(--luxury-gold-soft);
  margin: 0 0 var(--space-sm);
}

.thank-you-card p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: rgba(200, 198, 212, 0.92);
  line-height: 1.65;
}

.policy-page.luxury-policy {
  padding-block: 0;
}

.policy-page.luxury-policy .luxury-frame {
  margin-bottom: var(--space-2xl);
}

.interactive-hover {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
}

.interactive-hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(124, 0, 255, 0.12);
}

.section-marquee {
  overflow: hidden;
  padding-block: var(--space-md);
  border-block: 1px solid rgba(201, 169, 98, 0.1);
  background: rgba(0, 0, 0, 0.2);
}

.marquee-inner {
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: var(--space-xl);
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
}

.marquee-track span {
  font-size: var(--font-size-sm);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(201, 169, 98, 0.55);
  white-space: nowrap;
}

@keyframes marqueeScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .marquee-track {
    animation: none;
  }
}

@media (max-width: 320px) {
  :root {
    --space-xs: 0.3rem;
    --space-sm: 0.6rem;
    --space-md: 1rem;
    --space-lg: 1.25rem;
    --space-xl: 1.75rem;
    --space-2xl: 2.75rem;
    --space-section: 2rem;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8125rem;
    --font-size-md: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-xl: 1.05rem;
    --font-size-2xl: 1.4rem;
    --font-size-3xl: 1.65rem;
    --font-size-4xl: clamp(1.5rem, 9vw, 1.85rem);
    --font-size-hero: clamp(1.5rem, 11vw, 2rem);
    --header-h: 3.65rem;
    --radius-lg: 18px;
    --radius-xl: 22px;
  }

  .section-inner,
  .header-inner,
  .footer-grid,
  .footer-legal,
  .copyright {
    width: 100% !important;
    max-width: 100%;
    padding-inline: 0.6rem !important;
    margin-inline: 0 !important;
  }

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

  .section-title {
    font-size: var(--font-size-2xl);
    margin-bottom: var(--space-sm);
  }

  .section-kicker {
    letter-spacing: 0.08em;
    font-size: var(--font-size-xs);
  }

  .section-lead {
    margin-bottom: var(--space-md);
  }

  .luxury-shell__inner {
    width: 100%;
    padding-inline: 0.6rem;
  }

  .luxury-frame {
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .luxury-doc-header h1 {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
  }

  .luxury-article h2 {
    font-size: var(--font-size-lg);
    margin-top: var(--space-lg);
  }

  .luxury-article h3 {
    font-size: var(--font-size-md);
  }

  .thank-you-luxury .luxury-doc-header h1 {
    font-size: clamp(1.35rem, 8vw, 1.75rem);
  }

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

  .thank-you-card h2 {
    font-size: var(--font-size-md);
  }

  .brand {
    font-size: 0.8125rem;
    line-height: 1.2;
    overflow-wrap: anywhere;
    word-break: break-word;
    max-width: calc(100% - 52px);
  }

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

  .hero {
    padding-block: calc(var(--space-xl) + var(--space-xs)) var(--space-section);
  }

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

  .hero-visual {
    min-height: min(420px, 58vh);
  }

  .hero-content p.lead {
    font-size: var(--font-size-md);
  }

  .hero-title__accent {
    font-size: clamp(0.88rem, 3.8vw, 1.05rem);
    line-height: 1.25;
  }

  .hero-chip {
    padding: var(--space-xs) var(--space-sm);
    font-size: 0.65rem;
  }

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

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

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

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

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

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

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

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

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

  .price-old {
    font-size: var(--font-size-md);
  }

  .ingredient-spotlight .spotlight-grid {
    grid-template-columns: 1fr;
  }

  .ingredient-grid {
    grid-template-columns: 1fr;
  }

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

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

  .bento-card h3 {
    font-size: var(--font-size-lg);
  }

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

  .trust-icon-wrap {
    padding: var(--space-md);
  }

  .trust-icon-wrap svg {
    width: 56px;
    height: 56px;
  }

  .atlas-lane {
    padding: var(--space-sm);
    gap: var(--space-sm);
    align-items: center;
  }

  .atlas-lane__glyph {
    width: 36px;
    height: 36px;
    font-size: var(--font-size-md);
  }

  .atlas-stage {
    min-height: 220px;
  }

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

  .atlas-panel h3 {
    font-size: var(--font-size-lg);
  }

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

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

  .steps li {
    gap: var(--space-sm);
    padding: var(--space-sm);
  }

  .steps li::before {
    width: 34px;
    height: 34px;
    font-size: var(--font-size-sm);
  }

  .faq-item button {
    padding: var(--space-sm) var(--space-md);
    font-size: var(--font-size-sm);
    gap: var(--space-sm);
    align-items: flex-start;
  }

  .faq-item button span.icon {
    flex-shrink: 0;
    font-size: var(--font-size-lg);
  }

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

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

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

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

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

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

  .form-group input,
  .form-group textarea {
    min-width: 0;
    font-size: 16px;
  }

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

  .marquee-track span {
    font-size: var(--font-size-xs);
    letter-spacing: 0.12em;
  }

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

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

  .modal {
    width: 100%;
    max-width: 100%;
    padding: var(--space-md);
    border-radius: var(--radius-lg);
  }

  .modal-footer-btns {
    flex-direction: column;
  }

  .modal-footer-btns .btn {
    width: 100%;
  }

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

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-md);
  }

  .cookie-actions {
    width: 100%;
    justify-content: stretch;
  }

  .cookie-actions button {
    flex: 1;
    min-width: 0;
  }

  .policy-page article {
    width: 100%;
    padding-inline: 0.6rem;
  }

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

  .policy-page h2 {
    font-size: var(--font-size-md);
  }

  .thank-you-hero {
    min-height: 50vh;
    padding-inline: 0.6rem;
  }

  .thank-you-hero h1 {
    font-size: var(--font-size-3xl);
  }

  .thank-you-sections {
    gap: var(--space-md);
  }

  .luxury-table-wrap {
    margin: var(--space-md) 0;
    -webkit-overflow-scrolling: touch;
  }

  .luxury-table {
    font-size: var(--font-size-xs);
  }

  .luxury-table th,
  .luxury-table td {
    padding: 0.35rem 0.45rem;
  }

  .site-nav {
    width: 100%;
    max-width: 100%;
    padding: calc(var(--header-h) + var(--space-md)) var(--space-sm) var(--space-md);
  }

  .site-nav a {
    font-size: var(--font-size-md);
    padding: var(--space-sm) var(--space-md);
  }
}
