
/* =========================================
   REALM ENGINE - ARCANE PURPLE SYSTEM (FULL)
   ========================================= */

:root {
  --re-bg: #0b0b12;
  --re-bg2: #100f1a;
  --re-panel: #151521;
  --re-panel-elev: #1d1d2b;
  --re-panel-top: #242438;
  --re-border: #2d2a42;
  --re-text: #f4eeff;
  --re-muted: #a59cbc;
  --re-accent: #7b5cff;
  --re-accent-light: #9b7eff;
  --re-accent-soft: rgba(123,92,255,0.15);
  --re-accent-glow: rgba(123,92,255,0.35);
  --re-success: #35d0c0;
  --re-danger: #ff6177;
  --re-gold: #d8b45d;
  --re-radius: 6px;
  --re-radius-sm: 10px;
  --re-radius-lg: 18px;
  --re-shadow-lg: 0 20px 50px rgba(0,0,0,0.45);
  --re-shadow-md: 0 12px 28px rgba(0,0,0,0.35);
  --re-shadow-sm: 0 6px 14px rgba(0,0,0,0.25);
  --re-space-1: 6px;
  --re-space-2: 10px;
  --re-space-3: 14px;
  --re-space-4: 18px;
  --re-space-5: 24px;
  --re-space-6: 32px;
  --re-space-7: 42px;
  --re-font: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --re-info: #7b5cff;
  --re-info-2: #9b7eff;

  --re-warning: #f0b84f;
  --re-warning-2: #ffd27a;
  --re-warning-text: #fff3d6;

  --re-success-text: #dcfff9;
  --re-danger-text: #ffd8dd;
  --re-info-text: #efe9ff;
}

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

html { color-scheme: dark; }

body {
  margin: 0;
  font-family: var(--re-font);
  color: var(--re-text);
  background:
    radial-gradient(circle at 20% 10%, rgba(123,92,255,0.12), transparent 25%),
    radial-gradient(circle at 80% 0%, rgba(184,158,255,0.08), transparent 30%),
    linear-gradient(180deg, var(--re-bg2), var(--re-bg));
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 120px 120px;
  mask-image: radial-gradient(circle at center, black 40%, transparent 90%);
}

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

.re-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px;
}

.re-page-shell {
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.re-topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: linear-gradient(180deg, rgba(29,29,43,0.96), rgba(18,17,27,0.92));
  border-bottom: 1px solid rgba(155,126,255,0.16);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 -1px 0 rgba(255,255,255,0.03), 0 12px 40px rgba(0,0,0,0.25);
}

.re-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.re-brand-mark {
  width: 18px;
  height: 18px;
  border-radius: 5px;
  background:
    linear-gradient(135deg, #b89eff, var(--re-accent)),
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.55), transparent 45%);
  box-shadow: 0 0 18px rgba(123,92,255,0.45);
  position: relative;
}

.re-brand-mark::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.14);
}

.re-panel {
  background: linear-gradient(180deg, var(--re-panel-top), var(--re-panel));
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  padding: 20px;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04), var(--re-shadow-lg);
}

.re-card {
  background: linear-gradient(180deg, var(--re-panel-elev), var(--re-panel));
  border: 1px solid var(--re-border);
  border-radius: var(--re-radius);
  overflow: hidden;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.03), var(--re-shadow-md);
}

.re-card:hover {
  transform: translateY(-4px);
  border-color: rgba(155,126,255,0.25);
  box-shadow: var(--re-shadow-lg), 0 0 20px var(--re-accent-soft);
}

.re-card-body { padding: 18px; }

.re-title {
  font-size: 26px;
  font-weight: 800;
  margin: 0 0 10px;
  background: linear-gradient(180deg, #ffffff, #d1c5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.re-h2 {
  font-size: 20px;
  font-weight: 800;
  margin: 0 0 10px;
}

.re-h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 8px;
}

.re-muted { color: var(--re-muted); }
.re-small { font-size: 13px; }
.re-xs { font-size: 12px; }

.re-grid {
  display: grid;
  gap: 18px;
}

.re-grid-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.re-grid-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.re-grid-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.re-btn {
  appearance: none;
  border: none;
  padding: 12px 18px;
  border-radius: var(--re-radius-sm);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
}

.re-btn-primary {
  background: linear-gradient(180deg, var(--re-accent-light), var(--re-accent));
  color: #fff;
  box-shadow: 0 6px 16px rgba(93,63,224,0.35), 0 0 14px var(--re-accent-soft);
}
.re-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(93,63,224,0.45), 0 0 22px var(--re-accent-glow);
}

.re-btn-ghost {
  background: linear-gradient(180deg, rgba(40,39,60,0.92), rgba(25,24,38,0.92));
  border: 1px solid rgba(255,255,255,0.06);
  color: var(--re-text);
}
.re-btn-ghost:hover {
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.re-btn-danger {
  background: linear-gradient(180deg, #ff7b8c, var(--re-danger));
  color: #fff;
  box-shadow: 0 6px 16px rgba(255,97,119,0.22);
}
.re-btn-danger:hover { transform: translateY(-2px); }

.re-btn-success {
  background: linear-gradient(180deg, #51e1d4, var(--re-success));
  color: #091011;
  box-shadow: 0 6px 16px rgba(53,208,192,0.22);
}
.re-btn-success:hover { transform: translateY(-2px); }

.re-input,
.re-select,
.re-textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--re-radius-sm);
  border: 1px solid var(--re-border);
  background: rgba(15,15,23,0.9);
  color: var(--re-text);
  transition: all 0.2s ease;
  font: inherit;
}

.re-textarea { min-height: 120px; resize: vertical; }

.re-input:focus,
.re-select:focus,
.re-textarea:focus {
  outline: none;
  border-color: var(--re-accent);
  box-shadow: 0 0 12px var(--re-accent-soft);
}

.re-label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #ddd0ff;
}

.re-progress {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.03);
}

.re-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--re-success), var(--re-accent), #c2adff);
  box-shadow: 0 0 12px var(--re-accent-glow);
}

.re-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 30px;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(184,158,255,0.16);
  background: rgba(255,255,255,0.03);
  color: #d9ceff;
  font-size: 12px;
  font-weight: 700;
}

.re-pill-success {
  color: #dcfff9;
  background: linear-gradient(180deg, rgba(53,208,192,0.26), rgba(53,208,192,0.16));
  border-color: rgba(53,208,192,0.28);
  box-shadow: 0 0 16px rgba(53,208,192,0.20);
}

.re-pill-danger {
  color: #ffd8dd;
  background: linear-gradient(180deg, rgba(255,97,119,0.20), rgba(255,97,119,0.12));
  border-color: rgba(255,97,119,0.20);
}

.re-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}

.re-table th,
.re-table td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.re-table th {
  color: #ddd0ff;
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.re-code {
  padding: 14px;
  border-radius: 12px;
  background: rgba(9,9,15,0.82);
  border: 1px solid rgba(184,158,255,0.12);
  overflow: auto;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 13px;
  color: #e6dcff;
  line-height: 1.55;
  white-space: pre-wrap;
}

.re-section {
  padding: 30px 0;
}

.re-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.re-stack > * + * { margin-top: 14px; }
.re-inline { display: flex; flex-wrap: wrap; gap: 10px; }
.re-split { display: flex; justify-content: space-between; gap: 16px; align-items: center; }
.re-divider {
  height: 1px;
  background: linear-gradient(90deg, rgba(184,158,255,0.16), rgba(184,158,255,0.04));
  margin: 18px 0;
}

.re-kbd {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  padding: 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(184,158,255,0.16);
  background: rgba(255,255,255,0.03);
  font-size: 12px;
  color: #e7dcff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.re-stat {
  padding: 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(34,33,52,0.96), rgba(18,18,29,0.98));
  border: 1px solid rgba(184,158,255,0.12);
}

.re-stat-value {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 6px;
}

.re-stat-label {
  color: var(--re-muted);
  font-size: 13px;
}

.re-list {
  margin: 0;
  padding-left: 18px;
  color: var(--re-muted);
}

.re-badge {
  display: inline-block;
  padding: 4px 8px;
  border-radius: 8px;
  background: rgba(123,92,255,0.16);
  border: 1px solid rgba(184,158,255,0.16);
  color: #ddd0ff;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .re-grid-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .re-grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 760px) {
  .re-container { padding: 18px; }
  .re-topbar { padding: 14px 18px; }
  .re-grid-4,
  .re-grid-3,
  .re-grid-2 { grid-template-columns: 1fr; }
  .re-section-head,
  .re-split { flex-direction: column; align-items: start; }
}

.lp-sc-meta{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:10px 0 12px;
}

.lp-sc-pill{
  display:inline-flex;
  align-items:center;
  min-height:28px;
  padding:5px 10px;
  border-radius:999px;
  font-size:11px;
  font-weight:700;
  color:#d8cdff;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(184,158,255,0.14);
  line-height:1;
}

.lp-sc-hook{
  font-size:14px;
  font-weight:800;
  color:#f0eaff;
  margin:0 0 10px;
  letter-spacing:-0.01em;
}

.lp-sc-impact{
  margin-top:14px;
  font-size:12px;
  font-weight:700;
  color:#cdbdff;
  padding-top:12px;
  border-top:1px solid rgba(184,158,255,0.10);
}

/* HERO TEXT BLOCK */

.hero-sub{
  font-size: 18px;
  font-weight: 600;
  color: #cbbcff;
  margin: 18px 0 8px;
  letter-spacing: -0.01em;
}

.hero-body{
  font-size: 15px;
  line-height: 1.7;
  color: rgba(220, 210, 255, 0.78);
  max-width: 520px;
  margin: 0 0 24px;
}

.hero-micro{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 18px 0 20px;

  color: rgba(180,160,255,0.55);

  /* subtle glow line */
  background: linear-gradient(90deg, rgba(155,123,255,0.0), rgba(155,123,255,0.25), rgba(155,123,255,0.0));
  padding: 8px 12px;
  border-radius: 8px;
}

.hero-anchor{
  font-size: 13px;
  color: rgba(200,190,255,0.6);
  margin-bottom: 22px;
}

/* OPTIONAL: slight glow on keyword phrases (use manually if desired) */
.hero-body strong{
  color: #e8e2ff;
  font-weight: 700;
}

/* OPTIONAL: gradient emphasis if you want to match "Let it live." */
.hero-gradient{
  background: linear-gradient(90deg, #9b7bff, #6ee7d2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub { margin-top: 22px; }
.hero-body { margin-bottom: 28px; }


/* replacement for old lp-statsbar */

.lp-capbar{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:1px;
  margin:0 0 72px;
  border:1px solid rgba(184,158,255,0.10);
  border-radius:18px;
  overflow:hidden;
  background:rgba(184,158,255,0.08);
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.03),
    0 18px 44px rgba(0,0,0,0.22);
}

.lp-cap-cell{
  position:relative;
  min-height:126px;
  padding:22px 24px 20px;
  background:
    linear-gradient(180deg, rgba(22,21,34,0.98), rgba(16,15,25,0.98));
  text-align:left;
}

.lp-cap-cell::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:1px;
  background:linear-gradient(180deg, transparent, rgba(184,158,255,0.12), transparent);
  opacity:.0;
}

.lp-cap-top{
  display:flex;
  align-items:baseline;
  gap:12px;
  margin-bottom:10px;
}

.lp-cap-number{
  font-size:34px;
  font-weight:800;
  line-height:1;
  letter-spacing:-0.04em;
  background:linear-gradient(180deg, #ffffff, #c4b0ff);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.lp-cap-label{
  font-size:13px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
  color:#ddd0ff;
  white-space:nowrap;
}

.lp-cap-sub{
  max-width:24ch;
  font-size:13px;
  line-height:1.55;
  color:var(--re-muted);
}

.lp-cap-cell:hover{
  background:
    linear-gradient(180deg, rgba(28,27,42,0.99), rgba(18,17,29,0.99));
}

@media (max-width: 840px){
  .lp-capbar{
    grid-template-columns:repeat(2,1fr);
  }
}

@media (max-width: 600px){
  .lp-capbar{
    grid-template-columns:1fr;
  }

  .lp-cap-cell{
    min-height:auto;
  }
}

.lp-capbar {
  position: relative;
}

.lp-capbar::before {
  content: '';
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: -12px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(140, 110, 255, 0.5),
    rgba(120, 200, 255, 0.5),
    transparent
  );
  opacity: 0.5;
}

.lp-cap-cell.is-active {
  opacity: 1;
  transform: translateY(0);
}

.how-divider {
  height: 1px;
  margin: 16px 0 28px; /* tighter spacing */
  width: 100%;
  max-width: 1024px; /* keeps it from stretching too far */
  
  background: linear-gradient(
    90deg,
    rgba(160,130,255,0.7),  /* solid-ish start */
    rgba(160,130,255,0.35),
    rgba(160,130,255,0.15),
    rgba(160,130,255,0.05),
    rgba(160,130,255,0.0)
  );

  box-shadow: 0 0 6px rgba(160,130,255,0.075);
}

/* =========================================
   REALM ENGINE ALERTS
   ========================================= */

.re-alert {
  --re-alert-accent: var(--re-info);
  --re-alert-accent-2: var(--re-info-2);
  --re-alert-text: var(--re-info-text);
  --re-alert-bg-top: rgba(123,92,255,0.16);
  --re-alert-bg-bot: rgba(123,92,255,0.08);
  --re-alert-border: rgba(155,126,255,0.24);
  --re-alert-glow: rgba(123,92,255,0.16);

  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: start;
  padding: 16px 18px;
  border-radius: var(--re-radius);
  border: 1px solid var(--re-alert-border);
  background:
    linear-gradient(180deg, var(--re-alert-bg-top), var(--re-alert-bg-bot)),
    linear-gradient(180deg, rgba(28,27,42,0.96), rgba(18,17,29,0.98));
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.04),
    0 10px 26px rgba(0,0,0,0.24),
    0 0 18px var(--re-alert-glow);
  overflow: hidden;
}

.re-alert::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--re-alert-accent-2), var(--re-alert-accent));
  box-shadow: 0 0 14px var(--re-alert-glow);
}

.re-alert-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
  color: var(--re-alert-text);
  background: linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.re-alert-body {
  min-width: 0;
}

.re-alert-title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: var(--re-alert-text);
  letter-spacing: -0.01em;
}

.re-alert-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(244,238,255,0.86);
}

.re-alert-text + .re-alert-actions,
.re-alert-title + .re-alert-actions {
  margin-top: 12px;
}

.re-alert-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.re-alert .re-btn {
  min-height: 40px;
  padding: 10px 14px;
}

/* Variants */

.re-alert-info {
  --re-alert-accent: var(--re-info);
  --re-alert-accent-2: var(--re-info-2);
  --re-alert-text: var(--re-info-text);
  --re-alert-bg-top: rgba(123,92,255,0.18);
  --re-alert-bg-bot: rgba(123,92,255,0.07);
  --re-alert-border: rgba(155,126,255,0.26);
  --re-alert-glow: rgba(123,92,255,0.16);
}

.re-alert-success {
  --re-alert-accent: var(--re-success);
  --re-alert-accent-2: #63eadc;
  --re-alert-text: var(--re-success-text);
  --re-alert-bg-top: rgba(53,208,192,0.18);
  --re-alert-bg-bot: rgba(53,208,192,0.07);
  --re-alert-border: rgba(53,208,192,0.24);
  --re-alert-glow: rgba(53,208,192,0.15);
}

.re-alert-warning {
  --re-alert-accent: var(--re-warning);
  --re-alert-accent-2: var(--re-warning-2);
  --re-alert-text: var(--re-warning-text);
  --re-alert-bg-top: rgba(240,184,79,0.18);
  --re-alert-bg-bot: rgba(240,184,79,0.07);
  --re-alert-border: rgba(240,184,79,0.24);
  --re-alert-glow: rgba(240,184,79,0.13);
}

.re-alert-danger {
  --re-alert-accent: var(--re-danger);
  --re-alert-accent-2: #ff8d9f;
  --re-alert-text: var(--re-danger-text);
  --re-alert-bg-top: rgba(255,97,119,0.18);
  --re-alert-bg-bot: rgba(255,97,119,0.07);
  --re-alert-border: rgba(255,97,119,0.24);
  --re-alert-glow: rgba(255,97,119,0.14);
}

/* Compact version for inline notices */
.re-alert-compact {
  grid-template-columns: 1fr;
  gap: 8px;
  padding: 12px 14px;
}

.re-alert-compact .re-alert-icon {
  display: none;
}

.re-alert-compact .re-alert-title {
  margin-bottom: 2px;
  font-size: 14px;
}

.re-alert-compact .re-alert-text {
  font-size: 13px;
  line-height: 1.55;
}

/* CTA version */
.re-alert-cta {
  grid-template-columns: auto 1fr;
  padding: 18px 20px;
}

.re-alert-cta .re-alert-title {
  font-size: 16px;
}

.re-alert-cta .re-alert-text {
  max-width: 70ch;
}

/* Optional link styling inside alerts */
.re-alert a {
  color: var(--re-alert-text);
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.28);
  text-underline-offset: 2px;
}

.re-alert a:hover {
  text-decoration-color: currentColor;
}

@media (max-width: 640px) {
  .re-alert,
  .re-alert-cta {
    grid-template-columns: 1fr;
  }

  .re-alert-icon {
    display: none;
  }
}


input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: pointer;
  width: 100%;
}

input[type="range"]:focus {
  outline: none;
}

/* Track — webkit (16px tall for click area, 1px visual line centered via gradient) */
input[type="range"]::-webkit-slider-runnable-track {
  height: 16px;
  background: linear-gradient(
    transparent calc(50% - 0.5px),
    rgba(124, 92, 191, 0.4) calc(50% - 0.5px),
    rgba(124, 92, 191, 0.4) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
}

/* Track — firefox */
input[type="range"]::-moz-range-track {
  height: 16px;
  background: linear-gradient(
    transparent calc(50% - 0.5px),
    rgba(124, 92, 191, 0.4) calc(50% - 0.5px),
    rgba(124, 92, 191, 0.4) calc(50% + 0.5px),
    transparent calc(50% + 0.5px)
  );
  border: none;
}

/* Thumb — webkit (margin-top centers 14px thumb in 16px track) */
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--re-accent);
  margin-top: 1px;
  box-shadow: 0 0 6px rgba(124, 92, 191, 0.5);
  transition: box-shadow 0.15s;
}

input[type="range"]::-webkit-slider-thumb:hover,
input[type="range"]:active::-webkit-slider-thumb {
  box-shadow: 0 0 10px rgba(124, 92, 191, 0.75);
}

/* Thumb — firefox */
input[type="range"]::-moz-range-thumb {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--re-accent);
  box-shadow: 0 0 6px rgba(124, 92, 191, 0.5);
  transition: box-shadow 0.15s;
  cursor: grab;
}

input[type="range"]::-moz-range-thumb:hover,
input[type="range"]:active::-moz-range-thumb {
  box-shadow: 0 0 10px rgba(124, 92, 191, 0.75);
  cursor: grabbing;
}

/* ── Spacing utilities (Bootstrap-compatible mt/mb/mx/my/p range) ──────── */
.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}
.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}
.ml-0{margin-left:0!important}.ml-1{margin-left:.25rem!important}.ml-2{margin-left:.5rem!important}.ml-3{margin-left:1rem!important}.ml-4{margin-left:1.5rem!important}.ml-5{margin-left:3rem!important}
.mr-0{margin-right:0!important}.mr-1{margin-right:.25rem!important}.mr-2{margin-right:.5rem!important}.mr-3{margin-right:1rem!important}.mr-4{margin-right:1.5rem!important}.mr-5{margin-right:3rem!important}
.mx-0{margin-left:0!important;margin-right:0!important}.mx-1{margin-left:.25rem!important;margin-right:.25rem!important}.mx-2{margin-left:.5rem!important;margin-right:.5rem!important}.mx-3{margin-left:1rem!important;margin-right:1rem!important}.mx-4{margin-left:1.5rem!important;margin-right:1.5rem!important}.mx-5{margin-left:3rem!important;margin-right:3rem!important}
.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}
.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}
.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}
.px-0{padding-left:0!important;padding-right:0!important}.px-1{padding-left:.25rem!important;padding-right:.25rem!important}.px-2{padding-left:.5rem!important;padding-right:.5rem!important}.px-3{padding-left:1rem!important;padding-right:1rem!important}.px-4{padding-left:1.5rem!important;padding-right:1.5rem!important}.px-5{padding-left:3rem!important;padding-right:3rem!important}
.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}
.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}
.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}
.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}
.w-100{width:100%!important}.h-100{height:100%!important}
.d-flex{display:flex!important}.d-none{display:none!important}.d-block{display:block!important}.d-grid{display:grid!important}
.text-center{text-align:center!important}.text-left{text-align:left!important}.text-right{text-align:right!important}
