* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: 'Sora', sans-serif;
  background: radial-gradient(circle at center, #07000d 0%, #030006 65%, #010002 100%);
  color: #f4f0ff;
  cursor: default;
  user-select: none;
}

/* =========================
   PARTICLE NETWORK CANVAS
========================= */
canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.9;
  filter: blur(4px);
}

/* keep UI above background */
.stage,
.top-nav {
  position: relative;
  z-index: 2;
}

.logout-btn {
  position: fixed;
  top: 22px;
  right: 22px;
  z-index: 35;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.52);
  background: rgba(10, 6, 18, 0.35);
  border: 1px solid rgba(120, 80, 255, 0.16);
  backdrop-filter: blur(14px);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition:
    opacity 0.35s ease,
    transform 0.35s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.logout-btn.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.logout-btn:hover {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(140, 95, 255, 0.38);
  background: rgba(123, 77, 255, 0.14);
  box-shadow: 0 0 20px rgba(90, 50, 160, 0.12);
}

.logout-btn:active {
  transform: translateY(0);
  filter: brightness(0.95);
}

.logout-btn:focus-visible {
  outline: 2px solid rgba(123, 77, 255, 0.9);
  outline-offset: 2px;
}

.discord-btn {
  position: fixed;
  top: 8px;
  right: 14px;
  z-index: 35;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 9px 16px;
  border-radius: 9px;
  border: 1px solid rgba(172, 198, 236, 0.3);
  background: linear-gradient(180deg, #8fa4c2 0%, #8195b3 100%);
  color: #0f1724;
  text-decoration: none;
  font-family: inherit;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0;
  box-shadow:
    0 8px 22px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transition:
    opacity 0.35s ease,
    transform 0.2s ease,
    filter 0.2s ease,
    box-shadow 0.2s ease;
  opacity: 0;
  pointer-events: none;
}

.discord-btn::before {
  content: "";
  width: 14px;
  height: 14px;
  opacity: 0.95;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 127.14 96.36'%3E%3Cpath fill='%230f1724' d='M107.7 8.07A105.15 105.15 0 0 0 81.47 0a72.06 72.06 0 0 0-3.36 6.83 97.68 97.68 0 0 0-29.11 0A72.37 72.37 0 0 0 45.64 0a105.89 105.89 0 0 0-26.24 8.09C2.79 32.65-1.71 56.6.54 80.21h.05A105.73 105.73 0 0 0 32.71 96.36a77.7 77.7 0 0 0 6.94-11.31 68.42 68.42 0 0 1-10.92-5.25c.92-.67 1.82-1.37 2.69-2.11a75.57 75.57 0 0 0 64.3 0c.88.74 1.78 1.44 2.7 2.11a68.68 68.68 0 0 1-10.94 5.25 77 77 0 0 0 6.95 11.31A105.25 105.25 0 0 0 126.55 80.2h.05c2.64-27.34-4.51-51.1-18.9-72.13ZM42.45 65.69c-6.27 0-11.42-5.73-11.42-12.77s5.04-12.78 11.42-12.78c6.43 0 11.53 5.78 11.42 12.78 0 7.04-5.04 12.77-11.42 12.77Zm42.24 0c-6.27 0-11.42-5.73-11.42-12.77s5.04-12.78 11.42-12.78c6.43 0 11.53 5.78 11.42 12.78 0 7.04-5.03 12.77-11.42 12.77Z'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.discord-btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.discord-btn:active {
  transform: translateY(0);
  filter: brightness(0.96);
}

.discord-btn.show {
  opacity: 1;
  pointer-events: auto;
}

.discord-btn:focus-visible {
  outline: 2px solid rgba(190, 210, 255, 0.95);
  outline-offset: 2px;
}

/* =========================
   NAV
========================= */
.top-nav {
  position: absolute;
  top: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 8px;
  max-width: calc(100vw - 120px);
  border-radius: 999px;
  background: rgba(14, 8, 24, 0.72);
  border: 1px solid rgba(120, 80, 255, 0.08);
  backdrop-filter: blur(12px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.6s ease;
  z-index: 30;
}

.top-nav.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.top-nav--postlogin {
  top: 18px;
  padding: 6px;
  gap: 8px;
  background: rgba(10, 6, 20, 0.82);
  border-color: rgba(150, 115, 255, 0.18);
}

.nav-item {
  padding: 9px 17px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  background: transparent;
  border: none;
  font-family: inherit;
  cursor: pointer;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.nav-item:hover {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.04);
}

.nav-item:focus-visible {
  outline: 2px solid rgba(123, 77, 255, 0.9);
  outline-offset: 2px;
  color: white;
}

.nav-item.active {
  color: #fff;
  background: linear-gradient(135deg, #7b4dff, #4b2aa6);
  box-shadow:
    0 2px 14px rgba(75, 42, 166, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.nav-item.nav-item--pulse {
  animation: navItemPulse 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes navItemPulse {
  0% {
    transform: scale(0.97);
    filter: brightness(0.94);
  }
  100% {
    transform: scale(1);
    filter: brightness(1);
  }
}

/* =========================
   TEXT INTRO
========================= */
.stage {
  position: relative;
  width: 100%;
  height: 100vh;
}

.text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-transform: uppercase;
  text-align: center;
  z-index: 10;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.45s ease;
}

.asylum {
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.32em;
  white-space: nowrap;
}

.asylum.fade-out {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 20px));
}

.welcome {
  text-transform: none;
  font-size: clamp(1.52rem, 3.55vw, 2.28rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 255, 0.88);
  opacity: 0;
  transform: translate(-50%, calc(-50% + 10px));
  white-space: nowrap;
}

.welcome.show {
  opacity: 1;
  transform: translate(-50%, -50%);
}

.welcome.raise {
  transform: translate(-50%, calc(-50% - 172px));
}

.welcome.hide {
  opacity: 0;
  transform: translate(-50%, calc(-50% - 198px));
}

/* cursor */
.cursor {
  position: absolute;
  top: 50%;
  width: 2px;
  height: 60px;
  background: white;
  animation: blink 1s infinite;
  transform: translateY(-50%);
  z-index: 11;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.cursor.hide {
  opacity: 0;
}

@keyframes blink {
  50% { opacity: 0; }
}

/* =========================
   LOGIN PANEL
========================= */
.panel-wrap {
  position: absolute;
  left: 50%;
  top: 50%;
  width: min(360px, 85vw);
  height: auto;
  transform: translate(-50%, calc(-50% + 40px));
}

.panel-wrap.panel-wrap--home {
  left: 0;
  top: 0;
  width: 100vw;
  min-height: 0;
  height: 100vh;
  transform: none;
}

.login-box {
  position: relative;
  width: 100%;
  box-sizing: border-box;
  padding: 26px;
  border-radius: 20px;
  background: rgba(15, 8, 28, 0.75);
  border: 1px solid rgba(120, 80, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.98);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

.login-box.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.login-title {
  text-align: center;
  font-size: 0.8rem;
  letter-spacing: 0.25em;
  margin-bottom: 18px;
  color: rgba(255,255,255,0.7);
}

.input {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  border: none;
  background: rgba(255,255,255,0.05);
  color: white;
  margin-bottom: 14px;
  user-select: text;
  font-family: inherit;
  outline: none;
  cursor: text;
}

.input::placeholder {
  color: rgba(255,255,255,0.35);
}

.input.input--error {
  box-shadow: 0 0 0 1px rgba(255, 100, 130, 0.45);
  background: rgba(255, 70, 90, 0.06);
}

.login-error {
  margin: -4px 0 14px;
  padding: 10px 14px;
  border-radius: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: center;
  color: #ffc8cf;
  background: linear-gradient(
    180deg,
    rgba(255, 70, 100, 0.14) 0%,
    rgba(255, 40, 80, 0.08) 100%
  );
  border: 1px solid rgba(255, 120, 140, 0.28);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
}

.login-error[hidden] {
  display: none;
}

.login-error:not([hidden]) {
  animation: loginErrorIn 0.28s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes loginErrorIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.login-btn {
  width: 100%;
  padding: 13px 18px;
  border-radius: 12px;
  border: none;
  background: linear-gradient(135deg, #7b4dff, #4b2aa6);
  color: #fff;
  cursor: pointer;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow:
    0 2px 16px rgba(75, 42, 166, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.login-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 22px rgba(90, 50, 180, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  filter: brightness(1.04);
}

.login-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.login-btn:focus-visible {
  outline: 2px solid rgba(190, 165, 255, 0.95);
  outline-offset: 2px;
}

.auth-toggle-btn {
  margin-top: 10px;
  width: 100%;
  border: 1px solid rgba(123, 77, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(233, 225, 255, 0.78);
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
}

.auth-toggle-btn:hover {
  background: rgba(123, 77, 255, 0.12);
  color: #fff;
}

/* =========================
   HOME (POST-LOGIN)
========================= */
.home-page {
  position: fixed;
  left: 50%;
  top: 84px;
  width: min(1380px, 96vw);
  overflow: visible;
  transform: translateX(-50%);
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%);
}

.panel-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  align-items: start;
}

.panel-sidebar {
  padding: 12px;
  border-radius: 16px;
  background: rgba(10, 6, 18, 0.84);
  border: 1px solid rgba(123, 77, 255, 0.12);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.45);
  max-height: calc(100vh - 72px);
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.panel-sidebar::-webkit-scrollbar {
  display: none;
}

.panel-license-card {
  padding: 12px;
  border-radius: 12px;
  background: rgba(21, 13, 36, 0.8);
  border: 1px solid rgba(123, 77, 255, 0.16);
}

.panel-license-row + .panel-license-row {
  margin-top: 10px;
}

.panel-license-key {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.44);
  margin-bottom: 4px;
}

.panel-license-value {
  font-size: 0.9rem;
  color: rgba(236, 230, 255, 0.9);
  font-weight: 600;
}

.panel-license-expiry {
  font-size: 0.9rem;
  color: #5fdd8a;
  font-weight: 700;
}

.panel-menu {
  margin-top: 14px;
}

.panel-menu-heading {
  margin: 14px 0 8px;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  color: rgba(255, 255, 255, 0.36);
  font-weight: 600;
}

.panel-menu-item {
  width: 100%;
  border: 1px solid transparent;
  background: transparent;
  color: rgba(236, 230, 255, 0.68);
  font-size: 0.9rem;
  font-family: inherit;
  text-align: left;
  padding: 9px 10px;
  border-radius: 9px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.panel-menu-item:hover {
  background: rgba(123, 77, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
}

.panel-menu-item--active {
  background: rgba(123, 77, 255, 0.22);
  border-color: rgba(123, 77, 255, 0.3);
  color: #d7c2ff;
}

.panel-actions {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.panel-action-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.panel-action-btn {
  width: 100%;
  border-radius: 10px;
  border: 1px solid rgba(123, 77, 255, 0.16);
  background: rgba(18, 11, 30, 0.9);
  color: rgba(236, 230, 255, 0.86);
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 10px 12px;
  cursor: pointer;
}

.panel-action-btn--primary {
  background: linear-gradient(135deg, #7b4dff, #5a37c4);
  border-color: rgba(147, 112, 255, 0.45);
  color: #fff;
}

.panel-action-btn--danger {
  background: linear-gradient(135deg, #e34b61, #c53f54);
  border-color: rgba(255, 120, 145, 0.45);
  color: #fff;
}

.panel-content {
  height: calc(100vh - 116px);
  width: 100%;
  max-width: 1320px;
  margin-inline: auto;
  border-radius: 16px;
  background: rgba(10, 6, 18, 0.76);
  border: 1px solid rgba(123, 77, 255, 0.12);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.42);
  overflow: hidden;
}

.panel-content.panel-content--switching {
  animation: panelContentSwitchIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes panelContentSwitchIn {
  0% {
    opacity: 0.92;
    transform: translateY(8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.panel-screen {
  display: none;
  height: 100%;
  padding: 20px;
}

.panel-screen.show {
  display: block;
}

.panel-screen--dashboard {
  padding: 22px;
  overflow-y: auto;
}

.dashboard-home-card {
  border-radius: 12px;
  border: 1px solid rgba(123, 77, 255, 0.18);
  background: linear-gradient(180deg, rgba(16, 9, 28, 0.78), rgba(8, 5, 14, 0.78));
  padding: 22px 24px;
}

.dashboard-home-title {
  font-size: 2rem;
  line-height: 1;
  color: #f8f4ff;
}

.dashboard-home-subtitle {
  margin-top: 10px;
  color: rgba(214, 204, 240, 0.62);
  font-size: 0.92rem;
}

.dashboard-home-rows {
  margin-top: 18px;
  border-top: 1px solid rgba(123, 77, 255, 0.12);
}

.dashboard-home-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  border-bottom: 1px solid rgba(123, 77, 255, 0.12);
}

.dashboard-home-key {
  color: rgba(198, 184, 230, 0.66);
  font-size: 0.9rem;
}

.dashboard-home-value {
  color: rgba(245, 241, 255, 0.94);
  font-size: 1rem;
}

.dashboard-products-grid {
  margin-top: 12px;
}

.panel-screen--products {
  padding: 22px;
  overflow-y: auto;
  -ms-overflow-style: thin;
  scrollbar-width: thin;
}

.products-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 16px;
  min-height: auto;
  padding-right: 6px;
}

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 14px;
}

.products-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200, 182, 245, 0.72);
}

.products-heading {
  margin-top: 8px;
  font-size: 1.8rem;
  line-height: 1;
  color: #f8f5ff;
}

.products-header-badges {
  display: flex;
  gap: 8px;
}

.products-pill {
  border-radius: 999px;
  border: 1px solid rgba(123, 77, 255, 0.28);
  background: rgba(95, 67, 172, 0.22);
  color: #e7d9ff;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 7px 10px;
}

.products-pill--online {
  border-color: rgba(100, 225, 172, 0.42);
  background: rgba(56, 184, 126, 0.2);
  color: #8af7c7;
}

.products-card {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(123, 77, 255, 0.2);
  background: linear-gradient(180deg, rgba(16, 9, 28, 0.78), rgba(8, 5, 14, 0.78));
  padding: 22px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.products-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.products-title {
  font-size: clamp(1.7rem, 3vw, 2.1rem);
  line-height: 1.05;
  color: #f4f0ff;
}

.products-tier {
  margin-top: 8px;
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(223, 212, 250, 0.85);
}

.products-stable {
  border-radius: 6px;
  border: 1px solid rgba(98, 217, 161, 0.35);
  background: rgba(61, 179, 127, 0.12);
  color: #71ebb5;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 8px;
}

.products-actions {
  display: flex;
  gap: 10px;
}

.products-btn {
  border-radius: 10px;
  border: 1px solid rgba(123, 77, 255, 0.25);
  background: rgba(255, 255, 255, 0.04);
  color: #f5f1ff;
  font-family: inherit;
  font-size: 0.74rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 14px;
}

.products-btn--primary {
  background: linear-gradient(135deg, #7b4dff, #4b2aa6);
  border-color: rgba(147, 112, 255, 0.45);
}

.products-btn:disabled {
  opacity: 0.38;
  cursor: not-allowed;
  filter: grayscale(0.25);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.products-info-card {
  border-radius: 12px;
  border: 1px solid rgba(123, 77, 255, 0.16);
  background: rgba(9, 6, 16, 0.72);
  padding: 14px;
}

.products-info-label {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(197, 183, 232, 0.62);
}

.products-info-value {
  margin-top: 8px;
  font-size: 1.28rem;
  font-weight: 700;
  color: #f6f3ff;
}

.products-info-subtle {
  margin-top: 8px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: rgba(223, 214, 246, 0.58);
}

.products-list {
  margin: 10px 0 0;
  padding-left: 16px;
  display: grid;
  gap: 6px;
  color: rgba(243, 238, 255, 0.88);
  font-size: 0.88rem;
}

.products-updates-card {
  margin-top: 12px;
}

.products-list--updates {
  list-style: none;
  padding-left: 0;
  gap: 8px;
}

.products-bottom-grid {
  margin-top: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.products-stats {
  margin-top: 10px;
  display: grid;
  gap: 8px;
}

.products-stat-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  border-radius: 8px;
  border: 1px solid rgba(123, 77, 255, 0.14);
  background: rgba(255, 255, 255, 0.02);
  padding: 8px 10px;
}

.products-stat-key {
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(197, 183, 232, 0.72);
}

.products-stat-value {
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(245, 241, 255, 0.92);
}

.products-open-feature {
  margin-top: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 92% -20%, rgba(105, 120, 146, 0.2), transparent 50%),
    linear-gradient(180deg, rgba(20, 21, 28, 0.96), rgba(10, 11, 15, 0.98));
  padding: 14px;
  display: grid;
  gap: 12px;
}

.products-open-feature__head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.products-open-feature__icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.9), rgba(8, 10, 14, 0.95));
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.82rem;
  font-weight: 700;
}

.products-open-feature__brand h4 {
  color: #f6f8ff;
  font-size: 0.95rem;
}

.products-open-feature__brand p {
  margin-top: 2px;
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: rgba(233, 236, 255, 0.52);
}

.products-open-feature__tabs {
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(17, 18, 24, 0.88);
  padding: 6px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.products-open-feature__tab {
  border: none;
  border-radius: 7px;
  min-height: 34px;
  background: transparent;
  color: rgba(229, 233, 248, 0.45);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.products-open-feature__tab--active {
  background: linear-gradient(180deg, rgba(43, 45, 55, 0.95), rgba(28, 30, 38, 0.95));
  color: rgba(255, 255, 255, 0.95);
}

.products-open-feature__panel {
  display: grid;
  gap: 10px;
}

.products-open-feature__panel[hidden] {
  display: none;
}

.products-open-feature__toggle-row {
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(18, 20, 26, 0.92), rgba(10, 11, 16, 0.94));
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.products-open-feature__toggle-title {
  font-size: 1.05rem;
  color: #f7f9ff;
}

.products-open-feature__toggle-subtitle {
  margin-top: 4px;
  color: rgba(226, 230, 244, 0.46);
  font-size: 0.76rem;
}

.products-open-feature__access {
  margin-top: 6px;
  color: rgba(223, 229, 255, 0.7);
  font-size: 0.67rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.launcher-switch {
  width: 72px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(45, 49, 58, 0.92);
  padding: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  cursor: pointer;
  transition:
    background 0.28s ease,
    border-color 0.28s ease,
    box-shadow 0.28s ease;
}

.launcher-switch--on {
  background: linear-gradient(180deg, rgba(28, 232, 165, 0.96), rgba(16, 191, 132, 0.95));
  border-color: rgba(105, 255, 206, 0.6);
  box-shadow: 0 0 18px rgba(27, 239, 170, 0.45);
}

.launcher-switch-knob {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.launcher-switch--on .launcher-switch-knob {
  transform: translateX(36px);
}

.products-open-feature__launch {
  width: 100%;
  min-height: 46px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: #fff;
  color: #11131a;
  font-family: inherit;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    filter 0.22s ease;
}

.products-open-feature__launch:hover:not(:disabled) {
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.32);
  filter: brightness(1.02);
}

.products-open-feature__launch:active:not(:disabled),
.products-open-feature__launch.is-launching {
  transform: translateY(0) scale(0.985);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  filter: brightness(0.96);
}

.products-open-feature__clean-btn {
  min-height: 40px;
  border-radius: 9px;
  border: 1px solid rgba(149, 170, 255, 0.35);
  background: linear-gradient(180deg, rgba(63, 74, 110, 0.9), rgba(36, 44, 72, 0.92));
  color: #edf2ff;
  font-family: inherit;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, filter 0.2s ease, box-shadow 0.2s ease;
}

.products-open-feature__clean-btn:hover:not(:disabled) {
  transform: translateY(-1px);
  filter: brightness(1.06);
  box-shadow: 0 8px 18px rgba(22, 25, 38, 0.4);
}

.products-open-feature__clean-btn:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.products-open-feature__clean-progress {
  display: grid;
  gap: 8px;
}

.products-open-feature__clean-progress[hidden] {
  display: none !important;
}

.products-open-feature__clean-bar {
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(12, 15, 23, 0.9);
  overflow: hidden;
}

.products-open-feature__clean-fill {
  display: block;
  height: 100%;
  width: 0%;
  border-radius: inherit;
  background: linear-gradient(90deg, #67f0c0 0%, #2dcf99 55%, #1ca67a 100%);
  box-shadow: 0 0 12px rgba(63, 239, 177, 0.45);
  transition: width 0.2s linear;
}

.products-open-feature__clean-text {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(220, 233, 255, 0.78);
}

@media (max-height: 850px) {
  .products-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .products-bottom-grid {
    grid-template-columns: 1fr;
  }
}

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

.panel-screen-kicker {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.42);
}

.panel-screen-title {
  margin-top: 8px;
  font-size: 1.5rem;
  color: #f6f3ff;
}

.panel-screen-subtitle {
  margin-top: 10px;
  color: rgba(232, 224, 255, 0.68);
  font-size: 0.92rem;
}

.cloud-layout {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(430px, 1fr) 300px;
  gap: 14px;
}

.cloud-editor,
.cloud-sidebar {
  border-radius: 12px;
  background: rgba(8, 4, 16, 0.82);
  border: 1px solid rgba(123, 77, 255, 0.14);
}

.cloud-editor {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cloud-editor-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid rgba(123, 77, 255, 0.14);
}

.cloud-editor-title {
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #9a63ff;
}

.cloud-editor-actions {
  display: flex;
  gap: 8px;
}

.cloud-editor-btn {
  border: 1px solid rgba(123, 77, 255, 0.18);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(245, 239, 255, 0.72);
  font-family: inherit;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 600;
  border-radius: 8px;
  padding: 8px 12px;
}

.cloud-editor-btn--primary {
  color: rgba(248, 244, 255, 0.9);
}

.cloud-editor-code {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  padding: 14px;
  overflow: hidden;
  font-family: Consolas, "Courier New", monospace;
  font-size: 0.94rem;
  line-height: 1.45;
  color: #c3d3ff;
}

.cloud-editor-status {
  margin-top: 8px;
  min-height: 18px;
  font-family: "Sora", sans-serif;
  font-size: 0.78rem;
  color: rgba(210, 180, 255, 0.78);
}

.cloud-editor-status--error {
  color: rgba(255, 145, 175, 0.88);
}

.cloud-editor-textarea {
  flex: 1;
  width: 100%;
  min-height: 160px;
  margin: 0;
  padding: 0;
  border: none;
  resize: vertical;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  white-space: pre;
  overflow-wrap: normal;
  overflow-x: auto;
  overflow-y: auto;
  outline: none;
}

.cloud-editor-textarea:focus-visible {
  outline: 2px solid rgba(154, 99, 255, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

.cloud-sidebar {
  padding: 14px;
}

.cloud-sidebar-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
}

.cloud-sidebar-title {
  font-size: 1.85rem;
  line-height: 1;
  margin-bottom: 6px;
}

.cloud-sidebar-subtitle {
  color: rgba(236, 228, 255, 0.56);
  font-size: 0.88rem;
}

.cloud-sidebar-count {
  color: rgba(242, 236, 255, 0.68);
  font-size: 0.82rem;
  margin-top: 5px;
}

.cloud-add-row {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1fr 44px;
  gap: 8px;
}

.cloud-add-input {
  border-radius: 9px;
  border: 1px solid rgba(154, 99, 255, 0.42);
  background: rgba(6, 3, 12, 0.85);
  color: #fff;
  font-family: inherit;
  padding: 10px 12px;
}

.cloud-add-input::placeholder {
  color: rgba(220, 200, 255, 0.38);
}

.cloud-add-input:focus-visible {
  outline: none;
  border-color: rgba(200, 150, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(154, 99, 255, 0.25);
}

.cloud-add-btn {
  border: none;
  border-radius: 9px;
  background: linear-gradient(160deg, #c084ff 0%, #7c3aed 52%, #5b21b6 100%);
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
  font-family: inherit;
  cursor: pointer;
  box-shadow:
    0 0 22px rgba(154, 99, 255, 0.55),
    0 4px 14px rgba(0, 0, 0, 0.45);
  transition: filter 0.15s ease, transform 0.12s ease, opacity 0.15s ease;
}

.cloud-add-btn:hover:not(:disabled) {
  filter: brightness(1.06);
}

.cloud-add-btn:active:not(:disabled) {
  transform: scale(0.97);
}

.cloud-add-btn:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  box-shadow: none;
  filter: none;
}

.cloud-library {
  margin-top: 14px;
  border-radius: 10px;
  border: 1px solid rgba(154, 99, 255, 0.22);
  background: rgba(5, 2, 10, 0.88);
  max-height: calc(100% - 118px);
  overflow-y: auto;
  padding: 10px 10px 12px;
}

.cloud-library-heading {
  padding: 4px 2px 10px;
  margin-bottom: 2px;
  border-bottom: 1px solid rgba(154, 99, 255, 0.18);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.48);
}

.cloud-library-card {
  margin-top: 10px;
  padding: 12px 12px 12px;
  border-radius: 10px;
  border: 1px solid rgba(154, 99, 255, 0.5);
  background: rgba(12, 6, 22, 0.92);
  box-shadow: 0 0 16px rgba(154, 99, 255, 0.08);
}

.cloud-library-card--active {
  border-color: rgba(214, 180, 255, 0.75);
  box-shadow:
    0 0 22px rgba(154, 99, 255, 0.28),
    inset 0 0 0 1px rgba(154, 99, 255, 0.12);
}

.cloud-library-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}

.cloud-library-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #f8f4ff;
  line-height: 1.2;
  word-break: break-word;
}

.cloud-library-card__date {
  flex-shrink: 0;
  font-size: 0.76rem;
  font-weight: 500;
  color: rgba(210, 170, 255, 0.72);
  letter-spacing: 0.02em;
}

.cloud-library-card__actions {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 12px;
}

.cloud-library-card__load {
  flex: 1;
  min-height: 40px;
  border-radius: 8px;
  border: 1px solid rgba(200, 150, 255, 0.55);
  background: rgba(154, 99, 255, 0.06);
  color: #e8d4ff;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.cloud-library-card__load:hover {
  background: rgba(154, 99, 255, 0.16);
  border-color: rgba(230, 200, 255, 0.65);
  color: #fff;
}

.cloud-library-card__icon {
  width: 42px;
  min-height: 40px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(200, 150, 255, 0.45);
  background: rgba(154, 99, 255, 0.08);
  color: #f0d8ff;
  cursor: pointer;
  font-family: inherit;
  padding: 0;
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    color 0.15s ease;
}

.cloud-library-card__icon:hover {
  background: rgba(154, 99, 255, 0.2);
  border-color: rgba(230, 200, 255, 0.55);
  color: #fff;
}

.cloud-library-card__icon--delete:hover {
  border-color: rgba(255, 120, 150, 0.65);
  background: rgba(255, 80, 120, 0.12);
  color: #ffc8d8;
}

.cloud-library-card__icon--export:hover {
  border-color: rgba(140, 210, 255, 0.7);
  background: rgba(80, 170, 255, 0.12);
  color: #d4efff;
}

.cloud-library-card__icon svg {
  display: block;
}

.cloud-library-empty {
  margin-top: 10px;
  padding: 12px 4px 4px;
  color: rgba(240, 234, 255, 0.48);
  font-size: 0.82rem;
  text-align: center;
}

.home-stack {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  transform: translateZ(0);
  width: 100%;
}

.home-welcome {
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  font-size: clamp(1.35rem, 3.2vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: rgba(244, 240, 255, 0.88);
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  backface-visibility: hidden;
  transition:
    opacity 0.45s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-welcome--brand {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #b385ff;
  text-shadow:
    0 0 26px rgba(123, 77, 255, 0.3),
    0 0 46px rgba(123, 77, 255, 0.18);
}

.home-page.show .home-welcome {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.home-page.show .home-welcome.home-welcome--raised {
  transform: translate3d(0, -36px, 0);
}

.home-tier {
  position: absolute;
  left: 50%;
  top: calc(100% + 14px);
  z-index: 1;
  margin-top: 0;
  padding: 0;
  width: min(300px, 88vw);
  border-radius: 20px;
  background: rgba(12, 7, 22, 0.78);
  border: 1px solid rgba(120, 80, 255, 0.14);
  backdrop-filter: blur(14px);
  box-shadow:
    0 14px 36px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  opacity: 0;
  transform: translate(-50%, 14px) scale(0.98);
  pointer-events: none;
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

.home-tier--private {
  width: min(320px, 90vw);
  border-color: rgba(132, 90, 255, 0.26);
  box-shadow:
    0 18px 44px rgba(0, 0, 0, 0.52),
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 0 40px rgba(85, 48, 155, 0.1);
}

.home-tier--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
  pointer-events: auto;
}

.home-tier-inner {
  padding: 22px 24px 24px;
  text-align: center;
}

.home-tier-badge {
  font-size: clamp(0.78rem, 1.7vw, 0.9rem);
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(236, 230, 255, 0.88);
}

.home-tier--private .home-tier-badge {
  color: rgba(212, 188, 255, 0.96);
}

.home-tier-extra {
  margin-top: 18px;
}

.home-tier-divider {
  height: 1px;
  margin: 0 0 18px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(123, 77, 255, 0.35) 20%,
    rgba(123, 77, 255, 0.35) 80%,
    transparent
  );
}

.home-tier-stat {
  margin: 0 0 20px;
  padding: 0;
}

.home-tier-stat dt {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.34);
  margin-bottom: 10px;
}

.home-tier-stat dd {
  margin: 0;
  font-size: clamp(1.02rem, 2.3vw, 1.28rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  color: rgba(248, 244, 255, 0.96);
  font-variant-numeric: tabular-nums;
}

.home-tier-time--lifetime {
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: clamp(0.95rem, 2.1vw, 1.15rem);
  color: rgba(220, 200, 255, 0.98);
}

.home-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  padding: 12px 18px;
  border-radius: 12px;
  border: none;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  color: #fff;
  cursor: pointer;
  background: linear-gradient(135deg, #7b4dff, #4b2aa6);
  box-shadow:
    0 2px 16px rgba(75, 42, 166, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.home-download-btn::before {
  content: "";
  width: 15px;
  height: 15px;
  opacity: 0.88;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.92)' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15v4a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2v-4'/%3E%3Cpolyline points='7 10 12 15 17 10'/%3E%3Cline x1='12' y1='15' x2='12' y2='3'/%3E%3C/svg%3E")
    center / contain no-repeat;
}

.home-download-btn:hover {
  transform: translateY(-1px);
  box-shadow:
    0 6px 22px rgba(90, 50, 180, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  filter: brightness(1.04);
}

.home-download-btn:active {
  transform: translateY(0);
  filter: brightness(0.97);
}

.home-download-btn:focus-visible {
  outline: 2px solid rgba(190, 165, 255, 0.95);
  outline-offset: 2px;
}

.home-download-btn--disabled {
  opacity: 0.34;
  pointer-events: none;
  cursor: not-allowed;
  filter: none;
  box-shadow: none;
}

.home-download-btn--disabled:hover {
  transform: none;
  filter: none;
}

/* =========================
   STATUS PAGE
========================= */
.status-page {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 4;
  width: min(860px, 92vw);
  transform: translate(-50%, calc(-50% + 20px));
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.status-page.show {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%);
}

.live-status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(40, 18, 72, 0.45);
  border: 1px solid rgba(123, 77, 255, 0.18);
  color: #b993ff;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.65rem;
  margin-bottom: 18px;
  box-shadow: 0 0 18px rgba(80, 40, 160, 0.06);
}

.live-status-pill::before {
  content: "✦";
  margin-right: 8px;
}

.status-heading {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #ffffff;
  margin-bottom: 18px;
}

.status-heading span {
  color: #9a63ff;
}

.status-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: 42px;
}

/* legend */
.status-legend {
  display: flex;
  justify-content: center;
  gap: 34px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.62);
  font-size: 0.85rem;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
}

.dot.operational,
.dot.undetected {
  background: #8a5cff;
}

.dot.updating {
  background: #b06cff;
}

.dot.down,
.dot.detected {
  background: #ff3c57;
}

/* cards */
.status-cards {
  margin-top: 30px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.status-card {
  width: min(400px, 92%);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 22px 26px;
  border-radius: 16px;
  background: rgba(18, 10, 32, 0.7);
  border: 1px solid rgba(120, 80, 255, 0.12);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
  margin: 0;
  color: #f4f0ff;
  font: inherit;
  font-family: inherit;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
}

.status-card--static {
  cursor: default;
}

.status-card--static:hover,
.status-card--static.expanded:hover {
  transform: none;
  border-color: rgba(120, 80, 255, 0.12);
}

.status-card:hover {
  transform: translateY(-2px);
  border-color: rgba(123, 77, 255, 0.22);
}

.status-card.expanded {
  transform: scale(1.02);
  border-color: rgba(123, 77, 255, 0.35);
  box-shadow: 0 0 0 1px rgba(123, 77, 255, 0.2);
}

.status-card.expanded:hover {
  transform: translateY(-2px) scale(1.02);
}

.status-card:focus {
  outline: none;
}

.status-card:focus-visible {
  outline: 2px solid rgba(123, 77, 255, 0.85);
  outline-offset: 3px;
}

.status-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.status-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #f4f0ff;
}

.status-price {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  transition:
    opacity 0.25s ease,
    max-height 0.25s ease,
    margin-top 0.25s ease;
}

.status-card.expanded .status-price {
  max-height: 44px;
  opacity: 1;
  margin-top: 6px;
}

.status-details {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.status-card.expanded .status-details {
  max-height: 220px;
  opacity: 1;
  margin-top: 10px;
}

.status-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.status-feature-list li {
  position: relative;
  padding-left: 18px;
  line-height: 1.35;
}

.status-feature-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #9a63ff;
  font-weight: 700;
}

/* status states */
.status-state {
  font-size: 0.75rem;
  padding: 8px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 130px;
  white-space: nowrap;
}

.status-state.green {
  background: rgba(60, 200, 140, 0.15);
  color: #6cffb4;
}

.status-state.purple {
  background: rgba(123, 77, 255, 0.16);
  color: #d9c8ff;
}

.status-state.red {
  background: rgba(255, 70, 90, 0.15);
  color: #ff6b7a;
}

/* pulse */
.pulse-green {
  animation: pulseGreen 2s ease-in-out infinite;
}

.pulse-purple {
  animation: pulsePurple 2s ease-in-out infinite;
}

@keyframes pulseGreen {
  0%,100% { box-shadow: 0 0 0 rgba(108,255,180,0); }
  50% { box-shadow: 0 0 18px rgba(108,255,180,0.2); }
}

@keyframes pulsePurple {
  0%,100% { box-shadow: 0 0 0 rgba(123, 77, 255, 0); }
  50% { box-shadow: 0 0 18px rgba(123, 77, 255, 0.26); }
}