@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500&display=swap");

:root {
  --color-peach-whisper: #ffe7d9;
  --color-aqua-mist: #dffcfb;
  --color-lavender-veil: #f4e9ff;
  --color-butter-glow: #fffce5;
  --color-cloud-blue: #e6f3ff;
  --color-ink: #1e2a36;
  --color-ink-soft: #3d4f62;
  --color-ink-muted: #6b7c8f;
  --font-lux-serif: "Cormorant Garamond", Georgia, serif;
  --color-lux-onyx: #0c0f14;
  --color-lux-ink: #e8e4dc;
  --color-lux-ink-dim: #b8b2a8;
  --color-lux-gold: #c9a962;
  --color-lux-gold-soft: rgba(201, 169, 98, 0.35);
  --color-lux-panel: rgba(22, 26, 34, 0.92);
  --color-line: rgba(255, 255, 255, 0.55);
  --color-line-dark: rgba(45, 58, 74, 0.12);
  --font-display: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --fs-display-lg: clamp(2.25rem, 4vw + 1rem, 3.75rem);
  --fs-display-md: clamp(1.75rem, 2.5vw + 0.75rem, 2.5rem);
  --fs-body: 1.0625rem;
  --fs-small: 0.9375rem;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --fw-extrabold: 800;
  --fw-semibold: 600;
  --tracking-tight: -0.02em;
  --tracking-display: -0.015em;
  --shadow-soft: 0 18px 48px rgba(30, 42, 54, 0.08);
  --shadow-hover: 0 22px 56px rgba(30, 42, 54, 0.12);
  --shadow-glow: 0 0 0 1px rgba(255, 255, 255, 0.65), 0 0 32px rgba(223, 252, 251, 0.45);
  --radius-card: 24px;
  --radius-btn: 18px;
  --radius-input: 14px;
  --radius-pill: 999px;
  --space-section-y: clamp(4rem, 10vw, 10rem);
  --space-section-y-sm: clamp(4rem, 12vw, 5rem);
  --space-card: clamp(1.5rem, 2vw, 2rem);
  --space-grid: clamp(1.35rem, 2vw, 1.85rem);
  --container: min(1120px, calc(100% - 2.5rem));
  --container-320: min(100%, calc(100vw - 1rem - env(safe-area-inset-left) - env(safe-area-inset-right)));
  --transition-base: 0.35s ease;
  --transition-fast: 0.25s ease;
  --header-h: 4.25rem;
}

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

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

@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;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.65;
  color: var(--color-ink);
  background: linear-gradient(165deg, var(--color-peach-whisper) 0%, var(--color-cloud-blue) 42%, var(--color-aqua-mist) 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

a {
  color: var(--color-ink-soft);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

.focus-ring:focus-visible {
  outline: 2px solid var(--color-ink-soft);
  outline-offset: 3px;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0.75rem;
  padding: 0.65rem 1rem;
  background: var(--color-ink);
  color: #fff;
  border-radius: var(--radius-input);
  z-index: 2000;
}

.skip-link:focus {
  left: 0.75rem;
}

.commercial-strip {
  background: linear-gradient(90deg, rgba(30, 42, 54, 0.94), rgba(45, 62, 78, 0.92));
  color: #e8f0f5;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.commercial-strip__inner {
  padding: 0.65rem 0 0.75rem;
}

.commercial-strip__text {
  margin: 0 0 0.45rem;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(232, 240, 245, 0.92);
}

.commercial-strip__text strong {
  color: #fff;
  font-weight: var(--fw-semibold, 600);
}

.commercial-strip__links {
  margin: 0;
  font-size: 0.75rem;
}

.commercial-strip__links a {
  color: #c5dde8;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.commercial-strip__links a:hover {
  color: #fff;
}

.hero__price-note {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: var(--color-ink-muted);
  max-width: 28rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0.65rem 0;
  background: rgba(255, 231, 217, 0.48);
  border-bottom: 1px solid rgba(255, 255, 255, 0.38);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.brand {
  font-family: var(--font-display);
  font-weight: var(--fw-extrabold);
  font-size: 1.05rem;
  letter-spacing: var(--tracking-tight);
  color: var(--color-ink);
  transition: transform var(--transition-base);
}

.brand:hover {
  transform: scale(1.02);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.15rem;
  align-items: center;
}

.nav a {
  position: relative;
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  padding: 0.35rem 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.nav a:hover::after,
.nav a:focus-visible::after {
  transform: scaleX(1);
}

main > section {
  padding-block: var(--space-section-y);
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.section-heading {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3rem);
}

.section-eyebrow {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-ink-muted);
  margin: 0 0 0.6rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-display);
  line-height: 1.15;
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}

.section-lead {
  margin: 0;
  color: var(--color-ink-soft);
}

.hero {
  padding-block: clamp(3.5rem, 8vw, 5.5rem);
  scroll-margin-top: var(--header-h);
}

.hero--cascade {
  position: relative;
  overflow: clip;
  --hero-mx: 0px;
  --hero-my: 0px;
  background: linear-gradient(165deg, #f8fafc 0%, #eef5f9 25%, #f5f0eb 60%, #faf8f5 100%);
}

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

.hero__wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 45%;
  opacity: 0.5;
}

.hero__wave--a {
  fill: rgba(223, 252, 251, 0.55);
  animation: wave-morph-a 12s ease-in-out infinite;
}

.hero__wave--b {
  fill: rgba(255, 231, 217, 0.45);
  animation: wave-morph-b 14s ease-in-out infinite 1s;
}

.hero__wave-path {
  transition: d 0.5s ease;
}

@keyframes wave-morph-a {
  0%, 100% { transform: scaleY(1) translateY(0); }
  50% { transform: scaleY(1.08) translateY(-2%); }
}

@keyframes wave-morph-b {
  0%, 100% { transform: scaleY(1) translateY(0); }
  50% { transform: scaleY(0.95) translateY(2%); }
}

.hero__gradient-veil {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 90%, rgba(223, 252, 251, 0.4) 0%, transparent 55%),
    radial-gradient(ellipse 60% 40% at 20% 30%, rgba(255, 231, 217, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse 50% 35% at 85% 25%, rgba(201, 169, 98, 0.2) 0%, transparent 45%);
  animation: veil-pulse 10s ease-in-out infinite;
}

@keyframes veil-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; }
}

.hero__geometrics {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__geo {
  position: absolute;
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: 50%;
  animation: geo-float 18s ease-in-out infinite;
}

.hero__geo--1 { width: 12px; height: 12px; left: 8%; top: 22%; animation-delay: 0s; }
.hero__geo--2 { width: 8px; height: 8px; right: 12%; top: 35%; animation-delay: -3s; }
.hero__geo--3 { width: 16px; height: 16px; left: 15%; bottom: 30%; animation-delay: -6s; }
.hero__geo--4 { width: 6px; height: 6px; right: 20%; bottom: 25%; animation-delay: -2s; }
.hero__geo--5 { width: 10px; height: 10px; left: 50%; top: 15%; animation-delay: -4s; }
.hero__geo--6 { width: 14px; height: 14px; right: 8%; bottom: 40%; animation-delay: -5s; }

@keyframes geo-float {
  0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
  25% { transform: translate(6px, -8px) scale(1.1); opacity: 0.7; }
  50% { transform: translate(-4px, 5px) scale(0.95); opacity: 0.5; }
  75% { transform: translate(3px, 4px) scale(1.05); opacity: 0.6; }
}

.hero__line-art {
  position: absolute;
  bottom: 18%;
  left: 0;
  right: 0;
  height: 120px;
  opacity: 0.35;
}

.hero__lines-svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

.hero__line {
  fill: none;
  stroke: rgba(45, 58, 74, 0.2);
  stroke-width: 1;
  stroke-dasharray: 600;
  stroke-dashoffset: 600;
  animation: line-draw 2s ease-out 0.3s forwards;
}

.hero__line--2 {
  stroke: rgba(201, 169, 98, 0.3);
  stroke-dasharray: 450;
  stroke-dashoffset: 450;
  animation-delay: 0.6s;
}

@keyframes line-draw {
  to { stroke-dashoffset: 0; }
}

.hero__grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  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.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}

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

.hero__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  order: 1;
}

@media (min-width: 960px) {
  .hero__visual {
    order: 0;
  }
}

.hero__product-wrap {
  position: relative;
  animation: product-float 5s ease-in-out infinite;
}

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

.hero__product-glow {
  position: absolute;
  inset: -15% -10%;
  background: radial-gradient(circle at 50% 50%, rgba(223, 252, 251, 0.5) 0%, rgba(201, 169, 98, 0.15) 45%, transparent 70%);
  filter: blur(30px);
  z-index: 0;
  animation: product-glow-pulse 6s ease-in-out infinite;
}

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

.hero__product-card {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-card);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(240, 250, 255, 0.75));
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: 0 24px 64px rgba(30, 42, 54, 0.1), 0 0 0 1px rgba(223, 252, 251, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.hero__product-inner {
  position: relative;
}

.hero__trust {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.hero__parallax {
  transform: translate3d(var(--hero-mx), var(--hero-my), 0);
  transition: transform 0.2s ease-out;
  will-change: transform;
}

.hero__img {
  margin-inline: auto;
  max-width: 320px;
}

.hero__copy {
  order: 2;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 960px) {
  .hero__copy {
    order: 0;
  }
}

.hero__kicker {
  margin: 0;
  overflow: hidden;
}

.hero__kicker-track {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-ink-muted);
  padding-bottom: 0.15rem;
  background: linear-gradient(90deg, var(--color-ink-muted), var(--color-ink-soft) 40%, var(--color-ink-muted) 80%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: kicker-shine 8s linear infinite;
}

@keyframes kicker-shine {
  0% {
    background-position: 200% center;
  }
  100% {
    background-position: -200% center;
  }
}

.hero__title {
  font-family: var(--font-display);
  font-size: var(--fs-display-lg);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  line-height: 1.12;
  margin: 0;
  color: var(--color-ink);
  display: flex;
  flex-direction: column;
  gap: 0.15em;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateX(-1.5rem);
  animation: title-slide-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

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

.hero__title-line:nth-child(2) {
  transform: translateX(1.5rem);
  animation-name: title-slide-in-alt;
  animation-delay: 0.25s;
}

.hero__title-line:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes title-slide-in {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes title-slide-in-alt {
  from {
    opacity: 0;
    transform: translateX(1.5rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero__title-line--accent {
  font-weight: var(--fw-extrabold);
  background: linear-gradient(100deg, #2a3f52 0%, #4a6680 35%, #c9a962 55%, #4a6680 75%, #2a3f52 100%);
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: title-slide-in-alt 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards, accent-flow 10s ease-in-out 0.9s infinite;
  opacity: 0;
}

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

.hero__desc {
  margin: 0;
  color: var(--color-ink-soft);
  max-width: 36rem;
}

.hero__desc--rise {
  opacity: 0;
  transform: translateY(0.75rem);
  animation: desc-rise 0.9s ease 0.55s forwards;
}

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

@media (prefers-reduced-motion: reduce) {
  .hero__title-line,
  .hero__title-line--accent,
  .hero__desc--rise {
    animation: none !important;
    opacity: 1;
    transform: none;
  }

  .hero__kicker-track {
    animation: none !important;
    color: var(--color-ink-muted);
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
  }

  .hero__wave--a,
  .hero__wave--b,
  .hero__gradient-veil,
  .hero__geo,
  .hero__line,
  .hero__product-wrap,
  .hero__product-glow {
    animation: none !important;
  }

  .hero__line {
    stroke-dashoffset: 0;
  }

  .hero__parallax {
    transform: none !important;
    transition: none !important;
  }
}

.stars {
  display: inline-flex;
  gap: 0.15rem;
  color: #c9a227;
}

.stars svg {
  width: 1.1rem;
  height: 1.1rem;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.badge {
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.55);
  color: var(--color-ink-soft);
}

.badge--entrance {
  opacity: 0;
  transform: scale(0.85) translateY(4px);
  animation: badge-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.badge--entrance:nth-child(1) { animation-delay: 0.7s; }
.badge--entrance:nth-child(2) { animation-delay: 0.85s; }
.badge--entrance:nth-child(3) { animation-delay: 1s; }

@keyframes badge-pop {
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.hero__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.65rem;
}

.hero__price--entrance.is-visible .price-current {
  animation: price-glow-in 1.2s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes price-glow-in {
  0% {
    transform: scale(0.9);
    filter: brightness(0.7);
  }
  60% {
    filter: brightness(1.15);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

.price-current {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  color: var(--color-ink);
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-ink-muted);
  text-decoration: line-through;
  font-weight: var(--fw-medium);
}

.highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
}

.highlight-check {
  flex-shrink: 0;
  display: inline-flex;
}

.highlight-check__path {
  stroke-dasharray: 24;
  stroke-dashoffset: 24;
  transition: stroke-dashoffset 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.highlights.is-visible .highlight-item:nth-child(1) .highlight-check__path { stroke-dashoffset: 0; transition-delay: 0.1s; }
.highlights.is-visible .highlight-item:nth-child(2) .highlight-check__path { stroke-dashoffset: 0; transition-delay: 0.25s; }
.highlights.is-visible .highlight-item:nth-child(3) .highlight-check__path { stroke-dashoffset: 0; transition-delay: 0.4s; }

.highlight-item {
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.highlights.is-visible .highlight-item:nth-child(1) { opacity: 1; transform: translateX(0); transition-delay: 0.05s; }
.highlights.is-visible .highlight-item:nth-child(2) { opacity: 1; transform: translateX(0); transition-delay: 0.2s; }
.highlights.is-visible .highlight-item:nth-child(3) { opacity: 1; transform: translateX(0); transition-delay: 0.35s; }

.highlights li {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.highlights svg {
  flex-shrink: 0;
  margin-top: 0.2rem;
  stroke: var(--color-ink-soft);
}

.hero__form-wrap {
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(223, 252, 251, 0.45));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.form-title {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1.125rem;
  margin: 0 0 1.25rem;
  letter-spacing: var(--tracking-display);
}

.field {
  position: relative;
  margin-bottom: 1.15rem;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.55rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.82);
  font-family: inherit;
  font-size: 1rem;
  color: var(--color-ink);
  transition: border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base);
}

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

.field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  color: var(--color-ink-muted);
  pointer-events: none;
  transition: transform var(--transition-base), font-size var(--transition-base), color var(--transition-base);
}

.field textarea + label {
  top: 1.35rem;
  transform: translateY(0);
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(61, 79, 98, 0.45);
  box-shadow: var(--shadow-glow);
  background: #fff;
}

.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-1.55rem);
  font-size: 0.75rem;
  color: var(--color-ink-soft);
}

.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.35rem);
}

.field--error input,
.field--error textarea {
  border-color: #b42318;
}

.field-msg {
  font-size: 0.8125rem;
  color: #b42318;
  margin: 0.35rem 0 0;
  min-height: 1.1rem;
}

.checkbox-field {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1rem;
}

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

.checkbox-field label {
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

#error-gdpr {
  margin-top: 0.35rem;
}

.checkbox-field a {
  font-weight: var(--fw-medium);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  font-size: 1rem;
  padding: 0.95rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), filter var(--transition-base), background var(--transition-base);
}

.btn--primary {
  width: 100%;
  background: linear-gradient(135deg, var(--color-ink) 0%, #2f3f52 100%);
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.btn--primary:hover {
  transform: scale(1.03);
  filter: brightness(1.06);
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.55);
  border-color: var(--color-line-dark);
  color: var(--color-ink);
}

.btn--ghost:hover {
  transform: scale(1.03);
  filter: brightness(1.04);
}

.social-proof {
  background: linear-gradient(180deg, rgba(255, 252, 229, 0.55) 0%, rgba(244, 233, 255, 0.35) 100%);
}

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

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

.proof-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.proof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 255, 255, 0.75);
}

.proof-stat {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.25rem;
}

.proof-label {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.review-preview {
  margin-top: var(--space-grid);
  display: grid;
  gap: var(--space-grid);
  grid-template-columns: 1fr;
}

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

.mini-review {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.62);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.mini-review:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 79, 98, 0.22);
}

.mini-review p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.mini-review footer {
  margin-top: 0.75rem;
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--color-ink-muted);
}

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

@media (min-width: 840px) {
  .bento {
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(120px, auto);
  }
  .bento__item--lg {
    grid-column: span 7;
    grid-row: span 2;
  }
  .bento__item--md {
    grid-column: span 5;
  }
  .bento__item--sm {
    grid-column: span 4;
  }
  .bento__item--wide {
    grid-column: span 8;
  }
  .bento__item--tall {
    grid-column: span 4;
    grid-row: span 2;
  }
}

.bento-card {
  height: 100%;
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: linear-gradient(155deg, rgba(255, 255, 255, 0.55), rgba(223, 252, 251, 0.35));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover), inset 0 1px 0 rgba(255, 255, 255, 0.85);
  border-color: rgba(255, 255, 255, 0.8);
}

.bento-icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.85rem;
  stroke: var(--color-ink-soft);
}

.bento-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: var(--fw-bold);
  letter-spacing: var(--tracking-display);
  margin: 0 0 0.5rem;
}

.bento-card p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.product-story {
  background: linear-gradient(180deg, rgba(230, 243, 255, 0.55), rgba(255, 231, 217, 0.35));
}

.story-grid {
  display: grid;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: center;
  grid-template-columns: 1fr;
}

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

.story-blocks {
  display: grid;
  gap: 1rem;
}

.story-block {
  padding: 1.1rem 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.65);
}

.story-block h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.story-block p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.specs {
  background: rgba(255, 252, 229, 0.45);
}

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

@media (min-width: 720px) {
  .specs-grid {
    grid-template-columns: repeat(12, 1fr);
  }
  .specs-grid .spec-card:nth-child(1) {
    grid-column: span 7;
  }
  .specs-grid .spec-card:nth-child(2) {
    grid-column: span 5;
  }
  .specs-grid .spec-card:nth-child(3) {
    grid-column: span 4;
  }
  .specs-grid .spec-card:nth-child(4) {
    grid-column: span 4;
  }
  .specs-grid .spec-card:nth-child(5) {
    grid-column: span 4;
  }
}

.spec-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.55);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.spec-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.75);
}

.spec-card dl {
  margin: 0;
}

.spec-card dt {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--color-ink-muted);
  margin-bottom: 0.25rem;
}

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

.spec-head {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.spec-head svg {
  stroke: var(--color-ink-soft);
}

.spec-head h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
}

.how {
  background: linear-gradient(180deg, rgba(244, 233, 255, 0.45), rgba(223, 252, 251, 0.4));
}

.how__diagram {
  margin-bottom: 2.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.45);
  padding: 1rem;
}

.how__diagram img {
  margin-inline: auto;
}

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

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

.step {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.58);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.step:hover {
  transform: translateY(-4px);
  border-color: rgba(61, 79, 98, 0.2);
}

.step__icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 0.85rem;
  stroke: var(--color-ink-soft);
}

.step h3 {
  margin: 0 0 0.4rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.step p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.ingredients {
  background: rgba(230, 243, 255, 0.35);
}

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

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

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

.ing-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.65), rgba(255, 231, 217, 0.25));
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

.ing-card h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
  font-weight: var(--fw-bold);
}

.ing-card p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.use {
  background: linear-gradient(180deg, rgba(255, 252, 229, 0.5), rgba(223, 252, 251, 0.35));
}

.use-list {
  counter-reset: step;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-grid);
  grid-template-columns: 1fr;
}

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

.use-item {
  position: relative;
  padding: var(--space-card);
  padding-left: 4.25rem;
  padding-bottom: 3.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.58);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.use-item:hover {
  transform: translateY(-3px);
  border-color: rgba(61, 79, 98, 0.22);
}

.use-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 1.35rem;
  top: 1.35rem;
  width: 2rem;
  height: 2rem;
  border-radius: var(--radius-input);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 0.875rem;
  font-weight: 600;
  background: var(--color-cloud-blue);
  border: 1px solid var(--color-line-dark);
  color: var(--color-ink);
}

.use-item h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.use-item p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.use-item__icon {
  position: absolute;
  left: 1.25rem;
  bottom: 1.25rem;
  width: 1.75rem;
  height: 1.75rem;
  stroke: var(--color-ink-muted);
  opacity: 0.65;
}

.reviews-section {
  background: rgba(244, 233, 255, 0.4);
}

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

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

.review-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.6);
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 255, 255, 0.8);
}

.review-card header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.review-card h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.review-card .role {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

.review-card p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.faq {
  background: rgba(230, 243, 255, 0.4);
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq details {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.62);
  padding: 0 1.1rem;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.faq details:hover {
  border-color: rgba(61, 79, 98, 0.2);
  box-shadow: var(--shadow-soft);
}

.faq summary {
  cursor: pointer;
  list-style: none;
  font-weight: var(--fw-bold);
  padding: 1.1rem 0;
  position: relative;
  padding-right: 1.75rem;
}

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

.faq summary::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 0.65rem;
  height: 0.65rem;
  border-right: 1.5px solid var(--color-ink-soft);
  border-bottom: 1.5px solid var(--color-ink-soft);
  transform: translateY(-60%) rotate(45deg);
  transition: transform var(--transition-base);
}

.faq details[open] summary::after {
  transform: translateY(-20%) rotate(225deg);
}

.faq .answer {
  padding-bottom: 1.1rem;
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.final-cta {
  text-align: center;
  background: linear-gradient(165deg, rgba(255, 231, 217, 0.65), rgba(223, 252, 251, 0.55));
}

.final-cta .wrap {
  max-width: 40rem;
  margin-inline: auto;
}

.final-cta h2 {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.75rem;
}

.final-cta p {
  margin: 0 0 1.5rem;
  color: var(--color-ink-soft);
}

.final-cta .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

.disclaimer {
  background: rgba(255, 252, 229, 0.55);
}

.disclaimer .box {
  max-width: 52rem;
  margin-inline: auto;
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.55);
}

.disclaimer h2 {
  margin: 0 0 0.65rem;
  font-size: 1.1rem;
  font-weight: var(--fw-bold);
}

.disclaimer p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.site-footer {
  padding: 3rem 0 4.5rem;
  border-top: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.38);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
}

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

.footer-brand {
  font-weight: var(--fw-extrabold);
  margin: 0 0 0.5rem;
}

.footer-grid p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.25rem;
}

.footer-links a {
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
}

.footer-meta {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--color-line-dark);
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3000;
  padding: 1rem;
  pointer-events: none;
}

.cookie-banner.is-hidden {
  display: none;
}

.cookie-inner {
  pointer-events: auto;
  max-width: 960px;
  margin-inline: auto;
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-hover);
}

.cookie-inner p {
  margin: 0 0 1rem;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.cookie-actions .btn {
  width: auto;
  padding-inline: 1.25rem;
  font-size: var(--fs-small);
}

.cookie-panel {
  position: fixed;
  inset: 0;
  z-index: 3100;
  display: none;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  background: rgba(30, 42, 54, 0.35);
}

.cookie-panel.is-open {
  display: flex;
}

.cookie-dialog {
  width: min(520px, 100%);
  max-height: 90vh;
  overflow: auto;
  border-radius: var(--radius-card);
  padding: 1.5rem;
  background: #fff;
  border: 1px solid var(--color-line-dark);
  box-shadow: var(--shadow-hover);
}

.cookie-dialog h2 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
}

.cookie-dialog > p {
  margin: 0 0 1.25rem;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-line-dark);
}

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

.toggle-copy strong {
  display: block;
  font-size: 0.95rem;
}

.toggle-copy span {
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

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

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

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: rgba(107, 124, 143, 0.35);
  border-radius: var(--radius-pill);
  transition: background var(--transition-base);
}

.slider::before {
  position: absolute;
  content: "";
  height: 1.2rem;
  width: 1.2rem;
  left: 0.2rem;
  bottom: 0.2rem;
  background: #fff;
  border-radius: 50%;
  transition: transform var(--transition-base);
  box-shadow: 0 2px 6px rgba(30, 42, 54, 0.2);
}

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

.switch input:checked + .slider::before {
  transform: translateX(1.35rem);
}

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

.dialog-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.25rem;
}

.policy-page {
  padding-block: clamp(3rem, 8vw, 5rem);
}

.policy-page article {
  max-width: 46rem;
  margin-inline: auto;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.65);
}

.policy-page h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.75rem;
}

.policy-page .meta {
  font-size: var(--fs-small);
  color: var(--color-ink-muted);
  margin-bottom: 2rem;
}

.policy-page h2 {
  font-size: 1.125rem;
  margin: 2rem 0 0.65rem;
  font-weight: var(--fw-bold);
}

.policy-page p,
.policy-page li {
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

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

.policy-page address {
  font-style: normal;
  margin-top: 2rem;
  padding: 1rem 1.15rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-line-dark);
  background: rgba(230, 243, 255, 0.45);
  font-size: var(--fs-small);
}

.thank-page {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-section-y-sm);
}

.thank-card {
  max-width: 34rem;
  padding: clamp(2rem, 5vw, 2.75rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.thank-card h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display-md);
  font-weight: var(--fw-extrabold);
  letter-spacing: var(--tracking-tight);
  margin: 0 0 0.75rem;
}

.thank-card p {
  margin: 0 0 1.5rem;
  color: var(--color-ink-soft);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--color-line-dark);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-base);
  z-index: 1002;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.85);
  transform: scale(1.03);
}

.nav-toggle__bar {
  display: block;
  width: 1.15rem;
  height: 1.5px;
  margin-inline: auto;
  background: var(--color-ink);
  border-radius: 1px;
  transition: transform 0.35s ease, opacity 0.35s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(12, 15, 20, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 1000;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(20rem, 92vw);
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: calc(var(--header-h) + 1.25rem) 1.35rem 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    gap: 0.15rem;
    background: rgba(255, 252, 248, 0.94);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-left: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: -24px 0 48px rgba(30, 42, 54, 0.12);
    transform: translateX(105%);
    transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 1001;
    overflow-y: auto;
  }

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

  .nav a {
    padding: 0.85rem 0.35rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(45, 58, 74, 0.08);
  }

  .nav a::after {
    display: none;
  }
}

.hero .container {
  position: relative;
  z-index: 1;
}

/* Hero responsive - 480px and below (phones) */
@media (max-width: 480px) {
  .hero {
    padding-block: clamp(2.5rem, 7vw, 3.5rem);
  }

  .hero__grid {
    gap: clamp(1.5rem, 4vw, 2.25rem);
  }

  .hero__product-card {
    padding: clamp(1.25rem, 3.5vw, 1.75rem);
  }

  .hero__img {
    max-width: min(280px, 85vw);
  }

  .hero__copy {
    gap: 1rem;
  }

  .hero__kicker-track {
    font-size: 0.6875rem;
    letter-spacing: 0.18em;
  }

  .hero__title {
    font-size: clamp(1.6rem, 5.5vw, 2rem);
    gap: 0.12em;
  }

  .hero__desc {
    font-size: 0.9375rem;
  }

  .hero__form-wrap {
    padding: clamp(1.15rem, 2.5vw, 1.5rem);
  }

  .hero__gradient-veil {
    opacity: 0.9;
  }
}

/* Hero responsive - 600px and below (large phones) */
@media (max-width: 600px) {
  .hero__product-glow {
    inset: -10% -8% -5%;
  }

  .hero__trust-badges {
    justify-content: center;
  }
}

/* Hero responsive - 768px and below (tablet portrait) */
@media (max-width: 768px) {
  .hero__geo {
    max-width: 10px;
    max-height: 10px;
  }
}

/* Hero responsive - 641px to 959px (tablet) */
@media (min-width: 641px) and (max-width: 959px) {
  .hero {
    padding-block: clamp(3.5rem, 6vw, 4.5rem);
  }

  .hero__grid {
    gap: 2.5rem;
  }

  .hero__img {
    max-width: 300px;
  }

  .hero__visual {
    max-width: 360px;
    margin-inline: auto;
  }

  .hero__copy {
    text-align: center;
  }

  .hero__copy .hero__desc {
    margin-inline: auto;
  }

  .hero__trust-badges {
    justify-content: center;
  }

  .hero__form-wrap {
    max-width: 420px;
    margin-inline: auto;
  }
}

/* Hero responsive - 960px and up (desktop) */
@media (min-width: 960px) {
  .hero__img {
    max-width: min(320px, 28vw);
  }
}

.formulation-ledger {
  position: relative;
  background: linear-gradient(185deg, rgba(20, 28, 42, 0.04) 0%, rgba(244, 233, 255, 0.35) 45%, rgba(223, 252, 251, 0.45) 100%);
}

.formulation-ledger .section-eyebrow,
.formulation-ledger .section-title,
.formulation-ledger .section-lead {
  color: var(--color-ink);
}

.ledger-shell {
  display: grid;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
  background: rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.ledger-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.ledger-tab {
  font-family: var(--font-display);
  font-weight: var(--fw-medium);
  font-size: var(--fs-small);
  padding: 0.55rem 1rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.45);
  color: var(--color-ink-soft);
  cursor: pointer;
  transition: transform var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-base);
}

.ledger-tab:hover {
  transform: translateY(-2px);
  border-color: rgba(61, 79, 98, 0.25);
}

.ledger-tab.is-active {
  background: var(--color-ink);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 8px 28px rgba(30, 42, 54, 0.2);
}

.ledger-panel-wrap {
  position: relative;
  min-height: 11rem;
}

.ledger-panel {
  display: none;
  animation: ledger-in 0.5s ease both;
}

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

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

.ledger-metric {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem;
  margin-bottom: 0.75rem;
}

.ledger-metric__value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  color: var(--color-ink);
  font-variant-numeric: tabular-nums;
}

.ledger-metric__suffix {
  font-family: var(--font-display);
  font-weight: var(--fw-bold);
  color: var(--color-ink-muted);
}

.ledger-metric__label {
  flex-basis: 100%;
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
}

.ledger-bar {
  height: 6px;
  border-radius: var(--radius-pill);
  background: rgba(45, 58, 74, 0.08);
  overflow: hidden;
  margin-bottom: 1rem;
}

.ledger-bar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--color-ink-soft), var(--color-aqua-mist));
  transition: width 1.1s cubic-bezier(0.22, 1, 0.36, 1);
}

.ledger-panel.is-active .ledger-bar__fill {
  width: var(--fill, 50%);
}

.ledger-panel p {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-ink-soft);
  max-width: 40rem;
}

.ledger-geometry {
  margin-top: var(--space-grid);
  display: grid;
  gap: var(--space-grid);
  grid-template-columns: 1fr;
}

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

.ledger-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line-dark);
  background: rgba(255, 255, 255, 0.6);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ledger-card:hover {
  transform: translateY(-5px) rotate(-0.5deg);
  box-shadow: var(--shadow-hover);
}

.ledger-card__svg {
  width: 100%;
  height: auto;
  max-height: 100px;
  margin-bottom: 0.75rem;
  opacity: 0.85;
}

.ledger-card__icon {
  width: 3rem;
  height: 3rem;
  margin-bottom: 1rem;
  border-radius: var(--radius-input);
  background: linear-gradient(135deg, var(--color-aqua-mist), var(--color-cloud-blue));
  border: 1px solid rgba(45, 58, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.ledger-card__icon svg {
  width: 1.35rem;
  height: 1.35rem;
  stroke: var(--color-ink-soft);
}

.ledger-card:hover .ledger-card__icon {
  transform: scale(1.08) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(30, 42, 54, 0.12);
}

.ledger-card h3 {
  margin: 0 0 0.35rem;
  font-size: 1rem;
  font-weight: var(--fw-bold);
}

.ledger-card p {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--color-ink-muted);
}

.pulse-glow {
  animation: card-glow 4.5s ease-in-out infinite;
}

@keyframes card-glow {
  0%,
  100% {
    box-shadow: var(--shadow-soft), inset 0 0 0 1px rgba(255, 255, 255, 0.4);
  }
  50% {
    box-shadow: 0 24px 56px rgba(223, 252, 251, 0.35), inset 0 0 0 1px rgba(255, 255, 255, 0.65);
  }
}

.bento-card.is-tilt-ready {
  transition: transform 0.2s ease;
}

body.lux-legal {
  background: radial-gradient(120% 80% at 50% 0%, #1a222e 0%, var(--color-lux-onyx) 42%, #07090c 100%);
  color: var(--color-lux-ink);
  min-height: 100vh;
}

body.lux-legal a {
  color: var(--color-lux-gold);
}

body.lux-legal a:hover {
  color: #e4c77f;
}

body.lux-legal .site-header {
  background: rgba(12, 15, 20, 0.72);
  border-bottom: 1px solid rgba(201, 169, 98, 0.22);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

body.lux-legal .brand {
  color: var(--color-lux-ink);
}

body.lux-legal .nav-toggle {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 98, 0.35);
}

body.lux-legal .nav-toggle__bar {
  background: var(--color-lux-ink);
}

@media (min-width: 960px) {
  body.lux-legal .nav a {
    color: var(--color-lux-ink-dim);
  }

  body.lux-legal .nav a:hover {
    color: var(--color-lux-gold);
  }
}

@media (max-width: 959px) {
  body.lux-legal .nav {
    background: rgba(18, 22, 30, 0.97);
    border-left-color: rgba(201, 169, 98, 0.2);
  }

  body.lux-legal .nav a {
    color: var(--color-lux-ink);
    border-bottom-color: rgba(201, 169, 98, 0.12);
  }
}

body.lux-legal .site-footer {
  background: rgba(8, 10, 14, 0.88);
  border-top: 1px solid rgba(201, 169, 98, 0.18);
}

body.lux-legal .footer-grid p,
body.lux-legal .footer-meta {
  color: var(--color-lux-ink-dim);
}

body.lux-legal .footer-meta a {
  color: var(--color-lux-gold);
}

.lux-main {
  padding-block: clamp(2.5rem, 7vw, 4.5rem);
}

.lux-hero {
  max-width: 52rem;
  margin-inline: auto;
  padding-inline: clamp(1rem, 4vw, 2rem);
  text-align: center;
  margin-bottom: clamp(2.5rem, 6vw, 4rem);
}

.lux-hero__kicker {
  font-size: 0.75rem;
  font-weight: var(--fw-medium);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--color-lux-gold);
  margin: 0 0 1rem;
}

.lux-hero h1 {
  font-family: var(--font-lux-serif);
  font-size: clamp(2.35rem, 6vw, 3.75rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin: 0 0 0.85rem;
  color: var(--color-lux-ink);
}

.lux-hero__lede {
  margin: 0 auto;
  max-width: 40rem;
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--color-lux-ink-dim);
}

.lux-hero__stamp {
  margin: 1.5rem 0 0;
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  color: rgba(201, 169, 98, 0.85);
}

.lux-hero__stamp time {
  color: var(--color-lux-gold);
}

.lux-grid {
  width: min(76rem, calc(100% - 2rem));
  margin-inline: auto;
  display: grid;
  gap: 2rem;
  align-items: start;
  grid-template-columns: 1fr;
}

@media (min-width: 960px) {
  .lux-grid {
    grid-template-columns: minmax(0, 1fr) 14.5rem;
    width: min(76rem, calc(100% - 3rem));
  }
}

.lux-article {
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.35rem, 3vw, 2.5rem);
  border-radius: calc(var(--radius-card) + 4px);
  border: 1px solid rgba(201, 169, 98, 0.28);
  background: linear-gradient(165deg, rgba(28, 34, 44, 0.95) 0%, rgba(14, 17, 22, 0.98) 100%);
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.lux-article section {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.lux-article h2 {
  font-family: var(--font-lux-serif);
  font-size: clamp(1.35rem, 2.5vw, 1.65rem);
  font-weight: 600;
  margin: 2.5rem 0 1rem;
  color: var(--color-lux-ink);
  letter-spacing: -0.02em;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  padding-bottom: 0.5rem;
}

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

.lux-article p,
.lux-article li {
  font-size: 0.9625rem;
  line-height: 1.75;
  color: var(--color-lux-ink-dim);
}

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

.lux-article ul {
  padding-left: 1.35rem;
}

.lux-article address {
  font-style: normal;
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-input);
  border: 1px solid rgba(201, 169, 98, 0.25);
  background: rgba(201, 169, 98, 0.06);
  color: var(--color-lux-ink-dim);
  font-size: 0.9375rem;
}

.lux-aside {
  position: relative;
}

@media (min-width: 960px) {
  .lux-toc {
    position: sticky;
    top: calc(var(--header-h) + 1.25rem);
  }
}

.lux-toc {
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid rgba(201, 169, 98, 0.22);
  background: rgba(18, 22, 30, 0.75);
}

.lux-toc p {
  margin: 0 0 0.65rem;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-lux-gold);
}

.lux-toc ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lux-toc a {
  display: block;
  padding: 0.4rem 0;
  font-size: 0.875rem;
  color: var(--color-lux-ink-dim);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color var(--transition-fast), padding-left var(--transition-fast);
}

.lux-toc a:hover {
  color: var(--color-lux-gold);
  padding-left: 0.35rem;
}

.thank-lux {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-section-y-sm);
}

.thank-lux__card {
  max-width: 38rem;
  width: 100%;
  padding: clamp(2.25rem, 6vw, 3.5rem);
  border-radius: calc(var(--radius-card) + 6px);
  border: 1px solid rgba(201, 169, 98, 0.35);
  background: linear-gradient(160deg, rgba(32, 38, 48, 0.96), rgba(12, 15, 20, 0.98));
  text-align: center;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.55), inset 0 0 80px rgba(201, 169, 98, 0.04);
}

.thank-lux__seal {
  width: 4.5rem;
  height: 4.5rem;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 98, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: seal-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.thank-lux__seal svg {
  width: 2rem;
  height: 2rem;
  stroke: var(--color-lux-gold);
  stroke-width: 1.5;
  fill: none;
  stroke-linecap: round;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: seal-draw 1s ease 0.35s forwards;
}

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

@keyframes seal-draw {
  to {
    stroke-dashoffset: 0;
  }
}

.thank-lux__card h1 {
  font-family: var(--font-lux-serif);
  font-size: clamp(1.85rem, 4vw, 2.65rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  margin: 0 0 1rem;
  color: var(--color-lux-ink);
}

.thank-lux__card .thank-body {
  text-align: left;
  margin: 0 0 1.75rem;
}

.thank-lux__card .thank-body p {
  margin: 0 0 1rem;
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--color-lux-ink-dim);
}

.thank-lux__card .thank-body p:last-child {
  margin-bottom: 0;
}

.thank-lux__meta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: rgba(201, 169, 98, 0.75);
  margin: 0 0 1.5rem;
}

@media (max-width: 320px) {
  .container {
    width: var(--container-320);
    padding-inline: 0.5rem;
  }

  body {
    font-size: 0.9375rem;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
  }

  .skip-link {
    font-size: 0.75rem;
    padding: 0.45rem 0.6rem;
  }

  .site-header {
    padding: 0.45rem 0;
  }

  .site-header__inner {
    gap: 0.65rem;
  }

  .brand {
    font-size: 0.8rem;
    line-height: 1.3;
    max-width: calc(100vw - 5.5rem);
    word-break: break-word;
  }

  .nav-toggle {
    width: 2.65rem;
    height: 2.65rem;
    min-width: 2.65rem;
    min-height: 2.65rem;
    flex-shrink: 0;
  }

  .commercial-strip__inner {
    padding: 0.55rem 0.5rem 0.6rem;
  }

  .commercial-strip__text {
    font-size: 0.6875rem;
    line-height: 1.5;
    margin-bottom: 0.35rem;
  }

  .commercial-strip__links {
    font-size: 0.6875rem;
  }

  .commercial-strip__links a {
    display: inline-block;
    padding: 0.2rem 0;
  }

  main > section {
    padding-block: clamp(2.5rem, 8vw, 3.5rem);
  }

  .section-heading {
    margin-bottom: 1.25rem;
  }

  .section-eyebrow {
    font-size: 0.6875rem;
    letter-spacing: 0.1em;
  }

  .section-title {
    font-size: clamp(1.25rem, 5vw, 1.5rem);
    line-height: 1.2;
  }

  .section-lead {
    font-size: 0.8125rem;
  }

  .hero {
    padding-block: clamp(2rem, 6vw, 2.75rem);
  }

  .hero__grid {
    gap: 1.25rem;
  }

  .hero__product-card {
    padding: 1rem;
  }

  .hero__img {
    max-width: min(260px, 88vw);
  }

  .hero__wave {
    height: 40%;
  }

  .hero__trust-badges {
    gap: 0.35rem;
    justify-content: center;
  }

  .badge {
    font-size: 0.6875rem;
    padding: 0.3rem 0.55rem;
  }

  .hero__title {
    font-size: clamp(1.4rem, 6.5vw, 1.75rem);
    gap: 0.1em;
  }

  .hero__kicker-track {
    font-size: 0.625rem;
    letter-spacing: 0.15em;
  }

  .hero__desc {
    font-size: 0.8125rem;
  }

  .hero__price {
    gap: 0.5rem;
  }

  .price-current {
    font-size: 1.4rem;
  }

  .price-old {
    font-size: 0.9375rem;
  }

  .hero__price-note {
    font-size: 0.6875rem;
  }

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

  .hero__form-wrap {
    padding: 1rem;
  }

  .form-title {
    font-size: 0.9375rem;
    margin-bottom: 0.9rem;
  }

  .field input,
  .field textarea {
    padding: 1rem 0.75rem 0.45rem;
    min-height: 2.75rem;
  }

  .field textarea {
    min-height: 5rem;
  }

  .btn {
    min-height: 2.85rem;
    min-width: 2.85rem;
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }

  .ledger-shell {
    padding: 1rem;
  }

  .ledger-tabs {
    gap: 0.35rem;
  }

  .ledger-tab {
    flex: 1 1 100%;
    font-size: 0.75rem;
    padding: 0.6rem 0.5rem;
    min-height: 2.5rem;
  }

  .ledger-metric__value {
    font-size: clamp(1.5rem, 6vw, 1.9rem);
  }

  .ledger-metric__label,
  .ledger-panel p {
    font-size: 0.75rem;
  }

  .ledger-card {
    padding: 1rem;
  }

  .ledger-card__icon {
    width: 2.5rem;
    height: 2.5rem;
    margin-bottom: 0.65rem;
  }

  .ledger-card__icon svg {
    width: 1.15rem;
    height: 1.15rem;
  }

  .ledger-card h3 {
    font-size: 0.9375rem;
  }

  .ledger-card p {
    font-size: 0.75rem;
  }

  .bento-card {
    padding: 1rem;
  }

  .bento-card h3 {
    font-size: 0.9375rem;
  }

  .bento-card p {
    font-size: 0.8125rem;
  }

  .spec-card {
    padding: 1rem;
  }

  .spec-card dt,
  .spec-card dd {
    font-size: 0.75rem;
  }

  .step,
  .ing-card,
  .mini-review,
  .proof-card {
    padding: 1rem;
  }

  .use-item {
    padding: 1rem 1rem 1rem 3.5rem;
  }

  .use-item::before {
    width: 1.75rem;
    height: 1.75rem;
    font-size: 0.75rem;
    left: 1rem;
  }

  .review-card p,
  .mini-review p {
    font-size: 0.8125rem;
  }

  .faq summary {
    font-size: 0.875rem;
    padding: 0.9rem 0;
  }

  .faq .answer {
    font-size: 0.8125rem;
  }

  .disclaimer .box {
    padding: 1rem;
  }

  .disclaimer h2 {
    font-size: 1rem;
  }

  .disclaimer p {
    font-size: 0.8125rem;
  }

  .site-footer {
    padding: 2rem 0 2.5rem;
  }

  .footer-grid {
    gap: 1.25rem;
  }

  .footer-grid p {
    font-size: 0.8125rem;
  }

  .footer-links {
    gap: 0.5rem 0.85rem;
  }

  .footer-links a {
    font-size: 0.8125rem;
  }

  .footer-meta {
    margin-top: 1.25rem;
    padding-top: 1rem;
    font-size: 0.6875rem;
  }

  .cookie-banner {
    padding: 0.5rem;
  }

  .cookie-inner {
    padding: 0.85rem;
    margin-inline: 0.5rem;
  }

  .cookie-actions {
    gap: 0.5rem;
  }

  .cookie-actions .btn {
    padding: 0.65rem 0.9rem;
    flex: 1 1 100%;
  }

  .nav {
    width: min(100%, calc(100vw - 1rem));
    padding: calc(var(--header-h) + 1rem) 1rem 1.5rem;
  }

  .lux-grid {
    width: 100%;
    padding-inline: 0.5rem;
  }

  .lux-article {
    padding: 1rem 0.85rem;
  }

  .lux-hero {
    padding-inline: 0.5rem;
  }

  .lux-hero h1 {
    font-size: 1.75rem;
  }

  .lux-hero__lede {
    font-size: 0.9375rem;
  }

  .lux-hero__stamp {
    font-size: 0.6875rem;
  }

  .lux-article h2 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.65rem;
  }

  .lux-article p,
  .lux-article li {
    font-size: 0.875rem;
  }

  .thank-lux__card {
    padding: 1.5rem 1rem;
  }

  .thank-lux__card h1 {
    font-size: 1.5rem;
  }

  .thank-lux__card .thank-body p {
    font-size: 0.875rem;
  }
}

body.lux-legal .cookie-inner {
  background: rgba(24, 28, 36, 0.94);
  border-color: rgba(201, 169, 98, 0.28);
  color: var(--color-lux-ink);
}

body.lux-legal .cookie-inner p {
  color: var(--color-lux-ink-dim);
}

body.lux-legal .cookie-inner a {
  color: var(--color-lux-gold);
}

body.lux-legal .cookie-dialog {
  background: var(--color-lux-panel);
  border-color: rgba(201, 169, 98, 0.25);
  color: var(--color-lux-ink);
}

body.lux-legal .cookie-dialog h2 {
  color: var(--color-lux-ink);
}

body.lux-legal .cookie-dialog > p,
body.lux-legal .toggle-copy span {
  color: var(--color-lux-ink-dim);
}

body.lux-legal .toggle-copy strong {
  color: var(--color-lux-ink);
}

body.lux-legal .cookie-toggle {
  border-bottom-color: rgba(201, 169, 98, 0.15);
}

body.lux-legal .cookie-actions .btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(201, 169, 98, 0.35);
  color: var(--color-lux-ink);
}

body.lux-legal .thank-lux__card .btn--primary {
  background: linear-gradient(135deg, #d4b56e, #a88942);
  color: #0c0f14;
  border: none;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

body.lux-legal .thank-lux__card .btn--primary:hover {
  filter: brightness(1.08);
  color: #0c0f14;
}
