:root {
  --bg: #06060a;
  --bg-2: #0c0c12;
  --panel: #0e0e16;
  --card: #12121c;
  --fg: #f4f4ff;
  --muted: #9b9bb5;
  --border: rgba(255, 255, 255, 0.1);
  --primary: #7c7cff;
  --primary2: #8a7cff;
  --accent: #a78bfa;
  --ok: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;
  --radius: 18px;
  --radius-lg: 26px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

html,
body {
  margin: 0;
  min-height: 100%;
}

html.lenis,
html.lenis body {
  height: auto;
}

body {
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, sans-serif;
  background: var(--bg);
  color: var(--muted);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

body.nav-drawer-open {
  overflow: hidden;
}

.site-main {
  flex: 1 0 auto;
  width: 100%;
}

.m-0 {
  margin: 0;
}

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

img {
  max-width: 100%;
  height: auto;
}

.scroll-vortex {
  position: fixed;
  inset: 0;
  z-index: -5;
  pointer-events: none;
}

.site-bg {
  position: fixed;
  inset: 0;
  z-index: -4;
  pointer-events: none;
  background:
    radial-gradient(ellipse 120% 70% at 50% -15%, rgba(124, 124, 255, 0.16), transparent 52%),
    radial-gradient(ellipse 80% 50% at 100% 30%, rgba(138, 124, 255, 0.09), transparent 45%),
    radial-gradient(ellipse 70% 45% at 0% 70%, rgba(124, 124, 255, 0.06), transparent 48%),
    linear-gradient(180deg, #08080f 0%, var(--bg) 38%, #040408 100%);
}

.site-grid {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  opacity: 0.48;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 90% 75% at 50% 40%, black 18%, transparent 72%);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.container {
  width: min(1180px, 92vw);
  margin: 0 auto;
}

/* ——— Header ——— */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border-bottom: 1px solid transparent;
  background: rgba(6, 6, 10, 0.72);
  backdrop-filter: blur(18px) saturate(1.4);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--border);
  background: rgba(6, 6, 10, 0.92);
}

.header-bar {
  display: grid;
  grid-template-columns: minmax(0, auto) 1fr minmax(0, auto);
  align-items: center;
  gap: 0.75rem 1.25rem;
  min-height: 68px;
  padding: 0.4rem 0;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--fg);
  font-weight: 800;
  letter-spacing: -0.03em;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  justify-self: start;
}

.brand-name {
  font-size: 1.05rem;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(18, 18, 28, 0.9);
  border: 1px solid rgba(124, 124, 255, 0.28);
  padding: 5px;
}

.nav-main {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.5rem 0.85rem;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.62);
  border: 1px solid transparent;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
}

.nav-link.is-active {
  color: var(--fg);
  background: rgba(124, 124, 255, 0.14);
  border-color: rgba(124, 124, 255, 0.32);
}

.nav-ico {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.9;
}

.nav-link.is-active .nav-ico {
  color: var(--primary);
}

.nav-ico-discord {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-action-hide-sm {
  display: inline-flex;
}

@media (max-width: 900px) {
  .nav-main {
    display: none;
  }

  .nav-action-hide-sm {
    display: none !important;
  }

  .btn-icon-ghost {
    display: inline-flex;
  }

  .header-bar {
    grid-template-columns: 1fr auto;
  }

  .brand-lockup {
    grid-column: 1;
  }

  .header-actions {
    grid-column: 2;
    justify-self: end;
  }
}

@media (max-width: 480px) {
  .brand-name {
    display: none;
  }
}

.btn-icon-ghost {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--fg);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.btn-icon-ghost:hover {
  background: rgba(124, 124, 255, 0.12);
  border-color: rgba(124, 124, 255, 0.35);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.72rem 1.15rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.18);
}

.btn.primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #0a0a12;
  font-weight: 800;
}

.btn.primary:hover {
  filter: brightness(1.05);
}

.iconbtn {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.iconbtn:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 124, 255, 0.45);
  background: rgba(255, 255, 255, 0.08);
}

.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 190;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.nav-drawer.is-open {
  pointer-events: auto;
  opacity: 1;
}

.nav-drawer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(8px);
}

.nav-drawer-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(320px, 88vw);
  height: 100%;
  background: linear-gradient(165deg, rgba(18, 18, 28, 0.98), rgba(8, 8, 14, 0.99));
  border-left: 1px solid rgba(124, 124, 255, 0.2);
  padding: 5.5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
}

.nav-drawer.is-open .nav-drawer-panel {
  transform: translateX(0);
}

.nav-drawer-link {
  padding: 0.9rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  border: 1px solid transparent;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.nav-drawer-link:hover,
.nav-drawer-link.is-active {
  background: rgba(124, 124, 255, 0.12);
  border-color: rgba(124, 124, 255, 0.25);
}

.nav-drawer-cta {
  margin-top: 0.35rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  font-weight: 700;
  color: #0a0a12;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
}

.btn-block {
  width: 100%;
  justify-content: center;
}

/* ——— Hero (index) ——— */
.hero-cinematic {
  position: relative;
  padding: clamp(3rem, 8vw, 5.5rem) 0 clamp(2.5rem, 6vw, 4rem);
  overflow: hidden;
}

.hero-cinematic-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
}

@media (max-width: 960px) {
  .hero-cinematic-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-ctas {
    justify-content: center;
  }

  .hero-kpis {
    justify-content: center;
  }

  .hero-badge {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-cinematic-inner > * {
  position: relative;
  z-index: 1;
}

.hero-side-wrap {
  position: relative;
  min-height: 280px;
}

@media (min-width: 640px) {
  .hero-side-wrap {
    min-height: 320px;
  }
}

.hero-side-card {
  position: relative;
  height: 100%;
  min-height: 260px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 12, 20, 0.88);
  backdrop-filter: blur(12px);
  padding: 1.5rem;
  overflow: hidden;
}

@media (min-width: 640px) {
  .hero-side-card {
    padding: 1.75rem 2rem;
    min-height: 300px;
  }
}

.hero-side-eyebrow {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--primary);
  margin: 0 0 0.35rem;
}

.hero-side-title {
  margin: 0 0 1.25rem;
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  font-weight: 800;
  color: #fff;
}

.hero-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 1rem;
}

.hero-stat-cell {
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.32);
  padding: 1rem;
  transition: border-color 0.2s ease;
}

.hero-stat-cell:hover {
  border-color: rgba(124, 124, 255, 0.35);
}

.hero-stat-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin: 0 0 0.25rem;
}

.hero-stat-value {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
}

.hero-stat-hint {
  margin: 0.35rem 0 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.38);
}

.hero-live-row {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.52);
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #34d399;
  flex-shrink: 0;
  animation: heroPulse 2s ease-in-out infinite;
}

@keyframes heroPulse {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1rem 0.45rem 0.55rem;
  border-radius: 999px;
  border: 1px solid rgba(124, 124, 255, 0.35);
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.15), rgba(20, 20, 32, 0.6));
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  backdrop-filter: blur(12px);
}

.hero-badge i {
  color: var(--primary);
}

.display-title {
  font-family: "Plus Jakarta Sans", Inter, system-ui, sans-serif;
  font-weight: 800;
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 1rem 0 1rem;
  color: var(--fg);
}

.display-title .grad {
  background: linear-gradient(120deg, #fff 0%, #e8e8ff 40%, var(--primary) 95%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.68);
  max-width: 34rem;
  margin: 0 0 1.5rem;
}

@media (max-width: 960px) {
  .hero-lead {
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.kpi-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.kpi-chip i {
  color: var(--primary);
  font-size: 0.85rem;
}

.kpi-chip--bare {
  margin: 0;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.btn-xl {
  padding: 0.95rem 1.65rem;
  font-size: 0.95rem;
  border-radius: 999px;
}

.btn-ghost-outline {
  border: 1px solid rgba(124, 124, 255, 0.45);
  background: rgba(124, 124, 255, 0.06);
  color: var(--fg);
}

.btn-ghost-outline:hover {
  background: rgba(124, 124, 255, 0.14);
  border-color: rgba(124, 124, 255, 0.65);
}

/* Spotlight cards */
.section-spotlights {
  padding: clamp(2rem, 5vw, 4rem) 0;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 3.5vw, 2.25rem);
  color: var(--fg);
  letter-spacing: -0.03em;
  margin: 0 0 0.6rem;
}

.section-desc {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.65;
}

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

@media (max-width: 960px) {
  .spotlight-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

.spotlight-card {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.4rem 1.35rem;
  background: linear-gradient(155deg, rgba(22, 22, 34, 0.95), rgba(10, 10, 18, 0.88));
  border: 1px solid rgba(124, 124, 255, 0.18);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  transform-style: preserve-3d;
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.spotlight-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(500px circle at var(--mx, 50%) var(--my, 0%), rgba(124, 124, 255, 0.06), transparent 42%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.spotlight-card:hover {
  border-color: rgba(124, 124, 255, 0.38);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.spotlight-card:hover::before {
  opacity: 1;
}

.spotlight-card[data-tilt-card]:hover {
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.spotlight-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  color: var(--primary);
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.2), rgba(124, 124, 255, 0.05));
  border: 1px solid rgba(124, 124, 255, 0.25);
}

.spotlight-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--fg);
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
}

.spotlight-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
}

.spotlight-meta {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.stock-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
}

.stock-inline-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.stock-inline-ico {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.stock-inline-ico img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.stock-inline-ico--discord {
  color: #5865f2;
  font-size: 0.9rem;
}

.stock-inline-ico--ipvanish {
  padding: 0;
  overflow: hidden;
}

.stock-inline-ico--ipvanish img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.spotlight-aside {
  font-size: 0.75rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.42);
}

.is-hidden {
  display: none !important;
}

.pulse-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--ok);
}

.pulse-live::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ok);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.45;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(22px);
    transition:
      opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .reveal-on-scroll.is-revealed {
    opacity: 1;
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}

.section-panel-showcase {
  padding: 0 0 clamp(3rem, 8vw, 5rem);
}

.panel-showcase-shell {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  border-radius: 28px;
  background: linear-gradient(150deg, rgba(20, 20, 32, 0.95), rgba(6, 6, 12, 0.98));
  border: 1px solid rgba(124, 124, 255, 0.22);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.65), 0 0 0 1px rgba(255, 255, 255, 0.03) inset;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

@media (max-width: 900px) {
  .panel-showcase-shell {
    grid-template-columns: 1fr;
  }

  .panel-showcase-sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .panel-showcase-nav {
    flex-direction: row;
    flex-wrap: wrap;
  }
}

.panel-showcase-sidebar {
  padding: 1.35rem 1.1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  background: radial-gradient(circle at 50% 0%, rgba(124, 124, 255, 0.2), transparent 60%);
}

.panel-showcase-logo {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 4px;
  box-shadow: 0 8px 24px rgba(124, 124, 255, 0.35);
}

.panel-showcase-nav {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.panel-nav-item {
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.panel-nav-item:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
}

.panel-nav-item.active {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
  border-color: rgba(124, 124, 255, 0.3);
  box-shadow: 0 0 20px rgba(124, 124, 255, 0.08);
}

.panel-showcase-main {
  padding: 1.4rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.panel-showcase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.panel-showcase-title {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
}

.panel-showcase-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.85);
  background: rgba(0, 0, 0, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.panel-preview-content-wrapper {
  position: relative;
  min-height: 380px;
}

.panel-preview-content {
  display: none;
}

.panel-preview-content.active {
  display: block;
  animation: fadeInContent 0.45s ease;
}

@keyframes fadeInContent {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-main-content {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.panel-preview-section {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.panel-preview-header {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.55);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.panel-preview-header i {
  color: rgba(124, 124, 255, 0.85);
}

.panel-preview-announcement {
  padding: 1rem 1.05rem;
  border-radius: 16px;
  background: linear-gradient(155deg, rgba(18, 18, 30, 0.9), rgba(8, 8, 16, 0.92));
  border: 1px solid rgba(124, 124, 255, 0.12);
}

.panel-preview-announcement-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

.panel-preview-announcement-author {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  min-width: 0;
}

.panel-preview-announcement-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid rgba(124, 124, 255, 0.35);
}

.panel-preview-announcement-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.panel-preview-announcement-who {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.panel-preview-announcement-creator-name {
  font-weight: 700;
  font-size: 0.82rem;
  color: #fff;
  line-height: 1.2;
}

.panel-preview-announcement-role {
  font-size: 0.7rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  opacity: 0.95;
}

.panel-preview-announcement-date {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.42);
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.panel-preview-announcement-title {
  font-size: 0.9rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.4rem;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.panel-preview-announcement-body {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.5;
  margin: 0;
}

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

@media (max-width: 768px) {
  .panel-preview-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

.panel-preview-stat-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.8rem;
  border-radius: 14px;
  background: rgba(8, 8, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.panel-preview-stat-card:hover {
  transform: translateY(-2px);
  border-color: rgba(124, 124, 255, 0.2);
}

.panel-preview-stat-card i {
  color: var(--primary);
}

.panel-preview-stat-label {
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.panel-preview-stat-value {
  font-size: 0.88rem;
  font-weight: 800;
  color: #fff;
}

.panel-preview-coupon {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.14), rgba(138, 124, 255, 0.08));
  border: 1px solid rgba(124, 124, 255, 0.28);
}

.panel-preview-purchases {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.panel-preview-purchase-card {
  padding: 1rem;
  border-radius: 14px;
  background: rgba(8, 8, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-preview-purchase-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.panel-preview-purchase-status {
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  background: rgba(34, 197, 94, 0.12);
  color: var(--ok);
  border: 1px solid rgba(34, 197, 94, 0.25);
}

.panel-preview-purchase-body {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.panel-preview-purchase-detail {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  gap: 0.5rem;
}

.panel-preview-purchase-detail span:first-child {
  color: rgba(255, 255, 255, 0.45);
}

.panel-preview-purchase-detail span:last-child {
  color: #fff;
  font-weight: 600;
}

.panel-preview-profile {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 0.5rem 0;
}

.panel-preview-profile-avatar {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
  border: 3px solid rgba(124, 124, 255, 0.35);
}

.panel-preview-profile-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.panel-preview-profile-item {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  background: rgba(8, 8, 16, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.panel-preview-profile-label {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.panel-preview-profile-value {
  font-size: 0.85rem;
  color: #fff;
  font-weight: 600;
  text-align: right;
}

/* Legacy helpers */
.title-modern {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #fff, #e0e0ff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
}

.subtitle-modern {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.62);
  margin: 0;
}

.btn-modern {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.65rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.92rem;
  cursor: pointer;
  border: 1px solid rgba(124, 124, 255, 0.35);
  background: linear-gradient(145deg, rgba(24, 24, 36, 0.95), rgba(12, 12, 20, 0.9));
  color: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn-modern:hover {
  transform: translateY(-1px);
  border-color: rgba(124, 124, 255, 0.55);
}

.btn-modern.primary {
  border: none;
  background: linear-gradient(135deg, var(--primary), var(--primary2));
  color: #07070c;
}

.btn-modern.primary:hover {
  filter: brightness(1.04);
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page shells: FAQ, TOS, legal */
.page-hero-compact {
  padding: clamp(3.5rem, 10vw, 5rem) 0 2rem;
  text-align: center;
  position: relative;
}

.page-hero-compact .display-title {
  margin-bottom: 0.75rem;
}

.page-hero-compact .hero-lead {
  margin: 0 auto;
  max-width: 520px;
}

.section-pad-bottom {
  padding-bottom: clamp(3rem, 8vw, 5rem);
}

.section-pad-bottom-lg {
  padding-bottom: clamp(3.5rem, 9vw, 6rem);
}

.content-section {
  max-width: 860px;
  margin: 0 auto;
  padding: 2rem 0 4rem;
}

.content-section h2 {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.45rem, 3vw, 1.85rem);
  font-weight: 800;
  color: #fff;
  margin: 2.25rem 0 1rem;
  letter-spacing: -0.02em;
}

.content-section h2:first-of-type {
  margin-top: 0;
}

.content-section h3 {
  font-size: clamp(1.1rem, 2.2vw, 1.3rem);
  font-weight: 700;
  color: #fff;
  margin: 1.6rem 0 0.75rem;
}

.content-section p,
.content-section li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.72);
}

.content-section p {
  margin-bottom: 1rem;
}

.content-section ul,
.content-section ol {
  margin: 0.75rem 0 1.25rem;
  padding-left: 1.35rem;
}

.content-section li {
  margin-bottom: 0.55rem;
}

.content-section li strong,
.content-section strong {
  color: #fff;
  font-weight: 600;
}

.info-box {
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(124, 124, 255, 0.28);
  background: linear-gradient(135deg, rgba(124, 124, 255, 0.12), rgba(20, 20, 32, 0.6));
  margin: 2.5rem 0;
  box-shadow: 0 16px 48px rgba(124, 124, 255, 0.08);
}

.info-box h3 {
  margin: 0 0 0.75rem;
  color: #fff;
  font-size: 1.15rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.info-box h3 i {
  color: var(--primary);
}

.info-box p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
}

.faq-section {
  margin-bottom: 2.5rem;
}

.faq-section > h2 {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  margin-bottom: 1.25rem;
}

.faq-section > h2 i {
  color: var(--primary);
}

.faq-item {
  margin-bottom: 0.85rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(14, 14, 22, 0.65);
  overflow: hidden;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item:hover {
  border-color: rgba(124, 124, 255, 0.22);
}

.faq-item.active {
  border-color: rgba(124, 124, 255, 0.4);
  box-shadow: 0 12px 40px rgba(124, 124, 255, 0.08);
}

.faq-question {
  width: 100%;
  padding: 1.1rem 1.25rem;
  background: transparent;
  border: none;
  color: #fff;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-family: inherit;
  transition: color 0.2s ease;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: rgba(124, 124, 255, 0.75);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 1200px;
}

.faq-answer-content {
  padding: 0 1.25rem 1.25rem;
}

.contact-box {
  margin-top: 2.5rem;
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(124, 124, 255, 0.25);
  background: linear-gradient(160deg, rgba(124, 124, 255, 0.1), rgba(12, 12, 20, 0.85));
}

.contact-box h3 {
  margin: 0 0 0.65rem;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.contact-box p {
  margin: 0 0 1.25rem;
  color: rgba(255, 255, 255, 0.7);
}

.contact-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* Login / 2FA */
.page-login main {
  min-height: calc(100vh - 140px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 0;
}

.login-hero {
  width: 100%;
}

.login-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
  padding: 0 1rem;
}

.login-lead-narrow {
  max-width: 22rem;
}

.login-footnote {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.38);
  max-width: 22rem;
}

.login-form-stack {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
}

.form-err {
  margin: 0;
  font-size: 0.88rem;
  color: var(--danger);
  max-width: 20rem;
  text-align: center;
}

.btn-logout-soft {
  padding: 0.55rem 1rem;
  font-size: 0.85rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.55);
  border: 1px solid var(--border);
}

.btn-logout-soft:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.04);
}

.glitch-num-wrap {
  margin-bottom: 1rem;
}

.login-icon-wrap {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(124, 124, 255, 0.28);
  background: rgba(124, 124, 255, 0.08);
  color: var(--primary);
  font-size: 1.35rem;
}

.login-btn-row {
  width: 100%;
  max-width: 280px;
}

.btn-wide {
  width: 100%;
  justify-content: center;
}

.page-404-inner {
  text-align: center;
  max-width: 520px;
  margin: 0 auto;
  padding: 0 1rem;
}

.error-title {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(1.65rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.75rem;
  letter-spacing: -0.02em;
}

.error-text {
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.55);
  margin: 0 0 2rem;
}

.error-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  justify-content: center;
}

.login-card {
  width: 100%;
  max-width: 460px;
  padding: clamp(1.75rem, 4vw, 2.5rem);
  border-radius: 26px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(124, 124, 255, 0.28);
  background: linear-gradient(155deg, rgba(22, 22, 34, 0.92), rgba(8, 8, 14, 0.96));
  box-shadow: 0 20px 56px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  gap: 1.15rem;
  align-items: center;
  text-align: center;
}

.login-card::before {
  content: "";
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 120%;
  height: 60%;
  background: radial-gradient(circle, rgba(124, 124, 255, 0.08), transparent 65%);
  pointer-events: none;
}

.login-card > * {
  position: relative;
  z-index: 1;
}

.input-otp {
  width: 100%;
  max-width: 220px;
  padding: 0.95rem 1rem;
  font-size: 1.45rem;
  letter-spacing: 0.35em;
  text-align: center;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.35);
  color: var(--fg);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.input-otp:focus {
  border-color: rgba(124, 124, 255, 0.55);
  box-shadow: 0 0 0 4px rgba(124, 124, 255, 0.12);
}

/* 404 */
.page-404 .error-stage {
  min-height: calc(100vh - 200px);
  display: grid;
  place-items: center;
  padding: 3rem 1rem;
}

.glitch-num {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-size: clamp(5rem, 18vw, 9rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(180deg, rgba(124, 124, 255, 0.35), rgba(124, 124, 255, 0.08));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  user-select: none;
}

/* Banned page */
.page-banned main {
  min-height: calc(100vh - 140px);
  display: flex;
  flex-direction: column;
  padding: 0;
}

.banned-hero {
  flex: 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.banned-wrap {
  width: 100%;
  max-width: 400px;
}

.banned-card {
  padding: 1.6rem 1.5rem;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(22, 22, 32, 0.95), rgba(8, 8, 14, 0.98));
  border: 1px solid rgba(239, 68, 68, 0.25);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 48px rgba(239, 68, 68, 0.06);
  text-align: center;
}

.banned-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin: 0 auto 0.85rem;
  border: 1px solid rgba(239, 68, 68, 0.25);
}

.banned-title {
  font-family: "Plus Jakarta Sans", Inter, sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: #fff;
  margin: 0 0 0.35rem;
  letter-spacing: -0.02em;
}

.banned-sub {
  font-size: 0.86rem;
  color: var(--muted);
  margin: 0 0 1.2rem;
  line-height: 1.45;
}

.banned-info {
  background: rgba(0, 0, 0, 0.35);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 0.45rem 0.85rem;
  align-items: center;
  text-align: left;
}

.banned-info .banned-line-lbl {
  color: var(--muted);
  font-size: 0.78rem;
}

.banned-info .banned-line-val {
  color: #fff;
  font-weight: 500;
  font-size: 0.78rem;
  text-align: right;
  word-break: break-word;
}

.banned-info .banned-line-val.badge {
  font-size: 0.68rem;
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
  background: rgba(239, 68, 68, 0.12);
  color: #f87171;
  justify-self: end;
}

.banned-row {
  display: contents;
}

.banned-line--banner .banned-banner {
  grid-column: 2;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.banned-banner-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  object-fit: cover;
}

.banned-banner-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.12rem;
}

.banned-banner-rank {
  display: inline-flex;
  align-items: center;
  gap: 0.22rem;
  font-size: 0.65rem;
  font-weight: 600;
  padding: 0.12rem 0.42rem;
  border-radius: 999px;
}

.banned-sep {
  grid-column: 1 / -1;
  height: 1px;
  background: rgba(255, 255, 255, 0.06);
  margin: 0.2rem 0;
}

.banned-appeal {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
  margin: 0 0 1rem;
}

.banned-btns {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.banned-btns .btn-modern {
  width: 100%;
  justify-content: center;
}

.banned-btns .btn-ghost-ban {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--muted);
}

.banned-btns .btn-ghost-ban:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.05);
}

.site-footer {
  margin-top: auto;
  padding: 1.35rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(4, 4, 8, 0.92);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
}

.footer-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.52);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.45);
}

.footer-sep {
  color: rgba(255, 255, 255, 0.22);
  user-select: none;
}

.footer-heart {
  color: rgba(255, 255, 255, 0.72);
}

.footer-heart a {
  color: var(--primary);
  font-weight: 700;
}

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

.footer-discord {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.05);
  color: var(--fg);
  transition: background 0.18s ease, border-color 0.18s ease;
}

.footer-discord:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(124, 124, 255, 0.35);
}

.notify {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  padding: 0.85rem 1.35rem;
  border-radius: 999px;
  background: rgba(14, 14, 24, 0.96);
  border: 1px solid rgba(124, 124, 255, 0.35);
  color: var(--fg);
  font-size: 0.88rem;
  font-weight: 600;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 300;
}

.notify.show {
  opacity: 1;
  transform: translateX(-50%) translateY(-4px);
}

/* Dashboard: sin textura de ruido (se veía “pixelada”); cuadrícula más suave */
body.page-dashboard .noise-overlay {
  opacity: 0;
}

body.page-dashboard .site-grid {
  opacity: 0.22;
}
