:root {
  --dyshea-bg: #050817;
  --dyshea-bg-elevated: #090d24;
  --dyshea-panel: rgba(12, 17, 46, .88);
  --dyshea-panel-strong: rgba(15, 18, 52, .96);
  --dyshea-line: rgba(145, 128, 226, .22);
  --dyshea-line-strong: rgba(177, 130, 255, .52);
  --dyshea-purple: #8b45f6;
  --dyshea-violet: #a961ff;
  --dyshea-blue: #4b73ff;
  --dyshea-cyan: #58e8e1;
  --dyshea-green: #65e693;
  --dyshea-gold: #ffbe55;
  --dyshea-text: #f7f5ff;
  --dyshea-muted: #9497b4;
  --dyshea-radius-sm: 12px;
  --dyshea-radius-md: 18px;
  --dyshea-radius-lg: 26px;
  --dyshea-shadow: 0 22px 70px rgba(0, 0, 20, .38);
  --dyshea-glow: 0 0 36px rgba(139, 69, 246, .22);
}

* { scrollbar-width: thin; scrollbar-color: #7652c7 rgba(11, 15, 43, .74); }
*::-webkit-scrollbar { width: 10px; height: 10px; }
*::-webkit-scrollbar-track { border-radius: 999px; background: rgba(11, 15, 43, .74); }
*::-webkit-scrollbar-thumb {
  border: 2px solid rgba(11, 15, 43, .88);
  border-radius: 999px;
  background: linear-gradient(180deg, #a15cff, #5264dc);
}
*::-webkit-scrollbar-thumb:hover { background: linear-gradient(180deg, #ba78ff, #6878f4); }
:focus-visible { outline: 3px solid rgba(88, 232, 225, .82); outline-offset: 3px; }

.dyshea-surface {
  border: 1px solid var(--dyshea-line);
  border-radius: var(--dyshea-radius-lg);
  background: radial-gradient(circle at 85% 0, rgba(75, 115, 255, .1), transparent 34%), linear-gradient(145deg, rgba(16, 20, 56, .96), rgba(8, 11, 32, .96));
  box-shadow: var(--dyshea-shadow);
}
.dyshea-eyebrow {
  color: var(--dyshea-cyan);
  font: 800 10px/1.2 Sora, sans-serif;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.dyshea-chip {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border: 1px solid var(--dyshea-line);
  border-radius: 999px;
  color: #ded9f6;
  background: rgba(15, 18, 50, .76);
  font-size: 11px;
  font-weight: 700;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
