:root {
  --bg: #060814;
  --bg-elevated: rgba(16, 18, 42, 0.84);
  --bg-card: rgba(14, 18, 40, 0.74);
  --border: rgba(90, 130, 210, 0.2);
  --text: #e8eefc;
  --muted: #8f9bb8;
  --accent: #b81ec4;
  --accent-bright: #2f8fd6;
  --accent-deep: #5b2fb8;
  --accent-soft: rgba(47, 143, 214, 0.16);
  --glow: rgba(47, 143, 214, 0.4);
  --pink: #c41ea8;
  --blue: #1a8fd4;
  --radius: 16px;
  --font: "Manrope", sans-serif;
  --display: "Sora", sans-serif;
  --container: 1280px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #2f8fd6 rgba(12, 16, 36, 0.75);
}

body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  background-color: var(--bg);
  overflow-x: hidden;
  position: relative;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button {
  font: inherit;
}

.page {
  position: relative;
  min-height: 100vh;
}

.page::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(ellipse 46% 30% at 24% 18%, rgba(180, 40, 150, 0.2), transparent 70%),
    radial-gradient(ellipse 52% 34% at 74% 20%, rgba(30, 120, 200, 0.26), transparent 70%),
    radial-gradient(ellipse 55% 38% at 52% 78%, rgba(40, 70, 170, 0.18), transparent 72%);
  filter: blur(90px);
}

body::before,
body::after {
  content: "";
  position: fixed;
  top: -10vh;
  bottom: -10vh;
  width: 55vw;
  max-width: 880px;
  pointer-events: none;
  z-index: -1;
  filter: blur(90px);
  opacity: 0.95;
}

body::before {
  left: -15vw;
  width: 50vw;
  background:
    radial-gradient(closest-side at 22% 14%, rgba(180, 36, 140, 0.42), transparent 70%),
    radial-gradient(closest-side at 38% 40%, rgba(130, 40, 155, 0.3), transparent 65%),
    radial-gradient(closest-side at 18% 78%, rgba(150, 30, 140, 0.28), transparent 65%);
}

body::after {
  right: -14vw;
  width: 58vw;
  background:
    radial-gradient(closest-side at 78% 12%, rgba(26, 130, 200, 0.48), transparent 70%),
    radial-gradient(closest-side at 62% 42%, rgba(30, 120, 190, 0.34), transparent 65%),
    radial-gradient(closest-side at 82% 80%, rgba(20, 100, 180, 0.36), transparent 65%);
}

.container {
  width: min(100% - 2rem, var(--container));
  margin-inline: auto;
}

/* Header */
.site-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 0 0.4rem;
  position: relative;
  z-index: 40;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  flex-shrink: 0;
}

.brand-mark {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.06em;
}

.brand-text span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 600;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-left: auto;
  margin-right: 0.75rem;
}

.header-nav a {
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s ease, background 0.2s ease;
}

.header-nav a:hover,
.header-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.header-actions {
  display: flex;
  align-items: center;
}

.download-button {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #c41ea8 0%, #4f46c8 48%, #1a8fd4 100%);
  box-shadow: 0 8px 24px rgba(26, 143, 212, 0.28);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.download-button svg {
  width: 16px;
  height: 16px;
}

.download-button:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
  box-shadow: 0 12px 28px rgba(26, 143, 212, 0.38);
}

.download-button--lg {
  padding: 0.95rem 1.5rem;
  font-size: 0.85rem;
}

.download-button--lg svg {
  width: 18px;
  height: 18px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--bg-elevated);
  padding: 0;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: #dbe7ff;
}

/* Hero */
.hero {
  padding: 2.5rem 0 1rem;
  animation: fadeUp 0.7s ease both;
}

.hero-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.hero-badge {
  width: 88px;
  flex-shrink: 0;
  animation: float 4.5s ease-in-out infinite;
}

.hero-copy strong {
  display: block;
  margin-bottom: 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  color: #c084d8;
}

.hero-copy h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(2.1rem, 5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy p {
  margin: 0;
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.55;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(22, 38, 72, 0.7), rgba(12, 22, 48, 0.55));
  backdrop-filter: blur(12px);
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(180, 40, 150, 0.12), rgba(26, 143, 212, 0.18));
  color: #7ec8f0;
  flex-shrink: 0;
}

.hero-feature-icon svg {
  width: 22px;
  height: 22px;
}

.hero-feature h2 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-family: var(--display);
}

.hero-feature p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

/* Products */
.products-section {
  padding: 2.75rem 0 1rem;
}

.section-head {
  margin-bottom: 1.25rem;
}

.section-head h2 {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--display);
  font-size: 1.35rem;
  letter-spacing: 0.02em;
}

.accent-mark {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: linear-gradient(180deg, #b81ec4, #1a8fd4);
  box-shadow: 0 0 12px rgba(26, 143, 212, 0.45);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.75rem;
}

.product-card {
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(var(--bg-card), var(--bg-card)) padding-box,
    linear-gradient(135deg, rgba(196, 30, 168, 0.45), rgba(26, 143, 212, 0.65)) border-box;
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: fadeUp 0.6s ease both;
}

.product-card:nth-child(2) { animation-delay: 0.05s; }
.product-card:nth-child(3) { animation-delay: 0.1s; }
.product-card:nth-child(4) { animation-delay: 0.15s; }
.product-card:nth-child(5) { animation-delay: 0.2s; }
.product-card:nth-child(6) { animation-delay: 0.25s; }

.product-card:hover {
  transform: translateY(-4px);
  box-shadow:
    0 18px 40px rgba(8, 16, 40, 0.45),
    0 0 24px rgba(196, 30, 168, 0.12),
    0 0 28px rgba(26, 143, 212, 0.16);
}

.product-media {
  position: relative;
  height: 260px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #0a1020;
}

.product-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.product-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(7, 13, 28, 0.75) 100%);
  pointer-events: none;
}

.product-body {
  padding: 0.85rem 0.75rem 0.95rem;
}

.product-body h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: clamp(0.78rem, 1.15vw, 0.95rem);
  line-height: 1.25;
}

.product-body p {
  margin: 0 0 0.75rem;
  color: var(--muted);
  font-size: clamp(0.68rem, 0.95vw, 0.78rem);
  line-height: 1.35;
}

.product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 0.35rem;
  padding: 0.5rem 0.55rem;
  border-radius: 10px;
  font-size: clamp(0.72rem, 1vw, 0.82rem);
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, #c41ea8 0%, #4f46c8 45%, #1a8fd4 100%);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.product-button svg {
  width: 14px;
  height: 14px;
}

.product-button:hover {
  filter: brightness(1.1);
  transform: translateX(2px);
}

/* Trust */
.trust-panel {
  margin: 2rem 0;
  padding: 1.35rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.75), rgba(10, 18, 40, 0.65));
}

.trust-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.15rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(180, 40, 150, 0.12), rgba(26, 143, 212, 0.18));
  color: #7ec8f0;
  flex-shrink: 0;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-item h3 {
  margin: 0 0 0.15rem;
  font-size: 0.95rem;
  font-family: var(--display);
}

.trust-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.trust-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.65rem 1rem;
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 1rem;
}

.reviews strong {
  color: var(--text);
}

.stars {
  color: #c084d8;
  letter-spacing: 0.08em;
}

.reviews-carousel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
}

.reviews-viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}

.reviews-track {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding: 0.25rem 0.15rem 0.55rem;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-bright) transparent;
  cursor: grab;
}

.reviews-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
  scroll-snap-type: none;
}

.reviews-track::-webkit-scrollbar {
  height: 6px;
}

.reviews-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, #b81ec4, #1a8fd4);
}

.review-card {
  flex: 0 0 240px;
  scroll-snap-align: start;
  padding: 0.95rem 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.9), rgba(10, 18, 40, 0.75));
}

.review-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.45rem;
}

.review-card__name {
  font-family: var(--display);
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.review-card__stars {
  color: #c084d8;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.review-card__text {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.reviews-nav {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(14, 24, 48, 0.9);
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.reviews-nav:hover {
  background: rgba(37, 99, 235, 0.25);
  border-color: rgba(96, 165, 250, 0.4);
}

@media (max-width: 560px) {
  .review-card {
    flex-basis: 210px;
  }

  .reviews-nav {
    display: none;
  }
}

/* How */
.how-section {
  padding: 1.5rem 0 2rem;
}

.how-head {
  text-align: center;
  margin-bottom: 1.5rem;
}

.how-head h2 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
  font-size: 1.4rem;
}

.bolt {
  margin-right: 0.25rem;
}

.how-head p {
  margin: 0;
  color: var(--muted);
}

.how-steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.how-step {
  flex: 1 1 200px;
  max-width: 280px;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-card);
  text-align: center;
}

.step-number {
  display: inline-grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 0.75rem;
  border-radius: 50%;
  font-family: var(--display);
  font-weight: 700;
  background: linear-gradient(135deg, #2f8fd6, #1a6fb8);
  box-shadow: 0 8px 20px rgba(26, 143, 212, 0.35);
}

.step-copy h3 {
  margin: 0 0 0.4rem;
  font-family: var(--display);
  font-size: 1rem;
}

.step-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.step-arrow {
  display: flex;
  align-items: center;
  color: #4b6fa8;
  font-size: 1.4rem;
  padding-top: 0.5rem;
}

.how-note-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1.35rem;
}

.how-note {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--accent-soft);
  color: #b7c9ea;
  font-size: 0.88rem;
  text-align: center;
}

/* CTA */
.cta-section {
  padding: 0.5rem 0 2.5rem;
}

.cta-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 22px;
  background:
    radial-gradient(ellipse at 28% 0%, rgba(180, 40, 150, 0.16), transparent 48%),
    radial-gradient(ellipse at 70% 8%, rgba(26, 143, 212, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(14, 18, 40, 0.92), rgba(6, 8, 20, 0.96));
}

.cta-card h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
}

.cta-card p {
  margin: 0 0 1.35rem;
  color: var(--muted);
}

/* Footer */
.site-footer {
  padding: 1rem 0 2rem;
}

.footer-main {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  text-align: center;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-brand .brand {
  justify-content: center;
}

.footer-brand > p {
  margin: 0.85rem 0 0;
  max-width: 22rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.footer-col h3 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  color: #9eb4d8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  color: #667894;
  font-size: 0.82rem;
  text-align: center;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@media (max-width: 1100px) {
  .container {
    width: min(100% - 1.25rem, var(--container));
  }

  .products-grid {
    gap: 0.55rem;
  }

  .product-media {
    height: 220px;
  }
}

@media (max-width: 960px) {
  .products-grid {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .product-card {
    flex: 0 0 170px;
    scroll-snap-align: start;
  }

  .product-media {
    height: 240px;
  }

  .product-body h3 { font-size: 0.9rem; }
  .product-body p { font-size: 0.75rem; }
  .product-button { font-size: 0.8rem; }

  .hero-features,
  .trust-top,
  .footer-main {
    grid-template-columns: 1fr;
  }

  .step-arrow {
    display: none;
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: flex;
  }

  .header-nav {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
    margin: 0;
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(10, 18, 40, 0.96);
    backdrop-filter: blur(16px);
  }

  .site-header.is-open .header-nav {
    display: flex;
  }

  .header-actions {
    display: none;
  }

  .site-header.is-open .header-actions {
    display: flex;
    position: absolute;
    top: calc(100% + 12.5rem);
    left: 0;
    right: 0;
    padding: 0 0.75rem 0.75rem;
    border: 1px solid var(--border);
    border-top: 0;
    border-radius: 0 0 16px 16px;
    background: rgba(10, 18, 40, 0.96);
  }

  .site-header.is-open .header-actions .download-button {
    width: 100%;
    justify-content: center;
  }

  .hero-main {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-badge {
    width: 72px;
  }
}

@media (max-width: 560px) {
  .how-note {
    border-radius: 16px;
  }
}

/* ========== Product detail ========== */
.product-detail-page {
  padding: 1.25rem 0 2.5rem;
}

.product-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.product-breadcrumbs a:hover {
  color: #fff;
}

.product-showcase {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-preview {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
  background: #0a1020;
  cursor: zoom-in;
}

.product-preview-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.product-preview-zoom {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: rgba(8, 14, 32, 0.72);
  color: #fff;
  border: 1px solid var(--border);
}

.product-preview-zoom svg {
  width: 18px;
  height: 18px;
}

.product-thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.65rem;
}

.product-thumbs button {
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: #0a1020;
  cursor: pointer;
  opacity: 0.72;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}

.product-thumbs button.is-active,
.product-thumbs button:hover {
  opacity: 1;
  border-color: var(--accent-bright);
}

.product-thumbs img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
}

.product-side-panel {
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.85), rgba(10, 18, 40, 0.75));
}

.product-kicker {
  display: block;
  margin-bottom: 0.45rem;
  color: #c084d8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-side-panel h1 {
  margin: 0 0 0.75rem;
  font-family: var(--display);
  font-size: clamp(1.6rem, 3vw, 2rem);
  line-height: 1.15;
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 0.85rem;
}

.product-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: #c5d4f0;
  font-size: 0.78rem;
  font-weight: 600;
}

.product-tag--live i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #42d369;
  box-shadow: 0 0 8px rgba(66, 211, 105, 0.7);
}

.product-side-panel > p {
  margin: 0 0 1rem;
  color: var(--muted);
  line-height: 1.5;
}

.product-highlights {
  margin: 0 0 1.15rem;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.45rem;
}

.product-highlights li {
  position: relative;
  padding-left: 1rem;
  color: #c9d6ef;
  font-size: 0.9rem;
}

.product-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a8fd4, #c41ea8);
}

.product-download {
  width: 100%;
  justify-content: center;
}

.product-delivery {
  margin-top: 0.85rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-info-combined {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.product-info-combined__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.product-info-card {
  padding: 1.15rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.8), rgba(10, 18, 40, 0.72));
}

.product-info-card strong {
  display: block;
  margin-bottom: 0.55rem;
  font-family: var(--display);
}

.product-info-card p {
  margin: 0.2rem 0;
  color: #d5def2;
  font-size: 0.92rem;
}

.product-info-card small {
  display: block;
  margin-top: 0.45rem;
  color: var(--muted);
}

.product-info-combined__bottom {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.85rem;
}

.product-info-combined__bottom article {
  padding: 1.1rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(18, 32, 64, 0.8), rgba(10, 18, 40, 0.72));
}

.product-info-combined__bottom h3 {
  margin: 0 0 0.3rem;
  font-family: var(--display);
  font-size: 0.95rem;
}

.product-info-combined__bottom p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.product-tabs-panel {
  margin-bottom: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
  overflow: hidden;
}

.product-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.75rem;
  border-bottom: 1px solid var(--border);
  background: rgba(10, 18, 40, 0.45);
}

.product-tabs button {
  border: 0;
  border-radius: 10px;
  padding: 0.65rem 0.95rem;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.product-tabs button.is-active,
.product-tabs button:hover {
  color: #fff;
  background: linear-gradient(135deg, rgba(180, 40, 150, 0.16), rgba(26, 143, 212, 0.2));
}

.product-tab-panels {
  padding: 1rem 1.1rem 1.2rem;
}

.feature-accordion {
  display: grid;
  gap: 0.65rem;
}

.feature-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: rgba(10, 18, 40, 0.4);
}

.feature-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.95rem 1rem;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.feature-item .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid #8aa4d0;
  border-bottom: 2px solid #8aa4d0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.feature-item.is-open .chev {
  transform: rotate(-135deg);
}

.feature-content {
  display: none;
  padding: 0 1rem 1rem;
  gap: 1rem;
}

.feature-item.is-open .feature-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.feature-item.is-open .feature-content--stack {
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

.feature-line {
  padding: 0.75rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(10, 18, 40, 0.35);
}

.feature-line strong {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  color: #e8eefc;
}

.feature-line p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.45;
}

.feature-section h4 {
  margin: 0 0 0.55rem;
  font-size: 0.88rem;
  color: #c4a0d8;
}

.feature-section ul {
  margin: 0;
  padding-left: 1.1rem;
  color: #c7d3ea;
  font-size: 0.86rem;
  line-height: 1.55;
}

.requirements-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.requirements-card {
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 18, 40, 0.4);
}

.requirements-card strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--display);
}

.requirements-card p {
  margin: 0;
  color: #d5def2;
}

.requirements-card small {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
}

.reviews-placeholder {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(10, 18, 40, 0.4);
}

.reviews-placeholder h3 {
  margin: 0 0 0.45rem;
  font-family: var(--display);
}

.reviews-placeholder p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.product-description-block,
.product-faq-block {
  margin-bottom: 1.25rem;
}

.product-description-card,
.product-faq {
  padding: 1.25rem;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: var(--bg-card);
}

.product-description-kicker {
  display: block;
  margin-bottom: 0.5rem;
  color: #c084d8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.product-description-card h2 {
  margin: 0 0 0.85rem;
  font-family: var(--display);
  font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  line-height: 1.25;
}

.product-description-card p {
  margin: 0 0 0.85rem;
  color: #c7d3ea;
  line-height: 1.6;
}

.product-description-card p:last-child {
  margin-bottom: 0;
}

.product-description-card a {
  color: #6ec4ef;
  text-decoration: underline;
}

.faq-item + .faq-item {
  margin-top: 0.55rem;
  padding-top: 0.55rem;
  border-top: 1px solid var(--border);
}

.faq-item > button {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: var(--display);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  text-align: left;
}

.faq-item p {
  display: none;
  margin: 0.2rem 0 0.4rem;
  color: var(--muted);
  line-height: 1.55;
}

.faq-item.is-open p {
  display: block;
}

.faq-item .chev {
  width: 10px;
  height: 10px;
  border-right: 2px solid #8aa4d0;
  border-bottom: 2px solid #8aa4d0;
  transform: rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.is-open .chev {
  transform: rotate(-135deg);
}

.product-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(3, 8, 18, 0.88);
  backdrop-filter: blur(8px);
  padding: 2rem;
}

.product-lightbox.is-open {
  display: flex;
}

.product-lightbox-image {
  max-width: min(1100px, 100%);
  max-height: 80vh;
  border-radius: 14px;
  object-fit: contain;
}

.product-lightbox-close,
.product-lightbox-nav {
  position: absolute;
  border: 1px solid var(--border);
  background: rgba(14, 24, 48, 0.9);
  color: #fff;
  cursor: pointer;
}

.product-lightbox-close {
  top: 1rem;
  right: 1rem;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  font-size: 1.5rem;
}

.product-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 1.8rem;
  line-height: 1;
}

.product-lightbox-prev { left: 1rem; }
.product-lightbox-next { right: 1rem; }

.product-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: 1.25rem;
  transform: translateX(-50%);
  color: #c7d3ea;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .product-showcase,
  .product-info-combined__top,
  .product-info-combined__bottom,
  .requirements-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .product-thumbs {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========== Status page ========== */
.status-page {
  padding: 1.5rem 0 2.5rem;
}

.status-hero {
  margin-bottom: 1.5rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.status-live {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(16, 22, 48, 0.7);
  color: #9fd4ff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.status-live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #42d369;
  box-shadow: 0 0 10px rgba(66, 211, 105, 0.8);
  animation: statusPulse 1.6s ease-in-out infinite;
}

.status-hero h1 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
}

.status-hero > p {
  margin: 0 0 1rem;
  color: var(--muted);
}

.status-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}

.status-pill,
.status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.78rem;
  font-weight: 700;
}

.status-pill i,
.status-chip i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
}

.status-pill--undetected,
.status-chip--undetected {
  color: #9ef0b5;
  background: rgba(66, 211, 105, 0.12);
}

.status-pill--undetected i,
.status-chip--undetected i {
  background: #42d369;
  box-shadow: 0 0 8px rgba(66, 211, 105, 0.7);
}

.status-pill--updating,
.status-chip--updating {
  color: #ffd48a;
  background: rgba(255, 170, 50, 0.12);
}

.status-pill--updating i,
.status-chip--updating i {
  background: #ffaa32;
  box-shadow: 0 0 8px rgba(255, 170, 50, 0.7);
}

.status-pill--detected,
.status-chip--detected {
  color: #ffb0b0;
  background: rgba(255, 80, 80, 0.12);
}

.status-pill--detected i,
.status-chip--detected i {
  background: #ff5050;
  box-shadow: 0 0 8px rgba(255, 80, 80, 0.7);
}

.status-groups-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.status-group {
  padding: 1rem;
  border: 1px solid transparent;
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(18, 24, 52, 0.92), rgba(10, 14, 32, 0.88)) padding-box,
    linear-gradient(135deg, rgba(196, 30, 168, 0.55), rgba(26, 143, 212, 0.7)) border-box;
}

.status-group-title {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.85rem;
}

.status-group-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: contain;
  background: rgba(10, 16, 36, 0.55);
}

.status-group-title h2 {
  margin: 0;
  font-family: var(--display);
  font-size: 1rem;
}

.status-products {
  display: grid;
  gap: 0.75rem;
}

.status-card {
  position: relative;
  overflow: hidden;
  min-height: 170px;
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(#0a1020, #0a1020) padding-box,
    linear-gradient(135deg, rgba(196, 30, 168, 0.65), rgba(26, 143, 212, 0.85)) border-box;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.status-card:hover {
  transform: translateY(-3px);
  box-shadow:
    0 14px 30px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(196, 30, 168, 0.25),
    0 10px 28px rgba(26, 143, 212, 0.2);
}

.status-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.status-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(196, 30, 168, 0.18), transparent 42%, rgba(26, 143, 212, 0.22)),
    linear-gradient(180deg, transparent 20%, rgba(6, 8, 20, 0.92) 100%);
  pointer-events: none;
}

.status-card h3,
.status-card-bottom {
  position: relative;
  z-index: 1;
}

.status-card h3 {
  margin: 0 0 0.65rem;
  padding: 0 0.9rem;
  font-family: var(--display);
  font-size: 1rem;
}

.status-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  padding: 0 0.9rem 0.9rem;
}

.status-card-bottom a {
  display: inline-flex;
  align-items: center;
  padding: 0.4rem 0.75rem;
  border-radius: 10px;
  border: 1px solid rgba(150, 180, 255, 0.35);
  background: rgba(10, 16, 36, 0.82);
  color: #e8eefc;
  font-size: 0.8rem;
  font-weight: 700;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.status-card-bottom a:hover {
  color: #fff;
  border-color: rgba(180, 140, 255, 0.55);
  background: linear-gradient(135deg, rgba(196, 30, 168, 0.35), rgba(26, 143, 212, 0.4));
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.55; transform: scale(0.85); }
}

@media (max-width: 960px) {
  .status-groups-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .status-groups-grid {
    grid-template-columns: 1fr;
  }
}

/* ========== FAQ / Before You Download ========== */
.faq-page {
  padding: 1.5rem 0 2.5rem;
}

.faq-hero {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 1.5rem;
}

.faq-kicker {
  display: inline-block;
  margin-bottom: 0.65rem;
  color: #c084d8;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.faq-hero h1 {
  margin: 0 0 0.65rem;
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
}

.faq-hero p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.faq-page .faq-item {
  border: 1px solid transparent;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(18, 24, 52, 0.9), rgba(10, 14, 32, 0.86)) padding-box,
    linear-gradient(135deg, rgba(196, 30, 168, 0.4), rgba(26, 143, 212, 0.55)) border-box;
  padding: 0.35rem 0.2rem;
}

.faq-page .faq-item + .faq-item {
  margin-top: 0;
  padding-top: 0.35rem;
  border-top: 0;
}

.faq-page .faq-item > button {
  padding: 0.95rem 1.1rem;
}

.faq-answer {
  display: none;
  padding: 0 1.1rem 1rem;
}

.faq-page .faq-item.is-open .faq-answer {
  display: grid;
  gap: 0.7rem;
}

.faq-answer p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

.faq-page .faq-item p {
  display: none;
}

.faq-page .faq-item.is-open .faq-answer p {
  display: block;
}

.faq-cta {
  text-align: center;
  padding: 2rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 20px;
  background:
    radial-gradient(ellipse at 28% 0%, rgba(180, 40, 150, 0.16), transparent 48%),
    radial-gradient(ellipse at 70% 8%, rgba(26, 143, 212, 0.2), transparent 52%),
    linear-gradient(180deg, rgba(14, 18, 40, 0.92), rgba(6, 8, 20, 0.96)) padding-box,
    linear-gradient(135deg, rgba(196, 30, 168, 0.45), rgba(26, 143, 212, 0.6)) border-box;
}

.faq-cta h2 {
  margin: 0 0 0.55rem;
  font-family: var(--display);
  font-size: clamp(1.3rem, 3vw, 1.8rem);
}

.faq-cta > p {
  margin: 0 0 1.2rem;
  color: var(--muted);
}

.faq-cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem;
}

.faq-secondary {
  display: inline-flex;
  align-items: center;
  padding: 0.7rem 1.1rem;
  border-radius: 12px;
  border: 1px solid var(--border);
  color: #e8eefc;
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  background: rgba(14, 24, 48, 0.7);
}

.faq-secondary:hover {
  border-color: rgba(180, 140, 255, 0.45);
}
