:root {
  --color-coral: #FF6B81;
  --color-orange: #FF914D;
  --color-mint: #6EFFC3;
  --color-sky: #4DC4FF;
  --color-lavender: #C788FF;
  --color-base-dark: #0f1224;
  --color-base-mid: #1a1f3a;
  --color-surface: rgba(255, 255, 255, 0.08);
  --color-surface-strong: rgba(255, 255, 255, 0.14);
  --color-text: #f2f4fc;
  --color-text-muted: rgba(242, 244, 252, 0.72);
  --color-white: #ffffff;
  --color-light-bg: #f6f8ff;
  --color-ink: #111827;
  --font-family-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-family-body: "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.375rem;
  --font-size-2xl: 1.75rem;
  --font-size-3xl: 2.25rem;
  --font-size-4xl: clamp(2rem, 5vw, 3.25rem);
  --font-weight-normal: 400;
  --font-weight-medium: 600;
  --font-weight-bold: 700;
  --line-height-tight: 1.15;
  --line-height-body: 1.55;
  --letter-spacing-tight: -0.02em;
  --shadow-sm: 0 2px 8px rgba(15, 18, 36, 0.08);
  --shadow-md: 0 8px 24px rgba(15, 18, 36, 0.12);
  --shadow-lg: 0 16px 48px rgba(15, 18, 36, 0.18);
  --shadow-glow-coral: 0 0 28px rgba(255, 107, 129, 0.45), 0 0 56px rgba(255, 145, 77, 0.25);
  --shadow-glow-mint: 0 0 24px rgba(110, 255, 195, 0.35);
  --shadow-glow-blue: 0 0 26px rgba(77, 196, 255, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 1rem;
  --space-lg: 1.5rem;
  --space-xl: 2rem;
  --space-2xl: 3rem;
  --space-3xl: 4.5rem;
  --space-section: clamp(3rem, 8vw, 6rem);
  --container-max: 1180px;
  --header-height: 72px;
  --transition-fast: 160ms ease;
  --transition-base: 280ms ease;
  --transition-slow: 480ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

body {
  margin: 0;
  font-family: var(--font-family-body);
  font-size: var(--font-size-md);
  line-height: var(--line-height-body);
  color: var(--color-text);
  background: linear-gradient(165deg, var(--color-base-dark) 0%, var(--color-base-mid) 45%, #121832 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

body.page-light {
  color: var(--color-ink);
  background: var(--color-light-bg);
}

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

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

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

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

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

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

.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--space-lg);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-height);
  display: flex;
  align-items: center;
  background: rgba(15, 18, 36, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-surface-strong);
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.site-header.is-scrolled {
  background: rgba(15, 18, 36, 0.85);
  box-shadow: var(--shadow-md);
}

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

.brand {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-white);
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-primary {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: var(--space-sm) var(--space-md);
}

.nav-primary a {
  color: var(--color-text);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.nav-primary a:hover {
  color: var(--color-mint);
  background: var(--color-surface);
}

.nav-backdrop {
  display: none;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  z-index: 1003;
  transition: background var(--transition-base), box-shadow var(--transition-base);
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 2px rgba(110, 255, 195, 0.35);
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--color-mint);
  outline-offset: 3px;
}

.burger {
  width: 22px;
  height: 14px;
  position: relative;
  display: block;
}

.burger span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  border-radius: 2px;
  background: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-fast), top var(--transition-base), bottom var(--transition-base);
}

.burger span:nth-child(1) {
  top: 0;
}

.burger span:nth-child(2) {
  top: 6px;
}

.burger span:nth-child(3) {
  bottom: 0;
}

.nav-toggle.is-active .burger span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}

.nav-toggle.is-active .burger span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.nav-toggle.is-active .burger span:nth-child(3) {
  bottom: 6px;
  transform: rotate(-45deg);
}

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

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1001;
    background: rgba(6, 8, 18, 0.55);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--transition-base), visibility var(--transition-base);
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .nav-primary {
    position: fixed;
    top: 0;
    right: 0;
    width: min(92vw, 320px);
    height: 100vh;
    height: 100dvh;
    max-height: none;
    margin: 0;
    padding: calc(var(--header-height) + var(--space-lg)) var(--space-lg) var(--space-xl);
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: var(--space-xs);
    background: linear-gradient(195deg, rgba(28, 32, 58, 0.98) 0%, rgba(12, 14, 28, 0.99) 55%);
    border: none;
    border-left: 1px solid var(--color-surface-strong);
    border-radius: 0;
    box-shadow: -16px 0 48px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    opacity: 1;
    overflow-y: auto;
    z-index: 1002;
    pointer-events: none;
    transition: transform var(--transition-slow), box-shadow var(--transition-base);
    -webkit-overflow-scrolling: touch;
  }

  .nav-primary.is-open {
    transform: translateX(0);
    pointer-events: auto;
  }

  .nav-primary a {
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-md);
    font-size: var(--font-size-md);
    border: 1px solid transparent;
    animation: navLinkIn 0.45s ease backwards;
  }

  .nav-primary a:nth-child(1) { animation-delay: 0.03s; }
  .nav-primary a:nth-child(2) { animation-delay: 0.06s; }
  .nav-primary a:nth-child(3) { animation-delay: 0.09s; }
  .nav-primary a:nth-child(4) { animation-delay: 0.12s; }
  .nav-primary a:nth-child(5) { animation-delay: 0.15s; }
  .nav-primary a:nth-child(6) { animation-delay: 0.18s; }
  .nav-primary a:nth-child(7) { animation-delay: 0.21s; }
  .nav-primary a:nth-child(8) { animation-delay: 0.24s; }
  .nav-primary a:nth-child(9) { animation-delay: 0.27s; }
  .nav-primary a:nth-child(10) { animation-delay: 0.3s; }

  .nav-primary.is-open a:hover {
    border-color: rgba(110, 255, 195, 0.35);
    background: rgba(255, 255, 255, 0.06);
  }
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  padding: 0.75rem 1.35rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform var(--transition-fast), box-shadow var(--transition-base), background var(--transition-base), color var(--transition-fast);
  position: relative;
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 129, 0.45), 0 0 40px rgba(255, 145, 77, 0.35);
}

.btn-secondary {
  background: transparent;
  color: var(--color-text);
  border: 1px solid var(--color-surface-strong);
}

.btn-secondary:hover {
  border-color: var(--color-mint);
  color: var(--color-mint);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
  border: 1px solid transparent;
}

.btn-ghost:hover {
  background: var(--color-surface-strong);
}

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

.hero {
  --hero-mx: 0;
  --hero-my: 0;
  position: relative;
  padding: var(--space-3xl) 0 var(--space-section);
  overflow: hidden;
  isolation: isolate;
}

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

.hero-mesh {
  position: absolute;
  inset: -60% -25%;
  background:
    radial-gradient(ellipse 80% 50% at 35% 15%, rgba(255, 107, 129, 0.42) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 75% 45%, rgba(77, 196, 255, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 20% 85%, rgba(199, 136, 255, 0.22) 0%, transparent 50%),
    radial-gradient(ellipse 100% 80% at 50% 100%, rgba(110, 255, 195, 0.08) 0%, transparent 45%);
  animation: heroMeshDrift 16s ease-in-out infinite alternate;
  opacity: 0.95;
}

@keyframes heroMeshDrift {
  0% { transform: translate(0, 0) rotate(0deg) scale(1); }
  100% { transform: translate(-4%, 5%) rotate(2deg) scale(1.03); }
}

.hero-scanline {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(255, 255, 255, 0.012) 2px,
    rgba(255, 255, 255, 0.012) 4px
  );
  animation: heroScanShift 10s linear infinite;
  opacity: 0.5;
}

@keyframes heroScanShift {
  0% { transform: translateY(0); }
  100% { transform: translateY(8px); }
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 85% 70% at 65% 40%, black 15%, transparent 70%);
  animation: heroGridPan 22s linear infinite;
}

@keyframes heroGridPan {
  0% { background-position: 0 0, 0 0; opacity: 0.65; }
  50% { opacity: 0.9; }
  100% { background-position: 56px 56px, 56px 56px; opacity: 0.65; }
}

.hero-aurora {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-aurora .aurora-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(52px);
  opacity: 0.48;
  animation: auroraFloat 14s ease-in-out infinite;
}

.hero-aurora .aurora-blob:nth-child(1) {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--color-coral) 0%, transparent 70%);
  top: -10%;
  left: -8%;
}

.hero-aurora .aurora-blob:nth-child(2) {
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, var(--color-sky) 0%, transparent 70%);
  top: 28%;
  right: -5%;
  animation-delay: -4s;
  animation-duration: 18s;
}

.hero-aurora .aurora-blob:nth-child(3) {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, var(--color-lavender) 0%, transparent 70%);
  bottom: 0;
  left: 40%;
  animation-delay: -7s;
  animation-duration: 17s;
}

@keyframes auroraFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(22px, -24px) scale(1.06); }
  66% { transform: translate(-16px, 14px) scale(0.94); }
}

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

.hero-shape {
  position: absolute;
  border-radius: 50%;
  border: 2px solid rgba(110, 255, 195, 0.18);
  animation: heroShapeBob 9s ease-in-out infinite;
}

.hero-shape--a {
  width: 140px;
  height: 140px;
  top: 12%;
  left: 52%;
  border-color: rgba(255, 145, 77, 0.22);
}

.hero-shape--b {
  width: 72px;
  height: 72px;
  bottom: 28%;
  right: 6%;
  animation-delay: -2s;
  animation-duration: 11s;
  border-radius: 28% 72% 40% 60% / 45% 35% 65% 55%;
}

.hero-shape--c {
  width: 48px;
  height: 48px;
  top: 42%;
  right: 18%;
  animation-delay: -4s;
  border-color: rgba(77, 196, 255, 0.35);
  background: rgba(77, 196, 255, 0.06);
}

@keyframes heroShapeBob {
  0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.55; }
  50% { transform: translate(-18px, 22px) rotate(12deg); opacity: 0.95; }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  align-items: start;
}

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

.hero-main {
  padding-top: var(--space-sm);
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-kicker {
  margin: 0 0 var(--space-md);
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-kicker-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-bold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-mint);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(110, 255, 195, 0.38);
  box-shadow: 0 0 0 0 rgba(110, 255, 195, 0.25);
  animation: heroKickerGlow 3.2s ease-in-out infinite;
}

@keyframes heroKickerGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(110, 255, 195, 0.2); }
  50% { box-shadow: 0 0 28px 1px rgba(110, 255, 195, 0.18); }
}

.hero h1 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-4xl);
  line-height: var(--line-height-tight);
  letter-spacing: var(--letter-spacing-tight);
  margin: 0 0 var(--space-md);
  color: var(--color-white);
  animation: heroFadeUp 0.8s 0.08s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-title-line {
  display: inline;
}

.hero-title-accent {
  display: inline;
  background: linear-gradient(
    110deg,
    var(--color-mint),
    var(--color-sky),
    var(--color-coral),
    var(--color-lavender),
    var(--color-mint)
  );
  background-size: 250% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroGradientFlow 6s linear infinite;
}

@keyframes heroGradientFlow {
  0% { background-position: 0% center; }
  100% { background-position: 250% center; }
}

.hero-lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
  max-width: 40ch;
  animation: heroFadeUp 0.75s 0.14s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

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

.hero-trust-block {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
  animation: heroFadeUp 0.7s 0.2s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ads-hero-notice {
  margin: 0 0 var(--space-lg);
  padding: var(--space-md) var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(110, 255, 195, 0.22);
  font-size: var(--font-size-xs);
  line-height: 1.5;
  color: var(--color-text-muted);
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.ads-hero-notice strong {
  color: var(--color-white);
  display: block;
  margin-bottom: var(--space-xs);
  font-size: var(--font-size-sm);
}

.hero-trust-footnote {
  width: 100%;
  flex-basis: 100%;
  margin: 0;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.hero-price-note {
  margin: 0;
  max-width: 42ch;
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.form-intro {
  margin: 0 0 var(--space-md);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.rating-label {
  display: inline-block;
  margin-left: var(--space-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-text-muted);
  vertical-align: middle;
}

.hero-stars svg {
  animation: heroStarTwinkle 2.8s ease-in-out infinite;
}

.hero-stars svg:nth-child(1) { animation-delay: 0s; }
.hero-stars svg:nth-child(2) { animation-delay: 0.1s; }
.hero-stars svg:nth-child(3) { animation-delay: 0.2s; }
.hero-stars svg:nth-child(4) { animation-delay: 0.3s; }
.hero-stars svg:nth-child(5) { animation-delay: 0.4s; }

@keyframes heroStarTwinkle {
  0%, 100% { transform: scale(1); opacity: 1; }
  40% { transform: scale(1.12); opacity: 0.85; }
  70% { transform: scale(0.94); opacity: 1; }
}

.hero-price {
  position: relative;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-sm);
  animation: heroFadeUp 0.72s 0.24s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-price-glow {
  position: absolute;
  left: -8px;
  top: 50%;
  width: 120px;
  height: 48px;
  transform: translateY(-50%);
  background: radial-gradient(ellipse, rgba(255, 107, 129, 0.35) 0%, transparent 70%);
  filter: blur(16px);
  z-index: -1;
  animation: heroPricePulse 2.4s ease-in-out infinite;
}

@keyframes heroPricePulse {
  0%, 100% { opacity: 0.55; transform: translateY(-50%) scale(1); }
  50% { opacity: 1; transform: translateY(-50%) scale(1.08); }
}

.hero-highlights li {
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.hero-highlights li:nth-child(1) { animation-delay: 0.3s; }
.hero-highlights li:nth-child(2) { animation-delay: 0.38s; }
.hero-highlights li:nth-child(3) { animation-delay: 0.46s; }

.hero-order-card {
  animation: heroFadeUp 0.85s 0.5s cubic-bezier(0.22, 1, 0.36, 1) backwards,
    heroCardSheen 8s ease-in-out infinite 1.2s;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-lg), 0 0 60px rgba(77, 196, 255, 0.08);
}

@keyframes heroCardSheen {
  0%, 100% { box-shadow: var(--shadow-lg), 0 0 60px rgba(77, 196, 255, 0.08); }
  50% { box-shadow: var(--shadow-lg), 0 0 80px rgba(255, 107, 129, 0.12); }
}

.hero-submit-pulse {
  animation: heroCtaPulse 2.6s ease-in-out infinite;
}

@keyframes heroCtaPulse {
  0%, 100% { box-shadow: var(--shadow-glow-coral); }
  50% { box-shadow: 0 0 36px rgba(255, 107, 129, 0.55), 0 0 64px rgba(255, 145, 77, 0.3); }
}

.hero-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(520px, 70vh);
  margin-top: var(--space-md);
  animation: heroFadeUp 0.9s 0.12s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@media (max-width: 960px) {
  .hero-stage {
    order: -1;
    min-height: 340px;
    margin-top: 0;
  }
}

.hero-orbit {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  border: 1px dashed rgba(255, 145, 77, 0.28);
}

.hero-orbit--outer {
  width: min(100%, 420px);
  aspect-ratio: 1;
  animation: heroOrbitSpin 32s linear infinite;
}

.hero-orbit--mid {
  width: min(88%, 360px);
  aspect-ratio: 1;
  border-color: rgba(77, 196, 255, 0.22);
  animation: heroOrbitSpin 24s linear infinite reverse;
}

.hero-orbit--inner {
  width: min(74%, 300px);
  aspect-ratio: 1;
  border-color: rgba(199, 136, 255, 0.2);
  border-style: solid;
  animation: heroOrbitSpin 18s linear infinite;
  opacity: 0.7;
}

@keyframes heroOrbitSpin {
  to { transform: rotate(360deg); }
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 2;
  transform: translate(
    calc(var(--hero-mx) * 28px),
    calc(var(--hero-my) * 22px)
  );
  transition: transform 0.35s ease-out;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 8% 2%;
  background: radial-gradient(circle, rgba(110, 255, 195, 0.22) 0%, transparent 65%);
  filter: blur(42px);
  z-index: -1;
  animation: heroGlowBreath 4s ease-in-out infinite;
}

@keyframes heroGlowBreath {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}

.hero-visual img {
  filter: drop-shadow(var(--shadow-glow-blue));
  transition: transform 0.45s var(--transition-slow);
  animation: heroImgMotion 10s ease-in-out infinite;
}

@keyframes heroImgMotion {
  0%, 100% { transform: translateY(0) rotate(-1deg) scale(1); }
  50% { transform: translateY(-14px) rotate(1.5deg) scale(1.02); }
}

.hero-visual:hover img {
  animation-play-state: paused;
  transform: scale(1.04) rotate(-0.5deg) translateY(-4px);
}

.hero-floating-stats {
  position: absolute;
  inset: 0;
  list-style: none;
  margin: 0;
  padding: 0;
  pointer-events: none;
  z-index: 3;
}

.hero-stat-chip {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  background: rgba(15, 18, 36, 0.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: heroChipFloat 5s ease-in-out infinite;
}

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

.hero-stat-chip--2 {
  bottom: 18%;
  left: 2%;
  animation-delay: -1.2s;
}

.hero-stat-chip--3 {
  bottom: 10%;
  right: 10%;
  animation-delay: -2.4s;
}

@keyframes heroChipFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-10px) scale(1.03); }
}

.hero-stat-val {
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-lg);
  color: var(--color-mint);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.hero-stat-cap {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

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

.stars {
  display: flex;
  gap: 2px;
  color: var(--color-orange);
}

.stars svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

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

.badge {
  font-size: var(--font-size-xs);
  font-weight: var(--font-weight-medium);
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-full);
  background: var(--color-surface);
  border: 1px solid rgba(110, 255, 195, 0.35);
  color: var(--color-mint);
}

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

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

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

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

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

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

.order-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-lg);
}

.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: 0.65rem 0.85rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-surface-strong);
  background: rgba(15, 18, 36, 0.6);
  color: var(--color-white);
  font-family: inherit;
  font-size: var(--font-size-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-mint);
  box-shadow: 0 0 0 3px rgba(110, 255, 195, 0.2);
}

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

.form-error {
  font-size: var(--font-size-xs);
  color: var(--color-coral);
  margin-top: var(--space-xs);
  min-height: 1em;
}

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

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

.checkbox-row input {
  margin-top: 0.2rem;
  accent-color: var(--color-mint);
}

.checkbox-row label {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

.section {
  padding: var(--space-section) 0;
  position: relative;
}

.section-head {
  max-width: 40rem;
  margin-bottom: var(--space-2xl);
}

.section-head h2 {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-3xl);
  margin: 0 0 var(--space-sm);
  color: var(--color-white);
  letter-spacing: var(--letter-spacing-tight);
}

.section-head p {
  margin: 0;
  color: var(--color-text-muted);
}

.page-light .section-head h2 {
  color: var(--color-ink);
}

.page-light .section-head p {
  color: #374151;
}

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

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

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.reveal.is-visible .reveal-stagger > *:nth-child(1) { transition-delay: 0.04s; }
.reveal.is-visible .reveal-stagger > *:nth-child(2) { transition-delay: 0.1s; }
.reveal.is-visible .reveal-stagger > *:nth-child(3) { transition-delay: 0.16s; }
.reveal.is-visible .reveal-stagger > *:nth-child(4) { transition-delay: 0.22s; }
.reveal.is-visible .reveal-stagger > *:nth-child(5) { transition-delay: 0.28s; }
.reveal.is-visible .reveal-stagger > *:nth-child(6) { transition-delay: 0.34s; }
.reveal.is-visible .reveal-stagger > *:nth-child(7) { transition-delay: 0.4s; }
.reveal.is-visible .reveal-stagger > *:nth-child(8) { transition-delay: 0.46s; }

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

@media (max-width: 960px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.bento-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: transform var(--transition-base), box-shadow var(--transition-base), border-color var(--transition-base);
}

.bento-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 145, 77, 0.45);
  box-shadow: var(--shadow-glow-mint);
}

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

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

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

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

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

.bento-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-md);
  background: linear-gradient(135deg, rgba(255, 107, 129, 0.25), rgba(77, 196, 255, 0.2));
}

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

.ingredient-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  overflow: hidden;
  min-height: 160px;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

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

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

.ingredient-card .ingredient-benefit {
  position: absolute;
  inset: 0;
  padding: var(--space-lg);
  background: linear-gradient(165deg, rgba(15, 18, 36, 0.92), rgba(77, 196, 255, 0.35));
  color: var(--color-white);
  font-size: var(--font-size-sm);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: center;
}

.ingredient-card:hover .ingredient-benefit {
  opacity: 1;
}

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

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

.trust-pillar {
  text-align: center;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  transition: transform var(--transition-base);
}

.trust-pillar:hover {
  transform: translateY(-4px);
}

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

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

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

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

@keyframes svgPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.9; }
}

.formulation-lab {
  position: relative;
  overflow: hidden;
}

.lab-glow-field {
  position: absolute;
  inset: -20% -30%;
  pointer-events: none;
  z-index: 0;
}

.lab-glow-field::before,
.lab-glow-field::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
  animation: labPulse 10s ease-in-out infinite;
}

.lab-glow-field::before {
  width: 55%;
  height: 45%;
  background: var(--color-mint);
  top: 10%;
  left: 5%;
}

.lab-glow-field::after {
  width: 45%;
  height: 50%;
  background: var(--color-coral);
  bottom: 0;
  right: 0;
  animation-delay: -3s;
}

@keyframes labPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.08); opacity: 0.45; }
}

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

.lab-tablist {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-xl);
}

.lab-tab {
  font-family: var(--font-family-heading);
  font-weight: var(--font-weight-bold);
  font-size: var(--font-size-sm);
  padding: 0.65rem 1.15rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-surface-strong);
  background: rgba(255, 255, 255, 0.05);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: color var(--transition-fast), background var(--transition-base), border-color var(--transition-base), box-shadow var(--transition-base), transform var(--transition-fast);
}

.lab-tab:hover {
  color: var(--color-white);
  border-color: rgba(255, 145, 77, 0.45);
  transform: translateY(-2px);
}

.lab-tab[aria-selected="true"] {
  color: var(--color-base-dark);
  background: linear-gradient(120deg, var(--color-mint), var(--color-sky));
  border-color: transparent;
  box-shadow: var(--shadow-glow-mint);
}

.lab-tab:active {
  transform: scale(0.97);
}

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

@media (max-width: 860px) {
  .lab-panel-grid {
    grid-template-columns: 1fr;
  }
}

.lab-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  position: relative;
  overflow: hidden;
  transition: border-color var(--transition-base), box-shadow var(--transition-slow);
}

.lab-viz:focus-within,
.lab-viz:hover {
  border-color: rgba(199, 136, 255, 0.45);
  box-shadow: 0 0 40px rgba(199, 136, 255, 0.2);
}

.lab-ring-svg {
  width: min(100%, 240px);
  height: auto;
  animation: labRingSpin 24s linear infinite;
}

@keyframes labRingSpin {
  to { transform: rotate(360deg); }
}

.lab-panel {
  animation: labPanelIn 0.55s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.lab-panel[hidden] {
  display: none !important;
}

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

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

.lab-panel-inner > p {
  color: var(--color-text-muted);
  margin: 0 0 var(--space-lg);
}

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

@media (max-width: 480px) {
  .lab-metrics {
    grid-template-columns: 1fr;
  }
}

.lab-metric {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-surface-strong);
  text-align: center;
  transition: transform var(--transition-base), border-color var(--transition-base);
}

.lab-metric:hover {
  transform: scale(1.03);
  border-color: var(--color-orange);
}

.lab-metric strong {
  display: block;
  font-size: var(--font-size-2xl);
  font-family: var(--font-family-heading);
  color: var(--color-mint);
  font-variant-numeric: tabular-nums;
}

.lab-metric span {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
}

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

.pill-tag {
  font-size: var(--font-size-xs);
  padding: 0.35rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(255, 107, 129, 0.15);
  border: 1px solid rgba(255, 107, 129, 0.35);
  color: var(--color-coral);
}

.playful-card {
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.playful-card:hover {
  transform: translateY(-6px) rotate(-0.5deg);
  box-shadow: 0 20px 40px rgba(15, 18, 36, 0.35);
}

.stat-flip {
  perspective: 800px;
}

.stat-flip-inner {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transform-style: preserve-3d;
}

.stat-flip:hover .stat-flip-inner {
  transform: rotateY(12deg) rotateX(4deg);
}

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

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

.rating-summary {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  border: 1px solid var(--color-surface-strong);
}

.rating-big {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-white);
}

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

.review-preview {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-surface-strong);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  transition: border-color var(--transition-base);
}

.review-preview:hover {
  border-color: var(--color-sky);
}

.benefits-bento .bento-card.span-hero {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(145deg, rgba(255, 107, 129, 0.15), rgba(77, 196, 255, 0.12));
}

@media (max-width: 520px) {
  .benefits-bento .bento-card.span-hero {
    grid-column: span 1;
    grid-row: span 1;
  }
}

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

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

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

.spec-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  display: flex;
  gap: var(--space-md);
  transition: transform var(--transition-base);
}

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

.spec-card svg {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
}

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

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

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

.step-card {
  text-align: center;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-surface-strong);
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
}

.step-card:hover {
  border-color: var(--color-lavender);
  box-shadow: 0 0 24px rgba(199, 136, 255, 0.25);
}

.step-num {
  width: 44px;
  height: 44px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  color: var(--color-base-dark);
  background: linear-gradient(135deg, var(--color-mint), var(--color-sky));
}

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

.ingredient-simple {
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-surface-strong);
}

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

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

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

.instructions-ol li {
  counter-increment: step;
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--color-surface-strong);
}

.instructions-ol li::before {
  content: counter(step);
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--font-weight-bold);
  background: rgba(255, 145, 77, 0.25);
  color: var(--color-orange);
}

.reviews-section .review-card {
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-surface-strong);
  transition: transform var(--transition-base);
}

.reviews-section .review-card:hover {
  transform: translateY(-4px);
}

.review-author {
  font-weight: var(--font-weight-medium);
  color: var(--color-white);
  margin-top: var(--space-md);
  font-size: var(--font-size-sm);
}

.faq-item {
  border-bottom: 1px solid var(--color-surface-strong);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: var(--color-white);
  font-size: var(--font-size-md);
  font-weight: var(--font-weight-medium);
  padding: var(--space-md) 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-md);
}

.faq-question span.icon {
  transition: transform var(--transition-base);
  color: var(--color-mint);
}

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

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

.faq-answer-inner {
  padding-bottom: var(--space-md);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.cta-final {
  text-align: center;
  padding: var(--space-3xl) var(--space-lg);
  border-radius: var(--radius-xl);
  background: linear-gradient(120deg, rgba(255, 107, 129, 0.2), rgba(77, 196, 255, 0.15), rgba(199, 136, 255, 0.18));
  border: 1px solid var(--color-surface-strong);
}

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

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

.disclaimer-box,
.legal-strip {
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid var(--color-surface-strong);
  margin-top: var(--space-xl);
}

.disclaimer-box strong,
.legal-strip strong {
  color: var(--color-white);
}

.site-footer {
  padding: var(--space-2xl) 0 var(--space-xl);
  border-top: 1px solid var(--color-surface-strong);
  background: rgba(10, 12, 26, 0.85);
}

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

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

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-lg);
  margin-bottom: var(--space-md);
}

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

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

.footer-legal-note {
  grid-column: 1 / -1;
  margin-top: var(--space-lg);
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  font-size: var(--font-size-xs);
  line-height: 1.5;
  color: var(--color-text-muted);
}

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

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

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

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

.cookie-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: rgba(20, 24, 48, 0.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid var(--color-surface-strong);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  justify-content: space-between;
}

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

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

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

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

.modal-panel {
  width: 100%;
  max-width: 480px;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  background: rgba(22, 26, 52, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--color-surface-strong);
  box-shadow: var(--shadow-lg);
  transform: translateY(16px);
  transition: transform var(--transition-slow);
}

.modal-overlay.is-open .modal-panel {
  transform: translateY(0);
}

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

.cookie-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  padding: var(--space-md) 0;
  border-bottom: 1px solid var(--color-surface-strong);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.cookie-category strong {
  color: var(--color-white);
}

.switch {
  position: relative;
  width: 44px;
  height: 24px;
  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-base);
}

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

.switch input:checked + .switch-slider {
  background: linear-gradient(90deg, var(--color-mint), var(--color-sky));
}

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

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

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

.tilt-card {
  transform-style: preserve-3d;
  transition: transform var(--transition-fast);
}

.page-article {
  padding: var(--space-3xl) 0;
}

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

.page-article h2 {
  font-size: var(--font-size-xl);
  margin-top: var(--space-2xl);
  margin-bottom: var(--space-md);
}

.page-article p,
.page-article li {
  max-width: 75ch;
}

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

body.page-light .site-header {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
}

body.page-light .site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.92);
}

body.page-light .brand {
  color: var(--color-ink);
}

body.page-light .site-footer .brand {
  color: var(--color-white);
}

body.page-light .nav-primary a {
  color: var(--color-ink);
}

body.page-light .nav-primary a:hover {
  color: var(--color-coral);
  background: rgba(255, 107, 129, 0.08);
}

body.page-light .nav-toggle {
  background: rgba(15, 23, 42, 0.06);
}

body.page-light .nav-toggle:hover {
  background: rgba(255, 107, 129, 0.12);
  box-shadow: 0 0 0 2px rgba(255, 107, 129, 0.25);
}

body.page-light .burger span {
  background: var(--color-ink);
}

@media (max-width: 900px) {
  body.page-light .nav-primary {
    background: linear-gradient(195deg, #ffffff 0%, #eef2ff 50%, #f8fafc 100%);
    border-left-color: rgba(17, 24, 39, 0.08);
    box-shadow: -16px 0 40px rgba(15, 23, 42, 0.12);
  }

  body.page-light .nav-primary a {
    color: var(--color-ink);
  }

  body.page-light .nav-primary a:hover {
    color: var(--color-coral);
    background: rgba(255, 107, 129, 0.08);
    border-color: transparent;
  }

  body.page-light .nav-backdrop {
    background: rgba(15, 23, 42, 0.35);
  }
}

body.page-light .page-article h1,
body.page-light .page-article h2 {
  color: var(--color-ink);
}

body.page-light .page-article p,
body.page-light .page-article li {
  color: #374151;
}

body.page-light a {
  color: #2563eb;
}

body.page-light a:hover {
  color: var(--color-coral);
}

.legal-doc {
  background: linear-gradient(180deg, #f0f4ff 0%, #f8fafc 38%, #ffffff 100%);
}

.legal-shell {
  padding-bottom: var(--space-3xl);
}

.legal-hero {
  position: relative;
  padding: var(--space-3xl) 0 var(--space-2xl);
  overflow: hidden;
  border-bottom: 1px solid rgba(17, 24, 39, 0.08);
  background: linear-gradient(135deg, rgba(255, 107, 129, 0.12) 0%, rgba(77, 196, 255, 0.1) 45%, rgba(199, 136, 255, 0.08) 100%);
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 20% -10% -40%;
  background: radial-gradient(ellipse at 70% 0%, rgba(110, 255, 195, 0.25), transparent 55%);
  pointer-events: none;
}

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

.legal-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);
}

.legal-hero h1 {
  font-family: var(--font-family-heading);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  margin: 0 0 var(--space-md);
  letter-spacing: var(--letter-spacing-tight);
  color: var(--color-ink);
}

.legal-hero-lead {
  max-width: 52ch;
  margin: 0 0 var(--space-lg);
  color: #475569;
  font-size: var(--font-size-lg);
}

.legal-meta-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
}

.legal-date-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 39, 0.1);
  box-shadow: var(--shadow-sm);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-medium);
  color: var(--color-ink);
}

.legal-date-chip svg {
  flex-shrink: 0;
  color: var(--color-orange);
}

.legal-layout {
  display: grid;
  gap: var(--space-2xl);
  grid-template-columns: 240px 1fr;
  align-items: start;
  padding-top: var(--space-2xl);
}

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

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + var(--space-md));
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  background: var(--color-white);
  border: 1px solid rgba(17, 24, 39, 0.08);
  box-shadow: var(--shadow-sm);
}

.legal-toc strong {
  display: block;
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-md);
  color: var(--color-ink);
}

.legal-toc a {
  display: block;
  font-size: var(--font-size-sm);
  padding: 0.35rem 0;
  color: #475569;
  text-decoration: none;
  border-left: 2px solid transparent;
  padding-left: var(--space-sm);
  margin-left: -2px;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

.legal-toc a:hover {
  color: var(--color-coral);
  border-left-color: var(--color-coral);
}

.legal-prose {
  background: var(--color-white);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(17, 24, 39, 0.08);
  padding: clamp(var(--space-lg), 4vw, var(--space-2xl));
  box-shadow: var(--shadow-md);
}

.legal-prose h2 {
  scroll-margin-top: calc(var(--header-height) + var(--space-md));
}

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

.legal-prose ol li {
  margin-bottom: var(--space-sm);
  max-width: none;
}

.legal-prose table {
  width: 100%;
  border-collapse: collapse;
  font-size: var(--font-size-sm);
  margin: var(--space-lg) 0;
}

.legal-prose th,
.legal-prose td {
  border: 1px solid rgba(17, 24, 39, 0.12);
  padding: var(--space-sm) var(--space-md);
  text-align: left;
}

.legal-prose th {
  background: rgba(77, 196, 255, 0.1);
  font-weight: var(--font-weight-bold);
}

.legal-callout {
  padding: var(--space-lg);
  border-radius: var(--radius-md);
  margin: var(--space-xl) 0;
  border-left: 4px solid var(--color-sky);
  background: linear-gradient(90deg, rgba(77, 196, 255, 0.12), rgba(255, 255, 255, 0.6));
}

.legal-callout--warm {
  border-left-color: var(--color-orange);
  background: linear-gradient(90deg, rgba(255, 145, 77, 0.12), rgba(255, 255, 255, 0.6));
}

.thank-wrap {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--space-2xl) var(--space-md);
  position: relative;
  overflow: hidden;
}

.thank-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.thank-confetti span {
  position: absolute;
  width: 8px;
  height: 12px;
  border-radius: 2px;
  opacity: 0;
  animation: confettiFall 4.5s ease-in infinite;
}

.thank-confetti span:nth-child(6n+1) { background: var(--color-coral); left: 8%; animation-delay: 0s; }
.thank-confetti span:nth-child(6n+2) { background: var(--color-mint); left: 22%; animation-delay: 0.4s; }
.thank-confetti span:nth-child(6n+3) { background: var(--color-sky); left: 40%; animation-delay: 0.8s; }
.thank-confetti span:nth-child(6n+4) { background: var(--color-lavender); left: 58%; animation-delay: 1.2s; }
.thank-confetti span:nth-child(6n+5) { background: var(--color-orange); left: 72%; animation-delay: 0.2s; }
.thank-confetti span:nth-child(6n) { background: var(--color-coral); left: 88%; animation-delay: 0.6s; }

.thank-confetti span:nth-child(odd) { animation-duration: 5.2s; }

@keyframes confettiFall {
  0% { transform: translateY(-20px) rotate(0deg); opacity: 0; }
  10% { opacity: 1; }
  100% { transform: translateY(100vh) rotate(720deg); opacity: 0; }
}

.thank-panel {
  position: relative;
  z-index: 1;
  max-width: 580px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(var(--space-xl), 5vw, var(--space-2xl));
  border-radius: var(--radius-xl);
  background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(255, 107, 129, 0.12);
  text-align: center;
  animation: thankPop 0.7s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

@keyframes thankPop {
  from {
    opacity: 0;
    transform: translateY(28px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.thank-icon-ring {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-lg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-mint), var(--color-sky));
  color: var(--color-base-dark);
  font-size: 2rem;
  font-weight: var(--font-weight-bold);
  box-shadow: var(--shadow-glow-mint);
  animation: thankPulse 2s ease-in-out infinite;
}

@keyframes thankPulse {
  0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(110, 255, 195, 0.35); }
  50% { transform: scale(1.05); box-shadow: 0 0 0 16px rgba(110, 255, 195, 0); }
}

.thank-panel h1 {
  color: var(--color-ink);
  margin-top: 0;
  font-size: var(--font-size-2xl);
}

.thank-panel p {
  color: #4b5563;
}

.thank-kicker {
  margin-bottom: var(--space-md);
  color: var(--color-coral);
  font-size: var(--font-size-sm);
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.thank-btn-outline {
  color: var(--color-ink);
  border: 1px solid rgba(17, 24, 39, 0.2);
  background: transparent;
}

.thank-btn-outline:hover {
  border-color: var(--color-coral);
  color: var(--color-coral);
}

.thank-updated {
  margin-top: var(--space-xl);
  font-size: var(--font-size-xs);
  color: #64748b;
}

.thank-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

@media (max-width: 320px) {
  :root {
    --space-lg: 0.875rem;
    --space-xl: 1.2rem;
    --space-2xl: 1.65rem;
    --space-3xl: 2.15rem;
    --space-section: clamp(1.65rem, 8vw, 2.75rem);
    --space-md: 0.875rem;
    --font-size-xs: 0.6875rem;
    --font-size-sm: 0.8125rem;
    --font-size-md: 0.9375rem;
    --font-size-lg: 1rem;
    --font-size-3xl: 1.4rem;
    --font-size-2xl: 1.25rem;
    --font-size-xl: 1.05rem;
    --font-size-4xl: 1.42rem;
    --radius-lg: 16px;
    --radius-md: 10px;
    --radius-xl: 18px;
    --header-height: 60px;
    --container-max: 100%;
  }

  .container {
    padding-left: max(0.625rem, env(safe-area-inset-left, 0px));
    padding-right: max(0.625rem, env(safe-area-inset-right, 0px));
  }

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

  .brand {
    font-size: 0.72rem;
    max-width: min(11.5rem, calc(100vw - 112px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
  }

  .nav-primary {
    width: 100%;
    max-width: 100%;
    padding: calc(var(--header-height) + var(--space-md)) var(--space-md) var(--space-lg);
  }

  .site-header {
    height: var(--header-height);
  }

  .hero {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-xl);
  }

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

  .ads-hero-notice {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.65rem;
  }

  .ads-hero-notice strong {
    font-size: 0.75rem;
  }

  .hero-kicker-pill {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    padding: 0.3rem 0.65rem;
  }

  .hero h1 {
    font-size: 1.35rem;
    line-height: 1.18;
    word-break: break-word;
    hyphens: auto;
  }

  .hero-lead {
    font-size: 0.88rem;
    max-width: none;
  }

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

  .hero-trust-footnote {
    font-size: 0.65rem;
  }

  .hero-stars svg {
    width: 14px;
    height: 14px;
  }

  .badge-row {
    gap: 0.35rem;
  }

  .badge {
    font-size: 0.6rem;
    padding: 0.28rem 0.5rem;
  }

  .price-block {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

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

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

  .hero-price-note {
    max-width: 100%;
    font-size: 0.65rem;
  }

  .hero-highlights li {
    font-size: 0.78rem;
  }

  .form-intro {
    font-size: 0.68rem;
  }

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

  .order-card h2 {
    font-size: var(--font-size-lg);
  }

  .form-group input,
  .form-group textarea {
    font-size: 1rem;
    min-height: 44px;
    padding: 0.55rem 0.7rem;
  }

  .form-group textarea {
    min-height: 88px;
  }

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

  .checkbox-row label {
    font-size: 0.65rem;
    line-height: 1.4;
  }

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

  .section-head {
    margin-bottom: var(--space-lg);
  }

  .section-head h2 {
    font-size: var(--font-size-xl);
    line-height: 1.2;
    word-break: break-word;
  }

  .section-head p {
    font-size: 0.82rem;
  }

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

  .stars svg {
    width: 14px;
    height: 14px;
  }

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

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

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

  .bento-icon {
    width: 36px;
    height: 36px;
    margin-bottom: var(--space-sm);
  }

  .ingredient-card {
    min-height: 0;
    padding: var(--space-md);
  }

  .ingredient-card h3 {
    font-size: 0.9rem;
  }

  .ingredient-card .ingredient-benefit {
    padding: var(--space-md);
    font-size: 0.72rem;
  }

  .trust-science {
    gap: var(--space-md);
  }

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

  .trust-pillar h3 {
    font-size: var(--font-size-md);
  }

  .trust-pillar p {
    font-size: 0.78rem;
  }

  .trust-pillar svg {
    width: 52px;
    height: 52px;
  }

  .lab-tablist {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .lab-tab {
    flex: none;
    width: 100%;
    padding: 0.65rem 0.85rem;
    font-size: 0.78rem;
    text-align: center;
  }

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

  .lab-panel-inner > p {
    font-size: 0.8rem;
  }

  .lab-metrics {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
  }

  .lab-metric {
    padding: var(--space-sm);
  }

  .lab-metric strong {
    font-size: var(--font-size-xl);
  }

  .lab-ring-svg {
    width: min(100%, 200px) !important;
    height: auto !important;
  }

  .pill-row {
    gap: 0.35rem;
  }

  .pill-tag {
    font-size: 0.58rem;
    padding: 0.28rem 0.55rem;
  }

  .hero-stage {
    min-height: 260px;
  }

  .hero-orbit--outer {
    width: min(100%, 280px);
  }

  .hero-orbit--mid {
    width: min(88%, 240px);
  }

  .hero-orbit--inner {
    width: min(74%, 200px);
  }

  .hero-visual img {
    max-width: 76vw;
  }

  .hero-stat-chip {
    min-width: 0;
    padding: 0.4rem 0.5rem;
  }

  .hero-stat-val {
    font-size: var(--font-size-md);
  }

  .hero-stat-cap {
    font-size: 0.55rem;
  }

  .hero-stat-chip--1 {
    top: 2%;
    right: 0;
  }

  .hero-stat-chip--2 {
    left: 0;
    bottom: 12%;
  }

  .hero-stat-chip--3 {
    right: 0;
    bottom: 4%;
  }

  .social-proof {
    gap: var(--space-lg);
  }

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

  .rating-big {
    font-size: var(--font-size-2xl);
  }

  .rating-label {
    display: block;
    margin-left: 0;
    margin-top: var(--space-xs);
    font-size: 0.7rem;
  }

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

  .review-card .review-author {
    font-size: 0.75rem;
  }

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

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

  .step-num {
    width: 40px;
    height: 40px;
  }

  .instructions-ol li {
    padding: var(--space-md);
    flex-direction: column;
    gap: var(--space-sm);
  }

  .faq-question {
    font-size: 0.85rem;
    padding: var(--space-sm) 0;
    line-height: 1.35;
  }

  .faq-answer-inner {
    font-size: 0.78rem;
  }

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

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

  .cta-final p {
    font-size: 0.85rem;
  }

  .disclaimer-box {
    padding: var(--space-md);
    font-size: 0.65rem;
    line-height: 1.5;
  }

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

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

  .cookie-inner p {
    font-size: var(--font-size-sm);
    line-height: 1.45;
  }

  .cookie-actions {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .cookie-actions .btn {
    width: 100%;
    min-height: 44px;
  }

  .btn {
    width: 100%;
    max-width: 100%;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    font-size: 0.8rem;
  }

  .btn-ghost {
    width: 100%;
  }

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

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

  .thank-actions {
    flex-direction: column;
    gap: var(--space-sm);
  }

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

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

  .thank-icon-ring {
    width: 60px;
    height: 60px;
    font-size: 1.65rem;
  }

  .thank-wrap {
    padding-inline: var(--space-sm);
  }

  .legal-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .legal-hero h1 {
    font-size: 1.35rem;
  }

  .legal-hero-lead {
    font-size: 0.88rem;
    margin-bottom: var(--space-md);
  }

  .legal-kicker {
    font-size: 0.65rem;
    letter-spacing: 0.08em;
  }

  .legal-meta-bar {
    flex-direction: column;
    align-items: stretch;
    gap: var(--space-sm);
  }

  .legal-date-chip {
    padding: 0.45rem 0.75rem;
    font-size: 0.72rem;
    flex-wrap: wrap;
  }

  .legal-layout {
    padding-top: var(--space-lg);
    gap: var(--space-lg);
  }

  .legal-toc {
    position: static;
    padding: var(--space-md);
  }

  .legal-toc a {
    font-size: 0.75rem;
  }

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

  .legal-prose h2 {
    font-size: var(--font-size-md);
    margin-top: var(--space-xl);
  }

  .legal-prose p,
  .legal-prose li {
    font-size: 0.82rem;
  }

  .legal-prose table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    font-size: 0.7rem;
  }

  .legal-callout {
    padding: var(--space-md);
    margin: var(--space-md) 0;
  }

  .legal-callout p {
    font-size: 0.78rem;
  }

  .site-footer {
    padding: var(--space-xl) 0 var(--space-lg);
  }

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

  .footer-links {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .footer-copy {
    font-size: 0.68rem;
    line-height: 1.45;
    word-break: break-word;
  }

  .footer-legal-note {
    font-size: 0.62rem;
    line-height: 1.45;
    padding: var(--space-sm);
  }

  .modal-panel {
    padding: var(--space-md);
    max-height: min(88vh, 100dvh);
    margin: var(--space-sm);
    width: calc(100% - 1rem);
    max-width: calc(100vw - 1rem);
  }

  .modal-panel h2 {
    font-size: var(--font-size-lg);
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  html {
    scroll-behavior: auto;
  }

  .reveal,
  .reveal-stagger > * {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .lab-panel {
    animation: none;
  }

  .thank-panel {
    animation: none;
  }

  .lab-ring-svg {
    animation: none;
  }
}
