: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 */
@keyframes announce-scroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-50%, 0, 0); }
}

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

/* 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);
}
/* dark header by default, light once scrolled */
.header-icon-btn, .nav-link { color: #FAFAF6; }
#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 */
@media (max-width: 380px) {
}

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

/* Reveal animation */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.js .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: 'Montserrat', sans-serif;
  font-weight: 900;
  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: 'Montserrat', 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: 'Montserrat', sans-serif;
  font-weight: 900;
  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; }
/* real customer photo; the gradient shows only while it loads */
.avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C4CFF, #FF6B4A);
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}


/* 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: 'Montserrat', 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: 'Montserrat', 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; }
.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 ============ */
@media (prefers-reduced-motion: reduce) { .contact-hero-glow { animation: none; } }

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


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

@media (min-width: 640px) { .contact-form-card { padding: 2.5rem; } }

.contact-form-card select,
.contact-form-card select:focus,

/* 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: 'Montserrat', 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 */
@media (max-width: 400px) {
}

/* ============================================================
   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: 'Montserrat', sans-serif;
  font-weight: 900;
  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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', sans-serif; font-weight: 900; 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:first-child { opacity: 1; transform: none; pointer-events: auto; position: relative; }
.js .rv-slide:first-child:not(.is-active) { opacity: 0; transform: translateY(14px) scale(.98); pointer-events: none; position: absolute; }
.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: 42px; height: 42px; }
.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: 'Montserrat', sans-serif;
  font-weight: 900;
  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: 'Montserrat', 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: 'Montserrat', 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);
}
.js .cmp-row { 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;
}
.js .cmp-yes { 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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', 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; }
.pdp-grid > * { min-width: 0; }
@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-shot {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%; height: 100%;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.pdp-shot.is-on { opacity: 1; pointer-events: auto; }
.pdp-shot-product {
  object-fit: contain;
  padding: 2rem;
  transform: scale(var(--img-scale, 1));
  filter: drop-shadow(0 22px 34px rgba(14,14,22,.22));
}
.pdp-shot-scene { object-fit: cover; }
.pdp-discount {
  position: absolute;
  z-index: 3;
  top: 1.1rem; right: 1.1rem;
  font-family: 'Montserrat', 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: 'Montserrat', sans-serif;
  font-weight: 900;
  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: 'Montserrat', sans-serif; font-weight: 900; 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-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: 'Montserrat', 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; }
.pdp-specs-grid > * { min-width: 0; }
@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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', 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: 'Montserrat', sans-serif; font-weight: 900; 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: 'Montserrat', 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: 'Montserrat', sans-serif;
  font-weight: 900;
  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; }
.doc-layout > * { min-width: 0; }
@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: 'Montserrat', 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
   ============================================================ */

/* ============================================================
   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; }
}

/* ============================================================
   Hero headline sizing
   ============================================================ */
.hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.15rem;
  line-height: 1.06;
  letter-spacing: -.035em;
  margin-top: 1.25rem;
  text-wrap: balance;
}
@media (min-width: 640px)  { .hero-title { font-size: 2.9rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 2.7rem; } }
@media (min-width: 1280px) { .hero-title { font-size: 3.25rem; } }
@media (min-width: 1536px) { .hero-title { font-size: 3.6rem; } }
.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; }
.faq-layout > * { min-width: 0; }
@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: 'Montserrat', 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; }
}

@media (min-width: 640px) { .footer-cta-title { font-size: 1.75rem; } }

@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-heading {
  font-family: 'Montserrat', 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; }

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

/* Inline CTA band, reused on the About page */
.faq-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  border-radius: 1.5rem;
  background: #0E0E16;
  color: #fff;
}
.faq-cta-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 1.15rem; }
.faq-cta-text { font-size: .9rem; color: rgba(255,255,255,.6); margin-top: .3rem; }

/* ============================================================
   Hero trust chips — compact, one line each
   ============================================================ */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 2rem;
}
.hero-stat {
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
  padding: .5rem .85rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
  backdrop-filter: blur(6px);
  font-size: .82rem;
  white-space: nowrap;
  transition: border-color .2s ease, background-color .2s ease, transform .2s ease;
}
.hero-stat:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,169,255,.45);
  transform: translateY(-2px);
}
@keyframes chip-in { from { opacity: 0; transform: translateY(10px); } }
@media (prefers-reduced-motion: no-preference) {
  .hero-stat, .ct-channel {
    animation: chip-in .5s cubic-bezier(.2,.9,.3,1) both;
    animation-delay: var(--d, 0ms);
  }
}
.hero-stat svg { align-self: center; color: #B8A9FF; flex-shrink: 0; }
.hero-stat b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: .92rem;
  color: #FAFAF6;
  letter-spacing: -.01em;
  font-variant-numeric: tabular-nums;
}
.hero-stat span { color: rgba(255,255,255,.55); font-size: .78rem; }
@media (max-width: 380px) {
  .hero-stat { padding: .42rem .7rem; font-size: .76rem; }
  .hero-stat b { font-size: .85rem; }
}


/* extra cut-outs behind the product showcase */
.deco-products-2 { width: 9rem;  right: 4%;  top: 12%;  opacity: .12; --r: 14deg;  animation: deco-float 12s ease-in-out infinite; }
.deco-products-3 { width: 13rem; right: -3rem; bottom: 6%; opacity: .09; --r: -8deg; animation: deco-float 15s ease-in-out infinite reverse; }
.deco-products-4 { width: 10rem; left: 6%;   top: 6%;   opacity: .08; --r: -18deg; animation: deco-sway 19s ease-in-out infinite; }
.products-orb {
  position: absolute;
  width: 34rem; height: 34rem;
  top: 50%; left: 50%;
  margin: -17rem 0 0 -17rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(108,76,255,.14), transparent 68%);
  filter: blur(70px);
  pointer-events: none;
  animation: faq-orb 20s ease-in-out infinite;
}

/* ============================================================
   Chat widget
   ============================================================ */
.chat-fab {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 75;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  height: 54px;
  padding: 0 1.15rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(135deg, #6C4CFF, #8A6BFF);
  box-shadow: 0 14px 34px -10px rgba(108,76,255,.85);
  transition: transform .2s cubic-bezier(.2,1.4,.4,1), box-shadow .2s ease;
}
.chat-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 20px 40px -10px rgba(108,76,255,.95); }
.chat-fab-label { font-size: .88rem; font-weight: 700; }
.chat-fab-close { display: none; }
.chat-fab.is-open .chat-fab-open,
.chat-fab.is-open .chat-fab-label { display: none; }
.chat-fab.is-open .chat-fab-close { display: block; }
.chat-fab.is-open { padding: 0; width: 54px; justify-content: center; }
.chat-fab-ping {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 2px solid rgba(138,107,255,.6);
  animation: chat-ping 2.8s ease-out infinite;
  pointer-events: none;
}
.chat-fab.is-open .chat-fab-ping { display: none; }
@keyframes chat-ping {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}
@media (max-width: 480px) { .chat-fab-label { display: none; } .chat-fab { padding: 0; width: 54px; justify-content: center; } }

.chat-panel {
  position: fixed;
  right: 1.25rem;
  bottom: 5.5rem;
  z-index: 76;
  width: min(24rem, calc(100vw - 2rem));
  height: min(34rem, calc(100vh - 8rem));
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(14,14,22,.09);
  border-radius: 1.4rem;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(14,14,22,.4);
  opacity: 0;
  transform: translateY(14px) scale(.96);
  transform-origin: bottom right;
  pointer-events: none;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,1.2,.4,1);
}
.chat-panel.is-open { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }

.chat-head {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .9rem 1rem;
  background: #0E0E16;
  color: #fff;
  flex-shrink: 0;
}
.chat-avatar {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #6C4CFF, #FF6B4A);
  color: #fff;
}
.chat-head-title { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: .9rem; }
.chat-head-status { display: flex; align-items: center; gap: .35rem; font-size: .72rem; color: rgba(255,255,255,.55); margin-top: .1rem; }
.chat-dot { width: 6px; height: 6px; border-radius: 999px; background: #8FE3A6; animation: badge-pulse 2.2s ease-out infinite; }
.chat-close {
  margin-left: auto;
  width: 30px; height: 30px;
  border: none; border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background-color .15s ease;
}
.chat-close:hover { background: rgba(255,255,255,.2); }

.chat-log {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
  background: #FAFAF6;
}
.chat-msg {
  max-width: 88%;
  padding: .7rem .9rem;
  border-radius: 1rem;
  font-size: .85rem;
  line-height: 1.55;
  animation: msg-in .3s cubic-bezier(.2,.9,.3,1);
}
@keyframes msg-in { from { opacity: 0; transform: translateY(8px); } }
.chat-msg-bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid rgba(14,14,22,.08);
  border-bottom-left-radius: .35rem;
  color: rgba(14,14,22,.8);
}
.chat-msg-me {
  align-self: flex-end;
  background: linear-gradient(135deg, #6C4CFF, #8A6BFF);
  border-bottom-right-radius: .35rem;
  color: #fff;
  font-weight: 500;
}
.chat-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .6rem;
  font-weight: 600;
  font-size: .82rem;
  color: #6C4CFF;
  transition: gap .15s ease;
}
.chat-link:hover { gap: .65rem; }

.chat-typing { display: flex; gap: 4px; padding: .85rem .9rem; }
.chat-typing span {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: rgba(14,14,22,.3);
  animation: typing 1.2s ease-in-out infinite;
}
.chat-typing span:nth-child(2) { animation-delay: .18s; }
.chat-typing span:nth-child(3) { animation-delay: .36s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .4; }
  30%           { transform: translateY(-5px); opacity: 1; }
}

.chat-options {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: .75rem 1rem;
  max-height: 8.5rem;
  overflow-y: auto;
  border-top: 1px solid rgba(14,14,22,.07);
  background: #fff;
  flex-shrink: 0;
}
.chat-chip {
  padding: .45rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(108,76,255,.3);
  background: rgba(108,76,255,.06);
  color: #4B2FD1;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease, transform .15s ease;
}
.chat-chip:hover { background: rgba(108,76,255,.14); transform: translateY(-1px); }
.chat-chip-alt { border-color: rgba(14,14,22,.15); background: rgba(14,14,22,.04); color: rgba(14,14,22,.7); }

.chat-foot {
  padding: .6rem 1rem .8rem;
  font-size: .7rem;
  color: rgba(14,14,22,.45);
  background: #fff;
  border-top: 1px solid rgba(14,14,22,.05);
  flex-shrink: 0;
}
.chat-foot a { color: #6C4CFF; font-weight: 600; }

/* the product page already pins a buy bar to the bottom on mobile */
@media (max-width: 767px) {
  body:has(.pdp-sticky) .chat-fab { bottom: 5.25rem; }
  body:has(.pdp-sticky) .chat-panel { bottom: 9.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .chat-fab-ping { display: none; }
  .chat-msg, .chat-typing span { animation: none; }
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  position: relative;
  background: #0E0E16;
  color: rgba(255,255,255,.7);
  padding: 2.75rem 0 1.5rem;
  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-aurora {
  position: absolute;
  top: -18rem; left: 50%;
  width: 60rem; height: 38rem;
  margin-left: -30rem;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(108,76,255,.3), rgba(255,107,74,.1) 45%, transparent 70%);
  filter: blur(80px);
  pointer-events: none;
  animation: faq-orb 24s ease-in-out infinite;
}
.deco-footer   { width: 19rem; right: -4rem; top: -2rem;  opacity: .07; --r: 8deg;  animation: deco-sway 20s ease-in-out infinite; }
.deco-footer-2 { width: 8rem;  left: 3%;    bottom: 4rem; opacity: .06; --r: -16deg; animation: deco-float 15s ease-in-out infinite; }

.footer-hero {
  display: grid;
  gap: 2rem;
  align-items: center;
  padding-bottom: 2.25rem;
  margin-bottom: 2.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 1024px) { .footer-hero { grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 3rem; align-items: center; } }
.footer-hero-side { display: flex; flex-direction: column; gap: .75rem; align-items: flex-start; }
@media (min-width: 1024px) { .footer-hero-side { align-items: stretch; max-width: 26rem; margin-left: auto; } }

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: .78rem;
  color: #B8A9FF;
}
.footer-kicker-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #8FE3A6;
  animation: badge-pulse 2.2s ease-out infinite;
}
.footer-hero-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.55rem;
  line-height: 1.15;
  letter-spacing: -.025em;
  color: #FAFAF6;
  margin-top: 1rem;
}
@media (min-width: 640px) { .footer-hero-title { font-size: 2rem; } }
.footer-hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: 1.75rem; }

.footer-marks {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
}
.footer-marks li {
  display: flex;
  align-items: baseline;
  gap: .35rem;
  padding: .45rem .75rem;
  border-radius: .7rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  white-space: nowrap;
  font-size: .76rem;
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.footer-marks li:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(184,169,255,.35);
  transform: translateY(-2px);
}
.footer-marks svg { width: 13px; height: 13px; align-self: center; color: #8FE3A6; flex-shrink: 0; }
.footer-marks b { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .78rem; color: #FAFAF6; }
.footer-marks span { font-size: .72rem; color: rgba(255,255,255,.5); }

.footer-grid { display: grid; gap: 2rem; 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.4fr; gap: 2rem; } }

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

.footer-heading {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  color: #fff;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .15rem; }
.footer-link {
  display: inline-flex;
  align-items: center;
  font-size: .87rem;
  padding: .28rem 0;
  transition: color .18s ease;
}
.footer-link::before {
  content: "";
  width: 0; height: 1px;
  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-touch {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .7rem .8rem;
  margin-left: -.8rem;
  border-radius: .9rem;
  transition: background-color .18s ease, transform .18s ease;
}
.footer-touch + .footer-touch { margin-top: .2rem; }
.footer-touch:hover { background: rgba(255,255,255,.06); transform: translateX(3px); }
.footer-touch-ic {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: .7rem;
  background: rgba(108,76,255,.18);
  color: #B8A9FF;
  transition: background-color .18s ease, color .18s ease;
}
.footer-touch:hover .footer-touch-ic { background: #6C4CFF; color: #fff; }
.footer-touch-body { display: flex; flex-direction: column; min-width: 0; }
.footer-touch-body b { font-size: .85rem; font-weight: 600; color: #fff; word-break: break-word; }
.footer-touch-body em { font-style: normal; font-size: .74rem; color: rgba(255,255,255,.45); margin-top: .1rem; }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,.08);
  font-size: .76rem;
  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: .76rem; }

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

/* ============================================================
   Contact page
   ============================================================ */
.ct-section {
  position: relative;
  overflow: hidden;
  padding: 4rem 0 5rem;
  background: #0E0E16;
}
@media (min-width: 1024px) { .ct-section { padding: 5rem 0 6rem; } }
.ct-orb { position: absolute; border-radius: 999px; filter: blur(80px); pointer-events: none; }
.ct-orb-a {
  width: 34rem; height: 34rem; top: -12rem; right: -8rem;
  background: radial-gradient(circle, rgba(124,92,255,.4), transparent 68%);
  animation: faq-orb 20s ease-in-out infinite;
}
.ct-orb-b {
  width: 26rem; height: 26rem; bottom: 2rem; left: -10rem;
  background: radial-gradient(circle, rgba(255,107,74,.18), transparent 70%);
  animation: faq-orb 26s ease-in-out infinite reverse;
}

.ct-grid { display: grid; gap: 2rem; align-items: start; }
.ct-grid > * { min-width: 0; }
@media (min-width: 1024px) { .ct-grid { grid-template-columns: 1fr 1.1fr; gap: 3.5rem; } }

.ct-aside { color: #FAFAF6; padding-top: .5rem; }
.ct-aside .eyebrow { color: #B8A9FF; }
.ct-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.2rem;
  line-height: 1.08;
  letter-spacing: -.03em;
  margin-top: .6rem;
}
@media (min-width: 640px) { .ct-title { font-size: 2.9rem; } }
.ct-lede { font-size: 1rem; color: rgba(255,255,255,.6); margin-top: .9rem; }

.ct-channels { display: flex; flex-direction: column; gap: .6rem; margin-top: 2rem; }
.ct-channel {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border-radius: 1rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(6px);
  transition: background-color .2s ease, border-color .2s ease, transform .2s ease;
}
.ct-channel:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(184,169,255,.4);
  transform: translateX(4px);
}
.ct-channel-ic {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: .8rem;
  background: rgba(108,76,255,.22);
  color: #B8A9FF;
  transition: background-color .2s ease, color .2s ease;
}
.ct-channel:hover .ct-channel-ic { background: #6C4CFF; color: #fff; }
.ct-channel-body { display: flex; flex-direction: column; min-width: 0; }
.ct-channel-body b { font-size: .9rem; font-weight: 600; color: #fff; word-break: break-word; }
.ct-channel-body em { font-style: normal; font-size: .74rem; color: rgba(255,255,255,.45); margin-top: .1rem; }
.ct-channel-go { margin-left: auto; flex-shrink: 0; color: rgba(255,255,255,.35); transition: transform .2s ease, color .2s ease; }
.ct-channel:hover .ct-channel-go { color: #fff; transform: translateX(3px); }

.ct-quick { display: flex; flex-wrap: wrap; gap: .4rem; margin-top: 1.5rem; }
.ct-quick a {
  display: inline-block;
  padding: .4rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  font-size: .76rem;
  color: rgba(255,255,255,.6);
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}
.ct-quick a:hover { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(184,169,255,.4); }

.ct-card {
  background: #fff;
  border: 1px solid rgba(14,14,22,.07);
  border-radius: 1.5rem;
  padding: 1.75rem;
  box-shadow: 0 34px 70px -34px rgba(14,14,22,.6);
}
@media (min-width: 640px) { .ct-card { padding: 2.25rem; } }
.ct-card select,
.ct-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;
}
.ct-card textarea { resize: vertical; min-height: 6rem; line-height: 1.55; }
.ct-card select:focus,
.ct-card textarea:focus { border-color: #6C4CFF; box-shadow: 0 0 0 3px rgba(108,76,255,.15); outline: none; }
.ct-card textarea.invalid { border-color: #FF6B4A; }
.ct-note { font-size: .72rem; text-align: center; color: rgba(14,14,22,.4); margin-top: .8rem; }

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

}

/* extra breathing room so the dark hero doesn't run into the dark
   capabilities banner below it */


/* a chip the visitor already asked reads as visited */
.chat-chip.is-answered {
  opacity: .55;
  border-color: rgba(14,14,22,.12);
  background: rgba(14,14,22,.03);
  color: rgba(14,14,22,.55);
}
.chat-chip.is-answered:hover { opacity: .85; }

/* contact form on the dark section */
.ct-card .field label { color: rgba(14,14,22,.65); }
.ct-card .field { display: flex; flex-direction: column; gap: .35rem; }
.ct-card .field input {
  border: 1px solid rgba(14,14,22,.15);
  border-radius: .7rem;
  padding: .65rem .8rem;
  font-size: .9rem;
  background: #fff;
  color: #0E0E16;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ct-card .field input:focus {
  border-color: #6C4CFF;
  box-shadow: 0 0 0 3px rgba(108,76,255,.15);
  outline: none;
}
.ct-card .field input.invalid { border-color: #FF6B4A; }
.ct-card .field-error { font-size: .75rem; color: #E8523A; min-height: 1em; }
.ct-section .deco-contact { opacity: .12; }

/* ============================================================
   Announcement bar
   ============================================================ */
.announce-bar {
  position: relative;
  background: linear-gradient(100deg, #16101F, #0E0E16 42%, #0E0E16 62%, #1B1119);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.announce-bar::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(108,76,255,.8), rgba(255,107,74,.8), transparent);
  background-size: 200% 100%;
  animation: footer-rule 7s linear infinite;
}
.announce-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 .75rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  height: 42px;
}

.announce-flag {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  flex-shrink: 0;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #6C4CFF, #FF6B4A);
  color: #fff;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .06em;
  box-shadow: 0 6px 18px -8px rgba(255,107,74,.9);
}
.announce-flag-dot {
  width: 6px; height: 6px;
  border-radius: 999px;
  background: #fff;
  animation: badge-pulse 2s ease-out infinite;
}

.announce-viewport {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}
.announce-track {
  display: flex;
  width: max-content;
  animation: announce-scroll 34s 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: .4rem;
  height: 42px;
  padding: 0 1.1rem;
  font-size: 12.5px;
  white-space: nowrap;
}
.announce-item b { font-weight: 700; color: #FAFAF6; }
.announce-item i { font-style: normal; color: rgba(255,255,255,.5); }
.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,.25);
  flex-shrink: 0;
}

.announce-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  flex-shrink: 0;
  padding: .35rem .8rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  transition: background-color .18s ease, border-color .18s ease, gap .18s ease;
}
.announce-cta:hover { background: rgba(255,255,255,.12); border-color: rgba(184,169,255,.6); gap: .55rem; }

@media (max-width: 860px) { .announce-cta { display: none; } }
@media (max-width: 560px) { .announce-flag { display: none; } .announce-inner { padding: 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; }
  .announce-bar::after { animation: none; }
}

/* hero tall enough that the next section stays below the fold */
.hero-inner {
  padding-top: 3.5rem;
  padding-bottom: 4.5rem;
}
@media (min-width: 1024px) {
  .hero-inner {
    min-height: calc(100vh - 114px);   /* announce bar + sticky header */
    padding-top: 4rem;
    padding-bottom: 6rem;
  }
}
@media (min-width: 1280px) { .hero-inner { padding-bottom: 7rem; } }

/* honeypot: off-screen for people, still fillable by naive bots */
.ct-hp {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* ============================================================
   Checkout page
   ============================================================ */
.co-section {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 5rem;
  background: linear-gradient(180deg, #0E0E16 0%, #12121C 100%);
  min-height: 70vh;
}
.co-orb { position: absolute; border-radius: 999px; filter: blur(90px); pointer-events: none; }
.co-orb-a {
  width: 36rem; height: 36rem; top: -14rem; right: -10rem;
  background: radial-gradient(circle, rgba(124,92,255,.34), transparent 68%);
  animation: faq-orb 22s ease-in-out infinite;
}
.co-orb-b {
  width: 28rem; height: 28rem; bottom: -8rem; left: -10rem;
  background: radial-gradient(circle, rgba(255,107,74,.16), transparent 70%);
  animation: faq-orb 28s ease-in-out infinite reverse;
}

.co-crumbs {
  display: flex; align-items: center; gap: .5rem;
  font-size: .8rem; color: rgba(255,255,255,.4);
  padding-bottom: 1.5rem;
}
.co-crumbs a:hover { color: #fff; }
.co-crumbs [aria-current] { color: rgba(255,255,255,.8); }

.co-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap; margin-bottom: 2rem;
}
.co-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.9rem;
  letter-spacing: -.03em;
  color: #FAFAF6;
}
@media (min-width: 640px) { .co-title { font-size: 2.4rem; } }

.co-steps { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.co-step {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .4rem .85rem;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: border-color .2s, color .2s, background-color .2s;
}
.co-step span {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px; border-radius: 999px;
  background: rgba(255,255,255,.1);
  font-size: .7rem; font-weight: 700;
}
.co-step.is-on { color: #fff; border-color: rgba(184,169,255,.5); background: rgba(108,76,255,.16); }
.co-step.is-on span { background: #6C4CFF; color: #fff; }
.co-step.is-done { color: #8FE3A6; border-color: rgba(143,227,166,.35); }
.co-step.is-done span { background: rgba(143,227,166,.2); color: #8FE3A6; }

.co-grid { display: grid; gap: 1.25rem; align-items: start; }
.co-grid > * { min-width: 0; }
@media (min-width: 1024px) { .co-grid { grid-template-columns: 1.55fr 1fr; gap: 2rem; } }
.co-main { display: flex; flex-direction: column; gap: 1.25rem; }

.co-card {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 26px 60px -34px rgba(0,0,0,.9);
}
@media (min-width: 640px) { .co-card { padding: 1.9rem; } }
.co-card-title {
  display: flex; align-items: center; gap: .7rem;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}
.co-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6C4CFF, #8A6BFF);
  color: #fff; font-size: .8rem; font-weight: 700;
  flex-shrink: 0;
}

.co-card .field { display: flex; flex-direction: column; gap: .35rem; }
.co-card .field label { font-size: .82rem; font-weight: 500; color: rgba(14,14,22,.65); }
.co-card input[type="text"], .co-card input[type="email"], .co-card input[type="tel"] {
  border: 1px solid rgba(14,14,22,.15);
  border-radius: .7rem;
  padding: .7rem .85rem;
  font-size: .92rem;
  background: #fff; color: #0E0E16;
  transition: border-color .15s, box-shadow .15s;
}
.co-card input:focus { border-color: #6C4CFF; box-shadow: 0 0 0 3px rgba(108,76,255,.15); outline: none; }
.co-card input.invalid { border-color: #FF6B4A; }
.co-card .field-error { font-size: .75rem; color: #E8523A; min-height: 1em; }

/* delivery method cards */
.co-methods { display: grid; gap: .75rem; margin-bottom: 1.25rem; }
@media (min-width: 560px) { .co-methods { grid-template-columns: 1fr 1fr; } }
.co-method { cursor: pointer; }
.co-method input { position: absolute; opacity: 0; pointer-events: none; }
.co-method-body {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "ic name" "ic desc" "price price";
  gap: .15rem .75rem;
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1.5px solid rgba(14,14,22,.12);
  transition: border-color .2s, background-color .2s, transform .2s;
}
.co-method:hover .co-method-body { border-color: rgba(108,76,255,.4); transform: translateY(-2px); }
.co-method input:checked + .co-method-body {
  border-color: #6C4CFF;
  background: rgba(108,76,255,.05);
  box-shadow: 0 12px 28px -18px rgba(108,76,255,.9);
}
.co-method input:focus-visible + .co-method-body { outline: 2.5px solid #6C4CFF; outline-offset: 2px; }
.co-method-ic {
  grid-area: ic;
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: .7rem;
  background: rgba(108,76,255,.1);
  color: #6C4CFF;
  align-self: center;
}
.co-method input:checked + .co-method-body .co-method-ic { background: #6C4CFF; color: #fff; }
.co-method-body b { grid-area: name; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; }
.co-method-body em { grid-area: desc; font-style: normal; font-size: .78rem; color: rgba(14,14,22,.55); }
.co-method-price {
  grid-area: price;
  margin-top: .6rem;
  font-size: .82rem;
  font-weight: 700;
  color: #6C4CFF;
}

.co-pane { animation: co-fade .3s ease; }
@keyframes co-fade { from { opacity: 0; transform: translateY(6px); } }

/* city search */
.co-search { position: relative; display: flex; align-items: center; }
.co-search svg { position: absolute; left: .8rem; color: rgba(14,14,22,.35); pointer-events: none; }
.co-search input { width: 100%; padding-left: 2.4rem !important; }
.co-suggest {
  position: relative;
  margin-top: .3rem;
  border: 1px solid rgba(14,14,22,.12);
  border-radius: .8rem;
  background: #fff;
  box-shadow: 0 18px 40px -22px rgba(14,14,22,.5);
  overflow: hidden;
  z-index: 5;
}
.co-suggest li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .6rem .85rem;
  font-size: .88rem;
  cursor: pointer;
  transition: background-color .12s;
}
.co-suggest li em { font-style: normal; font-size: .74rem; color: rgba(14,14,22,.45); }
.co-suggest li:hover, .co-suggest li.is-active { background: rgba(108,76,255,.09); }

/* office list */
.co-offices {
  display: flex; flex-direction: column; gap: .5rem;
  margin-top: 1rem;
  max-height: 21rem;
  overflow-y: auto;
  padding-right: .25rem;
}
.co-offices-hint { font-size: .85rem; color: rgba(14,14,22,.45); padding: 1.25rem 0; text-align: center; }
.co-office { cursor: pointer; opacity: 0; animation: co-fade-in .35s ease forwards; animation-delay: var(--d, 0ms); }
@keyframes co-fade-in { to { opacity: 1; } }
@media (prefers-reduced-motion: reduce) { .co-office { opacity: 1; animation: none; } }
.co-office input { position: absolute; opacity: 0; pointer-events: none; }
.co-office-body {
  display: flex; flex-direction: column; gap: .1rem;
  padding: .8rem .95rem;
  border-radius: .85rem;
  border: 1.5px solid rgba(14,14,22,.1);
  transition: border-color .18s, background-color .18s;
}
.co-office:hover .co-office-body { border-color: rgba(108,76,255,.35); }
.co-office input:checked + .co-office-body {
  border-color: #6C4CFF;
  background: rgba(108,76,255,.06);
}
.co-office input:focus-visible + .co-office-body { outline: 2.5px solid #6C4CFF; outline-offset: 2px; }
.co-office-body b { font-size: .88rem; font-weight: 600; }
.co-office-body em { font-style: normal; font-size: .78rem; color: rgba(14,14,22,.55); line-height: 1.45; }
.co-office-hours { font-style: normal; font-size: .72rem; color: rgba(14,14,22,.4); margin-top: .2rem; }
.co-tag {
  font-style: normal;
  font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .04em;
  padding: .1rem .38rem;
  border-radius: .35rem;
  background: rgba(255,107,74,.14);
  color: #E8523A;
  vertical-align: middle;
}

.co-note {
  display: flex; align-items: center; gap: .5rem;
  margin-top: 1.25rem;
  font-size: .78rem;
  color: rgba(14,14,22,.5);
}
.co-note svg { color: #6C4CFF; flex-shrink: 0; }

/* payment */
.co-pays { display: flex; flex-direction: column; gap: .6rem; }
.co-pay { display: flex; align-items: flex-start; gap: .75rem; cursor: pointer;
  padding: .9rem 1rem; border-radius: .9rem; border: 1.5px solid rgba(14,14,22,.12);
  transition: border-color .18s, background-color .18s; }
.co-pay:hover { border-color: rgba(108,76,255,.35); }
.co-pay:has(input:checked) { border-color: #6C4CFF; background: rgba(108,76,255,.05); }
.co-pay input { accent-color: #6C4CFF; margin-top: .2rem; }
.co-pay b { display: block; font-size: .9rem; font-weight: 600; }
.co-pay em { font-style: normal; font-size: .78rem; color: rgba(14,14,22,.5); }
.co-pay.is-disabled { opacity: .5; cursor: not-allowed; }

/* summary */
@media (min-width: 1024px) { .co-side { position: sticky; top: 6.5rem; } }
.co-summary {
  background: #fff;
  border-radius: 1.4rem;
  padding: 1.5rem;
  box-shadow: 0 26px 60px -34px rgba(0,0,0,.9);
}
.co-summary-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.05rem; margin-bottom: 1.1rem; }
.co-items { display: flex; flex-direction: column; gap: .8rem; }
.co-item { display: flex; align-items: center; gap: .8rem; }
.co-item-media {
  width: 54px; height: 54px; flex-shrink: 0;
  border-radius: .7rem;
  background: linear-gradient(155deg, #F5F3FB, #E1DCF1);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.co-item-media img { width: 100%; height: 100%; object-fit: contain; padding: .3rem; transform: scale(var(--img-scale,1)); }
.co-item-body { flex: 1; min-width: 0; }
.co-item-name { font-weight: 600; font-size: .87rem; }
.co-item-qty { font-size: .78rem; color: rgba(14,14,22,.5); margin-top: .1rem; }
.co-item-sum { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem; white-space: nowrap; }

.co-totals { margin-top: 1.25rem; padding-top: 1.1rem; border-top: 1px solid rgba(14,14,22,.1); display: flex; flex-direction: column; gap: .55rem; }
.co-totals > div { display: flex; align-items: baseline; justify-content: space-between; gap: 1rem; font-size: .88rem; }
.co-totals dt { color: rgba(14,14,22,.6); }
.co-totals dd { font-weight: 600; }
.co-ship-label { font-size: .74rem; color: rgba(14,14,22,.4); }
.co-grand { padding-top: .7rem; margin-top: .3rem; border-top: 1px solid rgba(14,14,22,.1); }
.co-grand dt { font-weight: 600; color: #0E0E16 !important; font-size: 1rem; }
.co-grand dd { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em; }

.co-submit { margin-top: 1.25rem; }
.co-trust { display: flex; flex-direction: column; gap: .45rem; margin-top: 1.1rem; }
.co-trust li { display: flex; align-items: center; gap: .5rem; font-size: .78rem; color: rgba(14,14,22,.55); }
.co-trust svg { color: #8FE3A6; flex-shrink: 0; }

/* empty + done */
.co-empty, .co-done {
  max-width: 32rem;
  margin: 2rem auto;
  padding: 2.5rem 2rem;
  text-align: center;
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 26px 60px -34px rgba(0,0,0,.9);
}
.co-empty-ic, .co-done-ic {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  margin: 0 auto 1.2rem;
  border-radius: 999px;
}
.co-empty-ic { background: rgba(108,76,255,.1); color: #6C4CFF; }
.co-done-ic { background: rgba(34,197,94,.12); color: #22C55E; }
.co-empty h2, .co-done h2 { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.4rem; letter-spacing: -.02em; }
.co-empty p, .co-done p { color: rgba(14,14,22,.6); margin: .6rem 0 1.5rem; line-height: 1.6; }
.co-done-where { font-size: .88rem; color: rgba(14,14,22,.7); padding: .8rem 1rem; border-radius: .8rem; background: rgba(14,14,22,.04); }

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

/* ============================================================
   Cookie consent
   ============================================================ */
.consent {
  position: fixed;
  left: 1.25rem;
  bottom: 1.25rem;
  z-index: 80;
  width: min(26rem, calc(100vw - 2.5rem));
  opacity: 0;
  transform: translateY(16px) scale(.97);
  transition: opacity .32s ease, transform .32s cubic-bezier(.2,1.2,.4,1);
  pointer-events: none;
}
.consent.is-in { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.consent.is-out { opacity: 0; transform: translateY(12px) scale(.97); pointer-events: none; }

.consent-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: .9rem;
  padding: 1.15rem 1.25rem;
  border-radius: 1.2rem;
  background: rgba(14,14,22,.97);
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 26px 60px -22px rgba(0,0,0,.85);
}
.consent-ic {
  display: flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: .8rem;
  background: linear-gradient(135deg, rgba(108,76,255,.35), rgba(255,107,74,.25));
  color: #B8A9FF;
}
.consent-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .95rem;
  color: #FAFAF6;
}
.consent-text {
  font-size: .82rem;
  line-height: 1.55;
  color: rgba(255,255,255,.6);
  margin-top: .3rem;
}
.consent-text a { color: #B8A9FF; text-decoration: underline; text-underline-offset: 2px; }
.consent-text a:hover { color: #fff; }

.consent-actions {
  grid-column: 1 / -1;
  display: flex;
  gap: .5rem;
  margin-top: .3rem;
}
.consent-btn {
  flex: 1;
  padding: .6rem .9rem;
  border-radius: .7rem;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background-color .18s, border-color .18s, transform .18s, color .18s;
}
.consent-btn:active { transform: scale(.98); }
.consent-btn-ghost {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
  color: rgba(255,255,255,.75);
}
.consent-btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; }
.consent-btn-main {
  background: linear-gradient(135deg, #6C4CFF, #8A6BFF);
  color: #fff;
  box-shadow: 0 10px 22px -10px rgba(108,76,255,.9);
}
.consent-btn-main:hover { filter: brightness(1.07); }

/* keep clear of the chat launcher and the product buy bar */
@media (max-width: 640px) {
  .consent { left: 1rem; right: 1rem; bottom: 5.5rem; width: auto; }
}
@media (max-width: 767px) {
  body:has(.pdp-sticky) .consent { bottom: 9.5rem; }
}
@media (prefers-reduced-motion: reduce) {
  .consent { transition: opacity .2s ease; transform: none; }
  .consent.is-in, .consent.is-out { transform: none; }
}

/* ============================================================
   Page summary strip
   ============================================================ */
.meta-strip-wrap { padding: 2.5rem 0 0; }
.meta-strip {
  position: relative;
  display: grid;
  gap: 1.25rem;
  padding: 1.6rem 1.75rem;
  border-radius: 1.4rem;
  background: linear-gradient(135deg, rgba(108,76,255,.07), rgba(255,107,74,.05));
  border: 1px solid rgba(108,76,255,.2);
  overflow: hidden;
}
.meta-strip::before {
  content: "";
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #6C4CFF, #FF8A6B);
}
@media (min-width: 900px) {
  .meta-strip { grid-template-columns: 1fr auto; align-items: center; gap: 2.5rem; }
}
.meta-strip-tag {
  display: inline-block;
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6C4CFF;
  margin-bottom: .5rem;
}
.meta-strip-text {
  font-size: .95rem;
  line-height: 1.65;
  color: rgba(14,14,22,.72);
  max-width: 46rem;
}
.meta-strip-text strong { color: #0E0E16; font-weight: 700; }

.meta-strip-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem 1.5rem;
}
@media (min-width: 900px) { .meta-strip-facts { grid-auto-flow: column; grid-template-columns: none; } }
.meta-strip-facts li { display: flex; flex-direction: column; }
.meta-strip-facts b {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
  letter-spacing: -.02em;
  white-space: nowrap;
}
.meta-strip-facts span { font-size: .72rem; color: rgba(14,14,22,.5); margin-top: .1rem; }

/* ============================================================
   Product gallery
   ============================================================ */
.pdp-gallery { display: flex; flex-direction: column; gap: .75rem; min-width: 0; }
.pdp-media { cursor: zoom-in; }

.pdp-zoom {
  position: absolute;
  z-index: 4;
  right: 1.1rem; bottom: 1.1rem;
  width: 38px; height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.92);
  color: #0E0E16;
  display: flex; align-items: center; justify-content: center;
  cursor: zoom-in;
  box-shadow: 0 8px 20px -8px rgba(14,14,22,.6);
  transition: background-color .15s, transform .15s;
}
.pdp-zoom:hover { background: #fff; transform: scale(1.07); }

.pdp-thumbs {
  display: flex;
  gap: .5rem;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: .25rem;
  scrollbar-width: thin;
}
.pdp-thumb {
  flex: 0 0 auto;
  width: 58px; height: 58px;
  padding: 0;
  border-radius: .75rem;
  border: 2px solid rgba(255,255,255,.14);
  background: linear-gradient(155deg, #F5F3FB, #E1DCF1);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .18s, transform .18s, opacity .18s;
  opacity: .75;
}
.pdp-thumb:hover { opacity: 1; transform: translateY(-2px); }
.pdp-thumb.is-on { border-color: #8A6BFF; opacity: 1; }
.pdp-thumb-img { width: 100%; height: 100%; display: block; }
.pdp-thumb-product { object-fit: contain; padding: .3rem; }
.pdp-thumb-scene { object-fit: cover; }

.lightbox-stage img { width: 100%; height: 100%; object-fit: contain; }

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

/* ============================================================
   Order tracking
   ============================================================ */
.tr-section {
  position: relative;
  overflow: hidden;
  padding: 2.5rem 0 5rem;
  background: linear-gradient(180deg, #0E0E16 0%, #12121C 100%);
  min-height: 75vh;
}
.tr-orb { position: absolute; border-radius: 999px; filter: blur(90px); pointer-events: none; }
.tr-orb-a {
  width: 38rem; height: 38rem; top: -14rem; left: -8rem;
  background: radial-gradient(circle, rgba(124,92,255,.34), transparent 68%);
  animation: faq-orb 22s ease-in-out infinite;
}
.tr-orb-b {
  width: 26rem; height: 26rem; bottom: -6rem; right: -8rem;
  background: radial-gradient(circle, rgba(255,107,74,.18), transparent 70%);
  animation: faq-orb 27s ease-in-out infinite reverse;
}
.deco-track { width: 17rem; right: 3%; top: 18%; opacity: .08; --r: -10deg; animation: deco-float 15s ease-in-out infinite; }

.tr-head { max-width: 40rem; padding: 1.5rem 0 2.5rem; }
.tr-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.06;
  letter-spacing: -.035em;
  color: #FAFAF6;
  margin-top: .6rem;
}
@media (min-width: 640px) { .tr-title { font-size: 2.9rem; } }
.tr-lede { color: rgba(255,255,255,.62); font-size: 1rem; line-height: 1.6; margin-top: .9rem; }
.tr-lede b { color: #B8A9FF; font-weight: 700; }

.tr-form { display: flex; gap: .6rem; margin-top: 1.75rem; flex-wrap: wrap; }
.tr-input {
  position: relative;
  flex: 1 1 16rem;
  display: flex;
  align-items: center;
}
.tr-input svg { position: absolute; left: 1rem; color: rgba(255,255,255,.35); pointer-events: none; }
.tr-input input {
  width: 100%;
  padding: .95rem 1rem .95rem 2.8rem;
  border-radius: .9rem;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-size: 1rem;
  letter-spacing: .02em;
  transition: border-color .18s, background-color .18s, box-shadow .18s;
}
.tr-input input::placeholder { color: rgba(255,255,255,.32); }
.tr-input input:focus {
  outline: none;
  border-color: #8A6BFF;
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 3px rgba(108,76,255,.22);
}
.tr-btn { flex: 0 0 auto; }
.tr-error {
  margin-top: .9rem;
  padding: .7rem 1rem;
  border-radius: .7rem;
  background: rgba(255,107,74,.12);
  border: 1px solid rgba(255,107,74,.3);
  color: #FFB59B;
  font-size: .87rem;
}

/* result card */
.tr-result {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.9,.3,1);
}
.tr-result.is-in { opacity: 1; transform: translateY(0); }
.tr-card {
  background: #fff;
  border-radius: 1.5rem;
  padding: 1.6rem;
  max-width: 44rem;
  box-shadow: 0 30px 66px -34px rgba(0,0,0,.9);
}
@media (min-width: 640px) { .tr-card { padding: 2rem; } }

.tr-card-head {
  display: flex; align-items: flex-start; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(14,14,22,.09);
}
.tr-card-tag {
  font-size: .7rem; font-weight: 800; letter-spacing: .07em;
  text-transform: uppercase; color: rgba(14,14,22,.42);
}
.tr-card-num {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900; font-size: 1.5rem; letter-spacing: -.02em;
  margin-top: .2rem;
}
.tr-state {
  padding: .4rem .85rem;
  border-radius: 999px;
  font-size: .8rem; font-weight: 700;
  white-space: nowrap;
}
.tr-state.is-nova      { background: rgba(108,76,255,.12); color: #4B2FD1; }
.tr-state.is-izpratena { background: rgba(255,138,107,.16); color: #C2410C; }
.tr-state.is-dostavena { background: rgba(34,197,94,.14);  color: #15803D; }
.tr-state.is-otkazana  { background: rgba(14,14,22,.07);   color: rgba(14,14,22,.5); }

/* progress */
.tr-steps { display: flex; flex-direction: column; gap: 0; margin: 1.5rem 0 0; }
.tr-step {
  position: relative;
  display: flex;
  gap: 1rem;
  padding-bottom: 1.5rem;
  opacity: 0;
  animation: tr-in .5s cubic-bezier(.2,.9,.3,1) forwards;
  animation-delay: var(--d, 0ms);
}
@keyframes tr-in { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.tr-step:last-child { padding-bottom: 0; }
.tr-step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 15px; top: 32px; bottom: 4px;
  width: 2px;
  background: rgba(14,14,22,.1);
}
.tr-step.is-done:not(:last-child)::before { background: linear-gradient(180deg, #6C4CFF, #8A6BFF); }
.tr-step-dot {
  position: relative;
  z-index: 2;
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px;
  flex-shrink: 0;
  border-radius: 999px;
  background: rgba(14,14,22,.06);
  color: rgba(14,14,22,.45);
  font-size: .82rem; font-weight: 700;
  border: 2px solid transparent;
}
.tr-step.is-done .tr-step-dot { background: #6C4CFF; color: #fff; }
.tr-step.is-current .tr-step-dot {
  background: #fff; color: #6C4CFF; border-color: #6C4CFF;
  box-shadow: 0 0 0 0 rgba(108,76,255,.5);
  animation: tr-pulse 2s ease-out infinite;
}
@keyframes tr-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108,76,255,.5); }
  70%  { box-shadow: 0 0 0 10px rgba(108,76,255,0); }
  100% { box-shadow: 0 0 0 0 rgba(108,76,255,0); }
}
.tr-step.is-cancelled .tr-step-dot { background: rgba(232,82,58,.12); color: #E8523A; font-size: 1.1rem; }
.tr-step-body b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; }
.tr-step-body em { font-style: normal; font-size: .84rem; color: rgba(14,14,22,.55); }
.tr-step:not(.is-done):not(.is-current) .tr-step-body b { color: rgba(14,14,22,.45); }

/* facts */
.tr-facts {
  display: grid;
  gap: .9rem 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 9rem), 1fr));
  margin-top: 1.5rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(14,14,22,.09);
}
.tr-facts dt { font-size: .74rem; color: rgba(14,14,22,.45); }
.tr-facts dd { font-weight: 600; font-size: .9rem; margin-top: .15rem; word-break: break-word; }

/* Econt movement */
.tr-events { margin-top: 1.6rem; padding-top: 1.4rem; border-top: 1px solid rgba(14,14,22,.09); }
.tr-events-title {
  display: flex; align-items: center; gap: .5rem;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .9rem;
  margin-bottom: 1rem;
}
.tr-events-title svg { color: #6C4CFF; }
.tr-events-list { display: flex; flex-direction: column; gap: .8rem; }
.tr-events-list li {
  display: grid;
  grid-template-columns: 8.5rem 1fr;
  gap: .9rem;
  font-size: .85rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(108,76,255,.25);
  opacity: 0;
  animation: tr-in .45s ease forwards;
  animation-delay: var(--d, 0ms);
}
@media (max-width: 560px) { .tr-events-list li { grid-template-columns: 1fr; gap: .15rem; } }
.tr-ev-time { color: rgba(14,14,22,.45); font-size: .78rem; }
.tr-ev-text b { display: block; font-weight: 600; }
.tr-ev-text em { font-style: normal; color: rgba(14,14,22,.55); font-size: .82rem; }

.tr-help { margin-top: 1.6rem; font-size: .84rem; color: rgba(14,14,22,.5); }
.tr-help a { color: #6C4CFF; font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }

/* hints */
.tr-hints {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 15rem), 1fr));
  margin-top: 3rem;
  max-width: 56rem;
}
.tr-hints li {
  padding: 1.25rem;
  border-radius: 1.1rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  transition: background-color .2s, border-color .2s, transform .2s;
}
.tr-hints li:hover { background: rgba(255,255,255,.08); border-color: rgba(184,169,255,.3); transform: translateY(-3px); }
.tr-hint-ic {
  display: flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: .8rem;
  background: rgba(108,76,255,.2);
  color: #B8A9FF;
  margin-bottom: .8rem;
}
.tr-hints b { display: block; font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .92rem; color: #FAFAF6; }
.tr-hints em { font-style: normal; font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.55; display: block; margin-top: .25rem; }

@media (prefers-reduced-motion: reduce) {
  .tr-orb { animation: none; }
  .tr-step, .tr-events-list li { opacity: 1; animation: none; }
  .tr-step.is-current .tr-step-dot { animation: none; }
  .tr-result { transition: opacity .2s ease; transform: none; }
}

/* ---- product page on phones ---- */
@media (max-width: 639px) {
  .pdp-hero { padding: 1.25rem 0 2.5rem; }
  .pdp-grid { gap: 1.75rem; }
  .pdp-media { border-radius: 1.25rem; }
  .pdp-shot-product { padding: 1.1rem; }
  .pdp-title { font-size: 2rem; }
  .pdp-price { font-size: 1.9rem; }
  .pdp-price-box { padding: 1rem 1.1rem; }
  .pdp-add { min-width: 0; width: 100%; }
  .pdp-actions > * { flex: 1 1 100%; justify-content: center; }
  .pdp-discount { top: .7rem; right: .7rem; font-size: .82rem; padding: .3rem .55rem; }
  .pdp-zoom { right: .7rem; bottom: .7rem; width: 34px; height: 34px; }
  .meta-strip { padding: 1.25rem 1.15rem; }
  .meta-strip-facts { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: .75rem 1rem; }
  .pdp-versus-card img { max-width: 8.5rem; }
}

/* nothing on the page may push past the viewport */
html, body { overflow-x: clip; }

/* ============================================================
   Econt carrier mark
   ============================================================ */
.econt-mark {
  display: inline-block;
  height: 1.05em;
  width: auto;
  vertical-align: -.12em;
  margin: 0 .1em;
}
.econt-mark-sm { height: .95em; }
.econt-mark-lg { height: 1.35rem; vertical-align: middle; }

.tr-brandline { display: inline-flex; align-items: center; gap: .55rem; flex-wrap: wrap; }

.footer-econt {
  display: flex;
  align-items: center;
  gap: .8rem;
  padding: .75rem .95rem;
  border-radius: .9rem;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.55);
  transition: background-color .2s, border-color .2s, transform .2s;
}
.footer-econt:hover {
  background: rgba(255,255,255,.09);
  border-color: rgba(184,169,255,.32);
  transform: translateY(-2px);
}
.footer-econt img {
  height: 1rem;
  width: auto;
  flex-shrink: 0;
  padding-right: .8rem;
  border-right: 1px solid rgba(255,255,255,.14);
}
.footer-econt span { display: flex; flex-direction: column; line-height: 1.3; font-size: .76rem; }
.footer-econt span b { color: #fff; font-weight: 600; font-size: .82rem; }
.footer-econt svg { margin-left: auto; flex-shrink: 0; color: rgba(255,255,255,.4); transition: transform .2s, color .2s; }
.footer-econt:hover svg { color: #fff; transform: translateX(3px); }

/* the gallery frame carries its own background for the untouched shots */
.pdp-shot-scene { background: #fff; }
.pdp-thumb-scene { background: #fff; }

/* ============================================================
   Brand wordmark
   ============================================================ */
.brand-link { display: inline-flex; align-items: center; }
.brand-word {
  display: block;
  height: 34px;
  width: auto;
  transition: opacity .2s ease, transform .25s cubic-bezier(.2,1.4,.4,1);
}
@media (min-width: 640px)  { .brand-word { height: 40px; } }
@media (min-width: 1024px) { .brand-word { height: 44px; } }
.brand-link:hover .brand-word { transform: scale(1.04); }

/* the header flips from dark to light on scroll — swap the ink with it */
.brand-word-on-light { display: none; }
#site-header.scrolled .brand-word-on-dark { display: none; }
#site-header.scrolled .brand-word-on-light { display: block; }

.footer-logo img { display: block; height: 40px; width: auto; }
@media (min-width: 640px) { .footer-logo img { height: 46px; } }

@media (prefers-reduced-motion: reduce) {
  .brand-link:hover .brand-word { transform: none; }
}

/* ============================================================
   Phone hero — centred, compact, product visible sooner
   ============================================================ */
@media (max-width: 767px) {
  .hero-inner { padding-top: 1.75rem; padding-bottom: 1.25rem; gap: 1rem; }

  /* everything in the copy column reads centred on a phone */
  .hero-inner > .reveal:first-child { text-align: center; }
  .hero-badge { font-size: 12px; padding: .36rem .8rem .36rem .65rem; }
  .hero-title { font-size: 2.2rem; margin-top: .8rem; }
  .hero-lede {
    font-size: .96rem;
    margin: .65rem auto 0;
    max-width: 21rem;
  }

  /* the three info chips are noise on a small screen */
  .hero-stats { display: none; }
  .hero-microcopy { justify-content: center; margin-top: .7rem; font-size: .76rem; }

  .hero-inner .mt-8 {
    margin-top: 1.25rem;
    gap: .55rem;
    justify-content: center;
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
  }
  .hero-inner .btn-primary.btn-lg,
  .hero-inner .btn-ghost.btn-lg {
    width: 100%;
    justify-content: center;
    padding: .82rem 1.2rem;
    font-size: .94rem;
    border-radius: .85rem;
  }
  .hero-inner .btn-primary.btn-lg { box-shadow: 0 12px 26px -12px rgba(108,76,255,.9); }
  .hero-inner .btn-price { font-size: .78rem; padding: .18rem .5rem; }

  /* lift the floating product so it lands inside the first screen */
  .hero-visual { max-width: 21rem; aspect-ratio: 1.5; margin: -1.25rem auto 0; }
  .hero-product { filter: drop-shadow(0 18px 30px rgba(0,0,0,.55)); }
  .hero-product-shadow { bottom: 10%; height: 18px; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 1.95rem; }
  .hero-visual { max-width: 18rem; }
  .hero-inner .btn-primary.btn-lg,
  .hero-inner .btn-ghost.btn-lg { padding: .78rem 1rem; font-size: .9rem; }
}

/* ---- capability tiles on a phone: one compact row each ---- */
@media (max-width: 639px) {
  .cap-grid {
    grid-template-columns: 1fr;
    gap: .6rem;
    margin-top: 1rem;
  }
  /* icon pinned right, copy uses the full width from the left edge */
  .cap-tile {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title ic" "text ic";
    align-items: center;
    column-gap: .75rem;
    padding: .7rem .85rem;
    border-radius: .9rem;
  }
  .cap-ic {
    grid-area: ic;
    width: 34px; height: 34px;
    margin-bottom: 0;
    border-radius: .65rem;
  }
  .cap-ic svg { width: 17px; height: 17px; }
  .cap-title {
    grid-area: title;
    font-size: .92rem;
    margin-bottom: 0;
    line-height: 1.25;
    align-self: end;
  }
  .cap-text {
    grid-area: text;
    font-size: .8rem;
    line-height: 1.3;
    align-self: start;
  }
  /* the hover lift is meaningless on touch and makes taps feel laggy */
  .cap-tile:hover { transform: none; box-shadow: none; border-color: rgba(14,14,22,.07); }
  .cap-tile:hover .cap-ic { transform: none; background: rgba(108,76,255,.1); color: #6C4CFF; }

  .cap-banner { min-height: 13rem; border-radius: 1.25rem; }
  .cap-banner-body { padding: 1.25rem; }
  .cap-banner-title { font-size: 1.25rem; }
  #features { padding-top: 3rem; padding-bottom: 3rem; }
}

/* ============================================================
   Product page on a phone — compact rows, centred headings
   ============================================================ */
@media (max-width: 639px) {
  /* tighter rhythm between sections */
  .pdp-hero + section,
  .pdp-hero ~ section { padding-top: 2.25rem; padding-bottom: 2.25rem; }
  .meta-strip-wrap { padding-top: 1.5rem; }

  /* headings centred, like the homepage */
  .pdp-why + *, .pdp-proof + * { text-align: initial; }
  section > .max-w-7xl > .max-w-2xl { text-align: center; }
  section > .max-w-7xl > .max-w-2xl .section-sub { margin-left: auto; margin-right: auto; }
  .pdp-inline-link { justify-content: center; width: 100%; }

  /* "why" cards: one compact row each, icon pinned right */
  .pdp-why { gap: .6rem; margin-top: 1.25rem !important; }
  .pdp-why-card {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-areas: "title ic" "text ic";
    align-items: center;
    column-gap: .75rem;
    padding: .8rem .9rem;
    border-radius: .9rem;
  }
  .pdp-why-ic {
    grid-area: ic;
    width: 36px; height: 36px;
    margin-bottom: 0;
    border-radius: .7rem;
  }
  .pdp-why-ic svg { width: 18px; height: 18px; }
  .pdp-why-title { grid-area: title; font-size: .95rem; margin-bottom: .1rem; line-height: 1.25; align-self: end; }
  .pdp-why-text  { grid-area: text;  font-size: .8rem;  line-height: 1.35; align-self: start; }
  .pdp-why-card:hover { transform: none; box-shadow: none; border-color: rgba(14,14,22,.07); }
  .pdp-why-card:hover .pdp-why-ic { background: rgba(108,76,255,.1); color: #6C4CFF; }

  /* spec rows */
  .pdp-specs { gap: .45rem; }
  .pdp-spec { padding: .7rem .85rem; border-radius: .8rem; gap: .7rem; }
  .pdp-spec-ic { width: 22px; height: 22px; }
  .pdp-spec-title { font-size: .88rem; line-height: 1.3; }
  .pdp-spec-note { font-size: .78rem; line-height: 1.35; margin-top: .1rem; }
  .pdp-spec:hover { transform: none; border-color: rgba(14,14,22,.07); }
  .pdp-specs-grid { gap: 1.5rem; }

  /* summary strip */
  .meta-strip { padding: 1.1rem 1rem; gap: .9rem; }
  .meta-strip-text { font-size: .87rem; line-height: 1.55; }
  .meta-strip-facts { gap: .6rem .8rem; }
  .meta-strip-facts b { font-size: 1rem; }
  .meta-strip-facts span { font-size: .68rem; }

  /* reviews */
  .pdp-proof { gap: .7rem; }
  .pdp-proof .review-card { padding: 1.1rem; border-radius: 1rem; }
  .pdp-proof .review-text { font-size: .87rem; margin: .6rem 0 .85rem; }

  /* the two model cards fit side by side once the art is smaller */
  .pdp-versus { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .pdp-versus-card { padding: 1.5rem .75rem 1rem; border-radius: 1rem; }
  .pdp-versus-card img { max-width: 6rem; margin-bottom: .4rem; }
  .pdp-versus-name { font-size: .95rem; }
  .pdp-versus-hook { font-size: .74rem; line-height: 1.35; margin-top: .25rem; }
  .pdp-versus-price { font-size: 1.1rem; margin-top: .5rem; }
  .pdp-versus-tag { font-size: .6rem; padding: .22rem .5rem; }
  .pdp-versus-card .btn-ghost { width: 100%; justify-content: center; font-size: .8rem; padding: .55rem .6rem; }

  /* closing block */
  .pdp-final { padding: 3rem 0; }
  .pdp-final-title { font-size: 1.75rem; }
  .pdp-final-text { font-size: .95rem; }
  .pdp-final-actions .btn-primary { width: 100%; justify-content: center; }
}

/* ============================================================
   Dispatch countdown — counts to the real 15:00 cut-off
   ============================================================ */
.countdown[hidden] { display: none !important; }
.countdown {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  flex-wrap: wrap;
  margin-top: 1.1rem;
  padding: .55rem .9rem;
  border-radius: .8rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.13);
}
.cd-label { font-size: .8rem; color: rgba(255,255,255,.62); }
.cd-clock { display: inline-flex; align-items: center; gap: .18rem; }
.cd-clock b {
  min-width: 2ch;
  padding: .18rem .35rem;
  border-radius: .4rem;
  background: rgba(108,76,255,.28);
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: .88rem;
  font-variant-numeric: tabular-nums;
  text-align: center;
}
.cd-clock i { font-style: normal; color: rgba(255,255,255,.4); font-weight: 700; }
.countdown.is-past { border-color: rgba(255,255,255,.09); }
.cd-off { font-size: .78rem; color: rgba(255,255,255,.5); }

/* on a light card (product page) */
.countdown-pdp { background: rgba(108,76,255,.07); border-color: rgba(108,76,255,.2); }

/* ============================================================
   Stock state — the level, never the number
   ============================================================ */
.stock-line {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 1.1rem;
  padding: .45rem .85rem .45rem .6rem;
  border-radius: 999px;
  background: rgba(143,227,166,.1);
  border: 1px solid rgba(143,227,166,.28);
  font-size: .82rem;
  position: relative;
  overflow: hidden;
}
.stock-line b { font-weight: 700; color: #A8ECC0; letter-spacing: -.01em; }
.stock-line em {
  font-style: normal;
  font-size: .74rem;
  color: rgba(255,255,255,.42);
  padding-left: .5rem;
  border-left: 1px solid rgba(255,255,255,.14);
}

/* pulsing pip: a dot inside an expanding ring */
.stock-pip {
  position: relative;
  width: 9px; height: 9px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.stock-pip i {
  width: 9px; height: 9px;
  border-radius: 999px;
  background: #8FE3A6;
  display: block;
}
.stock-pip::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1.5px solid #8FE3A6;
  animation: pip-ring 2.4s cubic-bezier(.2,.6,.35,1) infinite;
}
@keyframes pip-ring {
  0%   { transform: scale(1);   opacity: .8; }
  70%  { transform: scale(2.6); opacity: 0; }
  100% { transform: scale(2.6); opacity: 0; }
}

/* running low: amber, faster pulse, and a slow sheen across the pill */
.stock-line.is-low {
  background: rgba(255,138,107,.1);
  border-color: rgba(255,138,107,.34);
}
.stock-line.is-low b { color: #FFB59B; }
.stock-line.is-low .stock-pip i { background: #FF8A6B; }
.stock-line.is-low .stock-pip::after { border-color: #FF8A6B; animation-duration: 1.5s; }
.stock-line.is-low::before {
  content: "";
  position: absolute;
  top: 0; left: -50%;
  width: 35%; height: 100%;
  background: linear-gradient(100deg, transparent, rgba(255,255,255,.16), transparent);
  transform: skewX(-18deg);
  animation: stock-sheen 3.4s ease-in-out infinite;
}
@keyframes stock-sheen {
  0%, 55% { left: -50%; }
  100%    { left: 130%; }
}

/* sold out: quiet, no motion */
.stock-line.is-out {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.12);
}
.stock-line.is-out b { color: rgba(255,255,255,.6); }
.stock-line.is-out .stock-pip i { background: rgba(255,255,255,.35); }
.stock-line.is-out .stock-pip::after { display: none; }

/* on a light surface (product cards) */
.ps-card .stock-line em { color: rgba(14,14,22,.45); border-left-color: rgba(14,14,22,.12); }
.ps-card .stock-line b { color: #1B7A44; }
.ps-card .stock-line.is-low b { color: #C2410C; }

@media (max-width: 420px) {
  .stock-line em { display: none; }
}

/* ============================================================
   Payment trust badges
   ============================================================ */
.paybadges {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .4rem;
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.paybadges li {
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .55rem .7rem;
  border-radius: .65rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  transition: background-color .18s ease, border-color .18s ease;
}
.paybadges li:hover { background: rgba(255,255,255,.07); border-color: rgba(143,227,166,.28); }
.paybadges svg { color: #8FE3A6; flex-shrink: 0; }
.paybadges span { display: flex; flex-direction: column; min-width: 0; line-height: 1.25; }
.paybadges b {
  font-size: .78rem; font-weight: 600; color: #FAFAF6;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.paybadges em {
  font-style: normal; font-size: .68rem; color: rgba(255,255,255,.45);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
@media (max-width: 420px) {
  .paybadges { grid-template-columns: 1fr; gap: .35rem; }
  .paybadges li { padding: .5rem .65rem; }
}

/* ============================================================
   Cart bundle nudge
   ============================================================ */
.cart-bundle {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin: 0 1.25rem 1rem;
  padding: .8rem .9rem;
  border-radius: .9rem;
  background: linear-gradient(135deg, rgba(108,76,255,.1), rgba(255,107,74,.07));
  border: 1px solid rgba(108,76,255,.28);
  animation: co-fade .35s ease;
}
.cart-bundle-ic {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  flex-shrink: 0;
  border-radius: .7rem;
  background: rgba(108,76,255,.16);
  color: #6C4CFF;
}
.cart-bundle-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .88rem; }
.cart-bundle-text { font-size: .76rem; color: rgba(14,14,22,.6); line-height: 1.35; margin-top: .1rem; }
.cart-bundle-text b { color: #E8523A; font-weight: 700; }
.cart-bundle-btn {
  margin-left: auto;
  flex-shrink: 0;
  padding: .5rem .85rem;
  border: none;
  border-radius: .6rem;
  background: #0E0E16;
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color .15s ease;
}
.cart-bundle-btn:hover { background: #6C4CFF; }

.cart-saving {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .85rem;
  color: #E8523A;
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .stock-dot { animation: none; }
  .cart-bundle { animation: none; }
}

/* ==========================================================================
   Card payment — checkout option, and the confirmation page
   ========================================================================== */

/* ---- payment option on the checkout ---- */
.co-pay.is-live { cursor: pointer; opacity: 1; }
.co-card-brands {
  display: flex; align-items: center; gap: .35rem;
  margin-left: auto; padding-left: .5rem;
  opacity: 0; transform: translateX(8px);
  transition: opacity .4s ease, transform .4s ease;
}
.co-pay.is-live .co-card-brands { opacity: 1; transform: none; }
/* one fixed tile per mark, so four very different aspect ratios still line up */
.co-card-brands i {
  display: grid; place-items: center;
  width: 3rem; height: 1.75rem;
  padding: .18rem .3rem;
  border-radius: .32rem;
  background: #fff;
  border: 1px solid rgba(14,14,22,.1);
  box-shadow: 0 1px 2px rgba(14,14,22,.05);
}
/* filling the box and letting object-fit do the letterboxing is the only
   way that reliably contains four very different aspect ratios */
.co-card-brands img {
  width: 100%; height: 100%;
  object-fit: contain;
}
/* they arrive one after another once card payment unlocks */
.co-pay.is-live .co-card-brands i { animation: co-brand-in .4s ease both; }
.co-pay.is-live .co-card-brands i:nth-child(1) { animation-delay: .04s; }
.co-pay.is-live .co-card-brands i:nth-child(2) { animation-delay: .10s; }
.co-pay.is-live .co-card-brands i:nth-child(3) { animation-delay: .16s; }
.co-pay.is-live .co-card-brands i:nth-child(4) { animation-delay: .22s; }
@keyframes co-brand-in { from { opacity: 0; transform: translateY(5px) scale(.9); } to { opacity: 1; transform: none; } }

/* the same marks, laid out as a standalone row on the payments page */
.paybrands {
  display: flex; flex-wrap: wrap; align-items: center; gap: .5rem;
  margin: 1rem 0 .3rem;
  padding: 0;
}
.paybrands li {
  display: grid; place-items: center;
  width: 4.2rem; height: 2.5rem;
  padding: .3rem .45rem;
  border-radius: .5rem;
  background: #fff;
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 6px 16px -10px rgba(0,0,0,.7);
  transition: transform .25s ease, box-shadow .25s ease;
}
.paybrands li:hover { transform: translateY(-2px); box-shadow: 0 12px 22px -12px rgba(0,0,0,.8); }
.paybrands img { width: 100%; height: 100%; object-fit: contain; }

.co-secure {
  display: flex; align-items: flex-start; gap: .5rem;
  margin-top: .85rem;
  font-size: .78rem;
  line-height: 1.5;
  color: rgba(14,14,22,.55);
  animation: co-secure-in .45s ease both;
}
.co-secure svg { flex-shrink: 0; margin-top: .18rem; color: #16A34A; }
.co-secure b { color: rgba(14,14,22,.75); font-weight: 600; }
@keyframes co-secure-in { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: none; } }

.co-canceled {
  display: flex; align-items: flex-start; gap: .7rem;
  margin-bottom: 1.4rem;
  padding: .9rem 1.1rem;
  border-radius: .9rem;
  background: rgba(255,138,107,.12);
  border: 1px solid rgba(255,138,107,.3);
  color: #FFD3C4;
  font-size: .86rem;
  line-height: 1.55;
  animation: co-secure-in .4s ease both;
}
.co-canceled b { color: #fff; font-weight: 600; display: block; }
.co-canceled-ic { flex-shrink: 0; margin-top: .1rem; color: #FF8A6B; }

/* ---- confirmation page ---- */
.ty-section {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 6rem;
  background: linear-gradient(180deg, #0E0E16 0%, #12121C 100%);
  min-height: 78vh;
  display: flex; align-items: center;
}
.ty-orb { position: absolute; border-radius: 999px; filter: blur(90px); pointer-events: none; }
.ty-orb-a {
  width: 40rem; height: 40rem; top: -16rem; left: -10rem;
  background: radial-gradient(circle, rgba(124,92,255,.32), transparent 68%);
  animation: faq-orb 22s ease-in-out infinite;
}
.ty-orb-b {
  width: 26rem; height: 26rem; bottom: -8rem; right: -8rem;
  background: radial-gradient(circle, rgba(34,197,94,.16), transparent 70%);
  animation: faq-orb 27s ease-in-out infinite reverse;
}
.deco-ty { width: 16rem; right: 4%; bottom: 8%; opacity: .07; --r: 8deg; animation: deco-float 16s ease-in-out infinite; }

.ty-card {
  position: relative;
  background: #fff;
  border-radius: 1.6rem;
  padding: 2rem 1.5rem;
  max-width: 38rem;
  margin: 0 auto;
  text-align: center;
  box-shadow: 0 34px 74px -36px rgba(0,0,0,.9);
}
@media (min-width: 640px) { .ty-card { padding: 2.6rem 2.4rem; } }
.ty-card.is-in { animation: ty-card-in .5s cubic-bezier(.2,.8,.3,1) both; }
@keyframes ty-card-in { from { opacity: 0; transform: translateY(14px) scale(.985); } to { opacity: 1; transform: none; } }

.ty-title {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.65rem;
  line-height: 1.1;
  letter-spacing: -.035em;
  margin-top: .55rem;
}
@media (min-width: 640px) { .ty-title { font-size: 2rem; } }
.ty-lede { color: rgba(14,14,22,.6); line-height: 1.65; margin-top: .7rem; font-size: .92rem; }
.ty-lede strong { color: #0E0E16; font-weight: 700; }

/* the checking state: three dots that breathe rather than a spinner */
.ty-spinner { display: flex; justify-content: center; gap: .4rem; margin-bottom: .4rem; }
.ty-spinner i {
  width: .55rem; height: .55rem; border-radius: 50%;
  background: #6C4CFF;
  animation: ty-dot 1.1s ease-in-out infinite;
}
.ty-spinner i:nth-child(2) { animation-delay: .16s; }
.ty-spinner i:nth-child(3) { animation-delay: .32s; }
@keyframes ty-dot { 0%, 80%, 100% { transform: scale(.55); opacity: .35; } 40% { transform: scale(1); opacity: 1; } }

/* the tick draws itself once, which reads as "it just happened" */
.ty-tick { width: 4.5rem; height: 4.5rem; margin: 0 auto .4rem; }
.ty-tick svg { width: 100%; height: 100%; fill: none; }
.ty-tick circle {
  stroke: rgba(34,197,94,.25); stroke-width: 2.5;
  stroke-dasharray: 151; stroke-dashoffset: 151;
  animation: ty-ring .6s cubic-bezier(.2,.8,.3,1) .05s forwards;
}
.ty-tick path {
  stroke: #22C55E; stroke-width: 3.4; stroke-linecap: round; stroke-linejoin: round;
  stroke-dasharray: 40; stroke-dashoffset: 40;
  animation: ty-check .4s cubic-bezier(.2,.8,.3,1) .5s forwards;
}
@keyframes ty-ring { to { stroke-dashoffset: 0; } }
@keyframes ty-check { to { stroke-dashoffset: 0; } }

.ty-clock, .ty-warn {
  width: 3.4rem; height: 3.4rem; margin: 0 auto .3rem;
  display: grid; place-items: center; border-radius: 50%;
}
.ty-clock { background: rgba(108,76,255,.12); color: #6C4CFF; }
.ty-warn { background: rgba(255,107,74,.12); color: #E8523A; }

.ty-items {
  margin: 1.6rem 0 0;
  text-align: left;
  border-top: 1px solid rgba(14,14,22,.08);
}
.ty-items li {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(14,14,22,.06);
  font-size: .89rem;
  animation: ty-row .45s ease both;
  animation-delay: var(--d, 0ms);
}
@keyframes ty-row { from { opacity: 0; transform: translateX(-8px); } to { opacity: 1; transform: none; } }
.ty-items span { color: rgba(14,14,22,.75); }
.ty-items em { font-style: normal; color: rgba(14,14,22,.45); margin-left: .4rem; }
.ty-items b { font-weight: 700; white-space: nowrap; }
.ty-items li.is-off b { color: #16A34A; }

.ty-grand {
  display: flex; align-items: baseline; justify-content: space-between;
  padding: .95rem 0 0;
  text-align: left;
}
.ty-grand dt { font-weight: 600; font-size: .92rem; }
.ty-grand dd {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  font-size: 1.45rem;
  letter-spacing: -.03em;
}

.ty-where {
  display: flex; align-items: center; gap: .65rem;
  margin-top: 1.2rem;
  padding: .85rem 1rem;
  border-radius: .85rem;
  background: rgba(14,14,22,.04);
  text-align: left;
}
.ty-where-ic {
  flex-shrink: 0;
  width: 2.1rem; height: 2.1rem;
  display: grid; place-items: center;
  border-radius: .6rem;
  background: #fff;
  color: #6C4CFF;
}
.ty-where span { display: flex; flex-direction: column; min-width: 0; line-height: 1.35; }
.ty-where em { font-style: normal; font-size: .72rem; color: rgba(14,14,22,.45); }
.ty-where b { font-size: .87rem; font-weight: 600; }

.ty-actions {
  display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center;
  margin-top: 1.6rem;
}
.ty-foot { margin-top: 1.3rem; font-size: .78rem; color: rgba(14,14,22,.45); line-height: 1.6; }
.ty-foot a { color: #5B3CEE; text-decoration: underline; text-underline-offset: 2px; }
.ty-error-msg { display: block; margin: .4rem 0; color: #E8523A; font-size: .84rem; }

@media (max-width: 480px) {
  .ty-actions .btn-primary, .ty-actions .btn-ghost { width: 100%; justify-content: center; }
  /* keep the marks on phones — they are a trust signal, just move them onto
     their own line so the label text is not squeezed */
  .co-pay { flex-wrap: wrap; }
  .co-card-brands {
    width: 100%;
    margin-left: 0;
    padding-left: 1.6rem;
    margin-top: .5rem;
  }
  .co-card-brands i { width: 2.7rem; height: 1.6rem; }
}

@media (prefers-reduced-motion: reduce) {
  .ty-orb, .deco-ty, .ty-spinner i { animation: none; }
  .ty-card.is-in, .ty-items li, .co-secure, .co-canceled { animation: none; opacity: 1; transform: none; }
  .ty-tick circle, .ty-tick path { animation: none; stroke-dashoffset: 0; }
  .co-card-brands { transition: none; }
  .co-pay.is-live .co-card-brands i { animation: none; }
}
