/* Ambient canvas used as the site's animated shader-like atmosphere. */
.shader-canvas {
  position: fixed;
  inset: 0;
  z-index: -3;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background: #090207;
}

.sakura-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.18;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.24'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at 50% 0%, rgba(255, 43, 140, 0.22), transparent 48%), linear-gradient(180deg, rgba(20, 0, 15, 0.04), rgba(5, 0, 4, 0.62));
}

.shader-fallback {
  background: #090207;
  background-image: radial-gradient(circle at 30% 18%, rgba(255, 43, 140, 0.28), transparent 34%), radial-gradient(circle at 75% 62%, rgba(200, 30, 135, 0.22), transparent 32%);
  background-size: 140% 140%;
  animation: fallbackShift 36s ease-in-out infinite alternate;
}

.shader-fallback::before {
  display: none;
}

.header,
.footer,
section,
.main {
  background-color: transparent;
}

.header {
  background: rgba(18, 4, 16, 0.82);
  border: 1px solid rgba(255, 94, 180, 0.3);
  border-radius: 14px;
  width: min(100% - 32px, 1040px);
  margin: 18px auto 0;
  padding: 10px 18px;
  backdrop-filter: blur(18px) saturate(130%);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 43, 140, 0.18), inset 0 1px rgba(255, 255, 255, 0.08);
}

.header .container-xl {
  padding-left: 0;
  padding-right: 0;
}

.header .logo img,
.footer-about img {
  filter: drop-shadow(0 0 14px rgba(255, 43, 140, 0.85));
}

.header .logo img {
  width: 38px;
  height: 38px;
  object-fit: contain;
  border-radius: 10px;
}

.hero {
  isolation: isolate;
  padding-top: 150px;
}

.hero::before {
  content: "";
  position: absolute;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  left: 50%;
  top: 18%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(255, 70, 162, 0.2);
  filter: blur(80px);
  opacity: 0.6;
  z-index: -1;
  animation: heroGlow 7s ease-in-out infinite alternate;
}

.hero-logo {
  width: min(252px, 48vw);
  padding: 0;
  box-sizing: border-box;
  border: 0;
  border-radius: 36px;
  background: transparent;
  height: auto;
  filter: drop-shadow(0 0 30px rgba(255, 43, 140, 0.6));
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.5);
  animation: logoFloat 6s ease-in-out infinite;
}

.navmenu a.active,
.navmenu a:hover {
  color: #ffffff;
  text-shadow: 0 0 18px rgba(255, 94, 180, 0.85);
}

.product-card,
.faq-item {
  background: rgba(24, 6, 21, 0.78);
  border-color: rgba(255, 94, 180, 0.22);
  backdrop-filter: blur(14px);
}

#cards,
.faq {
  width: min(100%, 1320px);
}

.site-products > [class*="col-"] {
  display: flex;
}

.site-products .product-card {
  width: 100%;
}

.faq-copy > p {
  max-width: 34rem;
}

.faq-column,
.faq .faq-container,
.faq .faq-container .faq-item,
.faq .faq-container .faq-item h3,
.faq .faq-container .faq-content,
.faq .faq-container .faq-content p {
  min-width: 0;
}

.faq .faq-container {
  width: 100%;
}

.faq .faq-container .faq-item {
  padding: 20px 52px 20px 0;
}

.faq .faq-container .faq-item h3,
.faq .faq-container .faq-content p {
  overflow-wrap: anywhere;
}

.faq .faq-container .faq-item .faq-toggle {
  right: 18px;
}

@keyframes heroGlow {
  from { transform: translateX(-50%) scale(0.86); opacity: 0.42; }
  to { transform: translateX(-50%) scale(1.1); opacity: 0.78; }
}

@keyframes logoFloat {
  0%, 100% { transform: translateY(0) rotate(-1deg); }
  50% { transform: translateY(-12px) rotate(1deg); }
}

@keyframes fallbackShift {
  from { background-position: 0% 10%; }
  to { background-position: 100% 90%; }
}

@media (max-width: 1199px) {
  .header {
    width: calc(100% - 24px);
    margin-top: 12px;
  }
}

@media (max-width: 640px) {
  .header {
    padding: 8px 12px;
  }

  .header .logo h1 {
    font-size: 20px;
  }

  .hero {
    padding-top: 126px;
  }

  .hero-logo {
    width: min(112px, 38vw);
    padding: 26px;
    margin: 24px auto 0;
  }

  #cards,
  .faq {
    width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  .faq .faq-container .faq-item {
    padding-right: 44px;
  }

  .faq .faq-container .faq-item h3 {
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero::before,
  .hero-logo,
  .shader-fallback {
    animation: none;
  }
}
