:root {
  --color-emerald: #28A745;
  --color-mint: #7EE6B8;
  --color-olive: #A3B86C;
  --color-sunlit: #FFEB7F;
  --color-charcoal: #2E2E2E;
  --color-white: #ffffff;
  --color-off-white: #f6faf8;
  --font-heading: "Segoe UI", system-ui, -apple-system, sans-serif;
  --font-body: "Segoe UI", system-ui, -apple-system, sans-serif;
  --fs-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.35vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.5vw, 1.35rem);
  --fs-xl: clamp(1.35rem, 1.15rem + 1vw, 1.75rem);
  --fs-2xl: clamp(1.75rem, 1.35rem + 1.75vw, 2.5rem);
  --fs-3xl: clamp(2.25rem, 1.5rem + 2.5vw, 3.75rem);
  --fw-normal: 400;
  --fw-medium: 600;
  --fw-bold: 700;
  --lh-tight: 1.15;
  --lh-body: 1.55;
  --shadow-sm: 0 2px 8px rgba(46, 46, 46, 0.08);
  --shadow-md: 0 8px 24px rgba(46, 46, 46, 0.12);
  --shadow-lg: 0 20px 48px rgba(46, 46, 46, 0.16);
  --shadow-glow-emerald: 0 12px 40px rgba(40, 167, 69, 0.35);
  --shadow-glow-mint: 0 12px 36px rgba(126, 230, 184, 0.45);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;
  --space-xs: 0.35rem;
  --space-sm: 0.75rem;
  --space-md: 1.25rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4.5rem;
  --header-h: 4.25rem;
  --transition-fast: 0.18s ease;
  --transition-base: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-md);
  line-height: var(--lh-body);
  color: var(--color-charcoal);
  background: var(--color-off-white);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-emerald);
  text-decoration: none;
  transition: color var(--transition-fast), opacity var(--transition-fast);
}

a:hover {
  color: var(--color-olive);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--space-sm);
  background: var(--color-emerald);
  color: var(--color-white);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  z-index: 10000;
}

.skip-link:focus {
  left: var(--space-md);
}

.compliance-banner {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.93);
  font-size: var(--fs-xs);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
  line-height: var(--lh-body);
  border-bottom: 3px solid var(--color-emerald);
}

.compliance-banner p {
  margin: 0 auto;
  max-width: 980px;
}

.compliance-banner strong {
  color: var(--color-sunlit);
  font-weight: var(--fw-bold);
}

.compliance-banner a {
  color: var(--color-mint);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.compliance-banner a:hover {
  color: var(--color-sunlit);
}

.footer-ads-compliance {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.78);
  padding: var(--space-md) 0 0;
  margin-top: var(--space-md);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-ads-compliance p {
  margin: 0 0 var(--space-sm);
}

.footer-ads-compliance p:last-child {
  margin-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  background: var(--glass-bg);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition-base);
}

.site-header:hover {
  box-shadow: var(--shadow-md);
}

.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: var(--space-sm) var(--space-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
  min-height: var(--header-h);
}

.brand-link {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  font-size: var(--fs-lg);
  color: var(--color-charcoal);
  letter-spacing: -0.02em;
}

.brand-link:hover {
  color: var(--color-emerald);
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm) var(--space-md);
}

.site-nav a {
  font-weight: var(--fw-medium);
  color: var(--color-charcoal);
  padding: var(--space-xs) var(--space-sm);
  border-radius: var(--radius-sm);
}

.site-nav a:hover {
  background: rgba(40, 167, 69, 0.12);
  color: var(--color-emerald);
}

.burger {
  display: none;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  padding: 0;
  border: none;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(40, 167, 69, 0.18), rgba(255, 235, 127, 0.35));
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  z-index: 1002;
  position: relative;
}

.burger:hover {
  transform: scale(1.04);
  box-shadow: var(--shadow-md);
}

.burger-line {
  display: block;
  width: 24px;
  height: 3px;
  border-radius: 2px;
  background: var(--color-charcoal);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s ease;
}

body.nav-open .burger-line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

body.nav-open .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

body.nav-open .burger-line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(46, 46, 46, 0.48);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.nav-overlay.is-active {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.hero {
  position: relative;
  background: radial-gradient(ellipse 120% 80% at 10% 20%, #1a4d32 0%, transparent 50%),
    radial-gradient(ellipse 100% 70% at 90% 80%, #0d2818 0%, transparent 45%),
    linear-gradient(165deg, #121a16 0%, var(--color-charcoal) 35%, #1e5c38 70%, var(--color-emerald) 100%);
  color: var(--color-white);
  padding: var(--space-2xl) var(--space-lg);
  overflow: hidden;
  isolation: isolate;
}

.hero-atmosphere {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  will-change: transform;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero .stars {
  display: inline-block;
  animation: hero-stars-glow 3.5s ease-in-out infinite;
}

@keyframes hero-stars-glow {
  0%,
  100% {
    filter: brightness(1);
    letter-spacing: 0.05em;
  }
  50% {
    filter: brightness(1.2);
    letter-spacing: 0.1em;
  }
}

.hero-aurora {
  position: absolute;
  inset: -40%;
  background: conic-gradient(
    from 210deg at 50% 50%,
    transparent 0deg,
    rgba(126, 230, 184, 0.14) 60deg,
    rgba(255, 235, 127, 0.1) 120deg,
    transparent 180deg,
    rgba(40, 167, 69, 0.12) 240deg,
    transparent 320deg
  );
  animation: hero-aurora-spin 28s linear infinite;
  filter: blur(40px);
  opacity: 0.9;
}

@keyframes hero-aurora-spin {
  to {
    transform: rotate(360deg);
  }
}

.hero-mesh-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  animation: hero-dots-drift 20s linear infinite;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 45%, #000 20%, transparent 70%);
}

@keyframes hero-dots-drift {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 28px 28px;
  }
}

.hero-orb {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(2px);
  animation: hero-orb-float 9s ease-in-out infinite;
}

.hero-orb--a {
  width: 180px;
  height: 180px;
  left: -4%;
  top: 18%;
  background: radial-gradient(circle, rgba(255, 235, 127, 0.35) 0%, transparent 68%);
  animation-delay: 0s;
}

.hero-orb--b {
  width: 120px;
  height: 120px;
  right: 8%;
  top: 8%;
  background: radial-gradient(circle, rgba(126, 230, 184, 0.4) 0%, transparent 65%);
  animation-delay: -2.5s;
  animation-duration: 11s;
}

.hero-orb--c {
  width: 90px;
  height: 90px;
  right: 22%;
  bottom: 12%;
  background: radial-gradient(circle, rgba(40, 167, 69, 0.45) 0%, transparent 62%);
  animation-delay: -4s;
  animation-duration: 8s;
}

@keyframes hero-orb-float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.75;
  }
  50% {
    transform: translate(18px, -14px) scale(1.08);
    opacity: 1;
  }
}

.hero-scanline {
  position: absolute;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 235, 127, 0.35), transparent);
  animation: hero-scan 7s ease-in-out infinite;
  opacity: 0.5;
}

@keyframes hero-scan {
  0%,
  100% {
    top: -5%;
    opacity: 0;
  }
  10% {
    opacity: 0.45;
  }
  50% {
    top: 105%;
  }
  55% {
    opacity: 0;
  }
}

.hero-spark {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--color-sunlit);
  border-radius: var(--radius-full);
  box-shadow: 0 0 14px 3px rgba(255, 235, 127, 0.55);
  animation: hero-spark 5.5s ease-in-out infinite;
  opacity: 0;
}

.hero-spark--1 {
  left: 18%;
  top: 42%;
  animation-delay: 0.3s;
}

.hero-spark--2 {
  right: 28%;
  top: 62%;
  animation-delay: 1.8s;
}

.hero-spark--3 {
  left: 45%;
  bottom: 20%;
  animation-delay: 3.2s;
}

@keyframes hero-spark {
  0%,
  68%,
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
  74% {
    opacity: 1;
    transform: scale(1.15);
  }
  82% {
    opacity: 0;
    transform: scale(0.5);
  }
}

.hero-inner--creative {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-inner--creative .hero-order {
  grid-column: 1 / -1;
  max-width: 560px;
  width: 100%;
  margin: var(--space-md) auto 0;
  justify-self: center;
}

@media (max-width: 900px) {
  .hero-inner--creative {
    grid-template-columns: 1fr;
  }

  .hero-inner--creative .hero-order {
    max-width: none;
  }
}

.hero-stage {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: min(52vh, 520px);
}

.hero-frame {
  position: relative;
  width: 100%;
  max-width: 400px;
  padding: var(--space-md);
}

.hero-ring {
  position: absolute;
  border-radius: var(--radius-full);
  pointer-events: none;
  border: 2px solid transparent;
}

.hero-ring--outer {
  inset: -12px;
  border-color: rgba(255, 235, 127, 0.2);
  animation: hero-ring-rotate 24s linear infinite;
}

.hero-ring--inner {
  inset: 4px;
  border-color: rgba(126, 230, 184, 0.25);
  animation: hero-ring-rotate 18s linear infinite reverse;
}

@keyframes hero-ring-rotate {
  to {
    transform: rotate(360deg);
  }
}

.hero-visual {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  padding: var(--space-sm);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  animation: hero-frame-breathe 6s ease-in-out infinite;
}

@keyframes hero-frame-breathe {
  0%,
  100% {
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.35), 0 0 0 0 rgba(40, 167, 69, 0), inset 0 1px 0 rgba(255, 255, 255, 0.12);
  }
  50% {
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.4), 0 0 48px rgba(40, 167, 69, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
  }
}

.hero-visual-target {
  margin: 0;
  border-radius: var(--radius-md);
  overflow: hidden;
  animation: hero-product-lift 7s ease-in-out infinite;
}

@keyframes hero-product-lift {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-10px) scale(1.02);
  }
}

.hero-pills {
  list-style: none;
  margin: var(--space-md) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-pills li {
  padding: var(--space-xs) var(--space-md);
  font-size: var(--fs-xs);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-charcoal);
  background: linear-gradient(120deg, var(--color-mint), var(--color-sunlit));
  border-radius: var(--radius-full);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  animation: hero-pill-in 0.7s cubic-bezier(0.34, 1.2, 0.64, 1) both;
}

.hero-pills li:nth-child(1) {
  animation-delay: 0.35s;
}

.hero-pills li:nth-child(2) {
  animation-delay: 0.5s;
}

.hero-pills li:nth-child(3) {
  animation-delay: 0.65s;
}

@keyframes hero-pill-in {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.hero-eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: var(--fs-xs);
  margin: 0 0 var(--space-md);
  opacity: 0;
  animation: hero-fade-up 0.8s ease 0.05s both;
}

.hero-eyebrow-glow {
  display: inline-block;
  padding: var(--space-xs) var(--space-sm);
  background: linear-gradient(90deg, rgba(255, 235, 127, 0.15), rgba(126, 230, 184, 0.2), rgba(255, 235, 127, 0.15));
  background-size: 200% 100%;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: hero-shimmer-bar 4s ease-in-out infinite;
}

@keyframes hero-shimmer-bar {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.hero-title-anim {
  font-family: var(--font-heading);
  font-size: var(--fs-3xl);
  line-height: var(--lh-tight);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-md);
  text-shadow: 0 4px 28px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero-title-line {
  display: block;
  animation: hero-line-reveal 1s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-title-line:nth-of-type(1) {
  animation-delay: 0.12s;
}

.hero-title-line--accent {
  color: var(--color-sunlit);
  animation-delay: 0.28s;
  text-shadow: 0 0 40px rgba(255, 235, 127, 0.18);
}

@keyframes hero-line-reveal {
  from {
    opacity: 0;
    transform: translateY(108%);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-intro-reveal {
  animation: hero-fade-up 0.85s ease 0.5s both;
}

.hero-pop {
  animation: hero-fade-up 0.75s ease 0.58s both;
}

.hero-price-anim {
  animation: hero-fade-up 0.75s ease 0.66s both;
}

.hero-footnote {
  margin: 0 0 var(--space-lg);
  opacity: 0.92;
  font-size: var(--fs-sm);
  animation: hero-fade-up 0.75s ease 0.72s both;
}

.hero-cta-reveal {
  animation: hero-fade-up 0.75s ease 0.78s both;
}

@keyframes hero-fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-atmosphere *,
  .hero-frame .hero-ring,
  .hero-visual,
  .hero-visual-target,
  .hero-pills li,
  .hero-title-line,
  .hero-eyebrow-glow,
  .hero-intro-reveal,
  .hero-meta .hero-pop,
  .hero-price-anim,
  .hero-footnote,
  .hero-cta-reveal,
  .hero .stars {
    animation: none !important;
  }

  .hero-eyebrow,
  .hero-title-line,
  .hero-intro-reveal,
  .hero-meta .hero-pop,
  .hero-price-anim,
  .hero-footnote,
  .hero-cta-reveal,
  .hero-pills li {
    opacity: 1;
    transform: none;
  }
}

.hero-meta .hero-pop:nth-child(2) {
  animation-delay: 0.64s;
}

.hero-copy h1,
.hero-title-anim {
  font-family: var(--font-heading);
}

.hero-copy .hero-title-anim {
  font-size: var(--fs-3xl);
}

.hero-intro {
  font-size: var(--fs-lg);
  opacity: 0.95;
  margin-bottom: var(--space-md);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-md);
  margin-bottom: var(--space-lg);
}

.hero-service-note {
  flex: 1 1 100%;
  margin: 0 0 var(--space-xs);
  font-size: var(--fs-sm);
  opacity: 0.9;
  line-height: var(--lh-body);
}

.rating {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-weight: var(--fw-medium);
}

.stars {
  color: var(--color-sunlit);
  letter-spacing: 0.05em;
}

.trust-badge-wrap {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.trust-badge-wrap img {
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
}

.price-row {
  display: flex;
  align-items: baseline;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.price-current {
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: var(--color-sunlit);
}

.price-old {
  font-size: var(--fs-lg);
  text-decoration: line-through;
  opacity: 0.75;
}

.order-form {
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
  color: var(--color-charcoal);
}

.order-form h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-xl);
}

.form-field {
  margin-bottom: var(--space-md);
}

.form-field label {
  display: block;
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-xs);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: var(--space-sm) var(--space-md);
  border: 2px solid rgba(46, 46, 46, 0.15);
  border-radius: var(--radius-md);
  font-family: inherit;
  font-size: var(--fs-sm);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--color-emerald);
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.2);
}

.form-field textarea {
  min-height: 120px;
  resize: vertical;
}

.form-field.invalid input,
.form-field.invalid textarea {
  border-color: #c0392b;
}

.field-error {
  display: none;
  color: #c0392b;
  font-size: var(--fs-xs);
  margin-top: var(--space-xs);
}

.form-field.invalid .field-error {
  display: block;
}

.checkbox-field {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.checkbox-field input {
  margin-top: 0.35rem;
  accent-color: var(--color-emerald);
}

.checkbox-field.invalid .field-error {
  display: block;
  margin-left: 1.75rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: var(--space-md) var(--space-lg);
  font-family: inherit;
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: transform var(--transition-base), box-shadow var(--transition-base), background var(--transition-fast), color var(--transition-fast);
}

.btn-primary {
  background: var(--color-emerald);
  color: var(--color-white);
  box-shadow: var(--shadow-glow-emerald);
}

.btn-primary:hover {
  background: #218838;
  transform: translateY(-2px);
  box-shadow: 0 16px 44px rgba(40, 167, 69, 0.45);
}

.btn-secondary {
  background: var(--color-sunlit);
  color: var(--color-charcoal);
  box-shadow: var(--shadow-md);
}

.btn-secondary:hover {
  background: #ffe566;
  transform: translateY(-2px);
}

.btn-ghost {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-mint);
}

.btn-ghost:hover {
  background: rgba(126, 230, 184, 0.2);
}

.magnetic-wrap {
  display: inline-block;
}

.section {
  padding: var(--space-2xl) var(--space-lg);
}

.section-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.section-title {
  font-family: var(--font-heading);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  margin: 0 0 var(--space-md);
  color: var(--color-charcoal);
}

.section-lead {
  max-width: 720px;
  margin: 0 0 var(--space-xl);
  font-size: var(--fs-lg);
  color: rgba(46, 46, 46, 0.85);
}

.specs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-md);
}

.spec-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(163, 184, 108, 0.25);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.spec-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-mint);
}

.spec-card h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-emerald);
  font-size: var(--fs-lg);
}

.bento {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, minmax(140px, 1fr));
  gap: var(--space-md);
  min-height: 320px;
}

@media (max-width: 900px) {
  .bento {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
}

@media (max-width: 520px) {
  .bento {
    grid-template-columns: 1fr;
  }
}

.bento-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform var(--transition-base), box-shadow var(--transition-base);
  perspective: 800px;
}

.bento-card--large {
  grid-column: span 2;
  grid-row: span 2;
}

.bento-card--tall {
  grid-row: span 2;
}

.bento-card:hover {
  box-shadow: var(--shadow-glow-emerald);
}

.bento-card figure {
  margin: 0 0 var(--space-sm);
}

.card-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(40, 167, 69, 0.08), rgba(126, 230, 184, 0.16));
  flex-shrink: 0;
}

.card-icon-wrap--bento {
  width: 200px;
  height: 200px;
  max-width: 100%;
  margin: 0 auto var(--space-sm);
}

.card-icon-wrap--bento i {
  font-size: clamp(3.25rem, 14vw, 5.5rem);
  line-height: 1;
  transition: transform var(--transition-base), filter var(--transition-fast);
}

.bento-card:hover .card-icon-wrap--bento i {
  transform: scale(1.07) rotate(-4deg);
  filter: drop-shadow(0 6px 14px rgba(40, 167, 69, 0.28));
}

.card-icon-wrap--energy i {
  color: var(--color-sunlit);
}

.card-icon-wrap--muscle i {
  color: var(--color-emerald);
}

.card-icon-wrap--immunity i {
  color: var(--color-olive);
}

.card-icon-wrap--vitamins i {
  color: #6b4f9e;
}

.card-icon-wrap--ingredient {
  width: 160px;
  height: 160px;
  max-width: 100%;
  margin: 0 auto var(--space-md);
  background: linear-gradient(165deg, rgba(126, 230, 184, 0.22), rgba(255, 235, 127, 0.14));
}

.card-icon-wrap--ingredient i {
  font-size: clamp(2.75rem, 10vw, 4.25rem);
  line-height: 1;
  transition: transform var(--transition-base), color var(--transition-fast);
  color: var(--color-charcoal);
}

.card-icon-wrap--hawthorn i {
  color: var(--color-emerald);
}

.card-icon-wrap--ginger i {
  color: #b86c00;
}

.card-icon-wrap--chamomile i {
  color: #c9a227;
}

.card-icon-wrap--nettle i {
  color: var(--color-emerald);
}

.ingredient-card:hover .card-icon-wrap--ingredient i {
  transform: scale(1.08);
  color: var(--color-emerald);
}

.bento-card h3 {
  margin: 0;
  font-size: var(--fs-xl);
}

.bento-card p {
  margin: var(--space-xs) 0 0;
  font-size: var(--fs-sm);
}

.ingredient-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-lg);
}

.ingredient-card {
  position: relative;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.ingredient-card:hover {
  box-shadow: var(--shadow-glow-emerald);
  transform: translateY(-6px);
}

.ingredient-card figure {
  margin: 0 0 var(--space-md);
  text-align: center;
}

.ingredient-card h3 {
  margin: 0 0 var(--space-sm);
}

.ingredient-benefit {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), opacity var(--transition-base);
}

.ingredient-card:hover .ingredient-benefit {
  max-height: 120px;
  opacity: 1;
}

.trust-science {
  background: linear-gradient(180deg, var(--color-white), rgba(126, 230, 184, 0.22));
}

.trust-icons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-xl);
  text-align: center;
}

.trust-icon-item {
  padding: var(--space-lg);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition-base);
}

.trust-icon-item:hover {
  transform: scale(1.03);
}

.trust-icon-item svg {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
}

.trust-icon-item h3 {
  margin: 0 0 var(--space-sm);
}

.icon-animate {
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.06);
  }
}

.rhythm-section {
  background: linear-gradient(160deg, var(--color-charcoal) 0%, #163422 45%, var(--color-emerald) 120%);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.rhythm-section::before {
  content: "";
  position: absolute;
  width: 140%;
  height: 140%;
  left: -20%;
  top: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 235, 127, 0.12), transparent 42%),
    radial-gradient(circle at 70% 80%, rgba(126, 230, 184, 0.18), transparent 45%);
  animation: rhythm-bg 14s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes rhythm-bg {
  0% {
    transform: translate(0, 0) scale(1);
  }
  100% {
    transform: translate(-2%, 2%) scale(1.05);
  }
}

.rhythm-section .section-title,
.rhythm-section .section-lead {
  color: var(--color-white);
}

.rhythm-section .section-lead {
  color: rgba(255, 255, 255, 0.9);
}

.rhythm-layout {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-xl);
}

@media (min-width: 900px) {
  .rhythm-layout {
    grid-template-columns: 1fr 1.1fr;
    align-items: start;
  }
}

.rhythm-orbit-wrap {
  position: relative;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rhythm-orbit {
  width: min(280px, 70vw);
  height: min(280px, 70vw);
  border-radius: var(--radius-full);
  background: conic-gradient(from 180deg, var(--color-emerald), var(--color-mint), var(--color-sunlit), var(--color-olive), var(--color-emerald));
  animation: orbit-spin 22s linear infinite;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.06), var(--shadow-glow-emerald);
  mask: radial-gradient(circle, transparent 52%, #000 54%);
  -webkit-mask: radial-gradient(circle, transparent 52%, #000 54%);
}

@keyframes orbit-spin {
  to {
    transform: rotate(360deg);
  }
}

.rhythm-orbit-core {
  position: absolute;
  width: 38%;
  height: 38%;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: var(--fw-bold);
  font-size: var(--fs-sm);
  text-align: center;
  padding: var(--space-sm);
  box-shadow: inset 0 0 20px rgba(255, 235, 127, 0.2);
}

.rhythm-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  margin-bottom: var(--space-md);
}

.rhythm-tab {
  flex: 1 1 auto;
  min-width: 120px;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-full);
  border: 2px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-family: inherit;
  font-weight: var(--fw-medium);
  font-size: var(--fs-sm);
  cursor: pointer;
  transition: background var(--transition-base), transform var(--transition-fast), border-color var(--transition-fast), box-shadow var(--transition-base);
}

.rhythm-tab:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-2px);
}

.rhythm-tab[aria-selected="true"] {
  background: var(--color-sunlit);
  color: var(--color-charcoal);
  border-color: var(--color-sunlit);
  box-shadow: 0 10px 28px rgba(255, 235, 127, 0.35);
}

.rhythm-panel {
  display: none;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  animation: panel-in 0.45s ease forwards;
}

.rhythm-panel.is-active {
  display: block;
}

@keyframes panel-in {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.rhythm-panel h3 {
  margin: 0 0 var(--space-sm);
  color: var(--color-sunlit);
  font-size: var(--fs-xl);
}

.rhythm-panel ul {
  margin: 0;
  padding-left: 1.2rem;
}

.rhythm-panel li {
  margin-bottom: var(--space-xs);
}

.interactive-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.strip-chip {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(163, 184, 108, 0.3);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.strip-chip:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: var(--shadow-glow-mint);
}

.strip-chip strong {
  display: block;
  font-size: var(--fs-2xl);
  color: var(--color-emerald);
  font-variant-numeric: tabular-nums;
}

.strip-chip span {
  font-size: var(--fs-xs);
  color: rgba(46, 46, 46, 0.75);
}

.strip-chip strong.count-anim {
  animation: count-pop 0.6s ease;
}

@keyframes count-pop {
  0% {
    transform: scale(0.86);
    opacity: 0.6;
  }
  60% {
    transform: scale(1.06);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal-stagger.visible > *:nth-child(1) {
  transition-delay: 0.05s;
}
.reveal-stagger.visible > *:nth-child(2) {
  transition-delay: 0.12s;
}
.reveal-stagger.visible > *:nth-child(3) {
  transition-delay: 0.19s;
}
.reveal-stagger.visible > *:nth-child(4) {
  transition-delay: 0.26s;
}

.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

.carousel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: var(--space-md);
  display: flex;
  justify-content: center;
}

.carousel-slide figure {
  margin: 0;
  filter: drop-shadow(0 0 28px rgba(40, 167, 69, 0.5));
  transition: filter var(--transition-base), transform var(--transition-base);
}

.carousel-slide figure:hover {
  filter: drop-shadow(0 0 36px rgba(255, 235, 127, 0.55));
  transform: scale(1.02);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-lg);
}

.carousel-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  border: none;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-dot.active {
  background: var(--color-sunlit);
  transform: scale(1.15);
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--glass-bg);
  backdrop-filter: blur(8px);
  border: 1px solid var(--glass-border);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-size: 1.25rem;
  color: var(--color-charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.carousel-nav:hover {
  background: var(--color-mint);
  transform: translateY(-50%) scale(1.05);
}

.carousel-nav--prev {
  left: var(--space-sm);
}

.carousel-nav--next {
  right: var(--space-sm);
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr;
  }
}

.benefits-list,
.effects-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list li,
.effects-list li {
  padding: var(--space-sm) 0;
  padding-left: var(--space-lg);
  position: relative;
}

.benefits-list li::before,
.effects-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.1em;
  width: 10px;
  height: 10px;
  background: var(--color-emerald);
  border-radius: var(--radius-full);
}

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--color-white);
  padding: var(--space-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border-left: 4px solid var(--color-emerald);
  transition: box-shadow var(--transition-base);
}

.review-card:hover {
  box-shadow: var(--shadow-glow-mint);
}

.review-card cite {
  font-style: normal;
  font-weight: var(--fw-bold);
  display: block;
  margin-top: var(--space-sm);
  color: var(--color-olive);
}

.faq-list details {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  margin-bottom: var(--space-sm);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(46, 46, 46, 0.08);
  transition: box-shadow var(--transition-base);
}

.faq-list details:hover {
  box-shadow: var(--shadow-md);
}

.faq-list summary {
  font-weight: var(--fw-medium);
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.cta-band {
  text-align: center;
  background: linear-gradient(120deg, var(--color-mint), var(--color-sunlit));
  padding: var(--space-2xl) var(--space-lg);
  border-radius: var(--radius-lg);
  margin: var(--space-xl) 0;
  box-shadow: var(--shadow-lg);
}

.cta-band h2 {
  margin: 0 0 var(--space-md);
  font-size: var(--fs-2xl);
}

.disclaimer-box {
  background: rgba(46, 46, 46, 0.06);
  border: 1px solid rgba(46, 46, 46, 0.12);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  font-size: var(--fs-sm);
  margin-top: var(--space-xl);
}

.site-footer {
  background: var(--color-charcoal);
  color: rgba(255, 255, 255, 0.9);
  padding: var(--space-xl) var(--space-lg);
}

.footer-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.site-footer a {
  color: var(--color-mint);
}

.site-footer a:hover {
  color: var(--color-sunlit);
}

.footer-legal {
  font-size: var(--fs-xs);
  line-height: var(--lh-body);
  padding: var(--space-lg) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.75);
}

.footer-legal p {
  margin: 0 0 var(--space-sm);
}

.policy-note {
  margin-top: var(--space-md);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.tilt-card {
  transform-style: preserve-3d;
  will-change: transform;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  padding: var(--space-md);
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--glass-border);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
  display: none;
}

.cookie-banner.show {
  display: block;
}

.cookie-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-emerald);
  color: var(--color-emerald);
}

.btn-outline:hover {
  background: rgba(40, 167, 69, 0.1);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(46, 46, 46, 0.55);
}

.cookie-modal-panel {
  position: relative;
  max-width: 520px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-lg);
}

.cookie-modal-panel h2 {
  margin-top: 0;
}

.cookie-category {
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(46, 46, 46, 0.1);
}

.switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.switch {
  position: relative;
  width: 48px;
  height: 26px;
  flex-shrink: 0;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background: #ccc;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast);
}

.switch-slider::before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: var(--radius-full);
  transition: transform var(--transition-fast);
}

.switch input:checked + .switch-slider {
  background: var(--color-emerald);
}

.switch input:checked + .switch-slider::before {
  transform: translateX(22px);
}

.switch input:disabled + .switch-slider {
  background: var(--color-olive);
  opacity: 0.7;
  cursor: not-allowed;
}

.policy-page main,
.legal-page-main {
  padding: calc(var(--header-h) + var(--space-lg)) var(--space-lg) var(--space-2xl);
}

.policy-article {
  max-width: 800px;
  margin: 0 auto;
  background: var(--color-white);
  padding: var(--space-xl);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.policy-article h1 {
  margin-top: 0;
}

.policy-article h2 {
  font-size: var(--fs-lg);
  margin-top: var(--space-xl);
}

.legal-page {
  background: linear-gradient(180deg, var(--color-off-white) 0%, rgba(126, 230, 184, 0.15) 40%, var(--color-off-white) 100%);
}

.legal-hero {
  max-width: 1100px;
  margin: 0 auto var(--space-xl);
  padding: var(--space-xl) var(--space-lg);
  border-radius: var(--radius-lg);
  background: linear-gradient(125deg, var(--color-charcoal), #1e4d32 55%, var(--color-emerald));
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.legal-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 20%, rgba(255, 235, 127, 0.2), transparent 50%);
  pointer-events: none;
}

.legal-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 768px) {
  .legal-hero-inner {
    grid-template-columns: 1.2fr 1fr;
    align-items: end;
  }
}

.legal-hero h1 {
  margin: 0;
  font-size: var(--fs-2xl);
  line-height: var(--lh-tight);
}

.legal-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  backdrop-filter: blur(8px);
}

.legal-badge-dot {
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background: var(--color-sunlit);
  box-shadow: 0 0 0 4px rgba(255, 235, 127, 0.25);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  50% {
    transform: scale(1.15);
    opacity: 0.85;
  }
}

.legal-meta {
  font-size: var(--fs-sm);
  opacity: 0.92;
  margin: 0;
}

.legal-layout {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: var(--space-lg);
}

@media (min-width: 960px) {
  .legal-layout {
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.legal-toc {
  position: sticky;
  top: calc(var(--header-h) + var(--space-sm));
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-md);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(163, 184, 108, 0.35);
}

.legal-toc h2 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-md);
}

.legal-toc ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.legal-toc a {
  display: block;
  padding: var(--space-xs) 0;
  color: var(--color-charcoal);
  font-size: var(--fs-sm);
  border-bottom: 1px solid rgba(46, 46, 46, 0.08);
}

.legal-toc a:hover {
  color: var(--color-emerald);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.legal-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(46, 46, 46, 0.06);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.legal-card:hover {
  box-shadow: var(--shadow-glow-mint);
  transform: translateY(-2px);
}

.legal-card h2 {
  margin-top: 0;
  font-size: var(--fs-lg);
  color: var(--color-emerald);
}

.legal-card h3 {
  font-size: var(--fs-md);
  margin: var(--space-md) 0 var(--space-sm);
}

.legal-callout {
  margin-top: var(--space-md);
  padding: var(--space-md);
  border-left: 4px solid var(--color-olive);
  background: rgba(126, 230, 184, 0.18);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: var(--fs-sm);
}

.legal-grid-2 {
  display: grid;
  gap: var(--space-md);
}

@media (min-width: 640px) {
  .legal-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.thankyou-page {
  background: linear-gradient(165deg, var(--color-off-white), rgba(126, 230, 184, 0.25));
  min-height: 100vh;
}

.thankyou-main {
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-xl) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.thankyou-main::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -120px;
  top: 10%;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(40, 167, 69, 0.2), transparent 70%);
  animation: thank-blob 10s ease-in-out infinite;
  pointer-events: none;
}

.thankyou-main::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  left: -80px;
  bottom: 5%;
  border-radius: var(--radius-full);
  background: radial-gradient(circle, rgba(255, 235, 127, 0.35), transparent 68%);
  animation: thank-blob 12s ease-in-out infinite reverse;
  pointer-events: none;
}

@keyframes thank-blob {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(12px, -10px) scale(1.06);
  }
}

.thankyou-wrap {
  position: relative;
  z-index: 1;
  max-width: 720px;
  width: 100%;
}

.thankyou-hero {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.thankyou-hero h1 {
  margin: 0 0 var(--space-sm);
  font-size: var(--fs-3xl);
  color: var(--color-charcoal);
}

.thankyou-check {
  width: 72px;
  height: 72px;
  margin: 0 auto var(--space-md);
  border-radius: var(--radius-full);
  background: linear-gradient(145deg, var(--color-emerald), var(--color-mint));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--color-white);
  box-shadow: var(--shadow-glow-emerald);
  animation: check-bounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes check-bounce {
  0% {
    transform: scale(0.6);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.thankyou-card {
  background: var(--glass-bg);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: var(--shadow-lg);
}

.thankyou-steps {
  display: grid;
  gap: var(--space-sm);
  margin: var(--space-lg) 0;
}

.thankyou-step {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
  padding: var(--space-md);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(40, 167, 69, 0.15);
  transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.thankyou-step:hover {
  transform: translateX(4px);
  box-shadow: var(--shadow-sm);
}

.thankyou-step-num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: var(--color-emerald);
  color: var(--color-white);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-sm);
}

.thankyou-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  justify-content: center;
  margin-top: var(--space-lg);
}

@media (min-width: 769px) {
  .burger {
    display: none;
  }

  .nav-overlay {
    display: none !important;
  }

  .site-nav {
    position: static;
    transform: none;
    width: auto;
    max-width: none;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border-radius: 0;
  }

  .site-nav ul {
    flex-direction: row;
  }
}

@media (max-width: 768px) {
  .burger {
    display: inline-flex;
  }

  .header-inner {
    flex-wrap: nowrap;
    padding-left: var(--space-md);
    padding-right: var(--space-md);
  }

  .site-nav {
    position: fixed;
    top: var(--header-h);
    right: 0;
    bottom: 0;
    width: min(88vw, 300px);
    max-width: 100%;
    background: var(--glass-bg);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-left: 1px solid var(--glass-border);
    padding: var(--space-lg) var(--space-md);
    box-shadow: -12px 0 40px rgba(0, 0, 0, 0.18);
    transform: translateX(100%);
    transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    overflow-y: auto;
  }

  .site-nav.open {
    transform: translateX(0);
    height: 100vh;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 0;
  }

  .site-nav li {
    border-bottom: 1px solid rgba(46, 46, 46, 0.08);
  }

  .site-nav a {
    display: block;
    padding: var(--space-md) var(--space-sm);
    border-radius: var(--radius-sm);
  }
}

@media (max-width: 400px) {
  .header-inner {
    padding-left: var(--space-sm);
    padding-right: var(--space-sm);
  }

  .brand-link {
    font-size: var(--fs-md);
    max-width: 58vw;
    line-height: var(--lh-tight);
  }

  .section {
    padding: var(--space-xl) var(--space-sm);
  }

  .section-inner {
    padding: 0;
  }

  .hero {
    padding: var(--space-xl) var(--space-sm);
  }

  .order-form {
    padding: var(--space-md);
  }

  .btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    min-height: 48px;
  }

  .magnetic-wrap {
    display: block;
    width: 100%;
  }

  .magnetic-wrap .btn-magnetic {
    width: 100%;
  }

  .cta-band .magnetic-wrap .btn-magnetic {
    width: auto;
  }

  .specs-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .rhythm-tab {
    min-width: 100%;
  }

  .legal-hero {
    padding: var(--space-md);
  }

  .legal-toc {
    position: static;
  }

  .thankyou-card {
    padding: var(--space-md);
  }

  .footer-inner {
    padding: 0 var(--space-sm);
  }

  .cookie-inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

@media (max-width: 320px) {
  html {
    font-size: 93%;
  }

  :root {
    --space-lg: 1.35rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --header-h: 3.85rem;
  }

  .burger {
    width: 44px;
    height: 44px;
    min-width: 44px;
    min-height: 44px;
  }

  .burger-line {
    width: 20px;
  }

  .site-nav {
    width: 100%;
  }

  .price-row {
    flex-wrap: wrap;
    gap: var(--space-sm);
  }

  .hero-title-anim {
    word-break: break-word;
    hyphens: auto;
  }

  .trust-badge-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .trust-badge-wrap img {
    width: 80px;
    height: auto;
  }

  .bento-card--large {
    grid-column: span 1;
    grid-row: span 1;
  }

  .bento-card--tall {
    grid-row: span 1;
  }

  .interactive-strip {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .strip-chip {
    padding: var(--space-sm);
  }

  .strip-chip strong {
    font-size: var(--fs-xl);
  }

  .faq-list details {
    padding: var(--space-sm) var(--space-md);
  }
}
