:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
}

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

body { font-feature-settings: "tnum" 1; }

::selection { background: #6C4CFF; color: #fff; }

/* Skip link */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: #6C4CFF;
  color: #fff;
  padding: .6rem 1rem;
  border-radius: .6rem;
  font-size: .875rem;
  font-weight: 600;
  z-index: 100;
  transition: top .2s ease;
}
.skip-link:focus { top: 1rem; }

/* Focus visibility */
a:focus-visible, button:focus-visible, input:focus-visible {
  outline: 2.5px solid #6C4CFF;
  outline-offset: 2px;
  border-radius: 4px;
}

/* Announcement / trust bar */
.announce-bar {
  background: #0E0E16;
  border-bottom: 1px solid rgba(255,255,255,.07);
  position: relative;
}
.announce-bar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(108,76,255,.16), transparent 35%, transparent 65%, rgba(255,107,74,.14));
  pointer-events: none;
}
.announce-viewport {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.announce-track {
  display: flex;
  width: max-content;
  animation: announce-scroll 42s linear infinite;
}
.announce-viewport:hover .announce-track { animation-play-state: paused; }
@keyframes announce-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}
.announce-group { display: flex; align-items: center; flex-shrink: 0; }
.announce-item {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  height: 38px;
  padding: 0 1.35rem;
  font-size: 12.5px;
  font-weight: 500;
  letter-spacing: .01em;
  white-space: nowrap;
  color: rgba(250,250,246,.8);
}
.announce-ic { width: 15px; height: 15px; flex-shrink: 0; color: #B8A9FF; }
.announce-item:nth-child(4n+3) .announce-ic { color: #FF8A6B; }
.announce-sep {
  width: 3px; height: 3px;
  border-radius: 999px;
  background: rgba(255,255,255,.28);
  flex-shrink: 0;
}

@media (prefers-reduced-motion: reduce) {
  .announce-track { animation: none !important; transform: none !important; }
  .announce-group:last-child { display: none; }
  .announce-viewport { overflow-x: auto; -webkit-mask-image: none; mask-image: none; }
}

/* Header */
#site-header { background: #0E0E16; }
#site-header.scrolled {
  background: rgba(250,250,246,.92);
  backdrop-filter: blur(10px);
  border-bottom-color: rgba(14,14,22,.08);
}
.header-logo-text, .header-icon-btn, .nav-link { color: #FAFAF6; }
#site-header.scrolled .header-logo-text,
#site-header.scrolled .header-icon-btn,
#site-header.scrolled .nav-link { color: #0E0E16; }

.nav-link {
  font-size: .9rem;
  font-weight: 500;
  padding: .5rem .85rem;
  border-radius: .6rem;
  opacity: .85;
  transition: opacity .15s ease, background-color .15s ease;
}
.nav-link:hover { opacity: 1; background: rgba(108,76,255,.1); }

.mobile-nav-link {
  padding: .75rem .25rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
  cursor: pointer;
}
.header-icon-btn:hover { background: rgba(108,76,255,.12); }
.icon-btn:active { transform: scale(.92); }


/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, #6C4CFF, #8A6BFF);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.3rem;
  border-radius: .8rem;
  box-shadow: 0 8px 24px -8px rgba(108,76,255,.55);
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease;
  cursor: pointer;
  border: none;
}
.btn-primary:hover { transform: translateY(-1px); filter: brightness(1.06); box-shadow: 0 12px 28px -8px rgba(108,76,255,.6); }
.btn-primary:active { transform: translateY(0); }
.btn-primary:disabled { opacity: .55; cursor: not-allowed; transform: none; }

.btn-lg { padding: .95rem 1.6rem; font-size: .95rem; border-radius: .9rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.18);
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .7rem 1.3rem;
  border-radius: .8rem;
  transition: background-color .15s ease, transform .15s ease;
  cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,.14); transform: translateY(-1px); }

/* Hero banner image — anchored right/bottom, masked away from the copy */
.hero-media {
  position: absolute;
  inset: 0;
  background-image: url('../assets/music-8027936_1280.jpg');
  background-size: cover;
  background-position: 78% 68%;
  background-repeat: no-repeat;
  opacity: .20;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(95deg, transparent 0%, transparent 38%, rgba(0,0,0,.5) 56%, #000 82%);
  mask-image: linear-gradient(95deg, transparent 0%, transparent 38%, rgba(0,0,0,.5) 56%, #000 82%);
}
@media (max-width: 1023px) {
  .hero-media {
    background-position: 62% 78%;
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 34%, rgba(0,0,0,.5) 58%, #000 88%);
    mask-image: linear-gradient(to bottom, transparent 0%, transparent 34%, rgba(0,0,0,.5) 58%, #000 88%);
  }
}

/* Hero badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  border-radius: 999px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  padding: .45rem 1rem .45rem .85rem;
  font-size: 13px;
  font-weight: 500;
  color: #B8A9FF;
  backdrop-filter: blur(6px);
}
.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #8FE3A6;
  flex-shrink: 0;
  animation: badge-pulse 2.2s ease-out infinite;
}
@keyframes badge-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(143,227,166,.55); }
  70%  { box-shadow: 0 0 0 7px rgba(143,227,166,0); }
  100% { box-shadow: 0 0 0 0 rgba(143,227,166,0); }
}

.btn-price {
  font-size: .8rem;
  font-weight: 600;
  padding: .18rem .5rem;
  border-radius: .45rem;
  background: rgba(255,255,255,.2);
  white-space: nowrap;
}

/* Hero product visual */
.hero-visual {
  position: relative;
  width: 100%;
  max-width: 34rem;
  aspect-ratio: 1.35;
  display: flex;
  align-items: center;
  justify-content: center;
  isolation: isolate;
}
.hero-product {
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  max-height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 26px 44px rgba(0,0,0,.55));
  animation: hero-float 7s ease-in-out infinite;
  will-change: transform;
}
@keyframes hero-float {
  0%, 100% { transform: translate3d(0, 0, 0) rotate(0deg); }
  50%      { transform: translate3d(0, -16px, 0) rotate(-1.1deg); }
}

/* soft coloured halo behind the product */
.hero-visual-glow {
  position: absolute;
  z-index: 1;
  inset: 8% 6%;
  border-radius: 999px;
  background: radial-gradient(ellipse at 50% 50%, rgba(124,92,255,.62), rgba(150,120,255,.3) 42%, rgba(108,76,255,.12) 62%, transparent 74%);
  filter: blur(52px);
  animation: hero-halo 7s ease-in-out infinite;
}
@keyframes hero-halo {
  0%, 100% { transform: scale(1);    opacity: .8; }
  50%      { transform: scale(1.1);  opacity: 1; }
}

/* sound ripples radiating out from the product */
.hero-waves {
  position: absolute;
  z-index: 0;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-wave {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: 999px;
  border: 1.5px solid rgba(150,120,255,.5);
  opacity: 0;
  animation: hero-ripple 5.4s cubic-bezier(.2,.6,.35,1) infinite;
}
.hero-wave:nth-child(2) { animation-delay: 1.8s; }
.hero-wave:nth-child(3) { animation-delay: 3.6s; }
@keyframes hero-ripple {
  0%   { transform: scale(.72); opacity: 0; }
  14%  { opacity: .75; }
  100% { transform: scale(2.15); opacity: 0; }
}

/* drifting violet motes */
.hero-spark { position: absolute; inset: 0; z-index: 0; }
.hero-spark span {
  position: absolute;
  width: 4px; height: 4px;
  border-radius: 999px;
  background: #B8A9FF;
  box-shadow: 0 0 10px 2px rgba(184,169,255,.75);
  opacity: 0;
  animation: hero-drift 9s ease-in-out infinite;
}
.hero-spark span:nth-child(1) { left: 12%; top: 68%; animation-delay: 0s;   }
.hero-spark span:nth-child(2) { left: 26%; top: 22%; animation-delay: 1.4s; }
.hero-spark span:nth-child(3) { left: 52%; top: 84%; animation-delay: 2.9s; }
.hero-spark span:nth-child(4) { left: 76%; top: 30%; animation-delay: 4.3s; }
.hero-spark span:nth-child(5) { left: 88%; top: 62%; animation-delay: 5.8s; }
.hero-spark span:nth-child(6) { left: 40%; top: 12%; animation-delay: 7.1s; }
@keyframes hero-drift {
  0%   { transform: translateY(14px) scale(.6); opacity: 0; }
  25%  { opacity: .9; }
  70%  { opacity: .5; }
  100% { transform: translateY(-46px) scale(1); opacity: 0; }
}

/* grounding shadow under the product */
.hero-product-shadow {
  position: absolute;
  z-index: 1;
  bottom: 6%;
  left: 50%;
  width: 58%;
  height: 26px;
  transform: translateX(-50%);
  background: radial-gradient(ellipse at center, rgba(0,0,0,.55), transparent 70%);
  filter: blur(10px);
  animation: hero-shadow 7s ease-in-out infinite;
}
@keyframes hero-shadow {
  0%, 100% { transform: translateX(-50%) scale(1);    opacity: .75; }
  50%      { transform: translateX(-50%) scale(.86);  opacity: .5; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-product, .hero-visual-glow, .hero-product-shadow { animation: none !important; }
  .hero-waves, .hero-spark { display: none; }
}

/* Hero */
.hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(90px);
  pointer-events: none;
}
.hero-glow-a { width: 420px; height: 420px; top: -140px; left: -100px; background: radial-gradient(circle, rgba(108,76,255,.35), transparent 70%); }
.hero-glow-b { width: 380px; height: 380px; bottom: -160px; right: -80px; background: radial-gradient(circle, rgba(255,107,74,.28), transparent 70%); }

/* Hero trust stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,.12);
  max-width: 30rem;
}
.hero-stat dt {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: #FAFAF6;
  line-height: 1.2;
}
.hero-stat dd {
  margin-top: .2rem;
  font-size: .78rem;
  line-height: 1.35;
  color: rgba(255,255,255,.55);
}
@media (max-width: 380px) {
  .hero-stats { gap: .65rem; }
  .hero-stat dt { font-size: 1.05rem; }
  .hero-stat dd { font-size: .72rem; }
}

.text-gradient {
  background: linear-gradient(135deg, #B8A9FF, #FF8A6B);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* Section headings */
.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6C4CFF;
}
.section-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.02em;
  line-height: 1.15;
}
@media (min-width: 640px) { .section-title { font-size: 2.5rem; } }
.section-sub { color: rgba(14,14,22,.6); font-size: 1.05rem; line-height: 1.6; }

/* Capabilities section */

.tech-chip {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 999px;
  padding: .6rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: #0E0E16;
  box-shadow: 0 14px 30px -12px rgba(14,14,22,.4);
  animation: tech-chip-float 6s ease-in-out infinite;
}
.tech-chip-a { left: -.6rem; top: 12%; }
.tech-chip-b {
  right: -.6rem; bottom: 12%;
  animation-delay: 2.4s;
  flex-direction: column;
  gap: 0;
  border-radius: 1.1rem;
  padding: .7rem 1.1rem;
  line-height: 1.15;
}
.tech-chip-b strong { font-family: 'Sora', sans-serif; font-size: 1.25rem; font-weight: 700; }
.tech-chip-b span { font-size: .7rem; color: rgba(14,14,22,.55); font-weight: 500; }
.tech-chip-dot {
  width: 7px; height: 7px;
  border-radius: 999px;
  background: #22C55E;
  flex-shrink: 0;
  animation: badge-pulse 2.2s ease-out infinite;
}
@keyframes tech-chip-float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-9px); }
}
@media (max-width: 400px) {
  .tech-chip { font-size: .72rem; padding: .5rem .8rem; }
  .tech-chip-a, .tech-chip-b { left: auto; right: auto; }
  .tech-chip-a { left: 0; }
  .tech-chip-b { right: 0; }
}


@media (prefers-reduced-motion: reduce) {
}

/* Feature cards */

/* Product cards */


@media (prefers-reduced-motion: reduce) { .media-track { transition: none; } }


/* Product photos — normalised so both models read at the same visual size */
@media (prefers-reduced-motion: reduce) {
}
.cart-item-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: .35rem;
  transform: scale(var(--img-scale, 1));
}
.lightbox-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}

.product-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: .5rem;
  color: #fff;
  z-index: 2;
}

.product-save {
  align-self: flex-start;
  font-size: .74rem;
  font-weight: 700;
  color: #E8523A;
  background: rgba(255,107,74,.1);
  border: 1px solid rgba(255,107,74,.22);
  padding: .2rem .55rem;
  border-radius: .45rem;
}
.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background: #0E0E16;
  color: #fff;
  font-weight: 600;
  font-size: .9rem;
  padding: .8rem 1rem;
  border-radius: .8rem;
  border: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.add-to-cart-btn:hover {
  background: #6C4CFF;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(108,76,255,.65);
}
.add-to-cart-btn.added { background: #22C55E; }

/* Reviews */
.review-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.rating-summary {
  display: flex;
  align-items: center;
  gap: .9rem;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.15rem;
  padding: 1rem 1.35rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
}
.rating-score {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -.03em;
}
.rating-meta { font-size: .78rem; color: rgba(14,14,22,.5); margin-top: .2rem; }


@media (prefers-reduced-motion: reduce) {
}
@media (max-width: 480px) {
}

.review-card {
  background: #fff;
  border: 1px solid rgba(14,14,22,.06);
  border-radius: 1.25rem;
  padding: 1.5rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.stars { color: #FF6B4A; letter-spacing: 2px; font-size: .95rem; }
.review-text { font-size: .92rem; line-height: 1.6; color: rgba(14,14,22,.75); margin: .85rem 0 1.1rem; }
.review-author { display: flex; align-items: center; gap: .65rem; margin-top: auto; }
.avatar {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C4CFF, #FF6B4A);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}


/* FAQ */
@media (min-width: 768px) { .faq-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }

.faq-item {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.15rem;
  padding: 0 1.25rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(108,76,255,.3);
  box-shadow: 0 16px 34px -22px rgba(108,76,255,.55);
}


.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.15rem 0;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: #0E0E16;
}
.faq-toggle-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #0E0E16;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .2s ease, transform .3s ease;
}
.faq-question[aria-expanded="true"] .faq-toggle-icon { background: #6C4CFF; transform: rotate(135deg); }
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .3s ease;
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer p {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 1.15rem;
  font-size: .88rem;
  color: rgba(14,14,22,.6);
  line-height: 1.6;
}

/* Footer */
.footer-heading { font-family: 'Sora', sans-serif; font-weight: 600; color: #fff; font-size: .92rem; margin-bottom: 1.1rem; }
.footer-link { transition: color .15s ease; }
.footer-link:hover { color: #fff; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  line-height: 1.5;
  transition: color .15s ease;
}
.footer-contact svg { flex-shrink: 0; margin-top: .15rem; color: rgba(255,255,255,.4); }
a.footer-contact { word-break: break-word; }
a.footer-contact:hover { color: #fff; }
a.footer-contact:hover svg { color: #6C4CFF; }
.social-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center;
  transition: background-color .15s ease, transform .15s ease;
}
.social-btn:hover { background: rgba(108,76,255,.35); transform: translateY(-2px); }

/* ============ Contact page ============ */
.contact-hero {
  position: relative;
  background: #0E0E16;
  color: #FAFAF6;
  overflow: hidden;
}
.contact-hero-glow {
  position: absolute;
  top: -30%;
  right: -10%;
  width: 46rem;
  height: 46rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,92,255,.42), rgba(108,76,255,.12) 45%, transparent 70%);
  filter: blur(70px);
  pointer-events: none;
  animation: hero-halo 8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) { .contact-hero-glow { animation: none; } }

.nav-link.is-current { opacity: 1; background: rgba(108,76,255,.18); }

.contact-cards {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr));
}
.contact-card {
  display: block;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
a.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,76,255,.3);
  box-shadow: 0 26px 48px -26px rgba(14,14,22,.3);
}
.contact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 1rem;
  background: rgba(108,76,255,.1);
  color: #6C4CFF;
  margin-bottom: 1.1rem;
  transition: background-color .22s ease, color .22s ease;
}
a.contact-card:hover .contact-icon { background: #6C4CFF; color: #fff; }
.contact-card-title { font-size: .78rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: rgba(14,14,22,.45); }
.contact-card-value { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.05rem; margin-top: .35rem; word-break: break-word; }
.contact-card-note { font-size: .82rem; color: rgba(14,14,22,.55); margin-top: .4rem; line-height: 1.5; }

.contact-layout { display: grid; gap: 2rem; align-items: start; }
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1.55fr 1fr; gap: 2.5rem; } }

.contact-form-card {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.6rem;
  padding: 2rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
}
@media (min-width: 640px) { .contact-form-card { padding: 2.5rem; } }

.contact-form-card select,
.contact-form-card textarea {
  border: 1px solid rgba(14,14,22,.15);
  border-radius: .7rem;
  padding: .65rem .8rem;
  font-size: .9rem;
  font-family: inherit;
  background: #fff;
  color: #0E0E16;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.contact-form-card textarea { resize: vertical; min-height: 7rem; line-height: 1.55; }
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: #6C4CFF;
  box-shadow: 0 0 0 3px rgba(108,76,255,.15);
  outline: none;
}
.contact-form-card textarea.invalid { border-color: #FF6B4A; }

.contact-side { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-hours, .contact-quick, .contact-social {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.4rem;
  padding: 1.6rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
}
.contact-side-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; }

.hours-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .1rem; }
.hours-list > div {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: .6rem 0;
  border-bottom: 1px solid rgba(14,14,22,.07);
  font-size: .87rem;
}
.hours-list > div:last-child { border-bottom: none; }
.hours-list dt { color: rgba(14,14,22,.6); }
.hours-list dd { font-weight: 600; }
.hours-list dd.closed { color: rgba(14,14,22,.35); font-weight: 500; }
.contact-side-note { font-size: .78rem; color: rgba(14,14,22,.5); line-height: 1.55; margin-top: .9rem; }

.quick-list { margin-top: 1rem; display: flex; flex-direction: column; gap: .15rem; }
.quick-list a {
  display: block;
  font-size: .87rem;
  padding: .6rem .75rem;
  margin-left: -.75rem;
  border-radius: .6rem;
  color: rgba(14,14,22,.7);
  transition: background-color .15s ease, color .15s ease;
}
.quick-list a:hover { background: rgba(108,76,255,.08); color: #6C4CFF; }

.contact-social .social-btn { background: rgba(14,14,22,.06); color: #0E0E16; }
.contact-social .social-btn:hover { background: #6C4CFF; color: #fff; }

.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.25rem;
  font-size: .85rem;
  font-weight: 600;
  color: #B8A9FF;
  transition: gap .15s ease, color .15s ease;
}
.footer-contact-cta:hover { gap: .75rem; color: #fff; }

/* Cart drawer */
.drawer-overlay {
  position: fixed; inset: 0;
  background: rgba(14,14,22,.5);
  backdrop-filter: blur(2px);
  z-index: 60;
  opacity: 0;
  transition: opacity .25s ease;
}
.drawer-overlay.show { opacity: 1; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  height: 100dvh;
  width: min(420px, 100vw);
  background: #fff;
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .3s ease;
  box-shadow: -12px 0 40px rgba(14,14,22,.15);
}
.cart-drawer.open { transform: translateX(0); }

.cart-item { display: flex; gap: .9rem; }
.cart-item-media {
  width: 68px; height: 68px;
  border-radius: .9rem;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(155deg, #F5F3FB, #E1DCF1);
}
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-name { font-weight: 600; font-size: .9rem; }
.cart-item-price { font-size: .85rem; color: rgba(14,14,22,.5); margin-top: .1rem; }
.qty-stepper { display: flex; align-items: center; gap: .5rem; margin-top: .5rem; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  border: 1px solid rgba(14,14,22,.15);
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem;
  cursor: pointer;
  transition: background-color .15s ease;
  background: #fff;
}
.qty-btn:hover { background: rgba(14,14,22,.05); }
.qty-value { font-size: .85rem; font-weight: 600; min-width: 18px; text-align: center; }
.cart-item-remove {
  font-size: .78rem;
  color: rgba(14,14,22,.4);
  text-decoration: underline;
  margin-left: auto;
  cursor: pointer;
  background: none; border: none;
}
.cart-item-remove:hover { color: #FF6B4A; }

.empty-state { text-align: center; padding: 3rem 1rem; color: rgba(14,14,22,.45); }

/* Checkout modal */
.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.checkout-modal.open { opacity: 1; pointer-events: auto; }
.checkout-modal-inner {
  background: #fff;
  width: min(640px, 100%);
  max-height: min(88vh, 780px);
  border-radius: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateY(16px) scale(.98);
  transition: transform .25s ease;
  overflow: hidden;
}
.checkout-modal.open .checkout-modal-inner { transform: translateY(0) scale(1); }

.form-legend { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem; color: #0E0E16; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .82rem; font-weight: 500; color: rgba(14,14,22,.65); }
.field input {
  border: 1px solid rgba(14,14,22,.15);
  border-radius: .7rem;
  padding: .65rem .8rem;
  font-size: .9rem;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus { border-color: #6C4CFF; box-shadow: 0 0 0 3px rgba(108,76,255,.15); outline: none; }
.field input.invalid { border-color: #FF6B4A; }
.field-error { font-size: .76rem; color: #E8523A; min-height: 1em; }

.pay-option {
  display: flex;
  align-items: center;
  gap: .7rem;
  border: 1px solid rgba(14,14,22,.12);
  border-radius: .9rem;
  padding: .8rem .9rem;
  cursor: pointer;
  transition: border-color .15s ease, background-color .15s ease;
  flex-wrap: wrap;
}
.pay-option:has(input:checked) { border-color: #6C4CFF; background: rgba(108,76,255,.05); }
.pay-option input { accent-color: #6C4CFF; }
.pay-option-label { font-weight: 600; font-size: .88rem; }
.pay-option-hint { font-size: .76rem; color: rgba(14,14,22,.45); width: 100%; padding-left: 1.6rem; }

.order-summary { background: rgba(14,14,22,.03); border-radius: 1rem; padding: 1rem 1.1rem; }

.error-summary {
  background: rgba(255,107,74,.08);
  border: 1px solid rgba(255,107,74,.35);
  color: #C2410C;
  border-radius: .8rem;
  padding: .8rem 1rem;
  font-size: .85rem;
  margin-top: 1.25rem;
}
.error-summary ul { margin-top: .35rem; padding-left: 1.1rem; list-style: disc; }
.error-summary a { text-decoration: underline; font-weight: 600; }

.success-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(34,197,94,.12);
  color: #22C55E;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
}

/* Product image lightbox */
.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 85;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}
.media-lightbox.open { opacity: 1; pointer-events: auto; }
.lightbox-stage {
  width: min(70vw, 480px);
  height: min(70vw, 480px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: zoom-in;
}
.lightbox-stage svg, .lightbox-stage img { width: 100%; height: 100%; transition: transform .3s ease; }
.lightbox-stage.zoomed { cursor: zoom-out; }
.lightbox-stage.zoomed svg, .lightbox-stage.zoomed img { transform: scale(1.7); }

.lightbox-close, .lightbox-nav {
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 2;
  transition: background-color .15s ease;
}
.lightbox-close:hover, .lightbox-nav:hover { background: rgba(255,255,255,.22); }
.lightbox-close { top: 1.25rem; right: 1.25rem; width: 44px; height: 44px; }
.lightbox-nav { top: 50%; transform: translateY(-50%); width: 48px; height: 48px; }
.lightbox-nav.prev { left: 1rem; }
.lightbox-nav.next { right: 1rem; }
.lightbox-dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 2;
}

/* Toast */
.toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: #0E0E16;
  color: #fff;
  font-size: .85rem;
  font-weight: 500;
  padding: .8rem 1.2rem;
  border-radius: .8rem;
  z-index: 90;
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
  box-shadow: 0 12px 32px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* Scrollbar for drawer/modal */
#cart-items::-webkit-scrollbar, #checkout-body::-webkit-scrollbar { width: 6px; }
#cart-items::-webkit-scrollbar-thumb, #checkout-body::-webkit-scrollbar-thumb { background: rgba(14,14,22,.15); border-radius: 999px; }

/* ============================================================
   Hero extras
   ============================================================ */
.btn-shine { position: relative; overflow: hidden; }
.btn-shine::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 45%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.42), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 4.2s ease-in-out infinite;
}
@keyframes btn-shine {
  0%, 62% { left: -60%; }
  100%    { left: 130%; }
}

.hero-microcopy {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1rem;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.hero-microcopy svg { color: #8FE3A6; flex-shrink: 0; }

/* Hero trust stats */
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .7rem;
  margin-top: 2.5rem;
  max-width: 32rem;
}
.hero-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: .1rem;
  padding: .95rem .9rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform .22s ease, border-color .22s ease, background-color .22s ease;
}
.hero-stat::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(140deg, rgba(124,92,255,.28), transparent 65%);
  opacity: 0;
  transition: opacity .22s ease;
}
.hero-stat:hover {
  transform: translateY(-3px);
  border-color: rgba(184,169,255,.4);
  background: rgba(255,255,255,.08);
}
.hero-stat:hover::before { opacity: 1; }
.hero-stat-ic { position: relative; color: #B8A9FF; margin-bottom: .3rem; }
.hero-stat-val {
  position: relative;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -.02em;
  color: #FAFAF6;
  line-height: 1.15;
}
.hero-stat-lbl { position: relative; font-size: .74rem; color: rgba(255,255,255,.55); line-height: 1.3; }
@media (max-width: 400px) {
  .hero-stats { gap: .5rem; }
  .hero-stat { padding: .75rem .6rem; }
  .hero-stat-val { font-size: 1rem; }
  .hero-stat-lbl { font-size: .68rem; }
}

/* ============================================================
   Capabilities
   ============================================================ */
.eyebrow-light {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #B8A9FF;
}

.cap-banner {
  position: relative;
  border-radius: 1.75rem;
  overflow: hidden;
  min-height: 17rem;
  display: flex;
  align-items: flex-end;
  box-shadow: 0 30px 60px -30px rgba(14,14,22,.45);
}
.cap-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: cap-pan 24s ease-in-out infinite;
  will-change: transform;
}
@keyframes cap-pan {
  0%, 100% { transform: scale(1.05) translate3d(0, 0, 0); }
  50%      { transform: scale(1.13) translate3d(-1.5%, -1%, 0); }
}
.cap-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(14,14,22,.9) 5%, rgba(14,14,22,.45) 45%, rgba(108,76,255,.18));
}
.cap-banner-body { position: relative; z-index: 2; padding: 2rem; max-width: 34rem; }
.cap-banner-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: #FAFAF6;
  margin-top: .5rem;
}
@media (min-width: 640px) {
  .cap-banner { min-height: 21rem; }
  .cap-banner-body { padding: 2.5rem; }
  .cap-banner-title { font-size: 2rem; }
}

.cap-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.cap-tile {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.25rem;
  padding: 1.5rem 1.35rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.cap-tile:hover {
  transform: translateY(-4px);
  border-color: rgba(108,76,255,.28);
  box-shadow: 0 24px 44px -26px rgba(14,14,22,.32);
}
.cap-ic {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px; height: 46px;
  border-radius: .95rem;
  background: rgba(108,76,255,.1);
  color: #6C4CFF;
  margin-bottom: 1rem;
  transition: background-color .22s ease, color .22s ease, transform .22s ease;
}
.cap-tile:hover .cap-ic { background: #6C4CFF; color: #fff; transform: scale(1.06) rotate(-4deg); }
.cap-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: .35rem; }
.cap-text { font-size: .87rem; line-height: 1.5; color: rgba(14,14,22,.6); }

@media (prefers-reduced-motion: reduce) {
  .cap-banner img, .btn-shine::after { animation: none !important; }
}

/* ============================================================
   Product showcase
   ============================================================ */
.product-showcase {
  display: grid;
  gap: 1.5rem;
  margin-top: 3rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
  max-width: 60rem;
  margin-left: auto;
  margin-right: auto;
}

.ps-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.6rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
  transition: transform .3s cubic-bezier(.2,.7,.3,1), box-shadow .3s ease, border-color .3s ease;
}
.ps-card:hover {
  transform: translateY(-7px);
  border-color: rgba(108,76,255,.3);
  box-shadow: 0 34px 62px -28px rgba(14,14,22,.3);
}
/* full-card click target, kept under the interactive controls */
.ps-link { position: absolute; inset: 0; z-index: 1; }

.ps-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(155deg, #F5F3FB 0%, #EAE6F6 55%, #E1DCF1 100%);
  border-bottom: 1px solid rgba(14,14,22,.05);
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-blob {
  position: absolute;
  width: 68%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(108,76,255,.3), transparent 68%);
  filter: blur(28px);
  animation: ps-blob 9s ease-in-out infinite;
}
@keyframes ps-blob {
  0%, 100% { transform: scale(1) translate(0, 0); }
  50%      { transform: scale(1.15) translate(4%, -4%); }
}
.ps-img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1.4rem;
  transform: scale(var(--img-scale, 1));
  filter: drop-shadow(0 16px 24px rgba(14,14,22,.18));
  transition: transform .4s cubic-bezier(.2,.7,.3,1);
}
.ps-card:hover .ps-img { transform: scale(calc(var(--img-scale, 1) * 1.08)) rotate(-2deg); }

.ps-discount {
  position: absolute;
  z-index: 3;
  top: .9rem; right: 3.4rem;
  font-family: 'Sora', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  background: #E8523A;
  padding: .28rem .55rem;
  border-radius: .5rem;
  box-shadow: 0 6px 16px -6px rgba(232,82,58,.8);
}

.ps-body { display: flex; flex-direction: column; gap: .4rem; padding: 1.4rem 1.35rem 1.35rem; flex: 1; }
.ps-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.3rem; letter-spacing: -.02em; }
.ps-tagline { font-size: .8rem; font-weight: 600; color: #6C4CFF; }
.ps-hook { font-size: .85rem; color: rgba(14,14,22,.55); line-height: 1.5; }

.ps-specs {
  display: flex;
  flex-direction: column;
  gap: .4rem;
  margin-top: .6rem;
  padding-top: .9rem;
  border-top: 1px solid rgba(14,14,22,.07);
}
.ps-specs li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  font-size: .8rem;
  line-height: 1.4;
  color: rgba(14,14,22,.7);
}
.ps-specs svg { flex-shrink: 0; margin-top: .15rem; color: #6C4CFF; }

.ps-foot { margin-top: auto; padding-top: 1.15rem; display: flex; flex-direction: column; gap: .5rem; }
.ps-price-row { display: flex; align-items: baseline; gap: .55rem; flex-wrap: wrap; }
.ps-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.7rem; letter-spacing: -.02em; }
.ps-price-old { font-size: .9rem; color: rgba(14,14,22,.4); text-decoration: line-through; }
.product-save {
  align-self: flex-start;
  font-size: .74rem;
  font-weight: 700;
  color: #E8523A;
  background: rgba(255,107,74,.1);
  border: 1px solid rgba(255,107,74,.22);
  padding: .2rem .55rem;
  border-radius: .45rem;
}
.ps-actions { position: relative; z-index: 2; display: flex; gap: .6rem; margin-top: .5rem; }
.ps-details {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .8rem 1.1rem;
  border-radius: .8rem;
  border: 1px solid rgba(14,14,22,.14);
  font-size: .88rem;
  font-weight: 600;
  white-space: nowrap;
  transition: border-color .15s ease, background-color .15s ease;
}
.ps-details:hover { border-color: #6C4CFF; background: rgba(108,76,255,.07); color: #6C4CFF; }

.add-to-cart-btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  flex: 1;
  background: #0E0E16;
  color: #fff;
  font-weight: 600;
  font-size: .88rem;
  padding: .8rem 1rem;
  border-radius: .8rem;
  border: none;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease;
}
.add-to-cart-btn:hover {
  background: #6C4CFF;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px -8px rgba(108,76,255,.65);
}
.add-to-cart-btn.added { background: #22C55E; }

.product-badge {
  position: absolute;
  top: .9rem;
  left: .9rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  padding: .3rem .6rem;
  border-radius: .5rem;
  color: #fff;
  z-index: 3;
}

@media (prefers-reduced-motion: reduce) {
  .ps-blob { animation: none; }
  .ps-card:hover .ps-img { transform: scale(var(--img-scale, 1)); }
}

/* ============================================================
   Review spotlight
   ============================================================ */
.rv-stage {
  position: relative;
  max-width: 46rem;
  margin: 3rem auto 0;
  padding: 0 3.2rem;
}
.rv-window { position: relative; min-height: 17rem; }
@media (min-width: 640px) { .rv-window { min-height: 14rem; } }

.rv-slide {
  position: absolute;
  inset: 0;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.5rem;
  padding: 2rem;
  box-shadow: 0 20px 46px -30px rgba(14,14,22,.4);
  display: flex;
  flex-direction: column;
  opacity: 0;
  transform: translateY(14px) scale(.98);
  pointer-events: none;
  transition: opacity .45s ease, transform .45s ease;
}
.rv-slide.is-active { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; position: relative; }
.rv-quote {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(14,14,22,.8);
  margin: 1rem 0 1.4rem;
  flex: 1;
}
@media (min-width: 640px) { .rv-quote { font-size: 1.15rem; } }
.rv-author { display: flex; align-items: center; gap: .7rem; margin-top: auto; }

.rv-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(14,14,22,.1);
  color: #0E0E16;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 20px -10px rgba(14,14,22,.4);
  transition: background-color .15s ease, color .15s ease, transform .15s ease;
}
.rv-nav:hover { background: #6C4CFF; color: #fff; border-color: #6C4CFF; transform: translateY(-50%) scale(1.06); }
.rv-nav.prev { left: 0; }
.rv-nav.next { right: 0; }
@media (max-width: 520px) {
  .rv-stage { padding: 0; }
  .rv-nav { top: auto; bottom: -3.6rem; transform: none; }
  .rv-nav:hover { transform: scale(1.06); }
  .rv-nav.prev { left: 25%; }
  .rv-nav.next { right: 25%; }
  .rv-dots { margin-top: 4.75rem; }
}

.rv-progress {
  position: absolute;
  left: 3.2rem; right: 3.2rem;
  bottom: -1rem;
  height: 3px;
  border-radius: 999px;
  background: rgba(14,14,22,.08);
  overflow: hidden;
}
.rv-progress span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, #6C4CFF, #FF8A6B); }
@keyframes rv-fill { from { width: 0; } to { width: 100%; } }
@media (max-width: 520px) { .rv-progress { left: 0; right: 0; } }

.rv-dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}
.rv-dot {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 50%;
  background: none;
  cursor: pointer;
  opacity: .4;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.rv-dot .avatar { width: 38px; height: 38px; font-size: .74rem; }
.rv-dot:hover { opacity: .8; transform: translateY(-2px); }
.rv-dot.is-active { opacity: 1; border-color: #6C4CFF; transform: translateY(-3px); }

/* ============================================================
   Comparison board
   ============================================================ */
.cmp-section {
  position: relative;
  background: #0E0E16;
  color: #FAFAF6;
  padding: 5rem 0;
  overflow: hidden;
}
@media (min-width: 640px) { .cmp-section { padding: 7rem 0; } }
.cmp-glow {
  position: absolute;
  top: -20%; left: 50%;
  width: 44rem; height: 44rem;
  margin-left: -22rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,92,255,.32), transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.cmp-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.15;
  letter-spacing: -.02em;
}
@media (min-width: 640px) { .cmp-title { font-size: 2.5rem; } }
.cmp-sub { color: rgba(255,255,255,.6); font-size: 1.05rem; line-height: 1.6; }

.cmp-board {
  max-width: 48rem;
  margin: 3rem auto 0;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 1.6rem;
  padding: 1.25rem;
  backdrop-filter: blur(8px);
}
@media (min-width: 640px) { .cmp-board { padding: 1.75rem; } }

.cmp-heads, .cmp-row {
  display: grid;
  grid-template-columns: 1fr minmax(7rem, 1.6fr) 1fr;
  align-items: center;
  gap: .75rem;
}
@media (min-width: 640px) { .cmp-heads, .cmp-row { gap: 1.25rem; } }

.cmp-heads { padding-bottom: 1rem; border-bottom: 1px solid rgba(255,255,255,.1); }
.cmp-head { display: flex; justify-content: center; }
.cmp-head-tag {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: .82rem;
  padding: .45rem .9rem;
  border-radius: 999px;
  text-align: center;
}
@media (min-width: 640px) { .cmp-head-tag { font-size: .95rem; } }
.cmp-head-a .cmp-head-tag { background: linear-gradient(135deg, #6C4CFF, #8A6BFF); color: #fff; box-shadow: 0 10px 26px -10px rgba(108,76,255,.9); }
.cmp-head-b .cmp-head-tag { background: rgba(255,255,255,.07); color: rgba(255,255,255,.5); }
.cmp-vs {
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: .8rem;
  text-align: center;
  letter-spacing: .1em;
  color: rgba(255,255,255,.35);
}

.cmp-row {
  padding: .9rem 0;
  border-bottom: 1px solid rgba(255,255,255,.07);
  opacity: 0;
  transform: translateY(14px);
}
.cmp-board.is-live .cmp-row {
  animation: cmp-in .55s cubic-bezier(.2,.7,.3,1) forwards;
  animation-delay: var(--row-delay, 0ms);
}
@keyframes cmp-in { to { opacity: 1; transform: translateY(0); } }

.cmp-label { text-align: center; font-size: .82rem; color: rgba(255,255,255,.75); line-height: 1.35; }
@media (min-width: 640px) { .cmp-label { font-size: .92rem; } }
.cmp-cell { display: flex; justify-content: center; }

.cmp-yes {
  display: flex; align-items: center; justify-content: center;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(143,227,166,.16);
  color: #8FE3A6;
  transform: scale(.5);
  opacity: 0;
}
.cmp-board.is-live .cmp-yes {
  animation: cmp-pop .45s cubic-bezier(.2,1.5,.4,1) forwards;
  animation-delay: calc(var(--row-delay, 0ms) + 180ms);
}
@keyframes cmp-pop { to { transform: scale(1); opacity: 1; } }
.cmp-no { color: rgba(255,255,255,.25); font-size: 1.1rem; }
.cmp-strong { font-family: 'Sora', sans-serif; font-weight: 700; color: #fff; font-size: .95rem; }
.cmp-weak { color: rgba(255,255,255,.4); font-size: .9rem; }

.cmp-bar {
  position: relative;
  width: 100%;
  max-width: 6.5rem;
  height: 30px;
  border-radius: .55rem;
  background: rgba(255,255,255,.07);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cmp-bar strong {
  position: relative;
  z-index: 2;
  font-family: 'Sora', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  color: rgba(255,255,255,.85);
}
.cmp-bar-fill {
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 0;
  background: rgba(255,255,255,.12);
  border-radius: .55rem;
}
.cmp-bar-win .cmp-bar-fill { background: linear-gradient(90deg, #6C4CFF, #8A6BFF); }
.cmp-board.is-live .cmp-bar-fill {
  animation: cmp-grow .9s cubic-bezier(.2,.7,.3,1) forwards;
  animation-delay: calc(var(--row-delay, 0ms) + 150ms);
}
@keyframes cmp-grow { to { width: var(--w, 100%); } }

.cmp-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
}
.cmp-score { font-size: .9rem; color: rgba(255,255,255,.6); }
.cmp-score strong { font-family: 'Sora', sans-serif; font-size: 1.5rem; color: #fff; margin-right: .25rem; }

@media (prefers-reduced-motion: reduce) {
  .cmp-row { opacity: 1; transform: none; }
  .cmp-yes { opacity: 1; transform: none; }
  .cmp-bar-fill { width: var(--w, 100%); }
}

/* ============================================================
   Product detail page
   ============================================================ */
.pdp-crumbs { background: #0E0E16; color: rgba(255,255,255,.5); font-size: .8rem; padding: .9rem 0; }
.pdp-crumbs ol { display: flex; align-items: center; gap: .5rem; flex-wrap: wrap; }
.pdp-crumbs a { transition: color .15s ease; }
.pdp-crumbs a:hover { color: #fff; }
.pdp-crumbs [aria-current] { color: rgba(255,255,255,.85); }

.pdp-hero { background: #0E0E16; color: #FAFAF6; padding: 2rem 0 4rem; }
@media (min-width: 1024px) { .pdp-hero { padding: 3rem 0 5rem; } }
.pdp-grid { display: grid; gap: 2.5rem; align-items: center; }
@media (min-width: 1024px) { .pdp-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }

.pdp-media {
  position: relative;
  border-radius: 1.75rem;
  background: linear-gradient(155deg, #F5F3FB 0%, #EAE6F6 55%, #E1DCF1 100%);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.pdp-media-glow {
  position: absolute;
  width: 70%;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(108,76,255,.32), transparent 68%);
  filter: blur(34px);
  animation: ps-blob 9s ease-in-out infinite;
}
.pdp-media img {
  position: relative;
  z-index: 2;
  width: 100%; height: 100%;
  object-fit: contain;
  padding: 2rem;
  transform: scale(var(--img-scale, 1));
  filter: drop-shadow(0 22px 34px rgba(14,14,22,.22));
  animation: hero-float 8s ease-in-out infinite;
}
.pdp-discount {
  position: absolute;
  z-index: 3;
  top: 1.1rem; right: 1.1rem;
  font-family: 'Sora', sans-serif;
  font-size: .95rem;
  font-weight: 700;
  color: #fff;
  background: #E8523A;
  padding: .4rem .7rem;
  border-radius: .6rem;
  box-shadow: 0 10px 24px -8px rgba(232,82,58,.85);
}

.hero-badge-light { background: rgba(255,255,255,.07); }
.pdp-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.3rem;
  line-height: 1.06;
  letter-spacing: -.025em;
  margin-top: 1.1rem;
}
@media (min-width: 640px) { .pdp-title { font-size: 3rem; } }
.pdp-tagline { font-size: 1rem; font-weight: 600; color: #B8A9FF; margin-top: .6rem; }
.pdp-hook { font-size: 1.02rem; color: rgba(255,255,255,.65); line-height: 1.6; margin-top: .9rem; }

.pdp-stars { display: flex; align-items: center; gap: .6rem; margin-top: 1.1rem; }
.pdp-stars-note { font-size: .82rem; color: rgba(255,255,255,.5); }

.pdp-price-box {
  margin-top: 1.5rem;
  padding: 1.25rem 1.35rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
}
.pdp-price-row { display: flex; align-items: baseline; gap: .7rem; flex-wrap: wrap; }
.pdp-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 2.2rem; letter-spacing: -.03em; }
.pdp-price-old { font-size: 1rem; color: rgba(255,255,255,.4); text-decoration: line-through; }
.pdp-price-note { font-size: .8rem; color: rgba(255,255,255,.45); margin-top: .6rem; }

.pdp-actions { display: flex; gap: .7rem; flex-wrap: wrap; margin-top: 1.25rem; }
.pdp-add { flex: 1; min-width: 13rem; justify-content: center; }
.btn-ghost-dark { border-color: rgba(255,255,255,.22); }

.pdp-trust { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.5rem; }
.pdp-trust li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .86rem;
  color: rgba(255,255,255,.6);
  line-height: 1.45;
}
.pdp-trust svg { flex-shrink: 0; margin-top: .1rem; color: #8FE3A6; }

.pdp-why { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 16rem), 1fr)); }
.pdp-why-card {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.4rem;
  padding: 1.75rem 1.6rem;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.pdp-why-card:hover {
  transform: translateY(-4px);
  border-color: rgba(108,76,255,.28);
  box-shadow: 0 26px 48px -28px rgba(14,14,22,.32);
}
.pdp-why-ic {
  display: flex; align-items: center; justify-content: center;
  width: 50px; height: 50px;
  border-radius: 1rem;
  background: rgba(108,76,255,.1);
  color: #6C4CFF;
  margin-bottom: 1.1rem;
  transition: background-color .22s ease, color .22s ease;
}
.pdp-why-card:hover .pdp-why-ic { background: #6C4CFF; color: #fff; }
.pdp-why-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: 1.1rem; margin-bottom: .45rem; }
.pdp-why-text { font-size: .89rem; line-height: 1.6; color: rgba(14,14,22,.6); }

.pdp-specs-grid { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .pdp-specs-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; } }
.pdp-inline-link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.5rem;
  font-weight: 600;
  font-size: .9rem;
  color: #6C4CFF;
  transition: gap .15s ease;
}
.pdp-inline-link:hover { gap: .75rem; }

.pdp-specs { display: flex; flex-direction: column; gap: .5rem; }
.pdp-spec {
  display: flex;
  gap: .9rem;
  padding: 1.1rem 1.2rem;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.1rem;
  transition: transform .2s ease, border-color .2s ease;
}
.pdp-spec:hover { transform: translateX(4px); border-color: rgba(108,76,255,.28); }
.pdp-spec-ic {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(108,76,255,.12);
  color: #6C4CFF;
  margin-top: .1rem;
}
.pdp-spec-title { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .95rem; }
.pdp-spec-note { font-size: .83rem; color: rgba(14,14,22,.55); line-height: 1.5; margin-top: .2rem; }

.pdp-proof { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); }

.pdp-versus { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(min(100%, 17rem), 1fr)); max-width: 44rem; margin: 0 auto; }
.pdp-versus-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.5rem;
  padding: 2rem 1.6rem 1.6rem;
  text-align: center;
  transition: transform .22s ease, box-shadow .22s ease;
}
.pdp-versus-card.is-current { border-color: rgba(108,76,255,.4); box-shadow: 0 22px 46px -28px rgba(108,76,255,.7); }
.pdp-versus-card:hover { transform: translateY(-4px); }
.pdp-versus-tag {
  position: absolute;
  top: -.7rem; left: 50%;
  transform: translateX(-50%);
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: #6C4CFF;
  color: #fff;
  white-space: nowrap;
}
.pdp-versus-tag-alt { background: rgba(14,14,22,.12); color: rgba(14,14,22,.6); }
.pdp-versus-card img {
  width: 100%;
  max-width: 11rem;
  aspect-ratio: 1;
  object-fit: contain;
  margin: 0 auto .75rem;
  transform: scale(var(--img-scale, 1));
}
.pdp-versus-name { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.2rem; }
.pdp-versus-hook { font-size: .85rem; color: rgba(14,14,22,.55); line-height: 1.5; margin-top: .4rem; }
.pdp-versus-price { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 1.4rem; margin-top: .8rem; }

.pdp-final { position: relative; background: #0E0E16; color: #FAFAF6; padding: 5rem 0; overflow: hidden; }
.pdp-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  width: 40rem; height: 40rem;
  margin: -20rem 0 0 -20rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,92,255,.34), transparent 65%);
  filter: blur(70px);
}
.pdp-final-title { font-family: 'Sora', sans-serif; font-weight: 700; font-size: 2rem; letter-spacing: -.02em; }
@media (min-width: 640px) { .pdp-final-title { font-size: 2.6rem; } }
.pdp-final-text { color: rgba(255,255,255,.65); font-size: 1.05rem; line-height: 1.6; margin: 1rem auto 0; max-width: 32rem; }
.pdp-final-actions { display: flex; align-items: center; justify-content: center; gap: .9rem; flex-wrap: wrap; margin-top: 2rem; }
.pdp-final-note { font-size: .85rem; color: rgba(255,255,255,.4); text-decoration: line-through; }

.pdp-sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: .8rem 1rem;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(14,14,22,.1);
  box-shadow: 0 -8px 30px -12px rgba(14,14,22,.3);
  transform: translateY(110%);
  transition: transform .3s cubic-bezier(.2,.7,.3,1);
}
.pdp-sticky.is-visible { transform: translateY(0); }
.pdp-sticky-info { display: flex; flex-direction: column; min-width: 0; }
.pdp-sticky-name { font-family: 'Sora', sans-serif; font-weight: 600; font-size: .9rem; }
.pdp-sticky-price { font-size: .85rem; font-weight: 700; }
.pdp-sticky-price s { color: rgba(14,14,22,.35); font-weight: 400; margin-left: .3rem; }
.pdp-sticky-btn { flex-shrink: 0; }

@media (prefers-reduced-motion: reduce) {
  .pdp-media img, .pdp-media-glow { animation: none !important; }
}

/* ============================================================
   Document / legal pages
   ============================================================ */
.doc-hero { position: relative; background: #0E0E16; color: #FAFAF6; overflow: hidden; }
.doc-hero-glow {
  position: absolute;
  top: -50%; right: -10%;
  width: 40rem; height: 40rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(124,92,255,.38), transparent 68%);
  filter: blur(70px);
  pointer-events: none;
}
.doc-crumbs {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: 1.25rem;
  font-size: .8rem;
  color: rgba(255,255,255,.45);
  flex-wrap: wrap;
}
.doc-crumbs a { transition: color .15s ease; }
.doc-crumbs a:hover { color: #fff; }
.doc-crumbs [aria-current] { color: rgba(255,255,255,.8); }
.doc-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: -.025em;
}
@media (min-width: 640px) { .doc-title { font-size: 3rem; } }
.doc-lede { font-size: 1.08rem; line-height: 1.65; color: rgba(255,255,255,.68); }
.doc-updated { font-size: .78rem; color: rgba(255,255,255,.35); margin-top: 1.5rem; }

.doc-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) { .doc-layout { grid-template-columns: 16rem 1fr; gap: 4rem; } }

.doc-toc {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.3rem;
  padding: 1.4rem;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
}
@media (min-width: 1024px) { .doc-toc { position: sticky; top: 6.5rem; } }
.doc-toc-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(14,14,22,.45);
  margin-bottom: .9rem;
}
.doc-toc ol { counter-reset: toc; display: flex; flex-direction: column; gap: .1rem; }
.doc-toc a {
  display: block;
  font-size: .85rem;
  line-height: 1.45;
  padding: .5rem .6rem;
  margin-left: -.6rem;
  border-radius: .55rem;
  color: rgba(14,14,22,.65);
  transition: background-color .15s ease, color .15s ease;
}
.doc-toc a:hover { background: rgba(108,76,255,.08); color: #6C4CFF; }
.doc-toc-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(14,14,22,.08);
  font-size: .85rem;
  font-weight: 600;
  color: #6C4CFF;
  transition: gap .15s ease;
}
.doc-toc-cta:hover { gap: .75rem; }

.doc-body { max-width: 44rem; }
.doc-section + .doc-section { margin-top: 2.75rem; }
.doc-h2 {
  display: flex;
  align-items: baseline;
  gap: .75rem;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: -.02em;
  margin-bottom: .9rem;
}
.doc-num { font-size: .8rem; color: #6C4CFF; flex-shrink: 0; letter-spacing: .04em; }
.doc-body p { font-size: .95rem; line-height: 1.75; color: rgba(14,14,22,.7); }
.doc-body p + p { margin-top: .9rem; }
.doc-body a { color: #6C4CFF; text-decoration: underline; text-underline-offset: 2px; }
.doc-body a:hover { color: #4B2FD1; }
.doc-body strong { color: #0E0E16; font-weight: 600; }
.doc-list { margin-top: .9rem; display: flex; flex-direction: column; gap: .6rem; }
.doc-list li {
  position: relative;
  padding-left: 1.5rem;
  font-size: .95rem;
  line-height: 1.7;
  color: rgba(14,14,22,.7);
}
.doc-list li::before {
  content: "";
  position: absolute;
  left: .35rem; top: .68rem;
  width: 5px; height: 5px;
  border-radius: 999px;
  background: #6C4CFF;
}

/* ============================================================
   Brand mark
   ============================================================ */
.brand-mark { border-radius: 10px; flex-shrink: 0; }
.brand-mark .brand-arc { transform-origin: 43px 32px; }
a:hover .brand-mark .brand-arc-1 { animation: brand-ping 1.1s ease-out; }
a:hover .brand-mark .brand-arc-2 { animation: brand-ping 1.1s ease-out .12s; }
@keyframes brand-ping {
  0%   { opacity: .2; transform: scale(.82); }
  55%  { opacity: 1;  transform: scale(1.06); }
  100% { opacity: .9; transform: scale(1); }
}

/* ============================================================
   Header cart + shop button
   ============================================================ */
.cart-pill {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  height: 40px;
  padding: 0 .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.07);
  color: #FAFAF6;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.cart-pill:hover { background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.32); }
.cart-pill:active { transform: scale(.96); }
#site-header.scrolled .cart-pill {
  color: #0E0E16;
  border-color: rgba(14,14,22,.14);
  background: rgba(14,14,22,.04);
}
#site-header.scrolled .cart-pill:hover { background: rgba(108,76,255,.1); border-color: rgba(108,76,255,.35); }

.cart-pill-count {
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: #FF6B4A;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 20px;
  text-align: center;
  transition: transform .25s cubic-bezier(.2,1.6,.4,1), opacity .2s ease, width .2s ease;
}
.cart-pill-count.is-empty { display: none; }
.cart-pill-count.bump { animation: cart-bump .45s cubic-bezier(.2,1.6,.4,1); }
@keyframes cart-bump {
  0%   { transform: scale(1); }
  40%  { transform: scale(1.45); }
  100% { transform: scale(1); }
}

.btn-shop {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .72rem 1.35rem;
  border-radius: .85rem;
  font-weight: 700;
  font-size: .9rem;
  color: #fff;
  overflow: hidden;
  cursor: pointer;
  background: linear-gradient(120deg, #6C4CFF, #8A6BFF, #FF6B4A, #6C4CFF);
  background-size: 300% 100%;
  animation: shop-flow 7s ease infinite;
  box-shadow: 0 10px 26px -10px rgba(108,76,255,.85);
  transition: transform .18s ease, box-shadow .18s ease;
}
@keyframes shop-flow {
  0%, 100% { background-position: 0% 50%; }
  50%      { background-position: 100% 50%; }
}
.btn-shop::after {
  content: "";
  position: absolute;
  top: 0; left: -60%;
  width: 40%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.45), transparent);
  transform: skewX(-18deg);
  animation: btn-shine 4.5s ease-in-out infinite;
}
.btn-shop:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -10px rgba(108,76,255,.95); }
.btn-shop svg { transition: transform .18s ease; }
.btn-shop:hover svg { transform: translateX(3px); }
.btn-shop span { position: relative; z-index: 2; }

@media (prefers-reduced-motion: reduce) {
  .btn-shop, .btn-shop::after { animation: none !important; }
  .brand-mark .brand-arc { animation: none !important; }
}

/* ============================================================
   Hero headline sizing
   ============================================================ */
.hero-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.05;
  letter-spacing: -.03em;
  margin-top: 1.25rem;
  text-wrap: balance;
}
@media (min-width: 640px) { .hero-title { font-size: 3.6rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 4rem; } }
.hero-lede {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255,255,255,.7);
  max-width: 28rem;
}

/* ============================================================
   Decorative product cut-outs
   ============================================================ */
.deco {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  user-select: none;
  object-fit: contain;
  will-change: transform;
}
@media (max-width: 767px) { .deco { display: none; } }

.deco-hero-bud {
  width: 12rem;
  left: -3rem; bottom: -2rem;
  opacity: .16;
  filter: blur(.5px) drop-shadow(0 20px 30px rgba(0,0,0,.5));
  --r: -14deg;
  animation: deco-float 11s ease-in-out infinite;
}
.deco-caps {
  width: 15rem;
  right: -4rem; top: 3rem;
  opacity: .12;
  --r: 12deg;
  animation: deco-float 13s ease-in-out infinite reverse;
}
.deco-products {
  width: 20rem;
  left: -6rem; bottom: 2rem;
  opacity: .10;
  animation: deco-sway 16s ease-in-out infinite;
}
.deco-reviews {
  width: 14rem;
  right: -3.5rem; top: 6rem;
  opacity: .11;
  --r: -8deg;
  animation: deco-float 12s ease-in-out infinite;
}
.deco-cmp {
  width: 22rem;
  left: -5rem; bottom: -3rem;
  opacity: .13;
  animation: deco-sway 18s ease-in-out infinite;
}
.deco-faq {
  width: 16rem;
  right: -4rem; bottom: 2rem;
  opacity: .10;
  --r: 6deg;
  animation: deco-float 14s ease-in-out infinite reverse;
}
.deco-footer {
  width: 21rem;
  right: -4rem; top: -3rem;
  opacity: .07;
  animation: deco-sway 20s ease-in-out infinite;
}
.deco-doc {
  width: 11rem;
  right: 4%; bottom: -2rem;
  opacity: .13;
  --r: 10deg;
  animation: deco-float 12s ease-in-out infinite;
}
.deco-contact {
  width: 15rem;
  right: 5%; bottom: 2rem;
  opacity: .14;
  animation: deco-float 13s ease-in-out infinite;
}
.deco-pdp-why {
  width: 15rem;
  right: -4rem; top: 1rem;
  opacity: .10;
  --r: -10deg;
  animation: deco-float 13s ease-in-out infinite;
}
.deco-pdp-final {
  width: 20rem;
  left: -4rem; bottom: -3rem;
  opacity: .12;
  animation: deco-sway 17s ease-in-out infinite;
}

/* --px is written by the scroll parallax; keep it inside the keyframes so the
   two motions add up instead of fighting each other. */
@keyframes deco-float {
  0%, 100% { transform: translate3d(0, var(--px, 0px), 0) rotate(var(--r, 0deg)); }
  50%      { transform: translate3d(0, calc(var(--px, 0px) - 22px), 0) rotate(calc(var(--r, 0deg) + 3deg)); }
}
@keyframes deco-sway {
  0%, 100% { transform: translate3d(0, var(--px, 0px), 0) rotate(var(--r, 0deg)); }
  50%      { transform: translate3d(14px, calc(var(--px, 0px) - 16px), 0) rotate(calc(var(--r, 0deg) - 3deg)); }
}
@media (prefers-reduced-motion: reduce) {
  .deco { animation: none !important; transform: none !important; }
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section {
  position: relative;
  overflow: hidden;
  padding: 5rem 0;
  background: linear-gradient(180deg, #F2F0EA 0%, #F7F5F0 60%, #FAFAF6 100%);
}
@media (min-width: 640px) { .faq-section { padding: 7rem 0; } }

.faq-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(80px);
  pointer-events: none;
}
.faq-orb-a {
  width: 30rem; height: 30rem;
  top: -8rem; left: -10rem;
  background: radial-gradient(circle, rgba(108,76,255,.24), transparent 70%);
  animation: faq-orb 18s ease-in-out infinite;
}
.faq-orb-b {
  width: 26rem; height: 26rem;
  bottom: -10rem; right: -8rem;
  background: radial-gradient(circle, rgba(255,107,74,.2), transparent 70%);
  animation: faq-orb 22s ease-in-out infinite reverse;
}
@keyframes faq-orb {
  0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
  50%      { transform: translate3d(30px, -24px, 0) scale(1.12); }
}

.faq-layout { display: grid; gap: 2.5rem; align-items: start; }
@media (min-width: 1024px) {
  .faq-layout { grid-template-columns: 1fr 1.35fr; gap: 4rem; }
  .faq-aside { position: sticky; top: 7rem; }
}

.faq-help {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 2rem;
  padding: 1.1rem 1.2rem;
  border-radius: 1.2rem;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  box-shadow: 0 14px 34px -26px rgba(14,14,22,.5);
}
.faq-help-ic {
  display: flex; align-items: center; justify-content: center;
  width: 42px; height: 42px;
  flex-shrink: 0;
  border-radius: .9rem;
  background: rgba(108,76,255,.1);
  color: #6C4CFF;
}
.faq-help-title { font-weight: 600; font-size: .9rem; }
.faq-help-text { font-size: .8rem; color: rgba(14,14,22,.5); margin-top: .1rem; }
.faq-help-link {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  margin-left: auto;
  border-radius: 50%;
  background: #0E0E16;
  color: #fff;
  transition: background-color .18s ease, transform .18s ease;
}
.faq-help-link:hover { background: #6C4CFF; transform: translateX(3px); }

.faq-list { display: flex; flex-direction: column; gap: .75rem; }

.faq-item {
  position: relative;
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.2rem;
  padding: 0 1.4rem 0 1.5rem;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(14,14,22,.04);
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.faq-item:hover { transform: translateX(3px); border-color: rgba(108,76,255,.22); }
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: rgba(108,76,255,.32);
  box-shadow: 0 22px 44px -28px rgba(108,76,255,.85);
}

/* gradient rail that grows down the side when the row opens */
.faq-rail {
  position: absolute;
  left: 0; top: 0;
  width: 3px;
  height: 100%;
  transform: scaleY(0);
  transform-origin: top;
  background: linear-gradient(180deg, #6C4CFF, #FF8A6B);
  transition: transform .35s cubic-bezier(.2,.7,.3,1);
}
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-rail { transform: scaleY(1); }

.faq-question {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.35rem 0;
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: .98rem;
  line-height: 1.4;
  color: #0E0E16;
}
.faq-num {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(14,14,22,.28);
  flex-shrink: 0;
  transition: color .25s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) .faq-num { color: #6C4CFF; }
.faq-q-text { flex: 1; }

.faq-toggle-icon {
  width: 30px; height: 30px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(14,14,22,.06);
  color: #0E0E16;
  display: flex; align-items: center; justify-content: center;
  transition: background-color .25s ease, color .25s ease, transform .35s cubic-bezier(.2,.7,.3,1);
}
.faq-question:hover .faq-toggle-icon { background: rgba(108,76,255,.14); color: #6C4CFF; }
.faq-question[aria-expanded="true"] .faq-toggle-icon {
  background: #6C4CFF;
  color: #fff;
  transform: rotate(135deg);
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows .35s cubic-bezier(.2,.7,.3,1);
}
.faq-answer.open { grid-template-rows: 1fr; }
.faq-answer p {
  overflow: hidden;
  min-height: 0;
  padding: 0 0 1.35rem 2.4rem;
  font-size: .9rem;
  color: rgba(14,14,22,.62);
  line-height: 1.7;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity .3s ease .05s, transform .3s ease .05s;
}
.faq-answer.open p { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .faq-orb { animation: none !important; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  background: #0E0E16;
  color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
  overflow: hidden;
}
.footer-rule {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, #6C4CFF, #FF6B4A, #6C4CFF, transparent);
  background-size: 220% 100%;
  animation: footer-rule 9s linear infinite;
}
@keyframes footer-rule {
  0%   { background-position: 0% 0; }
  100% { background-position: 220% 0; }
}
.footer-glow {
  position: absolute;
  top: -14rem; left: 50%;
  width: 46rem; height: 30rem;
  margin-left: -23rem;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(108,76,255,.26), transparent 68%);
  filter: blur(70px);
  pointer-events: none;
}

.footer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding: 1.9rem 2rem;
  margin-bottom: 3.5rem;
  border-radius: 1.5rem;
  background: linear-gradient(135deg, rgba(108,76,255,.18), rgba(255,107,74,.1));
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(8px);
}
.footer-cta-title {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: -.02em;
  color: #FAFAF6;
}
@media (min-width: 640px) { .footer-cta-title { font-size: 1.75rem; } }
.footer-cta-text { font-size: .92rem; color: rgba(255,255,255,.6); margin-top: .4rem; }

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.5fr; gap: 2rem; } }

.footer-blurb { margin-top: 1rem; font-size: .88rem; line-height: 1.65; max-width: 20rem; }
.footer-social { display: flex; align-items: center; gap: .6rem; margin-top: 1.4rem; }

.footer-heading {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .82rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .2rem; }
.footer-link {
  display: inline-flex;
  align-items: center;
  font-size: .88rem;
  padding: .3rem 0;
  transition: color .18s ease, transform .18s ease;
}
.footer-link::before {
  content: "";
  width: 0;
  height: 1px;
  margin-right: 0;
  background: #6C4CFF;
  transition: width .22s ease, margin-right .22s ease;
}
.footer-link:hover { color: #fff; }
.footer-link:hover::before { width: 12px; margin-right: 8px; }

.footer-contacts ul { gap: .7rem; }
.footer-contact {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
  font-size: .88rem;
  line-height: 1.5;
  transition: color .18s ease;
}
.footer-contact svg { flex-shrink: 0; margin-top: .15rem; color: rgba(255,255,255,.4); transition: color .18s ease; }
a.footer-contact { word-break: break-word; }
a.footer-contact:hover { color: #fff; }
a.footer-contact:hover svg { color: #B8A9FF; }
.footer-contact-cta {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.3rem;
  font-size: .85rem;
  font-weight: 600;
  color: #B8A9FF;
  transition: gap .18s ease, color .18s ease;
}
.footer-contact-cta:hover { gap: .8rem; color: #fff; }

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  font-size: .78rem;
  font-weight: 500;
  color: rgba(255,255,255,.65);
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease;
}
.footer-badge svg { color: #8FE3A6; flex-shrink: 0; }
.footer-badge:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(184,169,255,.3);
  transform: translateY(-2px);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .78rem;
  color: rgba(255,255,255,.4);
}
.footer-bottom ul { display: flex; align-items: center; gap: 1.25rem; flex-wrap: wrap; }
.footer-bottom .footer-link { font-size: .78rem; }

@media (prefers-reduced-motion: reduce) {
  .footer-rule { animation: none; }
}
