:root {
  --color-sunset: #FF7A3D;
  --color-fuchsia: #FF2FA3;
  --color-electric: #3AB0FF;
  --color-lime: #C7FF2C;
  --color-deep-purple: #4B1C6A;
  --color-bg: #0f0618;
  --color-surface: rgba(75, 28, 106, 0.35);
  --color-surface-2: rgba(255, 255, 255, 0.06);
  --color-text: #f4f0f8;
  --color-text-muted: rgba(244, 240, 248, 0.72);
  --color-border: rgba(255, 255, 255, 0.12);
  --color-border-strong: rgba(255, 255, 255, 0.22);
  --font-display: "DM Sans", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --fs-display-xl: clamp(2.25rem, 5vw, 3.5rem);
  --fs-display-lg: clamp(1.75rem, 3.5vw, 2.5rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.5rem);
  --fs-body: clamp(1rem, 1.1vw, 1.0625rem);
  --fs-small: 0.875rem;
  --fs-micro: 0.75rem;
  --lh-tight: 1.1;
  --lh-body: 1.65;
  --track-display: -0.018em;
  --shadow-soft: 0 8px 32px rgba(0, 0, 0, 0.28);
  --shadow-glow-orange: 0 0 40px rgba(255, 122, 61, 0.22);
  --shadow-glow-blue: 0 0 36px rgba(58, 176, 255, 0.2);
  --radius-card: 24px;
  --radius-button: 18px;
  --radius-input: 14px;
  --radius-pill: 999px;
  --space-section-y-lg: clamp(4rem, 10vw, 10rem);
  --space-section-y-sm: clamp(4rem, 12vw, 5rem);
  --space-card: clamp(1.5rem, 3vw, 2rem);
  --space-grid: clamp(1.25rem, 2.5vw, 2rem);
  --max-width: 1180px;
  --header-h: 72px;
  --transition-fast: 0.25s ease;
  --transition-med: 0.35s ease;
  --transition-slow: 0.5s 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-body);
  font-weight: 450;
  line-height: var(--lh-body);
  color: var(--color-text);
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 120% 80% at 10% -10%, rgba(255, 122, 61, 0.18), transparent 50%),
    radial-gradient(ellipse 100% 60% at 90% 20%, rgba(58, 176, 255, 0.14), transparent 45%),
    radial-gradient(ellipse 80% 50% at 50% 100%, rgba(75, 28, 106, 0.5), transparent 55%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.link-underline {
  position: relative;
  display: inline-block;
}

.link-underline::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-sunset), var(--color-fuchsia));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.link-underline:hover::after {
  transform: scaleX(1);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: var(--track-display);
  line-height: var(--lh-tight);
  margin: 0 0 0.75em;
}

h1 {
  font-size: var(--fs-display-xl);
}

h2 {
  font-size: var(--fs-display-lg);
}

h3 {
  font-size: var(--fs-h3);
}

p {
  margin: 0 0 1em;
  color: var(--color-text-muted);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(15, 6, 24, 0.65);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header__inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: var(--track-display);
  color: var(--color-text);
  white-space: nowrap;
}

.brand:hover {
  color: var(--color-sunset);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1rem;
  justify-content: flex-end;
}

.nav a {
  color: var(--color-text-muted);
  font-size: var(--fs-small);
  font-weight: 500;
}

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

.burger {
  display: none;
  position: relative;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-input);
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  z-index: 102;
  flex-shrink: 0;
  transition: background var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.burger:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(58, 176, 255, 0.35);
  box-shadow: 0 0 24px rgba(58, 176, 255, 0.12);
}

.burger__line {
  display: block;
  position: absolute;
  left: 13px;
  right: 13px;
  height: 2px;
  border-radius: 1px;
  background: var(--color-text);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, top 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.burger__line:nth-child(1) {
  top: 16px;
}

.burger__line:nth-child(2) {
  top: 23px;
}

.burger__line:nth-child(3) {
  top: 30px;
}

.burger.is-open .burger__line:nth-child(1) {
  top: 23px;
  transform: rotate(45deg);
}

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

.burger.is-open .burger__line:nth-child(3) {
  top: 23px;
  transform: rotate(-45deg);
}

.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 98;
  background: rgba(5, 2, 8, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

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

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

@media (max-width: 900px) {
  .burger {
    display: block;
  }

  .nav-backdrop {
    display: block;
  }

  .nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    left: auto;
    width: min(100%, 380px);
    height: calc(100dvh - var(--header-h));
    max-height: calc(100vh - var(--header-h));
    margin: 0;
    padding: 1.5rem 1.25rem 2rem;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: linear-gradient(195deg, rgba(30, 12, 48, 0.98) 0%, rgba(12, 4, 20, 0.99) 100%);
    border: none;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: -16px 0 56px rgba(0, 0, 0, 0.55);
    transform: translateX(104%);
    opacity: 1;
    pointer-events: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 101;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

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

  .nav a {
    font-size: 1.0625rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav a:last-child {
    border-bottom: none;
  }
}

main {
  overflow-x: clip;
}

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

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

.section__inner {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
}

.section__head {
  max-width: 640px;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-electric);
  margin-bottom: 0.75rem;
}

.hero {
  padding-top: clamp(2rem, 5vw, 3rem);
  padding-bottom: var(--space-section-y-lg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.hero--aurora {
  min-height: 0;
}

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

.hero__aurora-layer {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  will-change: transform;
  transition: transform 0.35s ease-out;
}

.hero__aurora-layer--1 {
  width: min(90vw, 520px);
  height: min(90vw, 520px);
  top: -15%;
  left: -10%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.55) 0%, transparent 65%);
  animation: aurora-drift-a 18s ease-in-out infinite;
}

.hero__aurora-layer--2 {
  width: min(70vw, 420px);
  height: min(70vw, 420px);
  bottom: -5%;
  right: -8%;
  background: radial-gradient(circle, rgba(58, 176, 255, 0.45) 0%, transparent 68%);
  animation: aurora-drift-b 22s ease-in-out infinite;
}

.hero__aurora-layer--3 {
  width: min(50vw, 320px);
  height: min(50vw, 320px);
  top: 35%;
  left: 40%;
  background: radial-gradient(circle, rgba(255, 47, 163, 0.4) 0%, transparent 70%);
  animation: aurora-drift-c 14s ease-in-out infinite;
}

@keyframes aurora-drift-a {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  33% {
    transform: translate(8%, 5%) scale(1.06);
  }

  66% {
    transform: translate(-4%, 8%) scale(0.96);
  }
}

@keyframes aurora-drift-b {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }

  50% {
    transform: translate(-10%, -12%) scale(1.08);
  }
}

@keyframes aurora-drift-c {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  50% {
    transform: translate(-6%, 10%) rotate(8deg) scale(1.12);
  }
}

.hero__aurora-grid {
  position: absolute;
  inset: -20%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 40%, black 20%, transparent 75%);
  animation: grid-pan 40s linear infinite;
  opacity: 0.5;
}

@keyframes grid-pan {
  0% {
    transform: translate(0, 0);
  }

  100% {
    transform: translate(48px, 48px);
  }
}

.hero__aurora-noise {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero__shell {
  position: relative;
  z-index: 1;
}

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

.hero__stack {
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vw, 2rem);
}

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

  .hero__stack {
    order: 1;
  }

  .hero__form-wrap {
    order: 3;
  }

  .hero__content {
    order: 2;
  }
}

.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: min(72vw, 420px);
  padding: 1rem;
  overflow: hidden;
  border-radius: var(--radius-card);
}

.hero__rings {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.hero__ring {
  position: absolute;
  max-width: min(100%, 440px);
  width: 100%;
  height: auto;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.hero__ring--a {
  animation-name: hero-orbit-a;
  animation-duration: 55s;
}

.hero__ring--b {
  animation-name: hero-orbit-b;
  animation-duration: 38s;
  max-width: min(100%, 380px);
}

.hero__ring--c {
  animation-name: hero-orbit-c;
  animation-duration: 28s;
  max-width: min(100%, 320px);
}

@keyframes hero-orbit-a {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-orbit-b {
  from {
    transform: rotate(0deg) scale(1);
  }

  to {
    transform: rotate(-360deg) scale(1);
  }
}

@keyframes hero-orbit-c {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.hero__glow {
  position: absolute;
  width: min(100%, 440px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 122, 61, 0.38) 0%, rgba(255, 47, 163, 0.12) 42%, transparent 72%);
  filter: blur(6px);
  animation: pulse-glow 7s ease-in-out infinite;
}

.hero__glow--secondary {
  width: min(90%, 360px);
  background: radial-gradient(circle, rgba(58, 176, 255, 0.22) 0%, transparent 65%);
  animation: pulse-glow-alt 9s ease-in-out infinite;
  animation-delay: -2s;
}

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

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

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

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

.hero__product-wrap {
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
  transition: transform 0.15s ease-out;
}

.hero__product {
  position: relative;
  z-index: 1;
  margin: 0;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.35));
}

.hero__product img {
  animation: float-y 6s ease-in-out infinite;
}

@keyframes float-y {
  0%,
  100% {
    transform: translateY(0) rotate(-0.5deg);
  }

  50% {
    transform: translateY(-14px) rotate(0.5deg);
  }
}

.hero__chip {
  position: absolute;
  z-index: 3;
  padding: 0.4rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(15, 6, 24, 0.65);
  backdrop-filter: blur(10px);
  color: var(--color-text);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  animation: chip-float 5s ease-in-out infinite;
}

.hero__chip--1 {
  top: 8%;
  right: 4%;
  animation-delay: 0s;
  border-color: rgba(58, 176, 255, 0.35);
}

.hero__chip--2 {
  bottom: 28%;
  left: 0;
  animation-delay: -1.5s;
  border-color: rgba(255, 122, 61, 0.4);
}

.hero__chip--3 {
  top: 38%;
  left: -2%;
  animation-delay: -3s;
  border-color: rgba(199, 255, 44, 0.3);
}

@keyframes chip-float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

.hero__trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-top: 0.5rem;
  position: relative;
  z-index: 4;
}

.hero__stars-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.hero__stars-note {
  margin: 0;
  font-size: var(--fs-micro);
  color: var(--color-text-muted);
  max-width: 14rem;
  line-height: 1.35;
}

.hero__verify {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero__verify .fa-tag {
  font-size: 1rem;
  color: var(--color-text-muted);
}

.hero__stars .fa-star {
  animation: star-twinkle 3s ease-in-out infinite;
}

.hero__stars .fa-star:nth-child(2) {
  animation-delay: 0.2s;
}

.hero__stars .fa-star:nth-child(3) {
  animation-delay: 0.4s;
}

.hero__stars .fa-star:nth-child(4) {
  animation-delay: 0.6s;
}

.hero__stars .fa-star:nth-child(5) {
  animation-delay: 0.8s;
}

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

  50% {
    opacity: 0.65;
    transform: scale(0.92);
  }
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-electric);
  margin: 0 0 0.75rem;
  animation: text-shimmer 6s ease-in-out infinite;
  background: linear-gradient(90deg, var(--color-electric), var(--color-fuchsia), var(--color-electric));
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

@keyframes text-shimmer {
  0%,
  100% {
    background-position: 0% center;
  }

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

.hero__title-gradient {
  background: linear-gradient(120deg, var(--color-sunset), var(--color-fuchsia), var(--color-electric), var(--color-lime));
  background-size: 300% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: gradient-flow 8s ease infinite;
}

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

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

.hero__price--pulse {
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}

.hero__price-tag {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(199, 255, 44, 0.35);
  color: var(--color-lime);
  animation: tag-pulse 2.5s ease-in-out infinite;
}

@keyframes tag-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(199, 255, 44, 0.35);
  }

  50% {
    box-shadow: 0 0 20px 2px rgba(199, 255, 44, 0.15);
  }
}

.hero-reveal > * {
  opacity: 0;
  transform: translateY(22px);
}

.hero-reveal.is-visible > * {
  animation: hero-line-in 0.75s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-reveal.is-visible > *:nth-child(1) {
  animation-delay: 0.05s;
}

.hero-reveal.is-visible > *:nth-child(2) {
  animation-delay: 0.12s;
}

.hero-reveal.is-visible > *:nth-child(3) {
  animation-delay: 0.18s;
}

.hero-reveal.is-visible > *:nth-child(4) {
  animation-delay: 0.24s;
}

.hero-reveal.is-visible > *:nth-child(5) {
  animation-delay: 0.3s;
}

.hero-reveal.is-visible > *:nth-child(6) {
  animation-delay: 0.36s;
}

.hero-reveal.is-visible > *:nth-child(7) {
  animation-delay: 0.42s;
}

@keyframes hero-line-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.highlight-card--hero {
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.highlight-card--hero:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(255, 47, 163, 0.35);
  box-shadow: 0 12px 40px rgba(75, 28, 106, 0.35);
}

.hero__scroll-hint {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--color-text-muted);
  font-size: var(--fs-micro);
  font-family: var(--font-mono);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color var(--transition-med);
}

.hero__scroll-hint:hover {
  color: var(--color-electric);
}

.hero__scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--color-electric), transparent);
  animation: scroll-line 2s ease-in-out infinite;
}

@keyframes scroll-line {
  0%,
  100% {
    transform: scaleY(1);
    opacity: 1;
  }

  50% {
    transform: scaleY(0.6);
    opacity: 0.5;
  }
}

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

.stars .fa-star {
  font-size: 1.05rem;
  width: 1em;
}

.stars--sm .fa-star {
  font-size: 0.78rem;
}

.hero__content h1 {
  margin-bottom: 0.65rem;
}

.hero__lead {
  font-size: 1.0625rem;
  margin-bottom: 1.5rem;
}

.hero__price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.price-current {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-text);
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
  margin-bottom: 2rem;
}

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

.highlight-card {
  padding: 1rem 1.125rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: rgba(58, 176, 255, 0.35);
  box-shadow: var(--shadow-glow-blue);
}

.highlight-card h3 {
  font-size: 0.9375rem;
  margin-bottom: 0.35rem;
}

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

.order-card {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(75, 28, 106, 0.45), rgba(255, 255, 255, 0.04));
  padding: var(--space-card);
  box-shadow: var(--shadow-soft);
}

.order-card h2 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.field {
  position: relative;
}

.field input,
.field textarea {
  width: 100%;
  padding: 1.35rem 1rem 0.65rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
  background: rgba(15, 6, 24, 0.5);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1rem;
  outline: none;
  transition: border-color var(--transition-med), box-shadow var(--transition-med);
}

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

.field label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9375rem;
  color: var(--color-text-muted);
  pointer-events: none;
  transition: transform var(--transition-med), font-size var(--transition-med), color var(--transition-med);
}

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

.field input:focus,
.field textarea:focus {
  border-color: rgba(58, 176, 255, 0.65);
  box-shadow: 0 0 0 3px rgba(58, 176, 255, 0.15), var(--shadow-glow-blue);
}

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

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

.field--error input,
.field--error textarea {
  border-color: rgba(255, 47, 163, 0.65);
}

.field-msg {
  font-size: var(--fs-small);
  color: var(--color-fuchsia);
  margin-top: 0.35rem;
  min-height: 1.25rem;
}

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

.checkbox-field input {
  width: 1.125rem;
  height: 1.125rem;
  margin-top: 0.2rem;
  accent-color: var(--color-sunset);
  flex-shrink: 0;
}

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

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

.btn:hover {
  transform: scale(1.03);
  filter: brightness(1.08);
}

.btn:active {
  transform: scale(0.98);
}

.btn--primary {
  background: linear-gradient(135deg, var(--color-sunset), var(--color-fuchsia));
  color: #fff;
  box-shadow: var(--shadow-glow-orange);
}

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

.btn--block {
  width: 100%;
}

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

.bento__item {
  grid-column: span 4;
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(160deg, rgba(75, 28, 106, 0.35), rgba(255, 255, 255, 0.03));
  transition: transform var(--transition-med), border-color var(--transition-med), box-shadow var(--transition-med);
}

.bento__item:hover {
  transform: translateY(-4px);
  border-color: rgba(199, 255, 44, 0.25);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

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

.bento__item--tall {
  grid-row: span 1;
  min-height: 200px;
}

.bento__item--hero {
  grid-column: span 6;
  min-height: 240px;
}

@media (max-width: 960px) {
  .bento__item,
  .bento__item--wide,
  .bento__item--hero {
    grid-column: span 12;
  }
}

.bento__icon {
  width: 40px;
  height: 40px;
  margin-bottom: 1rem;
  color: var(--color-electric);
  display: flex;
  align-items: center;
  justify-content: center;
}

.bento__icon i {
  font-size: 1.35rem;
  line-height: 1;
}

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

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

.spec-bento .bento__item {
  grid-column: span 6;
}

@media (max-width: 960px) {
  .spec-bento .bento__item {
    grid-column: span 12;
  }
}

.spec-row {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.spec-row__fa {
  flex-shrink: 0;
  font-size: 1.25rem;
  width: 1.5rem;
  text-align: center;
  color: var(--color-lime);
  margin-top: 0.15rem;
}

.mono {
  font-family: var(--font-mono);
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

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

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

.step-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  text-align: center;
  transition: transform var(--transition-med);
}

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

.step-num {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  color: var(--color-sunset);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  flex-wrap: wrap;
}

.step-card__fa {
  font-size: 0.95rem;
  opacity: 0.9;
}

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

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

.ingredient-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, rgba(58, 176, 255, 0.08), rgba(75, 28, 106, 0.25));
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  border-color: rgba(58, 176, 255, 0.4);
}

.ingredient-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.ingredient-card__fa {
  color: var(--color-lime);
  font-size: 1.05rem;
  opacity: 0.95;
}

.product-overview__icons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 3vw, 2rem);
  min-height: 220px;
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(145deg, rgba(75, 28, 106, 0.35), rgba(255, 255, 255, 0.04));
  place-items: center;
}

.product-overview__fa {
  font-size: clamp(2.5rem, 8vw, 3.75rem);
  color: var(--color-electric);
  opacity: 0.9;
  animation: fa-breathe 5s ease-in-out infinite;
}

.product-overview__fa:nth-child(2) {
  color: var(--color-fuchsia);
  animation-delay: -1.2s;
}

.product-overview__fa:nth-child(3) {
  color: var(--color-sunset);
  animation-delay: -2.4s;
}

.product-overview__fa:nth-child(4) {
  color: var(--color-lime);
  animation-delay: -3.6s;
}

@keyframes fa-breathe {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.85;
  }

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

.numbered-list {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.numbered-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: start;
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.numbered-list li::before {
  counter-increment: step;
  content: counter(step);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-input);
  border: 1px solid rgba(255, 122, 61, 0.4);
  color: var(--color-sunset);
}

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

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

.review-card {
  padding: var(--space-card);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: var(--color-surface-2);
  transition: transform var(--transition-med);
}

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

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

.review-card__avatar {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--color-border);
  color: var(--color-electric);
  font-size: 1.75rem;
  flex-shrink: 0;
}

.accordion {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.accordion-item {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color var(--transition-med);
}

.accordion-item.is-open {
  border-color: rgba(255, 122, 61, 0.35);
}

.accordion-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 650;
  text-align: left;
  cursor: pointer;
  letter-spacing: var(--track-display);
}

.accordion-icon {
  font-size: 0.85rem;
  width: 1.25rem;
  text-align: center;
  flex-shrink: 0;
  transition: transform var(--transition-med);
}

.accordion-item.is-open .accordion-icon {
  transform: rotate(180deg);
}

.accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s ease;
}

.accordion-panel p {
  padding: 0 1.25rem 1.1rem;
  margin: 0;
}

.cta-final {
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem);
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.12), rgba(75, 28, 106, 0.45));
}

.disclaimer {
  padding: 2rem;
  border-radius: var(--radius-card);
  border: 1px dashed rgba(255, 255, 255, 0.2);
  background: rgba(0, 0, 0, 0.2);
}

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

.disclaimer p + p {
  margin-top: 0.85rem;
}

.disclaimer--prominent h2 {
  position: static;
  width: auto;
  height: auto;
  margin: 0 0 0.75rem;
  padding: 0;
  overflow: visible;
  clip: auto;
  font-size: var(--fs-h3);
  font-family: var(--font-display);
  color: var(--color-text);
}

.reviews-disclosure {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  max-width: 52rem;
  margin: 0 auto 1.25rem;
  line-height: 1.5;
}

.footer-seller {
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  margin-top: 0.75rem;
  max-width: 28rem;
  line-height: 1.45;
}

.site-footer {
  padding: 3rem 0 2rem;
  border-top: 1px solid var(--color-border);
  margin-top: 2rem;
}

.site-footer__grid {
  width: min(100% - 2rem, var(--max-width));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

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

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

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

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

.cookie-banner {
  position: fixed;
  z-index: 200;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  max-width: 520px;
  margin-inline: auto;
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(15, 6, 24, 0.92);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-soft);
  transform: translateY(120%);
  opacity: 0;
  transition: transform var(--transition-slow), opacity var(--transition-slow);
}

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

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.cookie-banner__actions .btn {
  font-size: var(--fs-small);
  padding: 0.65rem 1rem;
}

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

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

.cookie-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.5rem 0;
  font-size: var(--fs-small);
}

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

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

.switch-slider {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid var(--color-border);
  transition: background var(--transition-med);
  cursor: pointer;
}

.switch-slider::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  left: 3px;
  top: 2px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--transition-med);
}

.switch input:checked + .switch-slider {
  background: rgba(58, 176, 255, 0.45);
  border-color: rgba(58, 176, 255, 0.6);
}

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

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

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

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

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-page .section__inner {
  max-width: 800px;
}

.policy-page h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
}

.policy-page ul {
  padding-left: 1.25rem;
  color: var(--color-text-muted);
}

.policy-page li {
  margin-bottom: 0.5rem;
}

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

.thank-you .section__inner {
  max-width: 560px;
}

.footer-copyright {
  width: min(100% - 2rem, var(--max-width));
  margin: 2rem auto 0;
  text-align: center;
}

.cookie-banner__title {
  margin-bottom: 0.5rem;
}

.cookie-banner__text {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

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

.reveal-stagger.is-visible > *:nth-child(1) {
  transition-delay: 0.05s;
}

.reveal-stagger.is-visible > *:nth-child(2) {
  transition-delay: 0.12s;
}

.reveal-stagger.is-visible > *:nth-child(3) {
  transition-delay: 0.19s;
}

.reveal-stagger.is-visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger.is-visible > *:nth-child(5) {
  transition-delay: 0.33s;
}

.reveal-stagger.is-visible > *:nth-child(6) {
  transition-delay: 0.4s;
}

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

.rhythm-lab::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 60%;
  left: -20%;
  top: -10%;
  background: radial-gradient(ellipse at 30% 40%, rgba(58, 176, 255, 0.08), transparent 50%),
    radial-gradient(ellipse at 70% 60%, rgba(255, 122, 61, 0.1), transparent 45%);
  pointer-events: none;
}

.rhythm-lab__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
  position: relative;
  z-index: 1;
}

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

.rhythm-lab__visual {
  position: relative;
  min-height: 220px;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.rhythm-lab__icon-cluster {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(1.25rem, 4vw, 2.5rem);
  padding: clamp(1.5rem, 4vw, 2rem);
  min-height: 200px;
}

.rhythm-lab__fa {
  font-size: clamp(2.75rem, 9vw, 4rem);
  line-height: 1;
  opacity: 0.92;
}

.rhythm-lab__fa--1 {
  color: var(--color-lime);
  animation: rhythm-pop 4s ease-in-out infinite;
}

.rhythm-lab__fa--2 {
  color: var(--color-electric);
  animation: rhythm-pop 4s ease-in-out infinite;
  animation-delay: -1s;
}

.rhythm-lab__fa--3 {
  color: var(--color-sunset);
  animation: rhythm-pop 4s ease-in-out infinite;
  animation-delay: -2s;
}

.rhythm-lab__fa--4 {
  color: var(--color-fuchsia);
  animation: rhythm-pop 4s ease-in-out infinite;
  animation-delay: -3s;
}

@keyframes rhythm-pop {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-8px) scale(1.06);
  }
}

.rhythm-lab__orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.55;
  animation: orb-float 7s ease-in-out infinite;
}

.orb--a {
  width: 120px;
  height: 120px;
  background: var(--color-fuchsia);
  top: 10%;
  left: 15%;
}

.orb--b {
  width: 100px;
  height: 100px;
  background: var(--color-electric);
  bottom: 15%;
  right: 10%;
  animation-delay: -3s;
}

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

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

.rhythm-lab__panel {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: linear-gradient(165deg, rgba(75, 28, 106, 0.4), rgba(255, 255, 255, 0.03));
  padding: 1.25rem 1.5rem 1.5rem;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.tabs__btn {
  flex: 1 1 auto;
  min-width: 5.5rem;
  padding: 0.65rem 0.85rem;
  border-radius: var(--radius-input);
  border: 1px solid var(--color-border);
  background: rgba(0, 0, 0, 0.2);
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 650;
  font-size: 0.875rem;
  letter-spacing: var(--track-display);
  cursor: pointer;
  transition: transform var(--transition-med), border-color var(--transition-med), color var(--transition-med), box-shadow var(--transition-med);
}

.tabs__btn:hover {
  color: var(--color-text);
  border-color: rgba(58, 176, 255, 0.35);
}

.tabs__btn.is-active {
  color: var(--color-text);
  border-color: rgba(255, 122, 61, 0.55);
  background: linear-gradient(135deg, rgba(255, 122, 61, 0.2), rgba(255, 47, 163, 0.15));
  box-shadow: 0 0 24px rgba(255, 122, 61, 0.12);
  transform: translateY(-2px);
}

.tabs__panel {
  display: none;
  animation: tab-in 0.45s ease;
}

.tabs__panel.is-active {
  display: block;
}

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

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

.tabs__panel h3 {
  margin-bottom: 0.5rem;
}

.rhythm-lab__list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--color-text-muted);
  font-size: var(--fs-small);
}

.rhythm-lab__list li {
  margin-bottom: 0.35rem;
}

.compliance-trust {
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.compliance-trust__intro {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-text-muted);
  margin: 0 0 1rem;
  text-align: center;
}

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

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

.compliance-trust__item {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
}

.compliance-trust__item > .fa-solid {
  font-size: 1.35rem;
  color: var(--color-electric);
  margin-bottom: 0.5rem;
}

.compliance-trust__title {
  font-size: var(--fs-body);
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
}

.compliance-trust__text {
  margin: 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  line-height: 1.45;
}

.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-grid);
  margin-top: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

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

.metric {
  text-align: center;
  padding: 1.25rem 1rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.03);
  transition: transform var(--transition-med), border-color var(--transition-med);
}

.metric:hover {
  transform: translateY(-3px);
  border-color: rgba(199, 255, 44, 0.25);
}

.metric__value {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: var(--track-display);
  color: var(--color-text);
  display: block;
  font-variant-numeric: tabular-nums;
}

.metric__label {
  display: block;
  margin-top: 0.35rem;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
}

.page-legal {
  background: var(--color-bg);
  background-image:
    radial-gradient(ellipse 100% 80% at 0% 0%, rgba(255, 122, 61, 0.14), transparent 45%),
    radial-gradient(ellipse 80% 60% at 100% 20%, rgba(58, 176, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 70% 50% at 50% 100%, rgba(75, 28, 106, 0.45), transparent 55%);
}

.legal-hero {
  padding: clamp(2.5rem, 8vw, 5rem) 0 clamp(2rem, 5vw, 3rem);
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 10%;
  width: 50%;
  height: 80%;
  background: linear-gradient(135deg, rgba(255, 47, 163, 0.15), transparent 60%);
  pointer-events: none;
}

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

.legal-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.85rem;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-border);
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--color-electric);
  margin-bottom: 1rem;
}

.legal-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  max-width: 18ch;
}

.legal-hero__lead {
  font-size: 1.0625rem;
  max-width: 52ch;
  margin-bottom: 1.25rem;
}

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

.legal-date-strip time {
  color: var(--color-lime);
  font-family: var(--font-mono);
  font-weight: 500;
}

.legal-shell {
  width: min(100% - 2rem, 1120px);
  margin-inline: auto;
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

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

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
  padding: 1.25rem;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
}

@media (max-width: 900px) {
  .legal-toc {
    position: relative;
    top: auto;
  }
}

.legal-toc__title {
  font-family: var(--font-mono);
  font-size: var(--fs-micro);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-sunset);
  margin: 0 0 0.75rem;
}

.legal-toc a {
  display: block;
  padding: 0.35rem 0;
  font-size: var(--fs-small);
  color: var(--color-text-muted);
  border-left: 2px solid transparent;
  padding-left: 0.65rem;
  margin-left: -0.65rem;
  transition: color var(--transition-fast), border-color var(--transition-fast);
}

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

.legal-content {
  border-radius: var(--radius-card);
  border: 1px solid var(--color-border);
  background: rgba(12, 4, 22, 0.65);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  box-shadow: var(--shadow-soft);
}

.legal-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

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

.legal-content h3 {
  font-size: 1.05rem;
  margin-top: 1.25rem;
}

.legal-content p,
.legal-content li {
  color: var(--color-text-muted);
}

.legal-content ul,
.legal-content ol {
  padding-left: 1.25rem;
  margin: 0 0 1em;
}

.legal-content li {
  margin-bottom: 0.45rem;
}

.legal-highlight {
  margin: 1.5rem 0;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-input);
  border: 1px solid rgba(199, 255, 44, 0.2);
  background: rgba(199, 255, 44, 0.05);
}

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

.thank-you-studio {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: clamp(2rem, 6vw, 4rem) 0;
  overflow: hidden;
}

.thank-you-studio__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.thank-you-studio__bg span {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.45;
  animation: ty-orb 10s ease-in-out infinite;
}

.thank-you-studio__bg span:nth-child(1) {
  width: 280px;
  height: 280px;
  background: var(--color-sunset);
  top: -5%;
  right: -5%;
}

.thank-you-studio__bg span:nth-child(2) {
  width: 220px;
  height: 220px;
  background: var(--color-fuchsia);
  bottom: 10%;
  left: -5%;
  animation-delay: -4s;
}

.thank-you-studio__bg span:nth-child(3) {
  width: 160px;
  height: 160px;
  background: var(--color-electric);
  top: 40%;
  left: 40%;
  animation-delay: -2s;
}

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

  50% {
    transform: scale(1.08) translate(10px, -12px);
  }
}

.thank-you-studio__inner {
  width: min(100% - 2rem, 640px);
  margin-inline: auto;
  position: relative;
  z-index: 1;
  text-align: center;
}

.thank-you-studio__mark {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  border: 1px solid rgba(199, 255, 44, 0.35);
  background: rgba(199, 255, 44, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: mark-pop 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

.thank-you-studio__check {
  font-size: 2.35rem;
  color: var(--color-lime);
  line-height: 1;
  animation: check-pop 0.65s cubic-bezier(0.22, 1, 0.36, 1) 0.35s both;
}

@keyframes mark-pop {
  from {
    opacity: 0;
    transform: scale(0.6);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes check-pop {
  from {
    opacity: 0;
    transform: scale(0.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.thank-you-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 2rem 0;
  text-align: left;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

.thank-you-timeline__step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--color-border);
}

.thank-you-timeline__step:last-child {
  border-bottom: none;
}

.thank-you-timeline__dot {
  width: 12px;
  height: 12px;
  margin-top: 0.35rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-sunset), var(--color-fuchsia));
  box-shadow: 0 0 16px rgba(255, 122, 61, 0.4);
}

.thank-you-timeline__step p {
  margin: 0;
  font-size: var(--fs-small);
}

@media (max-width: 380px) {
  :root {
    --header-h: 68px;
    --space-section-y-lg: clamp(3rem, 12vw, 6rem);
    --space-section-y-sm: clamp(3rem, 14vw, 4rem);
  }

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

  .site-header__inner {
    width: min(100% - 1rem, var(--max-width));
    gap: 0.5rem;
  }

  .brand {
    font-size: 0.82rem;
    line-height: 1.2;
    white-space: normal;
    max-width: min(11rem, 52vw);
  }

  .burger {
    width: 44px;
    height: 44px;
  }

  .burger__line {
    left: 11px;
    right: 11px;
  }

  .hero__visual {
    min-height: 260px;
  }

  .hero__ring {
    max-width: 100%;
  }

  .hero__chip--3 {
    left: 0;
  }

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

  .order-card {
    padding: 1.15rem;
  }

  .bento__item {
    padding: 1.15rem;
  }

  .cookie-banner {
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    padding: 1rem 1.1rem;
  }

  .legal-shell {
    width: min(100% - 1rem, 1120px);
  }

  .legal-content {
    padding: 1.15rem;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93%;
  }

  :root {
    --header-h: 64px;
    --radius-card: 18px;
    --radius-button: 14px;
    --radius-input: 12px;
  }

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

  .site-header__inner {
    width: min(100% - 0.75rem, var(--max-width));
  }

  .brand {
    font-size: 0.72rem;
    max-width: 10.5rem;
    letter-spacing: -0.02em;
  }

  .burger {
    width: 42px;
    height: 42px;
  }

  .burger__line:nth-child(1) {
    top: 15px;
  }

  .burger__line:nth-child(2) {
    top: 21px;
  }

  .burger__line:nth-child(3) {
    top: 27px;
  }

  .burger.is-open .burger__line:nth-child(1),
  .burger.is-open .burger__line:nth-child(3) {
    top: 21px;
  }

  .nav {
    width: 100%;
    padding: 1.1rem 1rem 1.5rem;
  }

  .hero__grid {
    gap: 1.25rem;
  }

  .highlight-card {
    padding: 0.85rem 0.95rem;
  }

  .tabs__btn {
    min-width: 4.5rem;
    font-size: 0.8125rem;
    padding: 0.55rem 0.5rem;
  }

  .metric__value {
    font-size: 1.5rem;
  }

  .btn {
    padding: 0.8rem 1.1rem;
    font-size: 0.9375rem;
  }

  .footer-copyright {
    width: min(100% - 0.75rem, var(--max-width));
    font-size: 0.75rem;
  }

  .legal-hero__inner {
    width: min(100% - 0.75rem, var(--max-width));
  }

  .thank-you-studio__inner {
    width: min(100% - 0.75rem, 640px);
  }
}

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

  .reveal,
  .reveal-stagger > *,
  .hero-reveal > *,
  .hero__aurora-layer,
  .hero__aurora-grid,
  .hero__ring,
  .hero__glow,
  .hero__chip,
  .hero__stars .fa-star,
  .product-overview__fa,
  .rhythm-lab__fa,
  .hero__eyebrow,
  .hero__title-gradient,
  .hero__price-tag,
  .hero__scroll-line,
  .hero__product img,
  .orb,
  .thank-you-studio__bg span,
  .thank-you-studio__mark,
  .thank-you-studio__check {
    animation: none !important;
    transition-duration: 0.01ms !important;
  }

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

  .hero__aurora-layer {
    transform: none !important;
  }
}
