/*
 * Enter any custom CSS here.
 * This file will not be overwritten by theme updates.
*/

/* Catch-all: prevent rogue horizontal scroll on mobile from off-screen elements
   (light beams, glow blobs, transforms, etc). `clip` is safer than `hidden` -
   doesn't create a scroll container so position: sticky still works inside. */
html, body { overflow-x: clip; }

/* The [data-dsr] scroll-reveal entrance now lives entirely in master.njk (one animation-based system:
   blur-fade-up for above-the-fold, plain fade-up for scroll-revealed). The old transition + !important
   version that used to live here was removed: its !important opacity/transform beat CSS animations, so
   it silently suppressed the new system everywhere it ran. */

/* Product / group cards: match the order-process panels' soft grey (white/4) so they read as the same
   distinct card surface and don't blend into the page bg (#161619). The old bg-white/2.5 sat too close;
   a darker fill read as black. Shared by the grid (product-card) and list (product-card-horizontal). */
.pc-card { background-color: rgba(255, 255, 255, 0.04); }
.pc-card:hover { background-color: rgba(255, 255, 255, 0.07); }

/* ── Shimmer pill badge (used in hero, features, faq, etc.) ── */
.hero-badge-shine {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(var(--cl-t-primary), 0.06);
  background-image: linear-gradient(110deg, transparent 40%, color-mix(in srgb, color-mix(in srgb, rgb(var(--cl-accent)) 55%, #ffffff) 14%, transparent) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hero-badge-shine 2.5s linear infinite;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.65);
}
.hero-badge-shine svg { opacity: 0.7; }

@keyframes hero-badge-shine {
  from { background-position: 0 0; }
  to   { background-position: -200% 0; }
}

/* ── Onyx-style buttons (used in hero, footer, etc.) ── */
.onyx-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 40px;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.18px;
  text-decoration: none;
  transition: all .4s cubic-bezier(.6, .6, 0, 1);
  color: #fff;
}
.onyx-btn--primary {
  background-color: rgb(var(--cl-accent));
  box-shadow:
    inset 0 2px 6px rgba(255, 255, 255, 0.35),
    inset 0 -2px 0.5px rgba(0, 0, 0, 0.4);
}
.onyx-btn--primary:hover {
  box-shadow:
    inset 0 0 16px 6px rgba(255, 255, 255, 0.32),
    inset 0 -2px 0.5px rgba(0, 0, 0, 0.15);
}
.onyx-btn--secondary {
  background-color: #212327;
  box-shadow:
    inset 0 -2px 0.5px rgba(0, 0, 0, 0.4),
    inset 0 1px 0.5px rgba(255, 255, 255, 0.16);
}
.onyx-btn--secondary:hover {
  box-shadow:
    inset 0 -2px 0.5px rgba(0, 0, 0, 0.4),
    inset 0 1px 0.5px rgba(255, 255, 255, 0.16),
    inset 0 0 24px 6px rgba(156, 160, 171, 0.2);
}
.onyx-btn svg { flex-shrink: 0; transition: transform .25s ease; }
.onyx-btn:hover svg { transform: translateX(3px); }


/* ── Currency Selector ── */
.currency-selector.lg .choices__inner {
  height: 34px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.025) !important;
  padding: 0 16px !important;
  display: flex !important;
  align-items: center !important;
  transition: background 0.2s, border-color 0.2s !important;
}
.currency-selector.lg .choices:hover .choices__inner,
.currency-selector.lg .choices.is-open .choices__inner {
  background: rgba(255,255,255,0.05) !important;
  border-color: rgba(255,255,255,0.20) !important;
}
.currency-selector.lg .choices__inner .choices__list { display: flex !important; align-items: center !important; }
.currency-selector.lg .choices__inner .choices__item { max-width: none !important; display: flex !important; align-items: center !important; gap: 4px !important; }
.currency-selector.lg .choices__inner .symbol { background: transparent !important; border-radius: 0 !important; width: auto !important; min-width: 0 !important; padding: 0 !important; margin: 0 !important; font-size: 0.875rem !important; font-weight: 500 !important; color: rgba(var(--cl-t-primary), 0.75) !important; }
.currency-selector.lg .choices__inner .code { display: inline !important; font-size: 0.875rem !important; font-weight: 500 !important; color: rgba(var(--cl-t-primary), 0.75) !important; }
.currency-selector.lg .choices__inner .default { display: none !important; }
.currency-selector.lg .choices__list--dropdown { margin-left: 0 !important; margin-top: 4px !important; }

/* ── Currency Selector (mobile xs) ── */
.currency-selector.xs .choices__inner {
  height: 28px !important;
  min-height: 0 !important;
  min-width: 0 !important;
  border-radius: 6px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  background: rgba(255,255,255,0.025) !important;
  padding: 0 8px !important;
  display: flex !important;
  align-items: center !important;
}
.currency-selector.xs .choices__inner .choices__list { display: flex !important; align-items: center !important; }
.currency-selector.xs .choices__inner .choices__item { display: flex !important; align-items: center !important; gap: 3px !important; }
.currency-selector.xs .choices__inner .symbol { background: transparent !important; border-radius: 0 !important; width: auto !important; min-width: 0 !important; padding: 0 !important; margin: 0 !important; font-size: 0.75rem !important; font-weight: 500 !important; color: rgba(var(--cl-t-primary), 0.75) !important; }
.currency-selector.xs .choices__inner .code { display: none !important; }
.currency-selector.xs .choices__inner .default { display: none !important; }
.currency-selector.xs .choices__list--dropdown { margin-top: 4px !important; }

/* ── Status Page: Search ── */
.status-search-wrap {
  position: relative;
  flex: 1;
}
.status-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  color: rgba(var(--cl-t-primary), 0.3);
  pointer-events: none;
}
.status-search-input {
  width: 100%;
  padding: 10px 14px 10px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  color: rgb(var(--cl-t-primary));
  font-size: 13px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.status-search-input::placeholder { color: rgba(var(--cl-t-primary), 0.3); }
.status-search-input:focus {
  border-color: rgba(var(--cl-accent), 0.4);
  background: rgba(255, 255, 255, 0.06);
}

/* ── Status Page: Custom dropdown ── */
.status-dd {
  position: relative;
  width: 220px;
  flex-shrink: 0;
  user-select: none;
}
.status-dd-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.65);
  transition: border-color 0.2s, background 0.2s;
  box-sizing: border-box;
}
.status-dd-trigger:hover { background: rgba(255, 255, 255, 0.07); }
.status-dd.open .status-dd-trigger {
  border-color: rgba(var(--cl-accent), 0.35);
  background: rgba(255, 255, 255, 0.07);
  color: rgb(var(--cl-t-primary));
}
.status-dd-label { flex: 1; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.status-dd-chevron {
  flex-shrink: 0;
  color: rgba(var(--cl-t-primary), 0.3);
  transition: transform 0.2s;
}
.status-dd.open .status-dd-chevron { transform: rotate(180deg); }

.status-dd-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0; right: 0;
  background: rgb(var(--cl-background));
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  overflow: hidden;
  z-index: 50;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(-6px) scale(0.98);
  transform-origin: top center;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.18s cubic-bezier(0.16, 1, 0.3, 1);
}
.status-dd.open .status-dd-menu {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}
.status-dd-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.55);
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}
.status-dd-option:hover {
  background: rgba(255, 255, 255, 0.05);
  color: rgb(var(--cl-t-primary));
}
.status-dd-option.selected {
  color: rgb(var(--cl-accent));
  background: rgba(var(--cl-accent), 0.07);
}
.status-dd-check { width: 14px; height: 14px; flex-shrink: 0; opacity: 0; }
.status-dd-option.selected .status-dd-check { opacity: 1; }

/* ── Status Cards (crystal glass) ── */
.sc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, rgba(255, 255, 255, 0.025) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 35%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.35);
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.sc-card:hover {
  background-color: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.06),
    inset 0 1px 0 0 rgba(255, 255, 255, 0.08),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.35);
}
.sc-glow { display: none; }
.sc-thumb-wrap {
  flex-shrink: 0;
}
.sc-thumb {
  width: 44px; height: 44px;
  border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.04);
}
.sc-info {
  flex: 1;
  min-width: 0;
}
.sc-info h3 {
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(255,255,255,0.88);
}
.sc-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 5px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  flex-shrink: 0;
  background: color-mix(in srgb, var(--sc) 10%, transparent);
  border-color: color-mix(in srgb, var(--sc) 22%, transparent);
  transition: background 0.2s, border-color 0.2s;
}
.sc-card:hover .sc-badge {
  background: color-mix(in srgb, var(--sc) 16%, transparent);
  border-color: color-mix(in srgb, var(--sc) 35%, transparent);
}
.sc-badge-icon { display: none; }
.sc-badge-text {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

/* ── Mobile: status cards ── */
@media (max-width: 600px) {
  .sc-badge { padding: 5px 10px; gap: 6px; }
  .sc-badge-text { font-size: 11px; }
  .sc-thumb { width: 38px; height: 38px; }
  .sc-info h3 { font-size: 13px; }
}

.status-summary-card {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, rgba(255, 255, 255, 0.025) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 35%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.35);
}

.status-summary-card .stat-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(var(--cl-t-primary), 0.4);
}

.status-summary-card .stat-value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: rgb(var(--cl-t-primary));
}

.status-summary-card .stat-sub {
  font-size: 12px;
  color: rgba(var(--cl-t-primary), 0.35);
}

.status-section-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.status-section-title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
  color: rgba(var(--cl-t-primary), 0.5);
}

.status-section-line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

/* ── Status Page: Summary strip ── */
.status-summary-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 48px;
}

/* ── Status Page: Filter row ── */
.status-filter-row {
  display: flex;
  gap: 10px;
  margin-bottom: 32px;
  position: relative;
  z-index: 10;
}

/* ── Status Page: Mobile ── */
@media (max-width: 600px) {

  /* Summary strip: 2 cols on mobile, operational spans full width */
  .status-summary-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .status-summary-strip .status-summary-card:first-child {
    grid-column: 1 / -1;
  }

  /* Search takes ~65%, dropdown takes ~35% */
  .status-filter-row {
    gap: 8px;
  }
  .status-filter-row .status-search-wrap {
    flex: 2;
  }
  .status-filter-row .status-dd {
    flex: 1;
    width: auto !important;
    min-width: 0;
  }
  .status-dd-label {
    font-size: 12px;
  }

}


/* ── Badge Shine (global) ── */
.hero-badge-shine {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(var(--cl-t-primary), 0.06);
  background-image: linear-gradient(110deg, transparent 40%, color-mix(in srgb, color-mix(in srgb, rgb(var(--cl-accent)) 55%, #ffffff) 14%, transparent) 50%, transparent 60%);
  background-size: 200% 100%;
  animation: hero-badge-shine 2.5s linear infinite;
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(var(--cl-t-primary), 0.65);
}
.hero-badge-shine svg { opacity: 0.7; width: 1rem; height: 1rem; flex-shrink: 0; }

@keyframes hero-badge-shine {
  from { background-position: 0 0; }
  to   { background-position: -200% 0; }
}

/* ── Hero spin button: global (needed on product page too) ── */
.hero-spin-conic-container {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-spin-disc {
  position: absolute;
  width: 300px;
  height: 300px;
  animation: hero-spin 3s linear infinite;
  background: conic-gradient(from 0deg at 50% 50%, rgba(255,255,255,0.5) 0deg, transparent 60deg, transparent 300deg, rgba(255,255,255,0.5) 360deg);
  transition: opacity 0.3s;
}
@keyframes hero-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
.hero-spin-bg {
  position: absolute;
  inset: 2px;
  background: rgb(24, 24, 27);
  border-radius: calc(0.375rem - 2px);
}
.hero-spin-glow {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 33%;
  width: 80%;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0;
  filter: blur(6px);
  border-radius: 0 0 0.375rem 0.375rem;
  pointer-events: none;
  transition: height 0.5s ease, opacity 0.5s ease;
}
.hdn-shimmer {
  position: absolute;
  inset: 2px;
  border-radius: calc(0.375rem - 2px);
  background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.07) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.9s ease-out;
  pointer-events: none;
  z-index: 0;
}
.hdn-icon-box {
  flex-shrink: 0;
  padding: 0.35rem;
  border-radius: 0.375rem;
  background: rgba(var(--cl-accent), 0.15);
  transition: background 0.3s;
}
.hdn-icon {
  display: block;
  width: 1.1rem;
  height: 1.1rem;
  fill: rgb(var(--cl-accent));
}
.hdn-text { flex: 1; text-align: left; }
.hdn-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgb(var(--cl-accent));
  line-height: 1.2;
  margin: 0;
}
.hdn-sub {
  font-size: 0.7rem;
  color: rgba(var(--cl-t-primary), 0.4);
  line-height: 1.2;
  margin: 0;
  transition: color 0.3s;
}
.hdn-chevron {
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  fill: none;
  stroke: rgba(var(--cl-t-primary), 0.35);
  transition: transform 0.25s ease, stroke 0.25s;
}

/* ── Variant Pills: glass card ── */
/* ── Feedback (review) card crystal glass ── */
.feedback-crystal {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, rgba(255, 255, 255, 0.025) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 35%);
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.35);
  border-radius: 1rem;
}

/* ── Product-page crystal-glass card ──
   Solid dark base + multi-angle subtle highlights + soft inner top/bottom shadow.
   Used as the wrapper for the product info card and the description/reviews tabs. */
.product-crystal {
  position: relative;
  background-color: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background-image:
    radial-gradient(120% 80% at 0% 0%, rgba(255, 255, 255, 0.035) 0%, transparent 50%),
    radial-gradient(120% 80% at 100% 100%, rgba(255, 255, 255, 0.025) 0%, transparent 55%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.025) 0%, transparent 35%);
  border-radius: 0.5rem;
  box-shadow:
    inset 0 1px 0 0 rgba(255, 255, 255, 0.05),
    inset 0 -1px 0 0 rgba(0, 0, 0, 0.35);
}

.pf-var-wrap {
  position: relative;
  border-radius: 0.75rem;
  background: rgb(18, 18, 20);
  box-shadow: 0 0 0 1.5px rgba(255, 255, 255, 0.06);
  transition: box-shadow 0.2s;
}
.pf-var-wrap:hover {
  box-shadow: 0 0 0 1.5px rgba(var(--cl-accent), 0.35);
}
.pf-var-wrap.pf-var-active {
  box-shadow: 0 0 0 1.5px rgba(var(--cl-accent), 0.8), 0 0 12px rgba(var(--cl-accent), 0.15);
  background: linear-gradient(160deg, rgba(var(--cl-accent), 0.1) 0%, rgba(18, 18, 20, 1) 100%);
}
.pf-var-btn {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0.625rem 1rem;
  background: transparent;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  color: rgba(var(--cl-t-primary), 0.5);
  transition: color 0.2s;
}
.pf-var-wrap:hover .pf-var-btn,
.pf-var-wrap.pf-var-active .pf-var-btn { color: rgb(var(--cl-t-primary)); }
.pf-var-btn:disabled { opacity: 0.4; cursor: not-allowed; pointer-events: none; }
.pf-var-price {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(var(--cl-t-primary), 0.6);
  transition: color 0.2s;
}
.pf-var-wrap.pf-var-active .pf-var-price { color: rgb(var(--cl-accent)); }

/* ── Product Form: hero-style buttons ── */
.pf-spin-wrap {
  position: relative;
  display: flex;
  width: 100%;
  border-radius: 0.375rem;
  overflow: hidden;
  background: rgb(39, 39, 42);
}
.pf-spin-wrap .hero-spin-disc { opacity: 0; transition: opacity 0.3s; }
.pf-spin-wrap:hover .hero-spin-disc { opacity: 1; }
.pf-spin-wrap:hover .hero-spin-glow { height: 66%; opacity: 1; }
.pf-spin-wrap:hover .hdn-shimmer { transform: translateX(100%); }
.pf-spin-wrap:hover .hdn-icon-box { background: rgba(var(--cl-accent), 0.28); }
.pf-spin-wrap:hover .hdn-sub { color: rgba(var(--cl-t-primary), 0.65); }
.pf-spin-wrap:hover .hdn-chevron { transform: translateX(3px); stroke: rgba(var(--cl-t-primary), 0.7); }
.pf-spin-wrap:hover .pf-plus-icon { transform: rotate(90deg); }
.pf-spin-wrap:hover .pf-chevron-icon { transform: translateX(4px); color: #ffffff; }

.pf-plus-icon {
  flex-shrink: 0;
  width: 0.9rem;
  height: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  transition: transform 0.35s ease;
}
.pf-chevron-icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  color: rgba(255, 255, 255, 0.7);
  transition: transform 0.25s ease, color 0.25s ease;
}

button.pf-spin-link {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  box-sizing: border-box;
  padding: 0.65rem 1.4rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75rem;
  background-color: transparent;
  background-image: linear-gradient(to bottom, rgba(255,255,255,0.25), #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
button.pf-spin-link:disabled {
  opacity: 0.5;
  pointer-events: none;
  cursor: not-allowed;
}

/* Purchase Now - accent-filled variant */
.pf-spin-wrap--accent {
  background: rgb(var(--cl-accent));
}
.pf-spin-wrap--accent .hero-spin-bg {
  background: rgba(var(--cl-accent), 0.82);
}
.pf-spin-wrap--accent .hero-spin-glow {
  background: rgba(var(--cl-accent), 0.5);
}
.pf-spin-wrap--accent button.pf-spin-link {
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ffffff;
  font-weight: 600;
}
.pf-spin-wrap--accent .pf-chevron-icon {
  color: rgba(255, 255, 255, 0.8);
}
.pf-spin-wrap--accent:hover .pf-chevron-icon {
  color: #ffffff;
}

/* Browse Our Tools (hero) - accent-filled variant */
.hero-spin-wrap.hero-spin-wrap--accent {
  background: rgb(var(--cl-accent));
}
.hero-spin-wrap.hero-spin-wrap--accent .hero-spin-bg {
  background: rgba(var(--cl-accent), 0.82);
}
.hero-spin-wrap.hero-spin-wrap--accent .hero-spin-glow {
  background: rgba(var(--cl-accent), 0.5);
}
.hero-spin-wrap.hero-spin-wrap--accent a.hero-spin-link {
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: #ffffff;
  font-weight: 600;
}
.hero-spin-wrap.hero-spin-wrap--accent a.hero-spin-link > svg {
  color: rgba(255, 255, 255, 0.8);
}
.hero-spin-wrap.hero-spin-wrap--accent:hover a.hero-spin-link > svg {
  color: #ffffff;
}

button.pf-spin-link.hdn-inner {
  background-image: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  color: rgb(var(--cl-t-primary));
  gap: 0.75rem;
  padding: 0.65rem 1.25rem;
  line-height: 1;
}

/* ─── Feedback Card Spotlight (fc-*) ─── */
.fc-card {
  position: relative;
  border-radius: 1rem;
  padding: 2px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}
.fc-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(
    500px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(var(--cl-accent), 0.45),
    transparent 40%
  );
  pointer-events: none;
}
.fc-card:hover::before { opacity: 1; }

.fc-inner {
  position: relative;
  border-radius: calc(1rem - 2px);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.025);
  padding: 20px 22px;
  z-index: 1;
}
.fc-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.4s;
  background: radial-gradient(
    300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
    rgba(var(--cl-accent), 0.07),
    transparent 60%
  );
  pointer-events: none;
  z-index: 0;
}
.fc-card:hover .fc-inner::before { opacity: 1; }
.fc-inner::after {
  content: '';
  position: absolute;
  top: 0; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.07), transparent);
  pointer-events: none;
}

.fc-glow-tl {
  position: absolute;
  top: 0; left: 0;
  transform: translate(-50%, -50%);
  width: 25%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(var(--cl-accent));
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}
.fc-glow-br {
  position: absolute;
  bottom: 0; right: 0;
  transform: translate(50%, 50%);
  width: 25%; aspect-ratio: 1;
  border-radius: 50%;
  background: rgb(var(--cl-accent));
  filter: blur(100px);
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.fc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.fc-footer-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  flex: 1;
}
.fc-footer-stars {
  display: flex;
  gap: 2px;
  flex-shrink: 0;
}

[x-data="mouseCursor"] {
  filter: hue-rotate(98deg) saturate(1.5) !important;
}

/* ═══════════════════════════════════════════════════════════════
   NIGHTWATCH SYSTEM - exact nightwatch.laravel.com idioms, with their
   blue/teal/emerald brand re-routed through the merchant accent (--cl-accent).
   Shared button + navbar + eyebrow primitives used by hero.njk & navbar.njk.
   ═══════════════════════════════════════════════════════════════ */

/* ── Section ambient glow ──
   A clean white+accent radial bloom centered INSIDE each content section. It fades out well
   before the top/bottom edges (so section boundaries stay seamless dark - not obviously split)
   and FADES IN on scroll via the .glow-in class (JS in master.njk). Static, no pulse. */
:root {
  /* clean white+accent glow tint (≈15% over the dark base) */
  --nw-glow: color-mix(in srgb, color-mix(in srgb, rgb(var(--cl-accent)) 55%, #ffffff) 15%, transparent);
}
.components > .component { position: relative; isolation: isolate; }
.components > .component::before {
  content: "";
  position: absolute; inset: 0; z-index: -1; pointer-events: none;
  opacity: 0;
  transition: opacity 1.4s ease;
  /* default (cycle slot A): left, mid */
  background: radial-gradient(52% 46% at 30% 36%, var(--nw-glow) 0%, transparent 64%);
}
/* Vary spot + size per section so consecutive sections differ (no repeating stamp).
   nth-of-type counts <section>s: type(1) = hero, content sections start at type(2). */
.components > .component:nth-of-type(4n+3)::before { background: radial-gradient(58% 52% at 74% 30%, var(--nw-glow) 0%, transparent 66%); } /* right, high */
.components > .component:nth-of-type(4n)::before   { background: radial-gradient(46% 52% at 52% 50%, var(--nw-glow) 0%, transparent 62%); } /* center, low */
.components > .component:nth-of-type(4n+1)::before { background: radial-gradient(62% 44% at 16% 54%, var(--nw-glow) 0%, transparent 68%); } /* far-left, low */
/* Top-focused glow: a wide, short band across the section header (left to right behind the heading)
   instead of a big radial that spills down and washes the card grid lighter. */
.components > .component.nw-glow-top::before { background: radial-gradient(75% 20% at 45% 6%, var(--nw-glow) 0%, transparent 70%); }
.components > .component.glow-in::before { opacity: 1; }
/* Hero paints its own full-bleed background - no ambient glow layer */
.components > .component:has(.nw-hero)::before { content: none; }
/* Card-heavy sections that supply their own glow opt out of the generic one (avoids backlit cards) */
.components > .component.nw-no-glow::before { content: none; }
/* Custom pages (tickets/guides/downloads) supply their own white+accent orb glow in the page
   template, so the per-section ambient glow is suppressed there (was an odd purple blob in the margins). */
.nw-custom-page > .component::before { content: none; }
.section-gradient { position: relative; }

@media (prefers-reduced-motion: reduce) {
  .components > .component::before { transition: none; }
}

/* ── Buttons (Nightwatch rounded-md bordered system) ── */
.nw-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  height: 44px; padding: 0 1rem; border-radius: 6px;
  border: 1px solid transparent; font-size: .95rem; font-weight: 500; line-height: 1;
  white-space: nowrap; cursor: pointer; text-decoration: none;
  transition: background-color .15s ease, border-color .15s ease, color .15s ease, transform .05s ease;
}
.nw-btn:active { transform: translateY(1px); }
.nw-btn-sm { height: 32px; padding: 0 .75rem; font-size: .875rem; }

/* Primary - Nightwatch blue (bg-blue-600/border-blue-500) -> merchant accent */
.nw-btn-primary { background-color: rgb(var(--cl-accent)); border-color: rgb(var(--cl-accent)); color: #fff; }
.nw-btn-primary:hover { background-color: color-mix(in srgb, rgb(var(--cl-accent)), black 8%); }
.nw-btn-primary:active { background-color: color-mix(in srgb, rgb(var(--cl-accent)), black 18%); }
/* Secondary - Nightwatch "Sign in" (white/5 + neutral text) */
.nw-btn-secondary { background-color: rgba(255,255,255,.05); border-color: rgba(255,255,255,.05); color: rgba(var(--cl-t-primary), .6); }
.nw-btn-secondary:hover { background-color: rgba(255,255,255,.1); color: rgba(var(--cl-t-primary), .9); }
/* Ghost - Nightwatch "Contact sales" (white/5 + white text) */
.nw-btn-ghost { background-color: rgba(255,255,255,.05); border-color: rgba(255,255,255,.05); color: #fff; }
.nw-btn-ghost:hover { background-color: rgba(255,255,255,.1); }

/* ── Eyebrow pill (Nightwatch emerald-950/emerald-200 -> accent) ── */
.nw-eyebrow {
  display: inline-flex; align-items: center; gap: .4rem; width: fit-content; height: 32px;
  padding: 0 11px; border-radius: 6px;
  border: 1px solid color-mix(in srgb, rgb(var(--cl-accent)), black 55%);
  background-color: color-mix(in srgb, rgb(var(--cl-accent)), black 80%);
  color: color-mix(in srgb, rgb(var(--cl-accent)), white 55%);
  font-size: .875rem; font-weight: 500; letter-spacing: -.01em;
}

/* ── Navbar (Nightwatch full-width: transparent -> bordered+blurred on scroll) ── */
.nw-nav { background: transparent; }
/* On-load entrance: Nightwatch navbar motion-preset-blur-up-sm, delay 0, duration 1.5s.
   Slower than the 0.7s content reveal, so the bar eases in and settles last. */
@keyframes nw-nav-in {
  from { opacity: 0; transform: translateY(8px); filter: blur(6px); }
  to   { opacity: 1; transform: translateY(0);   filter: blur(0); }
}
/* Nightwatch gates the navbar behind x-cloak so it appears only after Alpine boots, i.e. after the
   hero content has started. We replicate that by delaying its entrance so it animates in LAST. */
.nw-nav-enter { animation: nw-nav-in 1.5s cubic-bezier(.165, .84, .44, 1) 1.2s both; }
@media (prefers-reduced-motion: reduce) { .nw-nav-enter { animation: none; } }
.nw-nav-scrolled {
  border-bottom-color: rgba(255,255,255,.1) !important;
  background-image: linear-gradient(to bottom, rgba(var(--cl-background), .85), rgba(var(--cl-background), .55));
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 60px 0 rgba(0,0,0,.9);
}
.nw-nav-link {
  font-family: 'Instrument Sans', sans-serif; font-feature-settings: "cv01" 1;
  color: rgba(var(--cl-t-primary), .63); font-weight: 300; letter-spacing: -.32px;
  text-decoration: none; transition: color .2s ease;
}
.nw-nav-link:hover { color: rgba(var(--cl-t-primary), .9); }
.nw-nav-link.is-active { color: rgb(var(--cl-accent)); }

/* Logo wordmark: Instrument Sans like Nightwatch's wordmark, white-ish, shifts to accent on hover */
.nw-wordmark {
  font-family: 'Instrument Sans', sans-serif; font-feature-settings: "cv01" 1;
  font-weight: 500; color: rgba(var(--cl-t-primary), .9);
  transition: color .2s ease;
}
.nw-logo:hover .nw-wordmark { color: rgb(var(--cl-accent)); }
.nw-logo img { transition: opacity .25s ease; }
.nw-logo:hover img { opacity: .85; }

/* Mobile nav panel: accent radial wash from the top (Nightwatch mobile menu bg) */
.nw-mobile-panel {
  background:
    radial-gradient(85% 55% at 50% 0%, rgba(var(--cl-accent), 0.16) 0%, rgba(var(--cl-accent), 0) 70%),
    rgba(var(--cl-background), 0.97) !important;
}

/* --- Resources nav dropdown: accent radial wash + glass to match .nw-mobile-panel,
   Instrument Sans light type like .nw-nav-link, sized snug to the trigger. --- */
.nw-res-btn { cursor: pointer; }
.nw-res-caret { width: 13px; height: 13px; margin-top: 1px; opacity: .68; transition: transform .28s cubic-bezier(.4,0,.2,1), opacity .2s ease; }
.nw-res-btn:hover .nw-res-caret, .nw-res-btn.is-active .nw-res-caret { opacity: .95; }
.nw-res-caret.is-open { transform: rotate(180deg); }
.nw-drop {
  min-width: 160px; padding: 6px; margin-top: 9px;
  border: 1px solid rgba(255,255,255,.08); border-radius: 14px;
  background:
    radial-gradient(120% 82% at 50% 0%, rgba(var(--cl-accent), 0.17) 0%, rgba(var(--cl-accent), 0) 66%),
    linear-gradient(to bottom, rgba(var(--cl-background), 0.96), rgba(var(--cl-background), 0.985));
  box-shadow: 0 20px 48px -14px rgba(0,0,0,.8), inset 0 1px 0 rgba(255,255,255,.05);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
.nw-drop-link {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Instrument Sans', sans-serif; font-weight: 300; letter-spacing: -.32px; font-size: 14px;
  color: rgba(var(--cl-t-primary), .68); padding: 8px 11px; border-radius: 9px;
  text-decoration: none; transition: color .18s ease, background .18s ease;
}
.nw-drop-link + .nw-drop-link { margin-top: 2px; }
.nw-drop-link:hover { color: rgba(var(--cl-t-primary), .96); background: rgba(255,255,255,.05); }
.nw-drop-link.is-active { color: rgb(var(--cl-accent)); }
.nw-drop-link svg { width: 15px; height: 15px; flex-shrink: 0; opacity: .6; transition: opacity .18s ease; }
.nw-drop-link:hover svg { opacity: .88; }
.nw-drop-link.is-active svg { opacity: 1; }
/* Reselling link pinned to the bottom of the Resources dropdown, set off by a separator */
.nw-drop-sep { height: 1px; margin: 6px 5px 5px; background: rgba(255,255,255,.09); }
.nw-drop-reseller > svg:first-child { color: rgb(var(--cl-accent)); opacity: .85; }
.nw-drop-reseller:hover > svg:first-child { opacity: 1; }
.nw-drop-rs-ext { width: 12px !important; height: 12px !important; margin-left: auto; opacity: .45; flex-shrink: 0; }

/* --- Product-card badges: cloned from the /updates provider chip (.upd-chip) —
   same pill (fill / border / padding / radius / type / dot); only the badge's own
   colour (--bc) drives the dot + the shimmer glow that sweeps across it. --- */
.pc-badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 10px; border-radius: 6px; white-space: nowrap;
  font-size: 11px; font-weight: 500; letter-spacing: .01em;
  color: rgba(255,255,255,0.68);
  border: 1px solid rgba(255,255,255,0.1);
  background-color: rgba(34,34,38,0.8);
  background-image: linear-gradient(110deg, transparent 40%,
    color-mix(in srgb, color-mix(in srgb, var(--bc, rgb(var(--cl-accent))) 55%, #ffffff) 16%, transparent) 50%,
    transparent 60%);
  background-size: 200% 100%;
  animation: hero-badge-shine 2.5s linear infinite;
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
}
.pc-badge-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--bc, rgb(var(--cl-accent))); flex-shrink: 0; }
.pc-badge > i { color: var(--bc, rgb(var(--cl-accent))); font-size: 12px; line-height: 1; }