:root {
  --color-neon-sunset: #FF4E50;
  --color-electric-violet: #8F00FF;
  --color-aqua-splash: #00F5D4;
  --color-lime-pulse: #C7FF00;
  --color-deep-space: #1A1A40;
  --color-surface-0: #12122e;
  --color-surface-1: rgba(26, 26, 64, 0.72);
  --color-surface-2: rgba(255, 255, 255, 0.06);
  --color-border: rgba(255, 255, 255, 0.14);
  --color-text: rgba(255, 255, 255, 0.94);
  --color-text-muted: rgba(255, 255, 255, 0.68);
  --color-text-soft: rgba(255, 255, 255, 0.52);
  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "DM Sans", system-ui, sans-serif;
  --font-mono: "IBM Plex Mono", ui-monospace, monospace;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.8125rem);
  --fs-sm: clamp(0.875rem, 0.82rem + 0.25vw, 0.9375rem);
  --fs-md: clamp(1rem, 0.94rem + 0.35vw, 1.0625rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.55vw, 1.25rem);
  --fs-xl: clamp(1.35rem, 1.1rem + 1vw, 1.65rem);
  --fs-display: clamp(2.25rem, 1.6rem + 3vw, 3.75rem);
  --lh-tight: 1.15;
  --lh-body: 1.65;
  --ls-display: -0.018em;
  --shadow-card: 0 18px 50px rgba(0, 0, 0, 0.35);
  --shadow-inner-glow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  --shadow-focus: 0 0 0 3px rgba(0, 245, 212, 0.25);
  --radius-xl: 24px;
  --radius-btn: 18px;
  --radius-input: 14px;
  --space-section-y-desktop: clamp(7.5rem, 6vw, 10rem);
  --space-section-y-mobile: clamp(4rem, 10vw, 5rem);
  --space-card: clamp(1.5rem, 3vw, 2rem);
  --space-gutter: clamp(1.25rem, 4vw, 2.5rem);
  --max-width: 1160px;
  --header-height: 72px;
  --transition-fast: 0.25s ease;
  --transition-md: 0.35s ease;
  --transition-slow: 0.55s ease;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  font-weight: 450;
  color: var(--color-text);
  background: var(--color-deep-space);
  background-image:
    radial-gradient(1200px 600px at 10% -10%, rgba(143, 0, 255, 0.35), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(255, 78, 80, 0.22), transparent 50%),
    radial-gradient(800px 480px at 50% 100%, rgba(0, 245, 212, 0.12), transparent 45%),
    linear-gradient(180deg, var(--color-surface-0), var(--color-deep-space) 38%);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

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

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

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

.skip-link {
  position: absolute;
  left: var(--space-gutter);
  top: 0;
  padding: 0.65rem 1rem;
  background: var(--color-aqua-splash);
  color: var(--color-deep-space);
  font-weight: 600;
  border-radius: var(--radius-input);
  transform: translateY(-120%);
  transition: transform var(--transition-fast);
  z-index: 200;
}

.skip-link:focus {
  transform: translateY(0.75rem);
  outline: none;
  box-shadow: var(--shadow-focus);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 46, 0.55);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header .container.site-header__inner,
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - var(--space-gutter) * 2));
  margin-inline: auto;
  min-height: var(--header-height);
}

.site-nav {
  position: relative;
  z-index: 102;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--ls-display);
  font-size: var(--fs-lg);
  color: var(--color-text);
  white-space: nowrap;
}

.brand:hover {
  color: var(--color-text);
  filter: brightness(1.08);
}

.nav-burger {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(145deg, rgba(143, 0, 255, 0.2), rgba(0, 245, 212, 0.12));
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transition: transform var(--transition-md), box-shadow var(--transition-md), border-color var(--transition-fast);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.nav-burger:hover {
  transform: scale(1.04);
  border-color: rgba(0, 245, 212, 0.45);
}

.nav-burger__bar {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-aqua-splash), var(--color-lime-pulse));
  transition: transform 0.45s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease, width 0.3s ease;
  transform-origin: center;
}

.site-nav[aria-expanded="true"] .nav-burger__bar:nth-child(2) {
  transform: translateY(8px) rotate(45deg);
  width: 22px;
}

.site-nav[aria-expanded="true"] .nav-burger__bar:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}

.site-nav[aria-expanded="true"] .nav-burger__bar:nth-child(4) {
  transform: translateY(-8px) rotate(-45deg);
  width: 22px;
}

.nav-panel {
  display: block;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
  align-items: center;
}

.site-nav a {
  position: relative;
  color: var(--color-text-muted);
  font-weight: 500;
  font-size: var(--fs-sm);
  padding: 0.35rem 0;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-aqua-splash), var(--color-electric-violet));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}

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

.site-nav a:hover::after {
  transform: scaleX(1);
}

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

body.nav-open {
  overflow: hidden;
}

.nav-scrim {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height);
  bottom: 0;
  z-index: 95;
  margin: 0;
  padding: 0;
  border: none;
  background: rgba(8, 8, 26, 0.72);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
  cursor: pointer;
}

body.nav-open .nav-scrim {
  opacity: 1;
  pointer-events: auto;
}

@media (max-width: 768px) {
  section {
    padding-block: var(--space-section-y-mobile);
  }

  .nav-burger {
    display: inline-flex;
  }

  .nav-panel {
    position: fixed;
    top: var(--header-height);
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 96;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem var(--space-gutter) 3rem;
    background:
      radial-gradient(800px 400px at 80% 20%, rgba(143, 0, 255, 0.35), transparent 55%),
      radial-gradient(600px 360px at 10% 80%, rgba(0, 245, 212, 0.2), transparent 50%),
      rgba(12, 12, 34, 0.94);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .site-nav[aria-expanded="true"] .nav-panel {
    transform: translateX(0);
  }

  .site-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    max-width: 340px;
  }

  .site-nav li {
    width: 100%;
    opacity: 0;
    transform: translateX(24px);
    transition: opacity 0.45s ease, transform 0.45s ease;
  }

  .site-nav[aria-expanded="true"] li {
    opacity: 1;
    transform: translateX(0);
  }

  .site-nav[aria-expanded="true"] li:nth-child(1) { transition-delay: 0.05s; }
  .site-nav[aria-expanded="true"] li:nth-child(2) { transition-delay: 0.1s; }
  .site-nav[aria-expanded="true"] li:nth-child(3) { transition-delay: 0.15s; }
  .site-nav[aria-expanded="true"] li:nth-child(4) { transition-delay: 0.2s; }
  .site-nav[aria-expanded="true"] li:nth-child(5) { transition-delay: 0.25s; }
  .site-nav[aria-expanded="true"] li:nth-child(6) { transition-delay: 0.3s; }
  .site-nav[aria-expanded="true"] li:nth-child(7) { transition-delay: 0.35s; }
  .site-nav[aria-expanded="true"] li:nth-child(8) { transition-delay: 0.4s; }
  .site-nav[aria-expanded="true"] li:nth-child(9) { transition-delay: 0.45s; }
  .site-nav[aria-expanded="true"] li:nth-child(10) { transition-delay: 0.5s; }

  .site-nav a {
    display: block;
    padding: 0.85rem 0;
    font-size: var(--fs-lg);
    font-weight: 600;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

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

.hero--showcase {
  position: relative;
  overflow: clip;
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: clamp(1rem, 3vw, 2rem);
}

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

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

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

.hero__blob--a {
  width: min(420px, 85vw);
  height: min(420px, 85vw);
  left: -12%;
  top: -18%;
  background: radial-gradient(circle, rgba(143, 0, 255, 0.55), transparent 68%);
}

.hero__blob--b {
  width: min(360px, 75vw);
  height: min(360px, 75vw);
  right: -8%;
  top: 30%;
  background: radial-gradient(circle, rgba(255, 78, 80, 0.35), transparent 65%);
  animation-delay: -6s;
  animation-duration: 22s;
}

.hero__blob--c {
  width: min(300px, 70vw);
  height: min(300px, 70vw);
  left: 35%;
  bottom: -25%;
  background: radial-gradient(circle, rgba(0, 245, 212, 0.35), transparent 62%);
  animation-delay: -11s;
  animation-duration: 16s;
}

@keyframes heroBlobDrift {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(4%, -3%) scale(1.06);
  }
  66% {
    transform: translate(-3%, 4%) scale(0.96);
  }
}

.hero__mesh {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, #000 20%, transparent 75%);
  animation: heroMeshSlide 24s linear infinite;
  opacity: 0.7;
}

@keyframes heroMeshSlide {
  to {
    background-position: 48px 48px;
  }
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: clamp(1.5rem, 3vw, 2.5rem) clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.hero__visual {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  min-height: min(520px, 70vh);
  display: grid;
  place-items: center;
  transition: transform 0.35s ease-out;
}

.hero__rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(0, 245, 212, 0.22);
  animation: heroRingSpin 22s linear infinite;
}

.hero__ring:nth-child(1) {
  width: min(260px, 70vw);
  height: min(260px, 70vw);
  border-color: rgba(0, 245, 212, 0.28);
}

.hero__ring:nth-child(2) {
  width: min(320px, 82vw);
  height: min(320px, 82vw);
  border-color: rgba(143, 0, 255, 0.2);
  border-style: dashed;
  animation-duration: 32s;
  animation-direction: reverse;
}

.hero__ring:nth-child(3) {
  width: min(380px, 92vw);
  height: min(380px, 92vw);
  border-color: rgba(199, 255, 0, 0.12);
  animation-duration: 48s;
}

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

.hero__glow {
  position: absolute;
  width: min(340px, 85vw);
  height: min(340px, 85vw);
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background:
    radial-gradient(circle at 40% 40%, rgba(0, 245, 212, 0.45), transparent 55%),
    radial-gradient(circle at 60% 55%, rgba(143, 0, 255, 0.3), transparent 50%),
    radial-gradient(circle at 50% 80%, rgba(255, 78, 80, 0.18), transparent 45%);
  filter: blur(28px);
  z-index: 0;
  border-radius: 50%;
  animation: heroGlowPulse 5.5s ease-in-out infinite;
}

@keyframes heroGlowPulse {
  0%,
  100% {
    opacity: 0.85;
  }
  50% {
    opacity: 1;
  }
}

.hero__spark {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
  animation: heroSpark 3.2s ease-in-out infinite;
}

.hero__spark--one {
  left: 18%;
  top: 22%;
  background: var(--color-lime-pulse);
  box-shadow: 0 0 20px var(--color-lime-pulse);
}

.hero__spark--two {
  right: 22%;
  top: 35%;
  background: var(--color-aqua-splash);
  box-shadow: 0 0 18px var(--color-aqua-splash);
  animation-delay: 0.6s;
  animation-duration: 2.8s;
}

.hero__spark--three {
  left: 28%;
  bottom: 18%;
  width: 7px;
  height: 7px;
  background: var(--color-electric-violet);
  box-shadow: 0 0 16px var(--color-electric-violet);
  animation-delay: 1.1s;
  animation-duration: 3.6s;
}

@keyframes heroSpark {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.hero__product-wrap {
  position: relative;
  z-index: 1;
  animation: heroFloat 7s ease-in-out infinite;
}

@keyframes heroFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }
  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

.hero__product-img {
  margin-inline: auto;
  max-width: 300px;
  animation: heroProductSheen 6s ease-in-out infinite;
}

@keyframes heroProductSheen {
  0%,
  100% {
    filter: drop-shadow(0 28px 56px rgba(0, 0, 0, 0.5)) brightness(1);
  }
  50% {
    filter: drop-shadow(0 32px 64px rgba(143, 0, 255, 0.25)) brightness(1.05);
  }
}

.hero__copy {
  grid-column: 1;
  grid-row: 1;
}

.hero__form-wrap {
  grid-column: 1;
  grid-row: 2;
}

.hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  padding: 0.4rem 1rem 0.45rem;
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(135deg, rgba(143, 0, 255, 0.15), rgba(0, 245, 212, 0.08));
  background-size: 200% 200%;
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) both, heroKickerShine 8s ease infinite;
}

@keyframes heroKickerShine {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero__kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon-sunset), var(--color-aqua-splash));
  animation: heroDotPulse 2s ease-in-out infinite;
}

@keyframes heroDotPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(0, 245, 212, 0.45);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(0, 245, 212, 0);
  }
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.25rem;
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.1s both;
}

.stars {
  display: inline-flex;
  gap: 3px;
  color: var(--color-lime-pulse);
}

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

.stars--hero svg {
  animation: heroStarPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

.stars--hero svg:nth-child(1) { animation-delay: 0.15s; }
.stars--hero svg:nth-child(2) { animation-delay: 0.2s; }
.stars--hero svg:nth-child(3) { animation-delay: 0.25s; }
.stars--hero svg:nth-child(4) { animation-delay: 0.3s; }
.stars--hero svg:nth-child(5) { animation-delay: 0.35s; }

@keyframes heroStarPop {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.6);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.hero__trust-row img {
  animation: heroFadeUp 0.7s ease 0.38s both;
}

.hero__classification {
  margin: 0 0 0.5rem;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-text-soft);
  max-width: 42ch;
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.14s both;
}

.hero__trust-note {
  margin: 0 0 1rem;
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
  max-width: 44ch;
  line-height: 1.5;
  animation: heroFadeUp 0.75s cubic-bezier(0.22, 1, 0.36, 1) 0.17s both;
}

.hero__trust-note a {
  color: var(--color-aqua-splash);
}

.hero__price-note {
  margin: -0.35rem 0 1.25rem;
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
  max-width: 48ch;
  line-height: 1.5;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.42s both;
}

.hero__price-note a {
  color: var(--color-aqua-splash);
}

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

.hero h1 {
  font-family: var(--font-display);
  font-size: var(--fs-display);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-display);
  margin: 0 0 1rem;
  background: linear-gradient(
    115deg,
    rgba(255, 255, 255, 0.98) 0%,
    rgba(0, 245, 212, 0.88) 28%,
    rgba(199, 255, 0, 0.9) 52%,
    rgba(255, 255, 255, 0.95) 78%,
    rgba(255, 255, 255, 0.92) 100%
  );
  background-size: 220% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both, heroTitleSheen 10s linear infinite;
}

@keyframes heroTitleSheen {
  to {
    background-position: 220% center;
  }
}

.hero__lead {
  margin: 0 0 1.5rem;
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
  max-width: 38ch;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.hero__price {
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.38s both;
}

.price {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 1.4rem + 1.5vw, 2.35rem);
  font-weight: 600;
  color: var(--color-aqua-splash);
}

.hero__price-current {
  animation: heroPriceNudge 4s ease-in-out infinite;
}

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

.hero__price-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  font-weight: 600;
  padding: 0.2rem 0.55rem;
  border-radius: 8px;
  color: var(--color-deep-space);
  background: linear-gradient(120deg, var(--color-lime-pulse), var(--color-aqua-splash));
  animation: heroBadgeWiggle 5s ease-in-out infinite;
}

@keyframes heroBadgeWiggle {
  0%,
  90%,
  100% {
    transform: rotate(0deg);
  }
  92% {
    transform: rotate(-4deg);
  }
  96% {
    transform: rotate(4deg);
  }
}

.price--old {
  font-size: var(--fs-lg);
  color: var(--color-text-soft);
  text-decoration: line-through;
  text-decoration-color: rgba(255, 78, 80, 0.7);
}

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

.hero__highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  opacity: 0;
  animation: heroFadeUp 0.65s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero__highlights li:nth-child(1) { animation-delay: 0.45s; }
.hero__highlights li:nth-child(2) { animation-delay: 0.54s; }
.hero__highlights li:nth-child(3) { animation-delay: 0.63s; }

.hero__highlights li::before {
  content: "";
  width: 6px;
  height: 6px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-neon-sunset), var(--color-lime-pulse));
  flex-shrink: 0;
  animation: heroBulletGlow 2.5s ease-in-out infinite;
}

@keyframes heroBulletGlow {
  0%,
  100% {
    box-shadow: 0 0 0 rgba(199, 255, 0, 0);
  }
  50% {
    box-shadow: 0 0 10px rgba(199, 255, 0, 0.45);
  }
}

.order-form--hero {
  opacity: 0;
  animation: heroFadeUp 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

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

  .hero__visual {
    grid-column: 1;
    grid-row: auto;
    min-height: min(400px, 58vh);
  }

  .hero__copy {
    grid-column: 1;
    grid-row: auto;
  }

  .hero__form-wrap {
    grid-column: 1;
    grid-row: auto;
  }

  .hero__product-img {
    max-width: 240px;
  }

  .hero__ring:nth-child(3) {
    width: min(300px, 88vw);
    height: min(300px, 88vw);
  }
}

.card-surface {
  background: var(--color-surface-1);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card), var(--shadow-inner-glow);
  transition: transform var(--transition-md), border-color var(--transition-md), box-shadow var(--transition-md);
}

.card-surface:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 245, 212, 0.35);
  box-shadow: var(--shadow-card), 0 0 0 1px rgba(0, 245, 212, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--ls-display);
  font-size: clamp(1.85rem, 1.4rem + 1.8vw, 2.65rem);
  line-height: var(--lh-tight);
  margin: 0 0 0.6rem;
}

.section-sub {
  margin: 0 0 2.5rem;
  max-width: 58ch;
  color: var(--color-text-muted);
  font-size: var(--fs-lg);
}

.interactive-section {
  position: relative;
}

.interactive-section::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: 32px;
  background: linear-gradient(125deg, rgba(255, 78, 80, 0.12), transparent 40%, rgba(0, 245, 212, 0.1), transparent 70%);
  opacity: 0.65;
  pointer-events: none;
  z-index: -1;
}

.rhythm-lab__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-card);
  align-items: start;
}

.rhythm-lab__intro {
  grid-column: 1 / -1;
}

.rhythm-lab__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-aqua-splash);
  margin: 0 0 0.5rem;
}

.rhythm-lab__lede {
  margin-bottom: 1.5rem;
}

.rhythm-lab__canvas {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: radial-gradient(circle at 30% 30%, rgba(143, 0, 255, 0.3), transparent 50%),
    radial-gradient(circle at 70% 60%, rgba(0, 245, 212, 0.22), transparent 45%),
    rgba(10, 10, 30, 0.9);
  overflow: hidden;
  transition: filter 0.6s ease;
}

.rhythm-lab__canvas.mode-steady .rhythm-orbit {
  animation-duration: 14s;
}

.rhythm-lab__canvas.mode-travel .rhythm-orbit {
  animation-duration: 22s;
}

.rhythm-orbit {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
  animation: orbitSpin 18s linear infinite;
}

.rhythm-orbit--one {
  width: 140px;
  height: 140px;
  left: 12%;
  top: 18%;
  border-color: rgba(0, 245, 212, 0.35);
}

.rhythm-orbit--two {
  width: 200px;
  height: 200px;
  right: 8%;
  top: 10%;
  animation-direction: reverse;
  animation-duration: 24s;
  border-color: rgba(199, 255, 0, 0.22);
}

.rhythm-orbit--three {
  width: 260px;
  height: 260px;
  left: 18%;
  bottom: -20%;
  animation-duration: 30s;
  border-color: rgba(255, 78, 80, 0.2);
}

.rhythm-pulse {
  position: absolute;
  width: 12px;
  height: 12px;
  left: 50%;
  top: 48%;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  background: var(--color-lime-pulse);
  box-shadow: 0 0 24px rgba(199, 255, 0, 0.55);
  animation: corePulse 2.8s ease-in-out infinite;
}

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

@keyframes corePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }
  50% {
    transform: scale(1.35);
    opacity: 1;
  }
}

.rhythm-lab__controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
}

.rhythm-chip {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: transform var(--transition-md), border-color var(--transition-md), color var(--transition-fast), box-shadow var(--transition-md);
}

.rhythm-chip:hover {
  transform: translateY(-2px);
  color: var(--color-text);
  border-color: rgba(0, 245, 212, 0.35);
}

.rhythm-chip.is-active {
  color: var(--color-deep-space);
  background: linear-gradient(120deg, var(--color-aqua-splash), var(--color-lime-pulse));
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(0, 245, 212, 0.25);
}

.rhythm-panel {
  grid-column: 1 / -1;
  padding: var(--space-card);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

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

.rhythm-panel h3 {
  font-family: var(--font-display);
  margin: 0 0 0.5rem;
  font-size: var(--fs-xl);
}

.rhythm-panel p {
  color: var(--color-text-muted);
  margin: 0 0 1rem;
}

.rhythm-meter {
  height: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.rhythm-meter__fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-electric-violet), var(--color-neon-sunset));
  transition: width 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.rhythm-stats__disclaimer {
  grid-column: 1 / -1;
  margin: 0 0 1rem;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: 1.55;
}

.rhythm-stats {
  grid-column: 1 / -1;
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-card);
}

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

  .rhythm-stats {
    grid-template-columns: 1fr;
  }
}

.rhythm-stats__num {
  font-family: var(--font-mono);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  display: block;
  color: var(--color-lime-pulse);
  margin-bottom: 0.25rem;
}

.rhythm-stats__lbl {
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.tablist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.tablist__btn {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-sm);
  padding: 0.65rem 1.2rem;
  border-radius: var(--radius-btn);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all var(--transition-md);
}

.tablist__btn.is-active {
  color: var(--color-text);
  border-color: rgba(143, 0, 255, 0.45);
  background: linear-gradient(135deg, rgba(143, 0, 255, 0.35), rgba(255, 78, 80, 0.18));
  box-shadow: 0 8px 28px rgba(143, 0, 255, 0.2);
}

.tab-panel {
  padding: var(--space-card);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface-1);
  min-height: 120px;
  opacity: 0.4;
  transform: scale(0.98);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.tab-panel.is-active {
  opacity: 1;
  transform: scale(1);
  border-color: rgba(0, 245, 212, 0.3);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.tab-panel p {
  margin: 0;
  color: var(--color-text-muted);
}

.stat-card {
  padding: var(--space-card);
  text-align: center;
}

.stat-card__value {
  font-family: var(--font-mono);
  font-size: clamp(2rem, 3vw, 2.5rem);
  font-weight: 600;
  color: var(--color-lime-pulse);
  margin-bottom: 0.35rem;
}

.stat-card__label {
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
}

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

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

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

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

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

.bento__item {
  padding: var(--space-card);
  min-height: 140px;
}

.bento__item--wide {
  grid-column: span 7;
}

.bento__item--tall {
  grid-column: span 5;
  grid-row: span 2;
  min-height: 280px;
}

.bento__item--med {
  grid-column: span 5;
}

.bento__item--small {
  grid-column: span 4;
}

.ui-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(150deg, rgba(0, 245, 212, 0.12), rgba(26, 26, 64, 0.4));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  line-height: 1;
  color: var(--color-aqua-splash);
}

.ui-icon--violet {
  color: var(--color-electric-violet);
  background: linear-gradient(150deg, rgba(143, 0, 255, 0.2), rgba(26, 26, 64, 0.45));
  border-color: rgba(143, 0, 255, 0.28);
}

.ui-icon--sunset {
  color: var(--color-neon-sunset);
  background: linear-gradient(150deg, rgba(255, 78, 80, 0.15), rgba(26, 26, 64, 0.45));
  border-color: rgba(255, 78, 80, 0.25);
}

.ui-icon--lime {
  color: var(--color-lime-pulse);
  background: linear-gradient(150deg, rgba(199, 255, 0, 0.12), rgba(26, 26, 64, 0.45));
  border-color: rgba(199, 255, 0, 0.22);
}

.bento__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  border-radius: 16px;
  font-size: 1.2rem;
}

.spec-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.05rem;
}

.step-card__icon {
  margin: 0 auto 1rem;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  font-size: 1.28rem;
}

.ingredient-card__icon {
  margin: 0 auto 0.85rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.12rem;
}

.instruction-step__icon {
  margin-top: 0.25rem;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  font-size: 1.12rem;
}

.review-card__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  font-size: 1.75rem;
  color: var(--color-text-muted);
  background: rgba(18, 18, 46, 0.85);
}

.review-card__avatar.ui-icon--lime {
  color: var(--color-lime-pulse);
  border-color: rgba(199, 255, 0, 0.25);
}

.review-card__avatar.ui-icon--violet {
  color: var(--color-electric-violet);
  border-color: rgba(143, 0, 255, 0.3);
}

.bento__item h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.5rem;
  font-size: var(--fs-xl);
  letter-spacing: var(--ls-display);
}

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

@media (max-width: 1024px) {
  .bento__item,
  .bento__item--wide,
  .bento__item--tall,
  .bento__item--med,
  .bento__item--small {
    grid-column: 1 / -1;
    min-height: auto;
  }
}

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

.product-split__figure {
  margin: 0;
}

.product-split__img {
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-card);
}

.product-split__text h2 {
  margin-top: 0;
}

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

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

.spec-card {
  grid-column: span 6;
  padding: var(--space-card);
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spec-card--narrow {
  grid-column: span 4;
}

.spec-card .spec-card__icon {
  flex-shrink: 0;
}

.spec-card h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-aqua-splash);
  margin: 0 0 0.4rem;
}

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

@media (max-width: 900px) {
  .spec-card,
  .spec-card--narrow {
    grid-column: 1 / -1;
  }
}

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

.step-card {
  padding: var(--space-card);
  text-align: center;
}

.step-card__num {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  color: var(--color-electric-violet);
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  margin: 0 0 0.45rem;
}

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

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

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

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-card);
}

.ingredient-card {
  padding: var(--space-card);
  text-align: center;
}

.ingredient-card h3 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  font-weight: 700;
  margin: 0 0 0.35rem;
}

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

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

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

.instructions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-card);
}

.instruction-step {
  padding: var(--space-card);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
}

.instruction-step__badge {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: var(--fs-sm);
  background: linear-gradient(135deg, rgba(255, 78, 80, 0.35), rgba(143, 0, 255, 0.35));
  border: 1px solid var(--color-border);
}

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

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

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

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

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

.review-card__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 0.85rem;
}

.review-card__name {
  font-weight: 600;
  font-size: var(--fs-sm);
}

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

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

.faq-list {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

.faq-item[open] {
  border-color: rgba(0, 245, 212, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 1.1rem 1.25rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-md);
  position: relative;
  padding-right: 2.5rem;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.25rem;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-aqua-splash);
  border-bottom: 2px solid var(--color-aqua-splash);
  transform: translateY(-65%) rotate(45deg);
  transition: transform var(--transition-md);
}

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

.faq-item .faq-body {
  padding: 0 1.25rem 1.15rem;
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
}

.faq-item .faq-body p {
  margin: 0;
}

.cta-block {
  text-align: center;
  padding: clamp(3rem, 6vw, 4.5rem) var(--space-card);
}

.cta-block p {
  max-width: 48ch;
  margin: 0 auto 1.5rem;
  color: var(--color-text-muted);
}

.advertising-transparency {
  padding: clamp(2.5rem, 5vw, 3.75rem) var(--space-card);
  margin-block: var(--space-section);
}

.advertising-transparency .section-heading {
  margin-bottom: 0.75rem;
}

.ad-transparency__list {
  margin: 1.5rem 0 0;
  padding: 0 0 0 1.15rem;
  max-width: 72ch;
  color: var(--color-text-muted);
  font-size: var(--fs-md);
  line-height: 1.6;
}

.ad-transparency__list li {
  margin-bottom: 0.85rem;
}

.ad-transparency__list li strong {
  color: var(--color-text);
}

.ad-transparency__list a {
  color: var(--color-aqua-splash);
}

.disclaimer {
  border: 1px dashed rgba(255, 255, 255, 0.22);
  background: rgba(26, 26, 64, 0.35);
}

.disclaimer .container {
  max-width: 860px;
}

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

.order-form {
  padding: var(--space-card);
  max-width: 440px;
}

.order-form--hero {
  margin-top: 0;
}

@media (max-width: 900px) {
  .order-form--hero {
    max-width: none;
  }
}

.order-form h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 800;
  margin: 0 0 1.25rem;
  letter-spacing: var(--ls-display);
}

.order-form__note {
  margin: -0.35rem 0 1.15rem;
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  line-height: 1.5;
}

.order-form__note a {
  color: var(--color-aqua-splash);
}

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

.float-field input,
.float-field textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.55rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
  background: rgba(12, 12, 32, 0.65);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--fs-md);
  outline: none;
  transition: border-color var(--transition-md), box-shadow var(--transition-md), background var(--transition-md);
}

.float-field textarea {
  min-height: 120px;
  resize: vertical;
}

.float-field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: var(--fs-sm);
  color: var(--color-text-soft);
  pointer-events: none;
  transition: transform var(--transition-md), font-size var(--transition-md), color var(--transition-md);
}

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

.float-field input:focus,
.float-field textarea:focus,
.float-field input:not(:placeholder-shown),
.float-field textarea:not(:placeholder-shown) {
  border-color: rgba(0, 245, 212, 0.55);
  box-shadow: 0 0 0 1px rgba(0, 245, 212, 0.2), 0 0 24px rgba(0, 245, 212, 0.12);
  background: rgba(12, 12, 32, 0.85);
}

.float-field input:focus + label,
.float-field textarea:focus + label,
.float-field input:not(:placeholder-shown) + label,
.float-field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.65rem);
  font-size: 0.6875rem;
  color: var(--color-aqua-splash);
}

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

.field-error {
  display: none;
  font-size: var(--fs-xs);
  color: var(--color-neon-sunset);
  margin-top: 0.35rem;
}

.float-field.is-invalid input,
.float-field.is-invalid textarea {
  border-color: rgba(255, 78, 80, 0.65);
}

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

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

.checkbox-field input {
  margin-top: 0.2rem;
  width: 18px;
  height: 18px;
  accent-color: var(--color-aqua-splash);
}

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

.checkbox-field.is-invalid label {
  color: var(--color-neon-sunset);
}

.checkbox-field .field-error {
  display: none;
  flex-basis: 100%;
  font-size: var(--fs-xs);
  color: var(--color-neon-sunset);
  margin-top: 0.25rem;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--fs-sm);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform var(--transition-md), filter var(--transition-md), box-shadow var(--transition-md), border-color var(--transition-md);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-neon-sunset), var(--color-electric-violet));
  color: #fff;
  box-shadow: 0 12px 32px rgba(143, 0, 255, 0.35);
}

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

.btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--color-border);
  color: var(--color-text);
}

.btn--ghost:hover {
  transform: scale(1.03);
  border-color: rgba(0, 245, 212, 0.4);
}

.btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: none;
}

.site-footer {
  padding: 3rem 0 6rem;
  border-top: 1px solid var(--color-border);
  background: rgba(10, 10, 28, 0.6);
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
}

.footer-nav a {
  color: var(--color-text-muted);
  font-size: var(--fs-sm);
  position: relative;
}

.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: var(--color-aqua-splash);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-md);
}

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

.footer-nav a:hover::after {
  transform: scaleX(1);
}

.footer-meta {
  font-size: var(--fs-xs);
  color: var(--color-text-soft);
}

.cookie-banner {
  position: fixed;
  left: var(--space-gutter);
  right: var(--space-gutter);
  bottom: var(--space-gutter);
  z-index: 150;
  padding: var(--space-card);
  background: rgba(18, 18, 46, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  display: none;
  max-width: 520px;
  margin-inline: auto;
}

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

.cookie-banner h2 {
  font-family: var(--font-display);
  font-size: var(--fs-md);
  margin: 0 0 0.5rem;
}

.cookie-banner p {
  margin: 0 0 1rem;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1rem;
}

.cookie-panel {
  display: none;
  border-top: 1px solid var(--color-border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

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

.cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.65rem;
  font-size: var(--fs-sm);
}

.cookie-toggle-row span {
  color: var(--color-text-muted);
}

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

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

.switch__slider {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 26px;
  border: 1px solid var(--color-border);
  transition: background var(--transition-md);
  cursor: pointer;
}

.switch__slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 2px;
  background: var(--color-deep-space);
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.35);
  transition: transform var(--transition-md), background var(--transition-md);
}

.switch input:checked + .switch__slider {
  background: rgba(0, 245, 212, 0.35);
  border-color: rgba(0, 245, 212, 0.45);
}

.switch input:checked + .switch__slider::before {
  transform: translateX(16px);
  background: var(--color-aqua-splash);
  border-color: transparent;
}

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

.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(6, 6, 20, 0.65);
  z-index: 160;
  display: none;
}

.modal-backdrop.is-open {
  display: block;
}

.cookie-modal {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -48%);
  z-index: 170;
  width: min(480px, calc(100% - 2 * var(--space-gutter)));
  padding: var(--space-card);
  background: rgba(18, 18, 46, 0.95);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  display: none;
}

.cookie-modal.is-open {
  display: block;
}

.cookie-modal h2 {
  margin-top: 0;
  font-family: var(--font-display);
  font-size: var(--fs-lg);
}

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

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

.policy-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--ls-display);
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.policy-page h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin-top: 2rem;
}

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

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

.thank-page {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: var(--space-section-y-desktop) var(--space-gutter);
}

.thank-page h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--fs-display);
  letter-spacing: var(--ls-display);
}

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

.legal-doc {
  --legal-max: 880px;
}

.legal-shell {
  width: min(var(--legal-max), calc(100% - var(--space-gutter) * 2));
  margin-inline: auto;
  padding-bottom: 4rem;
}

.legal-hero {
  position: relative;
  padding: clamp(3rem, 8vw, 5rem) 0 clamp(2rem, 4vw, 3rem);
  margin-bottom: 2rem;
  border-radius: 0 0 32px 32px;
  background:
    radial-gradient(600px 280px at 10% 0%, rgba(0, 245, 212, 0.25), transparent 55%),
    radial-gradient(480px 240px at 90% 30%, rgba(143, 0, 255, 0.35), transparent 50%),
    linear-gradient(180deg, rgba(18, 18, 52, 0.95), rgba(26, 26, 64, 0.65));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-top: none;
  overflow: hidden;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 40px,
    rgba(255, 255, 255, 0.03) 40px,
    rgba(255, 255, 255, 0.03) 41px
  );
  pointer-events: none;
}

.legal-hero__inner {
  position: relative;
  width: min(var(--legal-max), calc(100% - var(--space-gutter) * 2));
  margin-inline: auto;
  z-index: 1;
}

.legal-kicker {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-lime-pulse);
  margin: 0 0 0.75rem;
}

.legal-hero h1 {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: var(--ls-display);
  font-size: clamp(2rem, 5vw, 3rem);
  margin: 0 0 1rem;
  line-height: var(--lh-tight);
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  align-items: center;
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
}

.legal-meta time {
  font-family: var(--font-mono);
  color: var(--color-aqua-splash);
}

.legal-layout {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2rem;
  align-items: start;
}

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

.legal-toc {
  position: sticky;
  top: calc(var(--header-height) + 1rem);
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  background: rgba(18, 18, 46, 0.75);
  border: 1px solid var(--color-border);
}

.legal-toc h2 {
  font-family: var(--font-display);
  font-size: var(--fs-sm);
  margin: 0 0 0.75rem;
  color: var(--color-text);
}

.legal-toc ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: legal;
}

.legal-toc li {
  counter-increment: legal;
  margin-bottom: 0.45rem;
}

.legal-toc a {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  font-size: var(--fs-xs);
  color: var(--color-text-muted);
}

.legal-toc a::before {
  content: counter(legal, decimal-leading-zero);
  font-family: var(--font-mono);
  color: var(--color-electric-violet);
  font-size: 0.65rem;
}

.legal-toc a:hover {
  color: var(--color-aqua-splash);
}

.legal-body h2 {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  margin: 2.5rem 0 1rem;
  scroll-margin-top: calc(var(--header-height) + 12px);
}

.legal-body h3 {
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  margin: 1.75rem 0 0.65rem;
}

.legal-body p,
.legal-body li {
  color: var(--color-text-muted);
  max-width: 72ch;
}

.legal-callout {
  margin: 1.5rem 0;
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-neon-sunset);
  background: rgba(255, 78, 80, 0.08);
}

.legal-callout--teal {
  border-left-color: var(--color-aqua-splash);
  background: rgba(0, 245, 212, 0.08);
}

.legal-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.legal-card {
  padding: 1.15rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  background: var(--color-surface-1);
  transition: transform var(--transition-md), border-color var(--transition-md);
}

.legal-card:hover {
  transform: translateY(-3px);
  border-color: rgba(143, 0, 255, 0.35);
}

.legal-card h3 {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-aqua-splash);
  margin: 0 0 0.35rem;
}

.legal-card p {
  margin: 0;
  font-size: var(--fs-sm);
}

.legal-table-wrap {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
}

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

.legal-table-wrap th,
.legal-table-wrap td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.legal-table-wrap th {
  font-family: var(--font-mono);
  font-size: var(--fs-xs);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-lime-pulse);
  background: rgba(18, 18, 46, 0.85);
}

.thank-creative {
  min-height: calc(100vh - var(--header-height));
  padding: clamp(2rem, 6vw, 4rem) var(--space-gutter) 4rem;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
}

.thank-creative::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 60%;
  left: -20%;
  top: 10%;
  background: radial-gradient(ellipse at center, rgba(143, 0, 255, 0.22), transparent 65%);
  filter: blur(40px);
  animation: thankGlow 10s ease-in-out infinite alternate;
}

@keyframes thankGlow {
  from {
    opacity: 0.6;
    transform: translateY(0) scale(1);
  }
  to {
    opacity: 1;
    transform: translateY(-20px) scale(1.05);
  }
}

.thank-creative__card {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  padding: clamp(2rem, 5vw, 3rem);
  border-radius: 28px;
  background: rgba(18, 18, 46, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  text-align: center;
  animation: thankCardIn 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

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

.thank-creative__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--color-aqua-splash), var(--color-electric-violet));
  display: grid;
  place-items: center;
  font-size: 1.75rem;
  line-height: 1;
  animation: thankIconPop 0.9s 0.2s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes thankIconPop {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.thank-creative__card h1 {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.85rem, 5vw, 2.75rem);
  letter-spacing: var(--ls-display);
  margin: 0 0 1rem;
}

.thank-creative__card p {
  margin: 0 0 1.25rem;
  color: var(--color-text-muted);
}

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

  .hero__product-wrap {
    animation: none !important;
  }
}

@media (max-width: 320px) {
  :root {
    --space-gutter: 0.65rem;
    --space-card: 0.9rem;
    --header-height: 56px;
    --radius-xl: 16px;
    --radius-btn: 12px;
    --radius-input: 10px;
    --space-section-y-desktop: 2.35rem;
    --space-section-y-mobile: 2.35rem;
  }

  html {
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
  }

  .site-header__inner {
    gap: 0.5rem;
    width: calc(100% - 2 * var(--space-gutter));
    min-height: var(--header-height);
  }

  .site-header__inner .brand {
    font-size: clamp(0.72rem, 2.8vw, 0.82rem);
    letter-spacing: -0.04em;
    white-space: normal;
    line-height: 1.15;
    max-width: min(200px, 52vw);
  }

  .nav-burger {
    width: 40px;
    height: 40px;
    gap: 5px;
    border-radius: 14px;
    flex-shrink: 0;
  }

  .nav-burger__bar {
    width: 17px;
  }

  .nav-panel {
    padding: 1.1rem var(--space-gutter) 1.75rem;
  }

  .site-nav ul {
    max-width: none;
  }

  .site-nav a {
    padding: 0.72rem 0;
    font-size: 1rem;
  }

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

  .container {
    width: calc(100% - 2 * var(--space-gutter));
  }

  .section-heading {
    font-size: 1.35rem;
    word-break: break-word;
    hyphens: auto;
  }

  .section-sub {
    font-size: 0.875rem;
    margin-bottom: 1.15rem;
    max-width: none;
  }

  .interactive-section::before {
    border-radius: 20px;
  }

  /* Hero — fit narrow screens without horizontal scroll */
  .hero--showcase {
    padding-top: 1.25rem;
    padding-bottom: 0.65rem;
    overflow-x: clip;
  }

  .hero__grid {
    gap: 0.85rem;
  }

  .hero__kicker {
    font-size: 0.65rem;
    padding: 0.32rem 0.75rem 0.38rem;
    margin-bottom: 0.75rem;
  }

  .hero__visual {
    min-height: min(248px, 40vh);
  }

  .hero__product-img {
    max-width: 178px;
  }

  .hero__ring:nth-child(1) {
    width: min(168px, 52vw);
    height: min(168px, 52vw);
  }

  .hero__ring:nth-child(2) {
    width: min(210px, 66vw);
    height: min(210px, 66vw);
  }

  .hero__ring:nth-child(3) {
    width: min(248px, 78vw);
    height: min(248px, 78vw);
  }

  .hero__glow {
    width: min(240px, 72vw);
    height: min(240px, 72vw);
    filter: blur(22px);
  }

  .hero h1 {
    font-size: 1.48rem;
    letter-spacing: -0.02em;
    margin-bottom: 0.65rem;
  }

  .hero__lead {
    font-size: 0.9rem;
    max-width: none;
    margin-bottom: 1rem;
  }

  .hero__classification {
    font-size: 0.62rem;
    letter-spacing: 0.03em;
    max-width: none;
  }

  .hero__trust-note,
  .hero__price-note {
    font-size: 0.72rem;
    max-width: none;
  }

  .hero__trust-row {
    gap: 0.4rem 0.65rem;
    margin-bottom: 0.85rem;
  }

  .hero__trust-row img {
    max-width: 92px;
    height: auto;
  }

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

  .price-row {
    gap: 0.4rem 0.65rem;
    margin-bottom: 0.65rem;
  }

  .price {
    font-size: 1.35rem;
  }

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

  .hero__price-tag {
    font-size: 0.65rem;
    padding: 0.15rem 0.45rem;
  }

  .hero__highlights {
    margin-bottom: 1.25rem;
    gap: 0.5rem;
  }

  .hero__highlights li {
    font-size: 0.82rem;
    gap: 0.5rem;
  }

  .order-form--hero {
    padding: 0.85rem;
  }

  .order-form h2 {
    font-size: 1.15rem;
    margin-bottom: 0.85rem;
  }

  .order-form__note {
    font-size: 0.8rem;
    margin-bottom: 0.85rem;
  }

  .float-field {
    margin-bottom: 0.95rem;
  }

  .float-field input,
  .float-field textarea {
    font-size: 0.875rem;
    padding: 1.05rem 0.65rem 0.4rem;
  }

  .float-field textarea {
    min-height: 100px;
  }

  .checkbox-field label {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .btn {
    width: 100%;
    padding: 0.78rem 0.9rem;
    font-size: 0.9rem;
  }

  .card-surface:hover {
    transform: translateY(-2px);
  }

  /* Rhythm lab */
  .rhythm-lab__grid {
    gap: 0.85rem;
  }

  .rhythm-lab__lede {
    margin-bottom: 1rem;
  }

  .rhythm-chip {
    font-size: 0.72rem;
    padding: 0.4rem 0.65rem;
  }

  .rhythm-lab__canvas {
    min-height: 160px;
  }

  .rhythm-panel {
    padding: 0.9rem;
  }

  .rhythm-stats__disclaimer {
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
  }

  .rhythm-stats__num {
    font-size: 1.45rem;
  }

  .rhythm-stats__lbl {
    font-size: 0.62rem;
  }

  /* Bento & product */
  .bento {
    gap: 0.85rem;
  }

  .bento__item {
    padding: 0.9rem;
    min-height: 0;
  }

  .bento__icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
  }

  .bento__item h3 {
    font-size: 1.05rem;
  }

  .product-split {
    gap: 1.15rem;
  }

  .spec-card {
    padding: 0.9rem;
    gap: 0.75rem;
  }

  .spec-card__icon {
    width: 38px;
    height: 38px;
    font-size: 0.95rem;
  }

  .step-card {
    padding: 0.9rem;
  }

  .step-card__icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .ingredient-card {
    padding: 0.85rem;
  }

  .ingredient-card__icon {
    width: 38px;
    height: 38px;
  }

  .instruction-step {
    padding: 0.85rem;
  }

  .stat-card {
    padding: 0.85rem;
  }

  .stat-card__value {
    font-size: 1.65rem;
  }

  /* Tabs & reviews */
  .tablist {
    flex-direction: column;
    gap: 0.4rem;
  }

  .tablist__btn {
    width: 100%;
    text-align: center;
    padding: 0.55rem 0.85rem;
  }

  .tab-panel {
    padding: 0.9rem;
    min-height: 0;
  }

  .review-preview {
    padding: 0.9rem;
  }

  .review-card {
    padding: 0.9rem;
  }

  .review-card__head {
    flex-wrap: wrap;
    gap: 0.65rem;
  }

  .review-card__avatar {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
  }

  /* FAQ & CTA */
  .faq-list {
    gap: 0.55rem;
  }

  .faq-item summary {
    padding: 0.8rem 0.85rem;
    padding-right: 1.75rem;
    font-size: 0.82rem;
    line-height: 1.4;
  }

  .faq-item .faq-body {
    padding: 0 0.85rem 0.85rem;
    font-size: 0.82rem;
  }

  .cta-block {
    padding: 2rem var(--space-card);
  }

  .cta-block p {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
  }

  .advertising-transparency {
    padding: 1.75rem var(--space-card);
    margin-block: 1.5rem;
  }

  .ad-transparency__list {
    margin-top: 1rem;
    padding-left: 1rem;
    font-size: 0.85rem;
  }

  .ad-transparency__list li {
    margin-bottom: 0.65rem;
  }

  .disclaimer .container {
    padding-inline: 0;
  }

  .disclaimer p {
    font-size: 0.78rem;
    line-height: 1.55;
  }

  /* Cookies */
  .cookie-banner {
    left: var(--space-gutter);
    right: var(--space-gutter);
    bottom: 0.45rem;
    padding: 0.85rem;
    border-radius: var(--radius-xl);
    max-height: min(70vh, 420px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cookie-banner h2 {
    font-size: 1rem;
  }

  .cookie-banner p {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .cookie-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
  }

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

  .cookie-modal {
    width: calc(100% - 1.25rem);
    max-width: none;
    max-height: min(88vh, 520px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.9rem;
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .cookie-modal h2 {
    font-size: 1rem;
  }

  .cookie-toggle-row {
    font-size: 0.85rem;
  }

  /* Footer & legal */
  .footer-grid {
    flex-direction: column;
    gap: 0.85rem;
    align-items: flex-start;
  }

  .footer-nav {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .footer-nav a {
    font-size: 0.85rem;
  }

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

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

  .legal-hero {
    padding: 1.65rem 0 1.35rem;
    margin-bottom: 1.25rem;
    border-radius: 0 0 20px 20px;
  }

  .legal-hero h1 {
    font-size: 1.45rem;
    margin-bottom: 0.65rem;
  }

  .legal-hero__inner > p {
    font-size: 0.85rem;
    line-height: 1.5;
  }

  .legal-shell {
    padding-bottom: 2.5rem;
  }

  .legal-toc {
    position: static;
    padding: 0.9rem;
  }

  .legal-toc h2 {
    font-size: 0.95rem;
  }

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

  .legal-body h2 {
    font-size: 1.05rem;
    margin: 1.75rem 0 0.65rem;
    scroll-margin-top: calc(var(--header-height) + 8px);
  }

  .legal-body h3 {
    font-size: 0.95rem;
  }

  .legal-body p,
  .legal-body li {
    font-size: 0.85rem;
    max-width: none;
  }

  .legal-callout {
    padding: 0.9rem 0.95rem;
  }

  .legal-card-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .legal-card {
    padding: 0.9rem;
  }

  .legal-table-wrap {
    margin: 1rem 0;
    border-radius: var(--radius-input);
  }

  .legal-table-wrap th,
  .legal-table-wrap td {
    padding: 0.5rem 0.55rem;
    font-size: 0.72rem;
    vertical-align: top;
  }

  .policy-page h1,
  .thank-creative__card h1 {
    font-size: 1.45rem;
  }

  .thank-creative {
    padding: var(--space-section-y-mobile) var(--space-gutter);
  }

  .thank-creative__card {
    padding: 1.15rem;
    border-radius: 22px;
  }

  .thank-creative__icon {
    width: 52px;
    height: 52px;
    font-size: 1.45rem;
    margin-bottom: 0.85rem;
  }

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