:root {
  --color-coral: #FF6B6B;
  --color-sky: #00CFFF;
  --color-lavender: #CDA4FF;
  --color-gold: #FFC857;
  --color-teal: #2E8B8B;
  --color-base-dark: #0f172a;
  --color-base-mid: #1e293b;
  --color-surface: #ffffff;
  --color-surface-soft: #f8f6ff;
  --color-text: #0f172a;
  --color-text-muted: #475569;
  --color-border: rgba(46, 139, 139, 0.2);
  --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-md: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-xl: 1.25rem;
  --font-size-2xl: 1.5rem;
  --font-size-3xl: 2rem;
  --font-size-4xl: clamp(2rem, 5vw, 3.25rem);
  --font-size-hero: clamp(2.5rem, 6vw, 4rem);
  --line-tight: 1.15;
  --line-normal: 1.55;
  --weight-regular: 400;
  --weight-semibold: 600;
  --weight-bold: 700;
  --shadow-sm: 0 2px 8px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 20px 50px rgba(255, 107, 107, 0.18);
  --shadow-glow-coral: 0 0 40px rgba(255, 107, 107, 0.45);
  --shadow-glow-sky: 0 0 36px rgba(0, 207, 255, 0.4);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 28px;
  --radius-full: 999px;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --transition-fast: 0.18s ease;
  --transition-med: 0.28s ease;
  --header-h: 72px;
}

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

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

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-md);
  line-height: var(--line-normal);
  color: var(--color-text);
  background: linear-gradient(165deg, var(--color-surface-soft) 0%, #fff 40%, #eef9ff 100%);
  min-height: 100vh;
  overflow-x: hidden;
}

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

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

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-2);
  background: var(--color-base-dark);
  color: #fff;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-sm);
  z-index: 10000;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--space-4) var(--space-6);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  min-height: var(--header-h);
}

.brand {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--font-size-lg);
  color: var(--color-base-dark);
  letter-spacing: -0.02em;
}

.brand span {
  color: var(--color-coral);
}

.burger {
  position: relative;
  z-index: 1002;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: 2px solid transparent;
  background: linear-gradient(var(--color-surface), var(--color-surface)) padding-box,
    linear-gradient(135deg, var(--color-coral), var(--color-sky), var(--color-lavender)) border-box;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition-med);
  box-shadow: var(--shadow-sm);
}

.burger:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow-sky);
}

.burger-lines {
  width: 22px;
  height: 16px;
  position: relative;
  display: block;
}

.burger-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--color-coral), var(--color-teal));
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55), opacity 0.25s ease, top 0.4s ease;
}

.burger-line--top {
  top: 0;
}

.burger-line--mid {
  top: 6px;
}

.burger-line--bot {
  top: 12px;
}

.burger.is-open .burger-line--top {
  top: 6px;
  transform: rotate(45deg);
}

.burger.is-open .burger-line--mid {
  opacity: 0;
  transform: scaleX(0);
}

.burger.is-open .burger-line--bot {
  top: 6px;
  transform: rotate(-45deg);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

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

.nav-drawer {
  list-style: none;
}

@media (max-width: 899px) {
  .nav-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: min(100%, 320px);
    max-width: 100%;
    height: 100vh;
    height: 100dvh;
    z-index: 1001;
    padding: calc(var(--header-h) + var(--space-6)) var(--space-6) var(--space-8);
    background: linear-gradient(165deg, rgba(255, 255, 255, 0.97) 0%, rgba(248, 246, 255, 0.98) 100%);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--color-border);
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    transform: translateX(105%);
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
    overflow-y: auto;
  }

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

  .nav-drawer-list li {
    opacity: 0;
    transform: translateX(20px);
  }

  .nav-drawer.is-open .nav-drawer-list li {
    animation: nav-stagger 0.45s ease forwards;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(1) {
    animation-delay: 0.05s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(2) {
    animation-delay: 0.1s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(3) {
    animation-delay: 0.15s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(4) {
    animation-delay: 0.2s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(5) {
    animation-delay: 0.25s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(6) {
    animation-delay: 0.3s;
  }

  .nav-drawer.is-open .nav-drawer-list li:nth-child(7) {
    animation-delay: 0.35s;
  }
}

@keyframes nav-stagger {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

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

@media (min-width: 900px) {
  .burger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .nav-drawer {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    overflow: visible;
  }
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

@media (min-width: 900px) {
  .site-nav ul {
    flex-direction: row;
    align-items: center;
    gap: var(--space-5);
  }
}

.site-nav a {
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  padding: var(--space-3) var(--space-2);
  display: block;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast), transform var(--transition-fast);
}

@media (max-width: 899px) {
  .site-nav a {
    font-size: var(--font-size-lg);
    padding: var(--space-4);
    border: 1px solid transparent;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(0, 207, 255, 0.1);
    border-color: rgba(0, 207, 255, 0.25);
    transform: translateX(-4px);
  }
}

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

@media (min-width: 900px) {
  .site-nav a {
    padding: var(--space-2) var(--space-2);
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: inherit;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-sm);
  border: none;
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

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

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255, 107, 107, 0.5);
}

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

.btn-secondary:hover {
  background: var(--color-teal);
  color: #fff;
}

.btn-sky {
  background: linear-gradient(135deg, var(--color-sky), #33d9ff);
  color: #04202a;
  box-shadow: var(--shadow-glow-sky);
}

.btn-sky:hover {
  transform: translateY(-2px);
}

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

.magnetic-wrap {
  display: inline-block;
  position: relative;
}

.section {
  padding: var(--space-12) var(--space-6);
  max-width: 1200px;
  margin: 0 auto;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto var(--space-10);
}

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

.section-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-3xl);
  line-height: var(--line-tight);
  margin: 0 0 var(--space-4);
  color: var(--color-base-dark);
}

.section-lead {
  margin: 0;
  color: var(--color-text-muted);
  font-size: var(--font-size-lg);
}

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

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

.reveal-scale {
  opacity: 0;
  transform: scale(0.94);
  transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.2, 0.64, 1);
}

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

.marquee-strip {
  max-width: 1200px;
  margin: 0 auto var(--space-8);
  padding: 0 var(--space-6);
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: var(--space-5);
  width: max-content;
  animation: marquee-slide 28s linear infinite;
}

.marquee-content {
  font-size: var(--font-size-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-teal);
  white-space: nowrap;
}

.marquee-dot {
  color: var(--color-coral);
  font-weight: var(--weight-bold);
}

@keyframes marquee-slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.pulse-banner-inner {
  display: grid;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .pulse-banner-inner {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pulse-card {
  position: relative;
  text-align: left;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 2px solid var(--color-border);
  background: var(--color-surface);
  cursor: pointer;
  font-family: inherit;
  overflow: hidden;
  transition: transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1), border-color 0.25s ease, box-shadow 0.35s ease;
}

.pulse-card-glow {
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.2) 0%, transparent 55%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.pulse-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-sky);
  box-shadow: var(--shadow-glow-sky);
}

.pulse-card:hover .pulse-card-glow {
  opacity: 1;
}

.pulse-card.is-active {
  border-color: var(--color-coral);
  box-shadow: var(--shadow-glow-coral);
  transform: translateY(-4px) scale(1.02);
}

.pulse-card.is-active .pulse-card-glow {
  opacity: 1;
}

.pulse-card:focus-visible {
  outline: 3px solid var(--color-sky);
  outline-offset: 3px;
}

.pulse-card-title {
  display: block;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-md);
  color: var(--color-base-dark);
  margin-bottom: var(--space-2);
  position: relative;
  z-index: 1;
}

.pulse-card-text {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-normal);
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  padding: var(--space-10) var(--space-6) var(--space-16);
  margin: 0 auto;
}

.hero--studio {
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 60% at 70% 20%, rgba(255, 107, 107, 0.35), transparent 55%),
    radial-gradient(ellipse 60% 50% at 20% 80%, rgba(0, 207, 255, 0.28), transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 50%, rgba(205, 164, 255, 0.22), transparent 60%);
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius-xl);
  animation: hero-breathe 16s ease-in-out infinite;
}

.hero-mesh {
  position: absolute;
  inset: -20%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.55;
  background: linear-gradient(
    125deg,
    rgba(255, 107, 107, 0.2) 0%,
    rgba(0, 207, 255, 0.15) 25%,
    rgba(205, 164, 255, 0.2) 50%,
    rgba(255, 200, 87, 0.12) 75%,
    rgba(46, 139, 139, 0.15) 100%
  );
  background-size: 400% 400%;
  animation: hero-mesh-flow 18s ease infinite;
  border-radius: 40%;
  filter: blur(50px);
  transition: transform 0.4s ease-out;
  will-change: transform;
}

@keyframes hero-mesh-flow {
  0% {
    background-position: 0% 40%;
  }

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

  100% {
    background-position: 0% 40%;
  }
}

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

  50% {
    opacity: 0.88;
    transform: scale(1.04);
  }
}

.hero-float {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  transition: transform 0.35s ease-out;
  will-change: transform;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.45;
  animation: orb-drift 12s ease-in-out infinite;
}

.hero-orb--1 {
  width: 180px;
  height: 180px;
  background: var(--color-coral);
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.hero-orb--2 {
  width: 140px;
  height: 140px;
  background: var(--color-sky);
  bottom: 20%;
  right: 10%;
  animation-delay: -4s;
}

.hero-orb--3 {
  width: 100px;
  height: 100px;
  background: var(--color-lavender);
  top: 40%;
  right: 25%;
  animation-delay: -7s;
}

.hero-orb--4 {
  width: 120px;
  height: 120px;
  background: var(--color-gold);
  bottom: 40%;
  left: 15%;
  opacity: 0.35;
  animation-delay: -2s;
}

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

  33% {
    transform: translate(12px, -18px) scale(1.08);
  }

  66% {
    transform: translate(-10px, 14px) scale(0.95);
  }
}

.hero-sparks {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px var(--color-sky), 0 0 20px var(--color-lavender);
  animation: spark-twinkle 3.2s ease-in-out infinite;
  opacity: 0;
}

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

.hero-spark:nth-child(2) {
  top: 12%;
  right: 28%;
  animation-delay: 0.4s;
}

.hero-spark:nth-child(3) {
  top: 45%;
  left: 8%;
  animation-delay: 0.8s;
}

.hero-spark:nth-child(4) {
  bottom: 35%;
  right: 12%;
  animation-delay: 1.2s;
}

.hero-spark:nth-child(5) {
  top: 62%;
  left: 35%;
  animation-delay: 1.6s;
}

.hero-spark:nth-child(6) {
  bottom: 18%;
  left: 48%;
  animation-delay: 2s;
}

.hero-spark:nth-child(7) {
  top: 28%;
  right: 15%;
  animation-delay: 2.4s;
}

.hero-spark:nth-child(8) {
  bottom: 52%;
  right: 40%;
  animation-delay: 2.8s;
}

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

  40% {
    opacity: 0.95;
    transform: scale(1);
  }

  60% {
    opacity: 0.6;
    transform: scale(0.85);
  }
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.hero-grid--studio {
  align-items: start;
}

@media (min-width: 960px) and (max-width: 1099px) {
  .hero-grid--studio {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
  }

  .hero-stage {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-panel {
    grid-column: 2;
    grid-row: 1;
  }

  .order-card--studio {
    grid-column: 1 / -1;
    grid-row: 2;
    max-width: 640px;
    width: 100%;
    justify-self: center;
  }
}

@media (min-width: 1100px) {
  .hero-grid--studio {
    grid-template-columns: minmax(260px, 1fr) minmax(300px, 1.2fr) minmax(280px, 1fr);
    gap: var(--space-8);
    align-items: start;
  }

  .hero-stage {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-panel {
    grid-column: 2;
    grid-row: 1;
    padding-top: var(--space-2);
  }

  .order-card--studio {
    grid-column: 3;
    grid-row: 1;
    position: sticky;
    top: calc(var(--header-h) + var(--space-4));
    max-width: none;
    width: 100%;
    margin: 0;
  }
}

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

  .order-card--studio {
    max-width: 640px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
}

.hero-orbit {
  position: relative;
  width: min(100%, 340px);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  transition: transform 0.2s ease-out;
}

.hero-orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid transparent;
  background: linear-gradient(var(--color-surface-soft), var(--color-surface-soft)) padding-box,
    conic-gradient(from 0deg, var(--color-coral), var(--color-sky), var(--color-lavender), var(--color-gold), var(--color-coral)) border-box;
  animation: hero-orbit-spin 14s linear infinite;
  opacity: 0.85;
}

.hero-orbit-dashes {
  position: absolute;
  inset: 12px;
  border-radius: 50%;
  border: 2px dashed rgba(46, 139, 139, 0.35);
  animation: hero-orbit-spin-reverse 22s linear infinite;
}

.hero-beam {
  position: absolute;
  width: 40%;
  height: 120%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(25deg);
  background: linear-gradient(180deg, transparent, rgba(0, 207, 255, 0.12), transparent);
  animation: hero-beam-sweep 5s ease-in-out infinite;
  pointer-events: none;
}

@keyframes hero-orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes hero-orbit-spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@keyframes hero-beam-sweep {
  0%,
  100% {
    opacity: 0.4;
    transform: translate(-50%, -50%) rotate(20deg) scaleY(1);
  }

  50% {
    opacity: 0.9;
    transform: translate(-50%, -50%) rotate(32deg) scaleY(1.08);
  }
}

.hero-glow--studio {
  position: absolute;
  width: 75%;
  height: 75%;
  background: radial-gradient(circle, rgba(255, 200, 87, 0.45) 0%, rgba(255, 107, 107, 0.2) 40%, transparent 68%);
  filter: blur(8px);
  border-radius: 50%;
  animation: hero-glow-pulse 4s ease-in-out infinite;
}

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

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

.hero-figure {
  position: relative;
  margin: 0;
  z-index: 2;
  filter: drop-shadow(0 24px 40px rgba(255, 107, 107, 0.25));
  animation: hero-bottle-float 5.5s ease-in-out infinite;
}

@keyframes hero-bottle-float {
  0%,
  100% {
    transform: translateY(0) rotate(-1deg);
  }

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

.hero-micro {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
  justify-content: center;
}

.hero-micro-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 72px;
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  animation: hero-micro-pop 0.7s cubic-bezier(0.34, 1.4, 0.64, 1) both;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.hero-micro-item:nth-child(1) {
  animation-delay: 0.15s;
}

.hero-micro-item:nth-child(2) {
  animation-delay: 0.3s;
}

.hero-micro-item:nth-child(3) {
  animation-delay: 0.45s;
}

.hero-micro-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-sky);
}

@keyframes hero-micro-pop {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.85);
  }

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

.hero-micro-value {
  font-size: var(--font-size-xl);
  font-weight: var(--weight-bold);
  background: linear-gradient(135deg, var(--color-coral), var(--color-teal));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}

.hero-micro-label {
  font-size: var(--font-size-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: var(--space-1);
}

.hero-panel {
  position: relative;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-teal);
  animation: hero-kicker-in 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
  position: relative;
  padding-bottom: var(--space-2);
}

.hero-kicker::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  max-width: 200px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-sky), transparent);
  background-size: 200% 100%;
  animation: hero-shimmer-line 2.5s ease infinite;
}

.hero-kicker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-coral);
  box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.5);
  animation: hero-dot-pulse 2s ease infinite;
}

@keyframes hero-kicker-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

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

@keyframes hero-shimmer-line {
  0% {
    background-position: 0% 50%;
  }

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

@keyframes hero-dot-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.45);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(255, 107, 107, 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: var(--font-size-hero);
  line-height: 1.08;
  margin: 0 0 var(--space-4);
  color: var(--color-base-dark);
}

.hero-title-line {
  display: inline;
  animation: hero-title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line:first-of-type {
  animation-delay: 0.1s;
}

.hero-title-accent {
  display: inline;
  background: linear-gradient(105deg, var(--color-coral) 0%, var(--color-sky) 45%, var(--color-lavender) 100%);
  background-size: 200% auto;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hero-title-rise 0.85s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both, hero-gradient-shift 6s ease infinite;
}

.hero-title .hero-title-line:last-of-type {
  animation-delay: 0.35s;
}

@keyframes hero-title-rise {
  from {
    opacity: 0;
    transform: translateY(28px);
  }

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

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

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

.hero-lead {
  font-size: var(--font-size-xl);
  color: var(--color-text-muted);
  margin: 0 0 var(--space-5);
  animation: hero-fade-up 0.75s ease 0.45s both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

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

.hero-rating {
  animation: hero-fade-up 0.75s ease 0.55s both;
}

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

@keyframes hero-stars-wink {
  0%,
  100% {
    filter: brightness(1);
    letter-spacing: 2px;
  }

  50% {
    filter: brightness(1.15);
    letter-spacing: 4px;
  }
}

.hero-price {
  flex-wrap: wrap;
  align-items: center;
  animation: hero-fade-up 0.75s ease 0.65s both;
}

.hero-price-now {
  animation: hero-price-glow 3s ease-in-out infinite;
}

@keyframes hero-price-glow {
  0%,
  100% {
    text-shadow: 0 0 0 transparent;
  }

  50% {
    text-shadow: 0 0 20px rgba(255, 107, 107, 0.35);
  }
}

.hero-price-tag {
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(255, 200, 87, 0.35);
  color: var(--color-base-dark);
  align-self: center;
  animation: hero-tag-bounce 2s ease-in-out infinite;
}

@keyframes hero-tag-bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

.hero-highlights li {
  animation: hero-fade-up 0.6s ease both;
}

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

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

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

.hero-panel .hero-cta-row {
  animation: hero-fade-up 0.75s ease 1s both;
}

.hero-btn-glow {
  position: relative;
  overflow: visible;
  animation: hero-btn-pulse-ring 2.8s ease infinite;
}

@keyframes hero-btn-pulse-ring {
  0%,
  100% {
    box-shadow: var(--shadow-glow-coral);
  }

  50% {
    box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.45), 0 12px 36px rgba(255, 107, 107, 0.45);
  }
}

.hero-scroll-hint {
  display: none;
  margin: var(--space-8) 0 0;
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--color-text-muted);
  align-items: center;
  gap: var(--space-3);
}

@media (min-width: 960px) {
  .hero-scroll-hint {
    display: flex;
  }
}

.hero-scroll-line {
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-sky), transparent);
  animation: hero-scroll-line 1.8s ease-in-out infinite;
}

@keyframes hero-scroll-line {
  0%,
  100% {
    transform: scaleX(0.4);
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.order-card--studio {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.08), 0 0 0 1px rgba(0, 207, 255, 0.08);
  animation: hero-card-settle 1s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

@keyframes hero-card-settle {
  from {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
  }

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

.order-card-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-sky), var(--color-lavender));
  background-size: 200% 100%;
  animation: hero-shimmer-line 4s linear infinite;
}

.order-card--studio:hover {
  box-shadow: 0 24px 56px rgba(0, 207, 255, 0.12), 0 0 0 1px rgba(0, 207, 255, 0.15);
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg,
  .hero-mesh,
  .hero-orb,
  .hero-spark,
  .hero-orbit-ring,
  .hero-orbit-dashes,
  .hero-beam,
  .hero-glow--studio,
  .hero-figure,
  .hero-stars,
  .hero-price-now,
  .hero-price-tag,
  .hero-btn-glow,
  .hero-scroll-line,
  .order-card-accent {
    animation: none !important;
  }

  .hero-title-line,
  .hero-title-accent,
  .hero-lead,
  .hero-rating,
  .hero-price,
  .hero-highlights li,
  .hero-panel .hero-cta-row,
  .hero-kicker,
  .hero-micro-item,
  .order-card--studio {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-mesh,
  .hero-float,
  [data-hero-orbit] {
    transition: none !important;
  }
}

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

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

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

.badge {
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(46, 139, 139, 0.12);
  color: var(--color-teal);
}

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

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

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

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

.highlights li {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
  font-weight: var(--weight-semibold);
  color: var(--color-base-mid);
}

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

.order-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

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

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

.form-group label {
  display: block;
  font-weight: var(--weight-semibold);
  font-size: var(--font-size-sm);
  margin-bottom: var(--space-2);
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: var(--space-3) var(--space-4);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--font-size-md);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

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

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

.field-error {
  display: none;
  font-size: var(--font-size-sm);
  color: #b91c1c;
  margin-top: var(--space-2);
}

.field-error.is-visible {
  display: block;
}

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

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

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

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  align-items: center;
}

.ads-compliance-block {
  max-width: 1200px;
  margin: 0 auto var(--space-10);
  padding: 0 var(--space-6);
}

.ads-compliance-inner {
  background: linear-gradient(135deg, rgba(46, 139, 139, 0.08) 0%, rgba(205, 164, 255, 0.1) 50%, rgba(255, 107, 107, 0.06) 100%);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-8) var(--space-6);
  box-shadow: var(--shadow-sm);
}

.ads-compliance-title {
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-xl);
  color: var(--color-base-dark);
  line-height: var(--line-tight);
}

.ads-compliance-list {
  margin: 0 0 var(--space-4);
  padding-left: var(--space-6);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  line-height: var(--line-normal);
}

.ads-compliance-list li {
  margin-bottom: var(--space-3);
}

.ads-compliance-list strong {
  color: var(--color-base-mid);
}

.ads-compliance-more {
  margin: 0;
  font-size: var(--font-size-sm);
}

.ads-compliance-more a {
  font-weight: var(--weight-semibold);
}

.hero-compliance-line {
  margin: 0 0 var(--space-4);
  font-size: var(--font-size-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-teal);
}

.hero-price-footnote {
  margin: calc(-1 * var(--space-2)) 0 var(--space-5);
  font-size: var(--font-size-xs);
  color: var(--color-text-muted);
  max-width: 28rem;
  line-height: var(--line-normal);
}

.hero-rating--textual {
  margin-bottom: var(--space-4);
}

.proof-disclaimer {
  text-align: center;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  max-width: 640px;
  margin: 0 auto var(--space-8);
  line-height: var(--line-normal);
}

.proof-card-label {
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-coral);
  margin: 0 0 var(--space-2);
}

.proof-stars-muted {
  opacity: 0.65;
}

.footer-legal--ads p {
  margin-bottom: var(--space-4);
}

.footer-legal--ads p:last-child {
  margin-bottom: 0;
  color: #64748b;
}

.social-proof {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
}

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

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

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

.proof-stat strong {
  display: block;
  font-size: var(--font-size-3xl);
  color: var(--color-teal);
}

.proof-cards {
  display: grid;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

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

.proof-card {
  background: var(--color-surface-soft);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

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

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

@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: minmax(140px, auto);
  }

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

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

.bento-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-med), box-shadow var(--transition-med);
  position: relative;
  overflow: hidden;
}

.bento-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-coral), var(--color-sky));
  opacity: 0;
  transition: opacity var(--transition-med);
}

.bento-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.bento-card:hover::before {
  opacity: 1;
}

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

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

.bento-icon {
  font-size: 2rem;
  margin-bottom: var(--space-3);
}

.categories-bento .cat-energy {
  background: linear-gradient(145deg, #fff, rgba(255, 200, 87, 0.2));
}

.categories-bento .cat-muscle {
  background: linear-gradient(145deg, #fff, rgba(255, 107, 107, 0.12));
}

.categories-bento .cat-immunity {
  background: linear-gradient(145deg, #fff, rgba(0, 207, 255, 0.12));
}

.categories-bento .cat-vitamins {
  background: linear-gradient(145deg, #fff, rgba(205, 164, 255, 0.2));
}

.benefits-bento .benefit-large {
  background: linear-gradient(160deg, rgba(205, 164, 255, 0.25), #fff);
}

.ingredient-spotlight {
  display: grid;
  gap: var(--space-4);
}

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

.ingredient-card {
  position: relative;
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  padding: var(--space-6);
  min-height: 200px;
  overflow: hidden;
  cursor: default;
  transition: box-shadow var(--transition-med);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-glow-sky);
}

.ingredient-card .ingredient-front h3 {
  margin: 0 0 var(--space-2);
}

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

.ingredient-benefit {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.92), rgba(46, 139, 139, 0.95));
  color: #fff;
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity var(--transition-med), transform var(--transition-med);
  font-size: var(--font-size-sm);
  line-height: var(--line-normal);
}

.ingredient-card:hover .ingredient-benefit,
.ingredient-card:focus-within .ingredient-benefit {
  opacity: 1;
  transform: translateY(0);
}

.trust-science {
  background: var(--color-base-dark);
  color: #e2e8f0;
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
}

.trust-science .section-title {
  color: #fff;
}

.trust-science .section-lead {
  color: #94a3b8;
}

.trust-icons {
  display: grid;
  gap: var(--space-8);
  margin-top: var(--space-8);
}

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

.trust-item {
  text-align: center;
  padding: var(--space-6);
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: transform var(--transition-med), background var(--transition-med);
}

.trust-item:hover {
  transform: scale(1.03);
  background: rgba(255, 255, 255, 0.1);
}

.trust-item svg {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-4);
}

.trust-item h3 {
  margin: 0 0 var(--space-2);
  font-size: var(--font-size-lg);
  color: #fff;
}

.trust-item p {
  margin: 0;
  font-size: var(--font-size-sm);
  color: #94a3b8;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.15);
    opacity: 0;
  }
}

.trust-svg-anim .ring {
  animation: pulse-ring 2s ease-out infinite;
  transform-origin: center;
}

.rhythm-lab {
  position: relative;
}

.rhythm-lab-shell {
  max-width: 880px;
  margin: 0 auto;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(238, 249, 255, 0.9));
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
}

.rhythm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.rhythm-tab {
  flex: 1 1 auto;
  min-width: 88px;
  padding: var(--space-3) var(--space-5);
  font-family: inherit;
  font-weight: var(--weight-bold);
  font-size: var(--font-size-sm);
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  background: var(--color-surface);
  color: var(--color-text-muted);
  cursor: pointer;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), color var(--transition-fast), background var(--transition-fast);
}

.rhythm-tab:hover {
  border-color: var(--color-sky);
  color: var(--color-teal);
  transform: translateY(-2px);
}

.rhythm-tab.is-active {
  background: linear-gradient(135deg, var(--color-coral), #ff8e8e);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-glow-coral);
}

.rhythm-panels {
  position: relative;
  min-height: 280px;
}

.rhythm-panel {
  display: none;
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  animation: panel-in 0.55s ease both;
}

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

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

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

.rhythm-visual {
  height: 140px;
  margin-bottom: var(--space-6);
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  background: var(--color-surface-soft);
}

.rhythm-visual--pulse {
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhythm-ring {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 3px solid var(--color-sky);
  border-radius: 50%;
  animation: ring-expand 2.4s ease-out infinite;
  opacity: 0.7;
}

.rhythm-ring--delay {
  animation-delay: 0.8s;
  border-color: var(--color-coral);
}

.rhythm-core {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold), var(--color-coral));
  box-shadow: var(--shadow-glow-coral);
  animation: core-pulse 1.8s ease-in-out infinite;
}

@keyframes ring-expand {
  0% {
    transform: scale(0.5);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

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

  50% {
    transform: scale(1.12);
  }
}

.rhythm-visual--flow {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-6);
}

.flow-bar {
  width: 20px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, var(--color-sky), var(--color-teal));
  animation: bar-wave 1.2s ease-in-out infinite;
}

.flow-bar--2 {
  height: 72px;
  animation-delay: 0.15s;
}

.flow-bar--3 {
  height: 56px;
  animation-delay: 0.3s;
}

@keyframes bar-wave {
  0%,
  100% {
    transform: scaleY(0.85);
    opacity: 0.85;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}

.rhythm-visual--balance {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
}

.balance-cell {
  width: 48px;
  height: 64px;
  border-radius: var(--radius-md);
  background: rgba(46, 139, 139, 0.25);
  animation: balance-tilt 3s ease-in-out infinite;
}

.balance-cell--accent {
  background: linear-gradient(180deg, var(--color-lavender), var(--color-sky));
  animation-delay: -1s;
}

@keyframes balance-tilt {
  0%,
  100% {
    transform: rotate(-4deg) translateY(0);
  }

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

.rhythm-panel h3 {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-xl);
}

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

.rhythm-tags {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.rhythm-tags li {
  font-size: var(--font-size-xs);
  font-weight: var(--weight-bold);
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-full);
  background: rgba(205, 164, 255, 0.25);
  color: var(--color-base-mid);
}

.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.12s ease-out;
}

.product-overview {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

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

.specs-grid {
  display: grid;
  gap: var(--space-4);
}

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

.spec-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
  transition: border-color var(--transition-med);
}

.spec-card:hover {
  border-color: var(--color-sky);
}

.spec-icon {
  font-size: 1.75rem;
  flex-shrink: 0;
}

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

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

.steps li {
  position: relative;
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  transition: transform var(--transition-med);
}

.steps li:hover {
  transform: translateY(-4px);
}

.steps li::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-base-dark);
  font-weight: var(--weight-bold);
  margin-bottom: var(--space-4);
}

.ingredients-grid {
  display: grid;
  gap: var(--space-4);
}

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

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

.ingredient-simple {
  background: var(--color-surface);
  padding: var(--space-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

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

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

.use-steps {
  max-width: 720px;
  margin: 0 auto;
}

.use-steps ol {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: u;
}

.use-steps li {
  counter-increment: u;
  display: flex;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
  align-items: flex-start;
}

.use-steps li::before {
  content: counter(u);
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-coral), var(--color-lavender));
  color: #fff;
  font-weight: var(--weight-bold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-grid {
  display: grid;
  gap: var(--space-4);
}

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

.review-card {
  background: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-med);
}

.review-card:hover {
  box-shadow: var(--shadow-md);
}

.review-card .stars {
  font-size: var(--font-size-md);
  margin-bottom: var(--space-3);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: var(--space-3);
  overflow: hidden;
  background: var(--color-surface);
}

.accordion-trigger {
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  font-family: inherit;
  font-size: var(--font-size-md);
  font-weight: var(--weight-semibold);
  background: var(--color-surface-soft);
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-4);
  transition: background var(--transition-fast);
}

.accordion-trigger:hover {
  background: rgba(0, 207, 255, 0.08);
}

.accordion-trigger::after {
  content: "+";
  font-size: var(--font-size-xl);
  color: var(--color-coral);
  transition: transform var(--transition-med);
}

.accordion-item.is-open .accordion-trigger::after {
  transform: rotate(45deg);
}

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

.accordion-panel-inner {
  padding: 0 var(--space-5) var(--space-5);
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
}

.accordion-item.is-open .accordion-panel {
  max-height: 720px;
}

.final-cta {
  text-align: center;
  background: linear-gradient(135deg, rgba(255, 107, 107, 0.12), rgba(0, 207, 255, 0.12));
  border-radius: var(--radius-xl);
  padding: var(--space-12) var(--space-6);
  border: 1px solid var(--color-border);
}

.disclaimer-block {
  background: #fef3c7;
  border: 1px solid #fcd34d;
  border-radius: var(--radius-md);
  padding: var(--space-6);
  margin-top: var(--space-10);
  font-size: var(--font-size-sm);
  color: #78350f;
}

.site-footer {
  background: var(--color-base-dark);
  color: #cbd5e1;
  padding: var(--space-12) var(--space-6) var(--space-8);
  margin-top: var(--space-16);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  gap: var(--space-8);
  margin-bottom: var(--space-8);
}

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

.footer-brand {
  font-weight: var(--weight-bold);
  font-size: var(--font-size-lg);
  color: #fff;
  margin-bottom: var(--space-2);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-links li {
  margin-bottom: var(--space-2);
}

.footer-links a {
  color: #94a3b8;
}

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

.footer-legal {
  font-size: var(--font-size-xs);
  line-height: var(--line-normal);
  color: #64748b;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--space-6);
}

.footer-legal p {
  margin: 0 0 var(--space-3);
}

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

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

.cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-top: var(--space-4);
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-4);
}

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

.modal {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--space-8);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-lg);
}

.modal h2 {
  margin: 0 0 var(--space-4);
}

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

.cookie-toggle label {
  font-weight: var(--weight-semibold);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
}

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

.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #cbd5e1;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

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

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

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

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

.modal-close {
  margin-top: var(--space-6);
  width: 100%;
}

.body-legal {
  background: linear-gradient(185deg, #eef9ff 0%, #f8f4ff 35%, #ffffff 70%);
  min-height: 100vh;
}

.legal-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--space-8) var(--space-5) var(--space-16);
}

.legal-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: var(--space-10) var(--space-6);
  margin-bottom: var(--space-10);
  background: linear-gradient(135deg, var(--color-base-dark) 0%, #1e3a4f 45%, var(--color-teal) 120%);
  color: #e2e8f0;
  box-shadow: var(--shadow-lg);
}

.legal-hero::after {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: radial-gradient(circle, rgba(255, 107, 107, 0.35) 0%, transparent 65%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.legal-hero h1 {
  margin: 0 0 var(--space-4);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  line-height: var(--line-tight);
  color: #fff;
}

.legal-hero-lead {
  margin: 0 0 var(--space-5);
  font-size: var(--font-size-md);
  color: #cbd5e1;
  line-height: var(--line-normal);
}

.doc-date-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  font-size: var(--font-size-sm);
  font-weight: var(--weight-bold);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.doc-date-badge time {
  color: var(--color-gold);
}

.legal-grid {
  display: grid;
  gap: var(--space-8);
}

@media (min-width: 960px) {
  .legal-grid {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--space-4));
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.legal-toc-title {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-coral);
}

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

.legal-toc a {
  display: block;
  padding: var(--space-2) 0;
  font-size: var(--font-size-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  border-bottom: 1px solid transparent;
  transition: color var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.legal-toc a:hover {
  color: var(--color-sky);
  border-bottom-color: var(--color-sky);
  transform: translateX(4px);
}

.legal-main {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.legal-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-6) var(--space-6) var(--space-6) calc(var(--space-6) + 6px);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform var(--transition-med), box-shadow var(--transition-med);
}

.legal-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, var(--color-coral), var(--color-sky), var(--color-lavender));
}

.legal-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.legal-card h2 {
  margin: 0 0 var(--space-3);
  font-size: var(--font-size-xl);
  color: var(--color-base-dark);
}

.legal-card h3 {
  margin: var(--space-5) 0 var(--space-2);
  font-size: var(--font-size-md);
  color: var(--color-teal);
}

.legal-card p,
.legal-card li {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  line-height: var(--line-normal);
}

.legal-card ul {
  margin: var(--space-3) 0;
  padding-left: var(--space-5);
}

.legal-card li + li {
  margin-top: var(--space-2);
}

.legal-highlight {
  margin-top: var(--space-4);
  padding: var(--space-4);
  border-radius: var(--radius-md);
  background: linear-gradient(120deg, rgba(0, 207, 255, 0.1), rgba(205, 164, 255, 0.12));
  border: 1px dashed rgba(46, 139, 139, 0.35);
  font-size: var(--font-size-sm);
  color: var(--color-base-mid);
}

.legal-cta-bar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  align-items: center;
  margin-top: var(--space-5);
  padding-top: var(--space-5);
  border-top: 1px solid var(--color-border);
}

.thank-layout {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.thank-hero-card {
  padding: var(--space-10) var(--space-6);
  border-radius: var(--radius-xl);
  background: linear-gradient(160deg, rgba(255, 107, 107, 0.15), rgba(0, 207, 255, 0.12));
  border: 1px solid var(--color-border);
  margin-bottom: var(--space-8);
  animation: thank-pop 0.7s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}

@keyframes thank-pop {
  from {
    opacity: 0;
    transform: scale(0.92) translateY(24px);
  }

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

.thank-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: var(--space-4);
  text-align: left;
}

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

.thank-steps li {
  padding: var(--space-5);
  border-radius: var(--radius-lg);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  position: relative;
  transition: border-color var(--transition-med), transform var(--transition-med);
}

.thank-steps li:hover {
  border-color: var(--color-sky);
  transform: translateY(-4px);
}

.thank-steps strong {
  display: block;
  color: var(--color-coral);
  margin-bottom: var(--space-2);
  font-size: var(--font-size-sm);
}

@media (max-width: 380px) {
  :root {
    --space-4: 0.75rem;
    --space-5: 0.875rem;
    --space-6: 1rem;
    --space-8: 1.25rem;
    --space-10: 1.5rem;
    --space-12: 2rem;
    --space-16: 2.5rem;
    --font-size-3xl: 1.5rem;
    --font-size-hero: clamp(1.65rem, 12vw, 2.25rem);
    --header-h: 64px;
  }

  .header-inner {
    padding: var(--space-3) var(--space-3);
    gap: var(--space-2);
    min-height: var(--header-h);
  }

  .brand {
    font-size: 0.7rem;
    line-height: 1.25;
    max-width: calc(100vw - 56px);
    word-break: break-word;
  }

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

  .section {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .hero {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
    padding-top: var(--space-6);
    padding-bottom: var(--space-10);
  }

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

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

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

  .btn {
    padding: var(--space-3) var(--space-4);
    font-size: 0.8125rem;
    min-height: 44px;
  }

  .rhythm-tabs {
    flex-direction: column;
  }

  .rhythm-tab {
    min-width: 100%;
    width: 100%;
  }

  .rhythm-panels {
    min-height: 0;
  }

  .social-proof {
    padding: var(--space-6) var(--space-3);
  }

  .trust-science {
    padding: var(--space-6) var(--space-3);
  }

  .final-cta {
    padding: var(--space-8) var(--space-3);
  }

  .legal-shell {
    padding-left: var(--space-3);
    padding-right: var(--space-3);
  }

  .legal-hero {
    padding: var(--space-6) var(--space-4);
  }

  .legal-card {
    padding: var(--space-4) var(--space-4) var(--space-4) calc(var(--space-4) + 5px);
  }

  .cookie-inner {
    padding: var(--space-4);
  }

  .cookie-actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

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

  .marquee-strip {
    padding: 0 var(--space-3);
    margin-bottom: var(--space-6);
  }

  .marquee-content {
    font-size: 0.65rem;
    letter-spacing: 0.1em;
  }
}

@media (max-width: 320px) {
  .brand {
    font-size: 0.65rem;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .hero-orb--1 {
    width: 120px;
    height: 120px;
  }

  .hero-orb--2 {
    width: 90px;
    height: 90px;
  }

  .proof-stat strong {
    font-size: var(--font-size-2xl);
  }
}
