/*
 * orbitalskeys — Custom Theme Overrides
 * Dark + Purple/Pink Gradient Accent
*/

/* ─── Google Font: Syne ─── */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&display=swap');

/* ─── Variables ─── */
:root {
  --grad-start: #a855f7;
  --grad-end:   #ec4899;
  --grad: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  --grad-soft: linear-gradient(135deg, rgba(168,85,247,.14), rgba(236,72,153,.07));
  --surface-1: #0a0a0a;
  --surface-2: #141414;
  --surface-3: #1c1c1c;
  --text-muted: #666;
  --radius: 12px;
}

/* ─── Base ─── */
html {
  /* stable can interact oddly with embedded builder / 100% widths; avoid horizontal “breathing” */
  scrollbar-gutter: auto;
}

body {
  font-family: 'Syne', sans-serif !important;
  background: var(--surface-1) !important;
  color: #e8e8e8;
  -webkit-font-smoothing: antialiased;
  overflow-x: visible;
}

/* Contain wide content without clipping fixed layers / hero hover (clip caused cut-off + jitter) */
.page-shell {
  overflow-x: visible;
  max-width: 100%;
}

/* ── Square dot-grid background (global) ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 32px 32px;
}

/* Cursor: no position transition — lag reads as “page shifting”; fixed behind main shell */
#cursor-glow {
  position: fixed;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168,85,247,.16) 0%, rgba(236,72,153,.08) 45%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  transform: translate(-50%, -50%);
  transition: none;
  mix-blend-mode: normal;
}

#app > .page-shell {
  position: relative;
}

/* ─── Navbar ─── */
.navbar {
  background: rgba(10,10,10,.88) !important;
  backdrop-filter: blur(20px) !important;
  -webkit-backdrop-filter: blur(20px) !important;
  border-bottom: 1px solid rgba(168,85,247,.1) !important;
  position: relative;
  z-index: 200;
}

.navbar .navbar-brand {
  font-size: 0.95rem !important;
  font-weight: 600 !important;
  letter-spacing: 0;
  color: #fff !important;
  background: none !important;
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #fff !important;
  background-clip: unset !important;
}

.navbar .navbar-brand img {
  max-height: 2rem !important;
}

.navbar .nav-link {
  font-size: .83rem !important;
  font-weight: 500;
  color: rgba(255,255,255,.52) !important;
  transition: color .2s;
}
.navbar .nav-link:hover { color: #fff !important; }

.navbar .nav-item a.nav-link.active {
  color: #fff !important;
  position: relative;
}
.navbar .nav-item a.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  border-radius: 2px;
}

.navbar .btn-outline-primary {
  border-color: rgba(168,85,247,.35) !important;
  color: rgba(255,255,255,.7) !important;
  border-radius: 8px !important;
  font-size: .8rem; font-weight: 500;
  transition: all .2s;
}
.navbar .btn-outline-primary:hover {
  background: rgba(168,85,247,.1) !important;
  border-color: rgba(168,85,247,.55) !important;
  color: #fff !important;
}

/* Center primary nav links (Home, Products, …) on desktop */
@media (min-width: 992px) {
  .navbar > .container {
    position: relative;
  }

  .navbar .navbar-collapse {
    flex-grow: 1;
    justify-content: flex-end;
  }

  .navbar .navbar-nav.me-auto {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}

/* ─── Hero ─── */
.hero {
  position: relative;
  overflow: visible;
  background: transparent !important;
  background-image: none !important;
  z-index: 1;
}

.hero.alignment-center .content,
.hero:not(.alignment-left):not(.alignment-right) .content {
  text-align: center !important;
  margin-left: auto !important;
  margin-right: auto !important;
  width: 100%;
  max-width: 48rem;
}

.hero.alignment-center .content h1,
.hero:not(.alignment-left):not(.alignment-right) .content h1 {
  margin-left: auto;
  margin-right: auto;
}

/* Grid comes from fixed body::before only — avoids seams / “cuts” between sections */

.hero .container {
  position: relative;
  z-index: 1;
}

.hero.alignment-center .container,
.hero:not(.alignment-left):not(.alignment-right) .container {
  align-items: center !important;
}

.hero .bg-overlay { display: none; }

.hero .hero-actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}

.hero .hero-actions .btn {
  margin-bottom: 0 !important;
}

.btn-discord {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  background: #5865f2 !important;
  border: 1px solid rgba(255,255,255,.12) !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  padding: 0.5rem 1.15rem !important;
  box-shadow: 0 4px 14px rgba(88, 101, 242, 0.25);
  transition: transform .2s, box-shadow .2s, opacity .2s !important;
}

.btn-discord:hover {
  background: #4752c4 !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(88, 101, 242, 0.35) !important;
}

/* Hero: no translateY on hover — removes layout jiggle when moving over CTAs */
.hero .btn-discord:hover {
  transform: none !important;
  box-shadow: 0 8px 22px rgba(88, 101, 242, 0.4) !important;
}

.hero .content h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.03em;
  color: #fff;
  margin-bottom: 1.25rem;
}
.hero .content p {
  font-size: .95rem;
  color: rgba(255,255,255,.42);
  max-width: 460px;
  margin: 0 auto 2rem;
  line-height: 1.75;
}

.hero .fake-searchbar input {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 10px !important;
  color: rgba(255,255,255,.5) !important;
}
.hero .fake-searchbar input::placeholder { color: rgba(255,255,255,.2) !important; }
.hero .fake-searchbar svg { fill: rgba(255,255,255,.2) !important; }

.hero .stats-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.hero .stats {
  display: inline-flex !important;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.35rem 1.25rem !important;
  max-width: none !important;
  padding: 0.65rem 1.1rem !important;
  margin: 0 auto !important;
  background: rgba(255,255,255,.025) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: 999px !important;
}

/* Hero: disable all button lift transforms (global .btn-primary still applies otherwise) */
.hero .btn:hover,
.hero .btn:focus-visible {
  transform: none !important;
}

.hero .btn-primary:hover {
  box-shadow: 0 6px 24px rgba(168,85,247,.3) !important;
}

.hero .stats > div {
  padding: 0 0.35rem;
}

.hero .stats div .value {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem !important;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.hero .stats div .value svg {
  color: rgba(255,255,255,.45);
  opacity: 0.9;
}

.hero .stats div .label {
  color: rgba(255,255,255,.38) !important;
  font-size: 0.62rem !important;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── Section titles ─── */
.section-title h2, .section-title h1 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  letter-spacing: -.025em;
  font-size: 1.75rem;
  color: #fff;
}

section.products-section {
  background: transparent !important;
}

.products-section .section-title {
  text-align: center;
  justify-content: center;
  width: 100%;
}

.products-section .section-subtitle {
  justify-content: center;
  text-align: center;
  margin-bottom: 2.5rem;
}

.products-section .section-subtitle p {
  max-width: 36rem;
  margin: 0 auto;
}

/* ─── PRODUCTS — styled like reference image ─── */
.products {
  position: relative;
  z-index: 1;
}

/* Remove default card styles, rebuild from scratch */
.products .card {
  background: var(--surface-2) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease !important;
  text-decoration: none !important;
  display: block;
}
.products .card:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(168,85,247,.32) !important;
  box-shadow: 0 16px 48px rgba(168,85,247,.14) !important;
}

/* Image area — like reference: dark purple tint, image fills it */
.products .card .card-img-top {
  background: #12101a !important;
  position: relative;
  overflow: hidden;
}

/* Subtle purple tint overlay on image */
.products .card .card-img-top::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(88,28,135,.18);
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity .3s;
}
.products .card:hover .card-img-top::after { opacity: 1; }

/* Placeholder icon when no image */
.product-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 220px;
}
.product-img-placeholder svg {
  width: 84px !important;
  height: 84px !important;
  color: rgba(168,85,247,.5) !important;
  opacity: 1 !important;
}

/* "View Details" overlay button */
.products .card .card-img-top .overlay {
  z-index: 2;
  bottom: 0 !important;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 100%);
  padding: 1.5rem 1rem 1rem !important;
  border-radius: 0;
  opacity: 0;
  transition: opacity .3s !important;
}
.products .card:hover .card-img-top .overlay { opacity: 1 !important; }

.products .card .card-img-top .overlay .btn {
  background: var(--grad) !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  padding: .4rem 1rem !important;
  color: #fff !important;
}

/* Card body: price row + title — product name left-aligned; section title "Purchase keys" centered via .products-section */
.products .card .card-body {
  padding: 1rem 1.15rem 1.1rem !important;
  text-align: left;
}

.products .card .info {
  display: flex !important;
  justify-content: space-between !important;
  align-items: baseline !important;
  color: rgba(255,255,255,.45) !important;
  font-size: .82rem;
  margin-bottom: .4rem !important;
  overflow: visible !important;
  white-space: normal !important;
}

/* Price — gradient text like reference */
.products .card .info .price {
  background: none !important;
  -webkit-background-clip: initial !important;
  -webkit-text-fill-color: initial !important;
  background-clip: initial !important;
  color: #fff !important;
  font-weight: 700 !important;
  font-size: .9rem;
}
/* Slash-through old price */
.products .card .info .price s {
  color: rgba(255,255,255,.3) !important;
  font-weight: 400 !important;
  font-size: .78rem;
  margin-left: .25rem;
}

/* "In Stock" / "Out of Stock" — gradient text like reference */
.products .card .info .text-primary {
  background: var(--grad) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
  font-weight: 600 !important;
  font-size: .8rem !important;
  flex-shrink: 0;
}

/* Out of stock: muted instead of gradient */
.products .card .info p:last-child:not(:first-child) {
  /* handled via .text-primary override */
}

.products .card .card-title {
  font-weight: 700 !important;
  color: #fff !important;
  font-size: 1.12rem !important;
  letter-spacing: -.01em;
  margin-bottom: 0 !important;
  line-height: 1.3;
  text-align: left;
}

/* Badges on card image */
.products .card .card-img-top .badges {
  z-index: 3;
}
.products .card .card-img-top .badges div {
  background: var(--grad) !important;
  border-radius: 6px !important;
  font-size: .62rem !important;
  padding: .18rem .4rem !important;
}

/* ─── REVIEWS — single smooth marquee, pause on hover ─── */
section.testimonials-section,
.testimonials-section {
  position: relative;
  z-index: 1;
  padding: 5rem 0;
  overflow-x: visible;
  background: transparent !important;
}

.testimonials-section .section-title {
  text-align: center;
  justify-content: center;
  margin-bottom: 2.5rem;
}

.reviews-track-wrap {
  overflow: hidden;
  position: relative;
  width: 100%;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  animation: reviews-scroll 55s linear infinite;
  will-change: transform;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes reviews-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes reviews-scroll-reverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

.reviews-track--reverse {
  animation-name: reviews-scroll-reverse;
  animation-duration: 55s;
}

.reviews-track--reverse:hover {
  animation-play-state: paused;
}

.reviews-track--eldorado {
  animation-duration: 50s;
}

/* Eldorado card header layout */
.eldorado-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: .5rem;
}

.eldorado-meta {
  display: flex;
  align-items: center;
  gap: .4rem;
}

.eldorado-thumb {
  width: 1.1rem;
  height: 1.1rem;
  color: #ffd700;
  flex-shrink: 0;
}

.eldorado-category {
  font-size: .68rem;
  font-weight: 700;
  color: #ffd700;
  background: rgba(72, 63, 16);
  border: 1px solid rgba(72, 63, 16);
  padding: .1rem .4rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .05em;
}

.eldorado-user {
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .6);
}

/* Individual review cards inside the track */
.reviews-track .testimonial {
  flex: 0 0 320px;
  max-width: 320px;
  background: var(--surface-2) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: var(--radius) !important;
  transition: border-color .25s, box-shadow .25s, transform .25s;
  margin-bottom: 0 !important;
  cursor: default;
}

.reviews-track .testimonial:hover {
  border-color: rgba(168,85,247,.22) !important;
  box-shadow: 0 8px 32px rgba(168,85,247,.1) !important;
  transform: translateY(-3px);
}

.testimonial .stars svg { color: #FFD700 !important; fill: #FFD700 !important; }
.testimonial .header .quote { color: rgba(255,255,255,.06) !important; }
.testimonial .content .message { font-size: .85rem; color: rgba(255,255,255,.65); }
.testimonial .footer {
  background: rgba(0,0,0,.2) !important;
  border-top: 1px solid rgba(255,255,255,.05) !important;
}
.testimonial .footer .date { font-weight: 600; color: var(--grad-start); }

/* ─── Features — no opaque band behind row (grid continues) ─── */
section.features {
  background: transparent !important;
}

/* ─── Features — centered headings, equal-height cards ─── */
.features .section-title,
.features .section-subtitle {
  justify-content: center;
  text-align: center;
}

.features .section-subtitle p {
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.features .list {
  align-items: stretch;
}

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

.features .list .feature {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: var(--surface-2) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: var(--radius) !important;
  position: relative; overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.features .list .feature::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--grad-soft);
  opacity: 0;
  transition: opacity .3s;
}
.features .list .feature:hover::before { opacity: 1; }
.features .list .feature:hover {
  border-color: rgba(168,85,247,.22) !important;
  box-shadow: 0 8px 32px rgba(168,85,247,.1);
}
.features .list .feature i,
.features .list .feature svg {
  color: var(--grad-start) !important;
  width: 52px !important; height: 52px !important;
  font-size: 2.4rem !important; margin-bottom: 1.25rem !important;
  position: relative; z-index: 1;
}
.features .list .feature .title {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 1rem !important;
  line-height: 1.35;
  color: #fff;
  position: relative; z-index: 1;
}

@media (min-width: 768px) {
  .features .list .feature {
    min-height: 17.5rem;
  }
}

.features .list .feature .description {
  font-size: 0.88rem !important;
  color: rgba(255,255,255,.42) !important;
  line-height: 1.65;
  position: relative; z-index: 1;
  flex-grow: 1;
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
  max-width: 100%;
}

/* ─── FAQ — transparent; grid is global body::before (no per-section layer = no harsh seams) ─── */
section.faq {
  position: relative;
  background: transparent !important;
}

.faq .section-title,
.faq .section-subtitle {
  text-align: center;
  justify-content: center;
}

.faq .section-subtitle p {
  max-width: 36rem;
  margin: 0 auto;
}

.faq .accordion {
  max-width: 38rem;
  margin-left: auto;
  margin-right: auto;
}

.faq .accordion-item {
  background: var(--surface-2) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: var(--radius) !important;
  overflow: hidden;
  transition: border-color .2s;
}
.faq .accordion-item:hover { border-color: rgba(168,85,247,.22) !important; }

.faq .accordion-button {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: .92rem; color: #fff !important;
  background: var(--surface-2) !important;
  border-radius: var(--radius) !important;
}
.faq .accordion-button:not(.collapsed) {
  color: var(--grad-start) !important;
  box-shadow: none !important;
}
.faq .accordion-body {
  background: var(--surface-2) !important;
  color: rgba(255,255,255,.5);
  font-size: .875rem; line-height: 1.75;
}

/* ─── Text blocks — transparent; same continuous grid as rest of page ─── */
section.text-block {
  position: relative;
  background: transparent !important;
}

.text-block h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 2rem;
  letter-spacing: -.03em;
  color: #fff;
}

.text-block p, .text-block .editor p {
  color: rgba(255,255,255,.5);
  line-height: 1.7;
  font-size: 1rem;
}

.text-block.alignment-center .col-12 > p.whitespace-pre-line {
  max-width: 52rem;
  margin-left: auto;
  margin-right: auto;
  font-size: 0.98rem;
  line-height: 1.68;
  letter-spacing: 0.01em;
}

/* ─── Socials — transparent shell; grid from body::before ─── */
.socials {
  background: transparent !important;
  position: relative;
}
.socials .list .social {
  background: var(--surface-1) !important;
  border: 1px solid rgba(255,255,255,.06) !important;
  border-radius: var(--radius) !important;
  transition: border-color .2s, box-shadow .2s;
}
.socials .list .social:hover {
  border-color: rgba(168,85,247,.25) !important;
  box-shadow: 0 4px 20px rgba(168,85,247,.1);
  color: #fff !important;
}
.socials .list .social .left svg { background: var(--grad) !important; border-radius: 10px !important; }

/* ─── Footer ─── */
footer.footer {
  background: var(--surface-2) !important;
  border-top: 1px solid rgba(168,85,247,.1) !important;
  position: relative; z-index: 1;
}
.footer .logo p, footer .navbar-brand {
  font-family: 'Syne', sans-serif; font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.footer h5 {
  font-family: 'Syne', sans-serif;
  font-size: .68rem !important; letter-spacing: .1em !important;
  color: rgba(255,255,255,.28) !important; margin-bottom: 1.25rem !important;
}
.footer .nav li a { font-size: .84rem; color: rgba(255,255,255,.42) !important; transition: color .15s; }
.footer .nav li a:hover { color: var(--grad-start) !important; }

/* ─── Announcement ─── */
.announcement {
  background: var(--grad) !important;
  font-size: .78rem; font-weight: 600; letter-spacing: .04em;
}

/* ─── Buttons (global) ─── */
.btn-primary {
  background: var(--grad) !important; border: none !important;
  border-radius: 10px !important; font-weight: 600 !important;
  box-shadow: 0 4px 16px rgba(168,85,247,.2);
  transition: all .25s !important;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(168,85,247,.35) !important;
  opacity: .92;
}
.btn-outline-primary {
  border-color: rgba(168,85,247,.4) !important;
  color: rgba(255,255,255,.72) !important;
  border-radius: 10px !important; transition: all .2s !important;
}
.btn-outline-primary:hover {
  background: rgba(168,85,247,.1) !important;
  border-color: rgba(168,85,247,.55) !important;
  color: #fff !important;
}

/* ─── Forms ─── */
.form-control, .form-select {
  background: rgba(255,255,255,.04) !important;
  border: 1px solid rgba(255,255,255,.08) !important;
  border-radius: 10px !important; color: #fff !important;
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: rgba(168,85,247,.5) !important;
  box-shadow: 0 0 0 3px rgba(168,85,247,.12) !important;
  background: rgba(255,255,255,.05) !important;
}
.form-control::placeholder { color: rgba(255,255,255,.2) !important; }

/* ─── Chips ─── */
.chips .btn {
  border-radius: 999px !important; font-size: .78rem !important;
  font-weight: 600 !important; border-color: rgba(255,255,255,.1) !important;
  color: rgba(255,255,255,.55) !important; transition: all .2s !important;
}
.chips .btn:hover, .chips .btn.active {
  background: rgba(168,85,247,.12) !important;
  border-color: rgba(168,85,247,.4) !important; color: #fff !important;
}

/* ─── Pagination ─── */
.pagination .page-item:not(.active) .page-link {
  background: var(--surface-2) !important;
  border-color: rgba(255,255,255,.06) !important;
  color: rgba(255,255,255,.45) !important; border-radius: 8px !important;
}
.pagination .page-item.active .page-link {
  background: var(--grad) !important; border: none !important; border-radius: 8px !important;
}

/* ─── Product page ─── */
.product-wrapper .badges div, .product-wrapper .badges a {
  background: var(--grad) !important; border-radius: 8px !important;
}

/* ─── Cart ─── */
.cart .product, .cart .form {
  background: var(--surface-2) !important; border-radius: var(--radius) !important;
}

/* ─── Modals ─── */
.modal-content {
  background: var(--surface-2) !important;
  border: 1px solid rgba(255,255,255,.07) !important;
  border-radius: 16px !important;
}
.modal-header { border-bottom: 1px solid rgba(255,255,255,.06) !important; }

/* ─── Notification ─── */
.notification-content {
  background: var(--surface-2) !important;
  border: 1px solid rgba(168,85,247,.2) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,.5), 0 0 0 1px rgba(168,85,247,.08) !important;
  border-radius: var(--radius) !important;
}

/* ─── Alternating backgrounds ─── */
.bg-block-secondary { background: var(--surface-2) !important; }
.bg-block-primary   { background: var(--surface-1) !important; }

/* Keep text + FAQ on the global grid (see body::before); utility classes would otherwise paint a solid slab */
section.text-block.bg-block-primary,
section.text-block.bg-block-secondary,
section.faq.bg-block-primary,
section.faq.bg-block-secondary {
  background: transparent !important;
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--surface-1); }
::-webkit-scrollbar-thumb { background: rgba(168,85,247,.3); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(168,85,247,.5); }

/* ─── Selection ─── */
::selection { background: rgba(168,85,247,.3); color: #fff; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .hero .content h1 { font-size: 2.2rem; }
  .reviews-track .testimonial { flex: 0 0 280px; max-width: 280px; }
}