:root {
  color-scheme: dark;
  --bg: #060912;
  --bg-deep: #03050b;
  --surface: rgba(9, 13, 24, 0.94);
  --surface-soft: rgba(13, 18, 31, 0.92);
  --surface-elev: rgba(17, 23, 40, 0.84);
  --surface-elev-soft: rgba(18, 25, 44, 0.66);
  --border: rgba(129, 153, 201, 0.16);
  --border-strong: rgba(66, 226, 255, 0.28);
  --text: #f7fbff;
  --text-soft: #dce7ff;
  --muted: #94a2be;
  --green: #69ff8d;
  --green-soft: rgba(105, 255, 141, 0.16);
  --blue: #3792ff;
  --blue-soft: rgba(55, 146, 255, 0.18);
  --cyan: #48e3ff;
  --violet: #bd65ff;
  --violet-soft: rgba(189, 101, 255, 0.16);
  --amber: #ffc95e;
  --amber-soft: rgba(255, 201, 94, 0.16);
  --gold: #ffd700;
  --gold-soft: rgba(255, 215, 0, 0.16);
  --pink: #ff5fdb;
  --danger: #ff6b74;
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.44);
  --shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.28);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 20px;
  --radius-sm: 16px;
}

body[data-theme="light"] {
  color-scheme: light;
  --bg: #f5f7fb;
  --bg-deep: #e7edf7;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-soft: rgba(252, 253, 255, 0.82);
  --surface-elev: rgba(255, 255, 255, 0.74);
  --surface-elev-soft: rgba(248, 250, 255, 0.7);
  --border: rgba(89, 104, 148, 0.14);
  --border-strong: rgba(96, 81, 237, 0.2);
  --text: #172335;
  --text-soft: #24344b;
  --muted: #66748d;
  --green: #0f9d57;
  --green-soft: rgba(15, 157, 87, 0.1);
  --blue: #4c6fff;
  --blue-soft: rgba(76, 111, 255, 0.1);
  --cyan: #1187c9;
  --violet: #6c58ea;
  --violet-soft: rgba(108, 88, 234, 0.1);
  --amber: #b57600;
  --amber-soft: rgba(181, 118, 0, 0.1);
  --pink: #b846b7;
  --danger: #d84f5d;
  --shadow: 0 24px 54px rgba(41, 53, 87, 0.12);
  --shadow-soft: 0 14px 28px rgba(41, 53, 87, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: hidden;
  height: 100%;
  scrollbar-width: auto;
  scrollbar-color: rgba(96, 81, 237, 0.9) rgba(11, 16, 28, 0.72);
}

html::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

html::-webkit-scrollbar-button {
  display: none;
  width: 0;
  height: 0;
}

html::-webkit-scrollbar-track {
  background: rgba(11, 16, 28, 0.78);
}

html::-webkit-scrollbar-thumb {
  border-radius: 999px;
  border: 2px solid rgba(11, 16, 28, 0.78);
  background: linear-gradient(180deg, rgba(167, 255, 82, 0.95), rgba(96, 81, 237, 0.95));
}

html::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, rgba(181, 255, 112, 1), rgba(118, 103, 255, 1));
}

body {
  margin: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
  --bg-mx: 0;
  --bg-my: 0;
  --bg-scroll: 0;
  font-family: "Segoe UI Variable Text", "Segoe UI", "Arial Nova", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 10% 10%, rgba(96, 81, 237, 0.12), transparent 18%),
    radial-gradient(circle at 88% 10%, rgba(167, 255, 82, 0.12), transparent 22%),
    radial-gradient(circle at 12% 92%, rgba(167, 255, 82, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

body[data-theme="light"] {
  background:
    radial-gradient(circle at 8% 10%, rgba(96, 81, 237, 0.12), transparent 18%),
    radial-gradient(circle at 88% 14%, rgba(167, 255, 82, 0.14), transparent 22%),
    radial-gradient(circle at 16% 88%, rgba(167, 255, 82, 0.08), transparent 18%),
    radial-gradient(circle at 72% 80%, rgba(96, 81, 237, 0.08), transparent 18%),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
}

/* â”€â”€ BG CANVAS (animaÈ›ie web3 - deasupra totul, pointer-events none) â”€â”€ */

.bg-canvas {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  translate: calc(var(--bg-mx) * 8px) calc(var(--bg-my) * 8px);
}

.bg-canvas::before {
  content: "";
  position: absolute;
  inset: -22%;
  background:
    linear-gradient(135deg, rgba(4, 7, 16, 0.98), rgba(7, 10, 22, 0.94)),
    radial-gradient(ellipse 44% 38% at 18% 18%, rgba(96, 81, 237, 0.28), transparent 64%),
    radial-gradient(ellipse 40% 30% at 84% 18%, rgba(167, 255, 82, 0.16), transparent 68%),
    radial-gradient(ellipse 34% 28% at 22% 82%, rgba(167, 255, 82, 0.1), transparent 74%),
    radial-gradient(ellipse 32% 26% at 76% 76%, rgba(96, 81, 237, 0.18), transparent 70%);
  filter: saturate(118%);
  opacity: 1;
  animation: bgBaseDrift 18s linear infinite;
}

.bg-canvas::after {
  content: "";
  position: absolute;
  inset: -10%;
  background:
    radial-gradient(circle at 16% 28%, rgba(167, 255, 82, 0.18), transparent 0 6px, rgba(167, 255, 82, 0.07) 7px, transparent 11px),
    radial-gradient(circle at 38% 18%, rgba(96, 81, 237, 0.2), transparent 0 7px, rgba(96, 81, 237, 0.08) 8px, transparent 12px),
    radial-gradient(circle at 72% 24%, rgba(167, 255, 82, 0.17), transparent 0 5px, rgba(167, 255, 82, 0.05) 6px, transparent 10px),
    radial-gradient(circle at 82% 62%, rgba(96, 81, 237, 0.22), transparent 0 7px, rgba(96, 81, 237, 0.08) 8px, transparent 13px),
    radial-gradient(circle at 26% 76%, rgba(167, 255, 82, 0.16), transparent 0 6px, rgba(167, 255, 82, 0.05) 7px, transparent 11px),
    linear-gradient(120deg, transparent 0 22%, rgba(96, 81, 237, 0.12) 28%, transparent 34%),
    linear-gradient(144deg, transparent 0 48%, rgba(167, 255, 82, 0.08) 54%, transparent 60%),
    linear-gradient(112deg, transparent 0 68%, rgba(96, 81, 237, 0.1) 74%, transparent 80%);
  background-size: auto, auto, auto, auto, auto, 100% 100%, 100% 100%, 100% 100%;
  filter: blur(0.2px);
  opacity: 0.88;
  animation: bgPlaneRush 7s linear infinite;
  will-change: transform, opacity;
  translate: calc(var(--bg-mx) * 16px) calc((var(--bg-my) * 16px) + (var(--bg-scroll) * -8px));
}

.bg-canvas > span {
  position: absolute;
  inset: 0;
}

.bg-canvas > span::before,
.bg-canvas > span::after {
  content: "";
  position: absolute;
  inset: -30%;
  background-repeat: repeat;
  pointer-events: none;
}

.bg-canvas > span::before {
  background-image:
    radial-gradient(circle at 12% 22%, rgba(167, 255, 82, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 34% 16%, rgba(255, 255, 255, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 54% 32%, rgba(96, 81, 237, 0.22) 0 2px, transparent 3px),
    radial-gradient(circle at 76% 18%, rgba(167, 255, 82, 0.18) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 84% 56%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 24% 68%, rgba(96, 81, 237, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 76%, rgba(167, 255, 82, 0.16) 0 2px, transparent 3px);
  background-size: 34% 34%, 26% 26%, 38% 38%, 32% 32%, 28% 28%, 36% 36%, 30% 30%;
  background-position: 0 0, 18% 8%, 40% 10%, 68% 0, 78% 38%, 12% 52%, 54% 58%;
  opacity: 0.54;
  filter: blur(0.35px);
  animation: bgParticleRushFar 12s linear infinite;
  translate: calc(var(--bg-mx) * 10px) calc((var(--bg-my) * 10px) + (var(--bg-scroll) * -10px));
}

.bg-canvas > span::after {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 42%, rgba(167, 255, 82, 0.22) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 48% 24%, rgba(96, 81, 237, 0.24) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 66% 46%, rgba(255, 255, 255, 0.16) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 78% 22%, rgba(167, 255, 82, 0.2) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 70%, rgba(96, 81, 237, 0.22) 0 2.5px, transparent 3.5px),
    radial-gradient(circle at 36% 72%, rgba(255, 255, 255, 0.14) 0 1.5px, transparent 2.5px),
    radial-gradient(circle at 58% 82%, rgba(167, 255, 82, 0.18) 0 2px, transparent 3px);
  background-size: 22% 22%, 24% 24%, 26% 26%, 20% 20%, 28% 28%, 24% 24%, 18% 18%, 20% 20%;
  background-position: 0 0, 12% 20%, 34% 8%, 52% 28%, 66% 10%, 78% 46%, 26% 56%, 50% 64%;
  opacity: 0.76;
  filter: blur(0.15px);
  animation: bgParticleRushNear 7s linear infinite;
  translate: calc(var(--bg-mx) * 20px) calc((var(--bg-my) * 20px) + (var(--bg-scroll) * -14px));
}

.app-shell::before,
.app-shell::after {
  content: "";
  position: fixed;
  width: 52vw;
  height: 52vw;
  border-radius: 46% 54% 58% 42% / 42% 38% 62% 58%;
  pointer-events: none;
  z-index: 0;
  filter: blur(70px);
  opacity: 0.26;
  will-change: transform, opacity;
}

.app-shell::before {
  top: -12vw;
  right: -10vw;
  background: radial-gradient(circle at 35% 35%, rgba(96, 81, 237, 0.72), rgba(96, 81, 237, 0.12) 42%, transparent 72%);
  animation: bgBlobPurple 6s ease-in-out infinite;
  translate: calc(var(--bg-mx) * 18px) calc(var(--bg-my) * 18px);
}

.app-shell::after {
  left: -14vw;
  bottom: -18vw;
  background: radial-gradient(circle at 60% 40%, rgba(167, 255, 82, 0.48), rgba(167, 255, 82, 0.08) 40%, transparent 70%);
  animation: bgBlobGreen 6.5s ease-in-out infinite;
  translate: calc(var(--bg-mx) * -14px) calc(var(--bg-my) * -14px);
}

/* Light theme variante mai subtile */
body[data-theme="light"] .bg-canvas::before {
  background:
    linear-gradient(135deg, rgba(248, 250, 255, 0.98), rgba(237, 243, 251, 0.94)),
    radial-gradient(ellipse 46% 40% at 18% 18%, rgba(96, 81, 237, 0.18), transparent 64%),
    radial-gradient(ellipse 42% 32% at 84% 18%, rgba(167, 255, 82, 0.16), transparent 68%),
    radial-gradient(ellipse 34% 28% at 22% 82%, rgba(167, 255, 82, 0.1), transparent 74%),
    radial-gradient(ellipse 32% 26% at 76% 76%, rgba(96, 81, 237, 0.12), transparent 70%);
  opacity: 0.96;
}

body[data-theme="light"] .bg-canvas::after {
  background:
    radial-gradient(circle at 16% 28%, rgba(167, 255, 82, 0.18), transparent 0 7px, rgba(167, 255, 82, 0.06) 8px, transparent 13px),
    radial-gradient(circle at 38% 18%, rgba(96, 81, 237, 0.2), transparent 0 8px, rgba(96, 81, 237, 0.07) 9px, transparent 14px),
    radial-gradient(circle at 72% 24%, rgba(167, 255, 82, 0.14), transparent 0 6px, rgba(167, 255, 82, 0.05) 7px, transparent 11px),
    radial-gradient(circle at 82% 62%, rgba(96, 81, 237, 0.16), transparent 0 8px, rgba(96, 81, 237, 0.06) 9px, transparent 14px),
    radial-gradient(circle at 26% 76%, rgba(167, 255, 82, 0.12), transparent 0 7px, rgba(167, 255, 82, 0.04) 8px, transparent 12px),
    linear-gradient(120deg, transparent 0 20%, rgba(96, 81, 237, 0.08) 28%, transparent 36%),
    linear-gradient(144deg, transparent 0 46%, rgba(167, 255, 82, 0.08) 54%, transparent 62%),
    linear-gradient(112deg, transparent 0 66%, rgba(96, 81, 237, 0.07) 74%, transparent 82%);
  opacity: 0.9;
  mix-blend-mode: multiply;
}

body[data-theme="light"] .bg-canvas > span {
  background:
    radial-gradient(circle at 58% 42%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 42%, rgba(167, 255, 82, 0.12) 0 12%, transparent 20%),
    radial-gradient(circle at 58% 42%, transparent 0 18%, rgba(96, 81, 237, 0.18) 21% 21.8%, transparent 24%),
    radial-gradient(circle at 58% 42%, transparent 0 26%, rgba(167, 255, 82, 0.14) 29% 29.8%, transparent 33%),
    conic-gradient(from 0deg at 58% 42%, transparent 0 14%, rgba(96, 81, 237, 0.14) 14% 16%, transparent 16% 34%, rgba(167, 255, 82, 0.12) 34% 36%, transparent 36% 58%, rgba(96, 81, 237, 0.1) 58% 60%, transparent 60% 82%, rgba(167, 255, 82, 0.1) 82% 84%, transparent 84% 100%);
  opacity: 0.4;
  filter: blur(0.15px);
  animation: bgOrbitalSpin 16s linear infinite;
  transform-origin: 58% 42%;
}

@keyframes bgNebulaShift {
  0%   { transform: translate3d(-1.5%, -1%, 0) scale(1.02) rotate(0deg); opacity: 0.78; }
  50%  { transform: translate3d(1.5%, 1%, 0) scale(1.08) rotate(8deg); opacity: 0.96; }
  100% { transform: translate3d(-0.5%, 1.5%, 0) scale(1.04) rotate(-6deg); opacity: 0.84; }
}

@keyframes bgOrbitalSpin {
  0%   { transform: rotate(0deg) scale(0.94); opacity: 0.3; }
  50%  { transform: rotate(180deg) scale(1.04); opacity: 0.66; }
  100% { transform: rotate(360deg) scale(0.94); opacity: 0.36; }
}

@keyframes bgBaseDrift {
  0%   { transform: translate3d(0, 0, 0) scale(1.02); opacity: 0.96; }
  50%  { transform: translate3d(0, 2%, 0) scale(1.05); opacity: 1; }
  100% { transform: translate3d(0, 4%, 0) scale(1.08); opacity: 0.98; }
}

@keyframes bgPlaneRush {
  0%   { transform: translate3d(0, -2%, 0) scale(1) rotate(0deg); opacity: 0.42; }
  50%  { transform: translate3d(0, 6%, 0) scale(1.08) rotate(2deg); opacity: 0.88; }
  100% { transform: translate3d(0, 14%, 0) scale(1.16) rotate(4deg); opacity: 0.46; }
}

@keyframes bgParticleRushFar {
  0%   { transform: translate3d(0, -8%, 0) scale(0.92); opacity: 0.2; }
  100% { transform: translate3d(0, 18%, 0) scale(1.14); opacity: 0.56; }
}

@keyframes bgParticleRushNear {
  0%   { transform: translate3d(0, -12%, 0) scale(0.84); opacity: 0.18; }
  100% { transform: translate3d(0, 28%, 0) scale(1.3); opacity: 0.7; }
}

@keyframes bgBlobPurple {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
  25%  { transform: translate3d(-6%, 4%, 0) scale(1.12); opacity: 0.3; }
  50%  { transform: translate3d(3%, -5%, 0) scale(1.18); opacity: 0.38; }
  75%  { transform: translate3d(6%, 2%, 0) scale(1.08); opacity: 0.28; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.18; }
}

@keyframes bgBlobGreen {
  0%   { transform: translate3d(0, 0, 0) scale(1); opacity: 0.16; }
  25%  { transform: translate3d(7%, -4%, 0) scale(1.16); opacity: 0.24; }
  50%  { transform: translate3d(-4%, 5%, 0) scale(1.2); opacity: 0.34; }
  75%  { transform: translate3d(5%, 2%, 0) scale(1.1); opacity: 0.22; }
  100% { transform: translate3d(0, 0, 0) scale(1); opacity: 0.16; }
}





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

button,
input {
  font: inherit;
}

svg {
  display: block;
  max-width: 100%;
}

.app-shell {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100vh;
  overflow: hidden;
  align-items: flex-start;
}

.sidebar {
  position: relative;
  flex: 0 0 286px;
  width: 286px;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: none;
  padding: 28px 18px 30px;
  border-right: 1px solid rgba(124, 145, 198, 0.12);
  background:
    radial-gradient(circle at 18% 14%, rgba(96, 81, 237, 0.08), transparent 22%),
    radial-gradient(circle at 24% 70%, rgba(167, 255, 82, 0.05), transparent 24%),
    linear-gradient(180deg, rgba(7, 10, 18, 0.94), rgba(5, 8, 14, 0.9));
  backdrop-filter: blur(18px);
  z-index: 30;
  flex-shrink: 0;
}

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

.sidebar::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), transparent 18%),
    radial-gradient(circle at top left, rgba(96, 81, 237, 0.08), transparent 28%);
}

.sidebar-scroll {
  display: block;
  position: static;
  min-height: 0;
  height: auto;
  max-height: none;
  overflow: visible;
  padding: 0;
  margin: 0;
}

.sidebar-sticky {
  position: static;
}

.sidebar-nav {
  position: static;
  padding-top: 8px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-sidebar {
  padding: 6px 10px 22px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--border);
  justify-content: center;
}

.brand-mark {
  width: 220px;
  height: 90px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.brand-mark img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 32px rgba(96, 81, 237, 0.18));
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
}

.brand-copy span {
  color: var(--text-soft);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.owner-card,
.panel,
.topbar,
.round-banner,
.dashboard-footer {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.04) 34%, rgba(255, 255, 255, 0.02) 100%),
    linear-gradient(180deg, rgba(14, 19, 38, 0.68), rgba(8, 12, 24, 0.58));
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.34),
    0 1px 0 rgba(255, 255, 255, 0.12) inset,
    0 -1px 0 rgba(0, 0, 0, 0.26) inset,
    0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(34px) saturate(185%);
  -webkit-backdrop-filter: blur(34px) saturate(185%);
}

.owner-card::before,
.panel::before,
.topbar::before,
.round-banner::before,
.dashboard-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 1px;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(72, 227, 255, 0.22), rgba(255, 255, 255, 0.04), rgba(189, 101, 255, 0.22));
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.owner-card::after,
.panel::after,
.topbar::after,
.round-banner::after,
.dashboard-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), transparent 28%);
  opacity: 0.72;
}

.owner-card {
  padding: 18px;
  margin-bottom: 22px;
}

.owner-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar,
.welcome-avatar {
  display: grid;
  place-items: center;
  font-weight: 800;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: var(--text);
  background: linear-gradient(135deg, rgba(18, 24, 40, 0.96), rgba(23, 35, 58, 0.94));
  border: 1px solid rgba(105, 255, 141, 0.2);
}

.owner-name {
  font-size: 0.95rem;
  font-weight: 700;
}

.owner-domain {
  margin-top: 4px;
  font-size: 0.78rem;
  color: var(--muted);
}

.tier-pill,
.small-chip,
.verified-pill,
.nav-badge,
.ghost-pill,
.service-button,
.wallet-pill,
.upgrade-button,
.revenue-option {
  border-radius: 999px;
}

.tier-pill,
.small-chip,
.verified-pill,
.nav-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 12px;
  font-size: 0.76rem;
  font-weight: 800;
}

.tier-pill {
  background: var(--violet-soft);
  border: 1px solid rgba(189, 101, 255, 0.2);
}

.username-pill-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  width: 100%;
  min-width: 0;
  padding: 7px 8px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(189, 101, 255, 0.12), rgba(72, 227, 255, 0.06));
  border: 1px solid rgba(189, 101, 255, 0.28);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: inherit;
  font: inherit;
  cursor: pointer;
  transition: all 0.2s ease;
}

.username-pill-badge:hover {
  border-color: rgba(72, 227, 255, 0.45);
  box-shadow: 0 4px 18px rgba(72, 227, 255, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.badge-prefix {
  display: flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-soft);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.badge-handle {
  min-width: 0;
  max-width: 92px;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--cyan);
  background: rgba(72, 227, 255, 0.12);
  padding: 3px 7px;
  border-radius: 6px;
  border: 1px solid rgba(72, 227, 255, 0.32);
  box-shadow: 0 0 10px rgba(72, 227, 255, 0.15);
  letter-spacing: 0;
  white-space: nowrap;
}

.nav-group + .nav-group {
  margin-top: 20px;
}

.nav-label {
  padding: 0 10px;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 16px;
  color: var(--muted);
  border: 1px solid transparent;
  transition: 180ms ease;
}

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

.nav-item.active {
  color: #dfffe8;
  background: linear-gradient(135deg, rgba(16, 106, 63, 0.5), rgba(18, 38, 29, 0.92));
  border-color: rgba(105, 255, 141, 0.2);
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.nav-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  opacity: 0.8;
}

.icon-svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.logo-avatar {
  width: 44px;
  height: 44px;
  stroke-width: 2;
}

.trophy-icon {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}

.nav-badge {
  margin-left: auto;
  background: rgba(105, 255, 141, 0.12);
  color: var(--green);
  border: 1px solid rgba(105, 255, 141, 0.18);
}

.main {
  position: relative;
  flex: 1 1 auto;
  min-width: 0;
  height: 100vh;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 24px 24px 30px;
  scrollbar-width: auto;
  scrollbar-color: rgba(96, 81, 237, 0.9) rgba(11, 16, 28, 0.72);
}

.main::before {
  content: "";
  position: absolute;
  inset: 120px 0 auto 0;
  height: 720px;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 28%, rgba(96, 81, 237, 0.16), transparent 20%),
    radial-gradient(circle at 68% 16%, rgba(96, 81, 237, 0.12), transparent 24%),
    radial-gradient(circle at 38% 58%, rgba(167, 255, 82, 0.12), transparent 18%),
    radial-gradient(circle at 82% 70%, rgba(167, 255, 82, 0.08), transparent 16%);
  filter: blur(30px);
  opacity: 0.64;
  will-change: transform, opacity;
  animation: ambientPulse 9s ease-in-out infinite alternate;
}

.main::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 22% 62%, rgba(167, 255, 82, 0.16), transparent 14%),
    radial-gradient(circle at 70% 40%, rgba(96, 81, 237, 0.18), transparent 16%);
  filter: blur(26px);
  opacity: 0.85;
  will-change: transform, opacity;
  animation: ambientDrift 10s ease-in-out infinite alternate-reverse;
}

@keyframes ambientDrift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.48;
  }

  100% {
    transform: translate3d(1.8%, -1.6%, 0) scale(1.06);
    opacity: 0.9;
  }
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
  padding: 16px 18px;
  background:
    radial-gradient(circle at 12% 50%, rgba(55, 146, 255, 0.08), transparent 20%),
    linear-gradient(180deg, rgba(13, 17, 31, 0.96), rgba(11, 15, 27, 0.94));
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.domain-pill,
.topbar-meta,
.theme-toggle,
.wallet-pill,
.icon-button,
.ghost-pill {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--surface-elev-soft);
  color: var(--text-soft);
}

.domain-pill {
  min-width: 290px;
  font-weight: 700;
}

.topbar-meta {
  white-space: nowrap;
}

.wallet-pill,
.ghost-pill,
.service-button,
.upgrade-button {
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.wallet-pill {
  color: var(--text);
  background: linear-gradient(180deg, rgba(20, 27, 47, 0.94), rgba(15, 20, 34, 0.9));
}

.ghost-pill {
  background: rgba(19, 104, 63, 0.24);
  color: #dcffe7;
  border-color: rgba(105, 255, 141, 0.18);
}

button.ghost-pill {
  font: inherit;
  cursor: pointer;
}

.icon-button {
  width: 48px;
  padding: 0;
  font-size: 0.82rem;
  color: var(--text-soft);
  flex: 0 0 auto;
}

.icon-button .icon-svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.1;
  color: #eef5ff;
  filter: drop-shadow(0 0 10px rgba(167, 255, 82, 0.14));
}

.theme-toggle {
  gap: 10px;
  cursor: pointer;
}

.theme-track {
  position: relative;
  width: 44px;
  height: 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.theme-thumb {
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), var(--violet));
  transition: transform 180ms ease;
}

body[data-theme="light"] .theme-thumb {
  transform: translateX(22px);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-elev-soft);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--text);
}

.section-card {
  padding: 20px;
}

.round-banner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at left center, rgba(255, 201, 94, 0.18), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.03) 40%, rgba(11, 23, 16, 0.42) 100%),
    rgba(11, 23, 16, 0.54);
}

.round-badge,
.compact-advantage-icon,
.upgrade-icon {
  display: grid;
  place-items: center;
  font-weight: 800;
}

.round-badge {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  color: #241503;
  background: linear-gradient(135deg, #ffc75b, #fff1a0);
  box-shadow: 0 0 24px rgba(255, 201, 94, 0.24);
}

.eyebrow {
  margin: 0 0 8px;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--green);
}

.hero-grid,
.stats-row,
.content-grid,
.lower-grid,
.ecosystem-grid,
.portfolio-stats {
  display: grid;
  gap: 18px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  margin-bottom: 18px;
}

.welcome-panel,
.founder-track-panel {
  min-height: 166px;
}

.welcome-panel {
  background:
    radial-gradient(circle at left top, rgba(55, 146, 255, 0.14), transparent 26%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.96), rgba(8, 10, 16, 0.94));
}

.founder-track-panel {
  background:
    radial-gradient(circle at 88% 16%, rgba(189, 101, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(9, 12, 23, 0.96), rgba(8, 10, 18, 0.94));
}

.welcome-head {
  display: flex;
  align-items: center;
  gap: 18px;
}

.welcome-avatar {
  width: 92px;
  height: 92px;
  border-radius: 26px;
  color: #b1d5ff;
  border: 1px solid rgba(55, 146, 255, 0.22);
  background: linear-gradient(135deg, rgba(35, 68, 160, 0.3), rgba(15, 22, 45, 0.94));
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.14), 0 0 28px rgba(55, 146, 255, 0.16);
}

.welcome-avatar img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  border-radius: inherit;
}

.welcome-panel h1,
.panel h2 {
  margin: 0;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  letter-spacing: -0.05em;
}

.welcome-panel h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.hero-subline,
.muted-copy,
.chart-label small,
.scenario-title,
.scenario-row span,
.list-card span,
.list-card small,
.feature-list span,
.service-card span,
.service-card p,
.portfolio-stats span,
.portfolio-stats strong,
.footer-meta span,
.compact-highlight small,
.bar-stat span {
  color: var(--muted);
}

.hero-subline {
  margin: 10px 0 14px;
  color: #dd8fff;
  font-weight: 600;
}

.verified-pill {
  background: var(--green-soft);
  color: #deffe7;
  border: 1px solid rgba(105, 255, 141, 0.18);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 18px;
}

.small-chip {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.small-chip.success {
  background: var(--green-soft);
  border-color: rgba(105, 255, 141, 0.18);
  color: #ddffe7;
}

.status-track {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.status-node {
  text-align: center;
}

.status-node span {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  margin: 0 auto 10px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(96, 112, 158, 0.26), rgba(25, 34, 57, 0.92));
  border: 1px solid rgba(147, 162, 204, 0.16);
  color: #aab9d9;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 26px rgba(5, 9, 18, 0.24);
}

.status-node.active span {
  background: linear-gradient(135deg, rgba(255, 95, 219, 0.26), rgba(125, 61, 255, 0.94));
  border-color: rgba(189, 101, 255, 0.2);
  box-shadow: 0 0 24px rgba(189, 101, 255, 0.24);
  color: #f8ecff;
}

.status-glyph {
  width: 23px;
  height: 23px;
  stroke-width: 1.7;
}

.status-node strong {
  display: block;
  font-size: 0.82rem;
}

.status-line {
  height: 2px;
  background: linear-gradient(90deg, rgba(115, 136, 185, 0.28), rgba(115, 136, 185, 0.08));
}

.track-footnote {
  margin: 16px 0 0;
  text-align: center;
  color: #96ffab;
  font-size: 0.82rem;
  font-weight: 700;
}

.stats-row {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-bottom: 18px;
}

.stat-card {
  padding: 20px;
  min-height: 146px;
}

.stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  margin-bottom: 14px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
  display: grid;
  place-items: center;
  color: #fff;
}

.stat-icon.blue,
.service-icon.blue {
  background: linear-gradient(135deg, rgba(55, 146, 255, 0.95), rgba(72, 227, 255, 0.84));
}

.stat-icon.green,
.service-icon.green {
  background: linear-gradient(135deg, rgba(105, 255, 141, 0.96), rgba(24, 152, 95, 0.86));
}

.stat-icon.amber,
.service-icon.amber {
  background: linear-gradient(135deg, rgba(255, 140, 48, 0.96), rgba(236, 92, 41, 0.86));
}

.service-icon.cyan {
  background: linear-gradient(135deg, rgba(48, 209, 255, 0.96), rgba(41, 122, 236, 0.86));
}

.service-icon.gold {
  background: linear-gradient(135deg, rgba(255, 208, 100, 0.96), rgba(220, 160, 20, 0.86));
  color: #1a1200;
}

.stat-icon.violet,
.service-icon.violet {
  background: linear-gradient(135deg, rgba(189, 101, 255, 0.96), rgba(255, 95, 219, 0.84));
}

.stat-card p,
.stat-card span {
  margin: 0;
}

.stat-card p {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.stat-card strong {
  display: block;
  margin: 14px 0 8px;
  font-family: "Segoe UI Variable Display", "Segoe UI", sans-serif;
  font-size: clamp(1.9rem, 2.4vw, 2.5rem);
  letter-spacing: -0.05em;
}

.value-card strong,
.value-card span {
  color: #f0d7ff;
}

.value-card {
  background:
    radial-gradient(circle at 88% 18%, rgba(189, 101, 255, 0.16), transparent 24%),
    linear-gradient(180deg, rgba(24, 15, 39, 0.92), rgba(13, 11, 24, 0.94));
}

.content-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, 0.85fr);
  align-items: start;
}

.content-left,
.content-right {
  display: grid;
  gap: 18px;
}

.portfolio-overview-card {
  background:
    radial-gradient(circle at 88% 14%, rgba(189, 101, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 11, 22, 0.96), rgba(8, 10, 17, 0.94));
}

.compact-advantage-card {
  background:
    radial-gradient(circle at 18% 12%, rgba(255, 201, 94, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(22, 17, 8, 0.95), rgba(16, 13, 7, 0.94));
}

.ecosystem-panel {
  background:
    radial-gradient(circle at 10% 92%, rgba(55, 146, 255, 0.12), transparent 24%),
    radial-gradient(circle at 84% 18%, rgba(72, 227, 255, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(8, 12, 24, 0.95), rgba(7, 10, 17, 0.94));
}

.chart-block,
.mini-chart {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(8, 12, 26, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.3),
    0 1px 0 rgba(255, 255, 255, 0.05) inset;
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.chart-block::before,
.mini-chart::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(22, 31, 54, 0), rgba(9, 13, 24, 0.28));
}

.chart-block::after,
.mini-chart::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 70% 18%, rgba(96, 81, 237, 0.08), transparent 20%),
    radial-gradient(circle at 26% 72%, rgba(167, 255, 82, 0.06), transparent 18%);
}

.grid-line {
  fill: none;
  stroke: rgba(140, 162, 208, 0.14);
  stroke-width: 1;
}

.glow-line {
  fill: none;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
  filter: drop-shadow(0 0 14px rgba(96, 81, 237, 0.26));
  stroke-dasharray: 900;
  stroke-dashoffset: 900;
  transition: stroke-dashoffset 1.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.glow-line.purple {
  stroke: #a96cff;
}

.dot-point {
  fill: #09111d;
  stroke: #57dcff;
  stroke-width: 4;
  filter: drop-shadow(0 0 12px rgba(87, 220, 255, 0.22));
  opacity: 0;
  transform-origin: center;
  transform: scale(0.45);
  transition:
    opacity 260ms ease,
    transform 420ms cubic-bezier(0.22, 1, 0.36, 1),
    stroke 180ms ease,
    filter 180ms ease;
  cursor: pointer;
}

.dot-point.strong {
  fill: #f4fbff;
  stroke: #bf70ff;
  filter: drop-shadow(0 0 18px rgba(191, 112, 255, 0.34));
}

.area-fill {
  transform-origin: 50% 100%;
  transform: scaleY(0.2);
  opacity: 0;
  transition:
    transform 1.35s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.1s ease;
}

.chart-block.is-visible .glow-line,
.mini-chart.is-visible .glow-line {
  stroke-dashoffset: 0;
}

.chart-block.is-visible .area-fill,
.mini-chart.is-visible .area-fill {
  transform: scaleY(1);
  opacity: 1;
}

.chart-block.is-visible .dot-point,
.mini-chart.is-visible .dot-point {
  opacity: 1;
  transform: scale(1);
}

.chart-block.is-visible .dot-point:nth-of-type(1),
.mini-chart.is-visible .dot-point:nth-of-type(1) {
  transition-delay: 0.2s;
}

.chart-block.is-visible .dot-point:nth-of-type(2),
.mini-chart.is-visible .dot-point:nth-of-type(2) {
  transition-delay: 0.35s;
}

.chart-block.is-visible .dot-point:nth-of-type(3),
.mini-chart.is-visible .dot-point:nth-of-type(3) {
  transition-delay: 0.5s;
}

.chart-block.is-visible .dot-point:nth-of-type(4),
.mini-chart.is-visible .dot-point:nth-of-type(4) {
  transition-delay: 0.62s;
}

.chart-block.is-visible .dot-point:nth-of-type(5),
.mini-chart.is-visible .dot-point:nth-of-type(5) {
  transition-delay: 0.74s;
}

.chart-block.is-visible .dot-point:nth-of-type(6),
.mini-chart.is-visible .dot-point:nth-of-type(6) {
  transition-delay: 0.86s;
}

.chart-block.is-visible .dot-point:nth-of-type(7),
.mini-chart.is-visible .dot-point:nth-of-type(7) {
  transition-delay: 0.98s;
}

.chart-block.is-visible .dot-point:nth-of-type(8),
.mini-chart.is-visible .dot-point:nth-of-type(8) {
  transition-delay: 1.1s;
}

.chart-node:hover,
.chart-node:focus-visible {
  stroke: #a7ff52;
  filter: drop-shadow(0 0 18px rgba(167, 255, 82, 0.45));
  outline: none;
}

.chart-tooltip {
  position: absolute;
  top: 18px;
  left: 0;
  min-width: 154px;
  padding: 12px 14px;
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(14, 20, 35, 0.98), rgba(8, 12, 22, 0.96)),
    var(--surface);
  border: 1px solid rgba(120, 139, 201, 0.18);
  box-shadow:
    0 18px 36px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(14px);
  pointer-events: none;
  opacity: 0;
  transform: translate(-50%, 0) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
  z-index: 4;
}

.chart-tooltip.is-visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.chart-tooltip strong,
.chart-tooltip span,
.chart-tooltip small {
  display: block;
}

.chart-tooltip strong {
  font-size: 0.82rem;
  color: var(--text-soft);
}

.chart-tooltip span {
  margin: 4px 0;
  color: #a7ff52;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.chart-tooltip small {
  color: var(--muted);
}

.portfolio-dot {
  stroke: #6fe8ff;
}

.chart-block svg,
.mini-chart svg {
  position: relative;
  z-index: 1;
}

.chart-label {
  position: absolute;
  bottom: 18px;
  display: grid;
  gap: 4px;
}

.chart-label strong {
  font-size: 1.24rem;
}

.chart-label span {
  color: var(--green);
  font-weight: 800;
}

.chart-label.left {
  left: 34px;
}

.chart-label.center {
  left: 290px;
}

.chart-label.right {
  right: 38px;
}

.callout-card {
  margin-top: 16px;
  padding: 18px 20px;
  border-radius: 20px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(51, 99, 255, 0.12), rgba(189, 101, 255, 0.1)),
    rgba(10, 14, 28, 0.4);
  border: 1px solid rgba(120, 107, 255, 0.2);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
}

.callout-card strong,
.callout-card span {
  display: block;
}

.callout-card strong {
  margin-bottom: 8px;
}

.lower-grid {
  grid-template-columns: 1fr;
}

.mini-tabs {
  display: inline-grid;
  grid-template-columns: repeat(4, max-content);
  gap: 8px;
}

.mini-tabs span {
  min-width: 44px;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
}

.mini-tabs .active {
  color: var(--text);
  background: rgba(55, 146, 255, 0.2);
}

.portfolio-stats {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.portfolio-stats div {
  padding: 16px 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.portfolio-stats span {
  display: block;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.portfolio-stats strong {
  display: block;
  margin-top: 10px;
  color: var(--text);
  font-size: 1.24rem;
}

.compact-advantage-card {
  display: grid;
  align-content: start;
  gap: 14px;
}

.compact-advantage-icon,
.upgrade-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  color: #261602;
  background: linear-gradient(135deg, #ffd064, #f4a11f);
  box-shadow: 0 0 24px rgba(255, 201, 94, 0.22);
}

.bar-stat {
  display: grid;
  gap: 8px;
}

.bar-stat div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.bar-track {
  height: 12px;
  border-radius: 999px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.owner-fill,
.public-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.owner-fill {
  width: 88%;
  background: linear-gradient(90deg, #ffcb61, #ff9543);
}

.public-fill {
  width: 36%;
  background: linear-gradient(90deg, #338cff, #48e3ff);
}

.compact-highlight {
  padding: 16px;
  border-radius: 18px;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 201, 94, 0.16), rgba(255, 201, 94, 0.05));
  border: 1px solid rgba(255, 201, 94, 0.16);
}

.compact-highlight strong,
.compact-highlight span,
.compact-highlight small {
  display: block;
}

.compact-highlight span {
  margin-top: 6px;
  color: #ffdf8d;
  font-size: 1.55rem;
  font-weight: 800;
}

.full-width-ecosystem {
  width: 100%;
  margin-top: 24px;
}

.ecosystem-grid,
.full-width-ecosystem .ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

.left-detail-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 18px;
}

.package-detail-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(10, 8, 22, 0.52);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-color: rgba(189, 101, 255, 0.14);
}

.small-inline-button,
.small-inline-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.small-inline-button {
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
}

.small-inline-link {
  color: #93dcff;
}

.package-detail-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 180px;
  gap: 18px;
}

.package-detail-main {
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(82, 33, 145, 0.2), rgba(10, 14, 28, 0.5));
  border: 1px solid rgba(189, 101, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.package-orb {
  width: 74px;
  height: 74px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 30% 30%, rgba(116, 252, 255, 0.9), transparent 22%),
    radial-gradient(circle at 68% 68%, rgba(255, 88, 223, 0.9), transparent 22%),
    linear-gradient(135deg, rgba(56, 93, 255, 0.9), rgba(189, 101, 255, 0.96));
  box-shadow: 0 0 26px rgba(189, 101, 255, 0.24);
}

.package-detail-main strong,
.package-detail-main span,
.package-detail-side strong,
.package-detail-side span {
  display: block;
}

.package-detail-main strong {
  font-size: 1.8rem;
  letter-spacing: -0.04em;
}

.package-detail-main p {
  margin: 8px 0 6px;
  color: #ff92ea;
  font-weight: 700;
}

.package-detail-main span {
  color: var(--text-soft);
}

.package-detail-side {
  padding: 18px;
  border-radius: 22px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(91, 28, 129, 0.22), rgba(10, 8, 22, 0.5));
  border: 1px solid rgba(189, 101, 255, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.package-detail-side strong {
  font-size: 2.4rem;
  letter-spacing: -0.05em;
}

.activity-detail-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(8, 10, 22, 0.5);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-color: rgba(255, 201, 94, 0.1);
}

.activity-detail-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 12px;
}

.activity-detail-card .panel-head {
  margin-bottom: 0;
}

.activity-detail-card .muted-copy {
  margin: 6px 0 0;
}

.activity-feed {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 230px;
  overflow-y: auto;
  padding-right: 6px;
}

.activity-feed::-webkit-scrollbar {
  width: 4px;
}

.activity-feed::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}

.activity-feed::-webkit-scrollbar-thumb {
  background: rgba(72, 227, 255, 0.3);
  border-radius: 4px;
}

.activity-feed li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.activity-feed li:last-child {
  border-bottom: 0;
}

.activity-bullet {
  width: 14px;
  height: 14px;
  margin-top: 6px;
  flex: 0 0 auto;
  border-radius: 50%;
}

.activity-bullet.green { background: #5eff8a; box-shadow: 0 0 16px rgba(94, 255, 138, 0.4); }
.activity-bullet.cyan { background: #48dfff; box-shadow: 0 0 16px rgba(72, 223, 255, 0.36); }
.activity-bullet.amber { background: #ffcb61; box-shadow: 0 0 16px rgba(255, 203, 97, 0.36); }
.activity-bullet.violet { background: #c973ff; box-shadow: 0 0 16px rgba(201, 115, 255, 0.36); }

.activity-feed strong,
.activity-feed span {
  display: block;
}

.activity-feed span {
  margin-top: 4px;
  color: var(--muted);
}

.service-card {
  padding: 20px;
  border-radius: 22px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%),
    rgba(10, 14, 28, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.09);
  box-shadow:
    0 6px 24px rgba(0, 0, 0, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.06) inset;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  display: flex;
  flex-direction: column;
}

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 20px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.22),
    0 14px 30px rgba(0, 0, 0, 0.16);
}

.service-icon::after,
.list-icon::after {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.16rem;
  min-height: 58px;
}

.service-card p {
  margin: 0 0 8px;
  color: var(--green);
  font-weight: 700;
}

.service-card span {
  display: block;
  min-height: 42px;
  margin-bottom: 18px;
}

.service-button,
.upgrade-button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
}

.service-button {
  width: 100%;
  margin-top: auto;
}

.service-button:hover,
.upgrade-button:hover,
.wallet-pill:hover,
.ghost-pill:hover,
.revenue-option:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.scenario-box,
.payout-box {
  border-radius: 18px;
}

.scenario-box {
  padding: 16px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.055) 0%, rgba(255, 255, 255, 0.01) 100%),
    rgba(8, 12, 26, 0.42);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
}

.scenario-title {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.scenario-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
}

.payout-box {
  margin: 16px 0;
  padding: 18px;
  text-align: center;
  background:
    linear-gradient(145deg, rgba(26, 125, 63, 0.22) 0%, rgba(26, 125, 63, 0.06) 100%),
    rgba(6, 20, 12, 0.45);
  border: 1px solid rgba(105, 255, 141, 0.18);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
}

.payout-box span,
.payout-box strong {
  display: block;
}

.payout-box strong {
  margin-top: 8px;
  color: #d9ffe4;
  font-size: 2rem;
  letter-spacing: -0.05em;
}

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

.revenue-option {
  min-height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text-soft);
  cursor: pointer;
}

.revenue-option.active {
  background: rgba(55, 146, 255, 0.16);
  border-color: rgba(55, 146, 255, 0.22);
}

.slider-stack {
  display: grid;
  gap: 12px;
  margin-top: 16px;
}

.slider-stack label {
  display: grid;
  gap: 8px;
}

.slider-stack span {
  font-size: 0.76rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

input[type="range"] {
  width: 100%;
  accent-color: var(--green);
}

.estimator-note {
  color: var(--muted);
  text-align: center;
  margin-bottom: 0;
}

.estimator-note strong {
  color: #8eceff;
}

.content-right > .panel:nth-child(1) {
  background:
    radial-gradient(circle at 88% 12%, rgba(105, 255, 141, 0.08), transparent 24%),
    radial-gradient(circle at 12% 82%, rgba(189, 101, 255, 0.09), transparent 24%),
    linear-gradient(180deg, rgba(10, 12, 23, 0.96), rgba(8, 10, 18, 0.95));
}

.list-card,
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-card li,
.feature-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.list-card li:last-child,
.feature-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.list-card li {
  display: grid;
  align-items: center;
}

.list-card strong,
.list-card span,
.list-card small {
  display: block;
}

.list-card li > div:nth-child(2) {
  flex: 1;
}

.list-icon {
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,0.18),
    0 16px 36px rgba(0, 0, 0, 0.18);
}

.list-icon.blue {
  background: linear-gradient(135deg, rgba(55, 146, 255, 0.95), rgba(72, 227, 255, 0.84));
}

.list-icon.violet {
  background: linear-gradient(135deg, rgba(189, 101, 255, 0.96), rgba(255, 95, 219, 0.84));
}

.list-icon.green {
  background: linear-gradient(135deg, rgba(105, 255, 141, 0.96), rgba(24, 152, 95, 0.86));
}

.list-icon.amber {
  background: linear-gradient(135deg, rgba(255, 201, 94, 0.96), rgba(236, 142, 41, 0.84));
}

.alert-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 116, 0.16);
  border: 1px solid rgba(255, 107, 116, 0.18);
  color: #ffd2d4;
  font-weight: 800;
}

.service-icon .icon-svg {
  width: 24px;
  height: 24px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
}

.list-icon .icon-svg {
  width: 28px;
  height: 28px;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  stroke: #f8fbff;
  stroke-width: 2.3;
  filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.18));
}

.list-card li {
  min-height: 98px;
  align-items: center;
  grid-template-columns: 64px minmax(0, 1fr) 82px;
  column-gap: 18px;
}

.list-card small {
  min-width: 82px;
  text-align: right;
  align-self: center;
  justify-self: end;
  line-height: 1.1;
  font-size: 1rem;
}

.list-card li > div:nth-child(2) {
  display: grid;
  gap: 6px;
  align-content: center;
}

.list-card li > div:nth-child(2) strong {
  line-height: 1.12;
  margin: 0;
  font-size: 1rem;
}

.list-card li > div:nth-child(2) span {
  line-height: 1.18;
  margin: 0;
  font-size: 0.94rem;
}

.feature-list span {
  color: var(--text);
}

.equal-card {
  height: 100%;
}

.upgrade-zone {
  display: grid;
  gap: 18px;
  grid-auto-rows: minmax(0, auto);
}

.upgrade-zone-top {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.status-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.status-tag.available {
  color: #dbffe4;
  background: rgba(18, 136, 74, 0.24);
}

.status-tag.soon {
  color: #d7efff;
  background: rgba(52, 113, 255, 0.2);
}

.status-tag.timed {
  color: #ffe2b0;
  background: rgba(245, 159, 31, 0.16);
}

.status-tag.neutral {
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.08);
}

.status-track.compact {
  margin-top: 8px;
}

.upsell-card {
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 190, 73, 0.16), transparent 22%),
    linear-gradient(180deg, rgba(38, 20, 7, 0.95), rgba(21, 13, 6, 0.96));
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.upsell-top {
  display: flex;
  gap: 16px;
  align-items: start;
}

.upgrade-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0;
}

.upgrade-benefits span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 201, 94, 0.12);
  border: 1px solid rgba(255, 201, 94, 0.18);
  color: #ffdc9e;
  font-size: 0.82rem;
  font-weight: 700;
}

.upgrade-button {
  width: 100%;
  background: linear-gradient(135deg, #ffea86, #ffb54c);
  border: 0;
  color: #170e02;
  font-weight: 800;
  margin-top: auto;
}

.upgrade-timer {
  margin-top: 14px;
  text-align: center;
  color: #ffdc9e;
  font-weight: 700;
}

.bottom-upgrade-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  background:
    radial-gradient(circle at 10% 50%, rgba(189, 101, 255, 0.18), transparent 18%),
    radial-gradient(circle at 90% 50%, rgba(255, 201, 94, 0.1), transparent 18%),
    linear-gradient(180deg, rgba(33, 13, 46, 0.96), rgba(20, 10, 30, 0.94));
}

.bottom-upgrade-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.bottom-upgrade-left h2 {
  margin: 0;
  font-size: 1.45rem;
}

.bottom-upgrade-left p {
  margin: 8px 0 0;
  color: var(--muted);
}

.bottom-upgrade-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: #f2ddff;
  background: linear-gradient(135deg, rgba(189, 101, 255, 0.86), rgba(255, 95, 219, 0.82));
  box-shadow: 0 0 28px rgba(189, 101, 255, 0.24);
}

.bottom-upgrade-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}

.bottom-upgrade-steps span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #ecd5ff;
  font-size: 0.82rem;
  font-weight: 700;
}

.bottom-upgrade-button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ff7be6, #8f50ff);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(143, 80, 255, 0.24);
}

.dashboard-footer {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 16px;
  margin-top: 18px;
  padding: 18px 20px;
}

.brand.footer-brand .brand-mark {
  width: 72px;
  height: 54px;
}

.brand-sidebar .brand-mark {
  width: min(100%, 240px);
  height: auto;
}

.brand-sidebar .brand-copy {
  display: none;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.footer-brand {
  min-width: max-content;
}

.footer-center {
  display: grid;
  gap: 10px;
  justify-items: center;
}

.footer-center p {
  margin: 0;
  color: var(--muted);
  text-align: center;
}

.footer-security {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.footer-security span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(105, 255, 141, 0.08);
  border: 1px solid rgba(105, 255, 141, 0.14);
  color: #d6ffe1;
  font-size: 0.76rem;
  font-weight: 700;
}

/* â”€â”€ SIDEBAR SCROLLBAR (thin, always visible) â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sidebar {
  scrollbar-width: thin;
  scrollbar-color: rgba(96, 81, 237, 0.35) transparent;
}

.sidebar::-webkit-scrollbar {
  display: block;
  width: 4px;
}

.sidebar::-webkit-scrollbar-track {
  background: transparent;
}

.sidebar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(96, 81, 237, 0.35);
}

.sidebar::-webkit-scrollbar-thumb:hover {
  background: rgba(96, 81, 237, 0.6);
}

/* â”€â”€ LIGHT THEME â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */

body[data-theme="light"] {
  color: #0a1628;
}

body[data-theme="light"] .sidebar {
  background:
    radial-gradient(circle at 16% 12%, rgba(96, 81, 237, 0.08), transparent 22%),
    radial-gradient(circle at 22% 76%, rgba(167, 255, 82, 0.07), transparent 24%),
    linear-gradient(180deg, rgba(248, 250, 255, 0.88), rgba(236, 241, 250, 0.86));
  border-right-color: rgba(96, 81, 237, 0.14);
  backdrop-filter: blur(18px) saturate(145%);
  scrollbar-color: rgba(96, 81, 237, 0.36) rgba(231, 237, 247, 0.8);
}

body[data-theme="light"] .topbar {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.74), rgba(246, 249, 255, 0.68));
  border-color: rgba(96, 81, 237, 0.1);
  box-shadow: 0 14px 30px rgba(43, 100, 228, 0.08);
}

body[data-theme="light"] .round-banner {
  background:
    radial-gradient(circle at left center, rgba(214, 139, 0, 0.12), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.76)),
    rgba(232, 247, 239, 0.74);
  border-color: rgba(20, 187, 95, 0.2);
}

/* Panels & cards */
body[data-theme="light"] .panel,
body[data-theme="light"] .owner-card,
body[data-theme="light"] .dashboard-footer {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.52) 38%, rgba(248, 250, 255, 0.46) 100%),
    rgba(230, 236, 248, 0.34);
  border-color: rgba(96, 81, 237, 0.1);
  box-shadow:
    0 18px 36px rgba(43, 100, 228, 0.08),
    0 0 18px rgba(96, 81, 237, 0.04),
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 -1px 0 rgba(126, 142, 194, 0.06) inset;
  backdrop-filter: blur(24px) saturate(145%);
  -webkit-backdrop-filter: blur(24px) saturate(145%);
}

body[data-theme="light"] .welcome-panel,
body[data-theme="light"] .founder-track-panel,
body[data-theme="light"] .portfolio-overview-card,
body[data-theme="light"] .compact-advantage-card,
body[data-theme="light"] .ecosystem-panel,
body[data-theme="light"] .upsell-card,
body[data-theme="light"] .bottom-upgrade-strip,
body[data-theme="light"] .value-card,
body[data-theme="light"] .content-right > .panel:nth-child(1) {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78) 0%, rgba(247, 250, 255, 0.58) 100%),
    rgba(225, 233, 247, 0.28);
  border-color: rgba(96, 81, 237, 0.09);
}

/* Text */
body[data-theme="light"] h1,
body[data-theme="light"] h2,
body[data-theme="light"] h3,
body[data-theme="light"] strong {
  color: #0a1628;
}

body[data-theme="light"] p,
body[data-theme="light"] span:not(.nav-badge):not(.tier-pill):not(.verified-pill):not(.small-chip):not(.status-tag):not(.theme-thumb) {
  color: #34445d;
}

body[data-theme="light"] .muted-copy,
body[data-theme="light"] .eyebrow,
body[data-theme="light"] .owner-domain,
body[data-theme="light"] .nav-label {
  color: #6b7891 !important;
}

/* Nav items */
body[data-theme="light"] .nav-item {
  color: #42566f;
}

body[data-theme="light"] .nav-item:hover {
  color: #0a1628;
  background: rgba(96, 81, 237, 0.05);
  border-color: rgba(96, 81, 237, 0.1);
}

body[data-theme="light"] .nav-item.active {
  color: #fff;
  background: linear-gradient(135deg, #6051ed, #7c6cff);
  border-color: rgba(96, 81, 237, 0.18);
  box-shadow: 0 10px 24px rgba(96, 81, 237, 0.18);
}

/* Owner card */
body[data-theme="light"] .owner-name {
  color: #0a1628;
}

body[data-theme="light"] .avatar {
  background: linear-gradient(135deg, #e8eeff, #d6e4ff);
  border-color: rgba(96, 81, 237, 0.2);
  color: #2b64e4;
}

/* Topbar elements */
body[data-theme="light"] .domain-pill,
body[data-theme="light"] .topbar-meta,
body[data-theme="light"] .theme-toggle,
body[data-theme="light"] .icon-button,
body[data-theme="light"] .ghost-pill {
  background: rgba(245, 248, 255, 0.8);
  border-color: rgba(96, 81, 237, 0.1);
  color: #34445d;
}

body[data-theme="light"] .wallet-pill {
  background: linear-gradient(135deg, #2b64e4, #0ea8da);
  color: #fff;
  border-color: transparent;
}

/* Stat cards */
body[data-theme="light"] .stat-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76) 0%, rgba(242, 246, 255, 0.58) 100%);
  border-color: rgba(96, 81, 237, 0.08);
  backdrop-filter: blur(20px) saturate(135%);
  -webkit-backdrop-filter: blur(20px) saturate(135%);
}

body[data-theme="light"] .stat-card strong {
  color: #0a1628;
}

body[data-theme="light"] .stat-card p,
body[data-theme="light"] .stat-card small,
body[data-theme="light"] .stat-card span {
  color: #51617b;
}

/* Charts */
body[data-theme="light"] .chart-block,
body[data-theme="light"] .mini-chart {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.68) 0%, rgba(239, 244, 255, 0.56) 100%);
  border-color: rgba(96, 81, 237, 0.08);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
}

body[data-theme="light"] .chart-tooltip {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(96, 81, 237, 0.12);
  box-shadow: 0 8px 24px rgba(43, 100, 228, 0.1);
  color: #0a1628;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body[data-theme="light"] .chart-tooltip strong,
body[data-theme="light"] .chart-tooltip span,
body[data-theme="light"] .chart-tooltip small {
  color: #0a1628;
}

/* Scenario / estimator */
body[data-theme="light"] .scenario-box,
body[data-theme="light"] .bar-track {
  background:
    linear-gradient(145deg, rgba(240, 245, 255, 0.85) 0%, rgba(225, 235, 255, 0.7) 100%);
  border-color: rgba(96, 81, 237, 0.12);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body[data-theme="light"] .payout-box {
  background:
    linear-gradient(145deg, rgba(220, 255, 235, 0.85) 0%, rgba(200, 248, 220, 0.65) 100%);
  border-color: rgba(20, 187, 95, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body[data-theme="light"] .payout-box strong,
body[data-theme="light"] .payout-box span {
  color: #0a6e35 !important;
}

/* Service cards */
body[data-theme="light"] .service-card {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72) 0%, rgba(239, 244, 255, 0.56) 100%);
  border-color: rgba(96, 81, 237, 0.08);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}

body[data-theme="light"] .service-card strong,
body[data-theme="light"] .service-card span {
  color: #34445d;
}

/* Portfolio stats */
body[data-theme="light"] .portfolio-stats div {
  background:
    linear-gradient(145deg, rgba(240, 245, 255, 0.88) 0%, rgba(225, 235, 255, 0.72) 100%);
  border-color: rgba(96, 81, 237, 0.1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body[data-theme="light"] .portfolio-stats strong {
  color: #0a1628;
}

/* List cards */
body[data-theme="light"] .list-card li {
  border-color: rgba(96, 81, 237, 0.08);
}

body[data-theme="light"] .list-card li strong {
  color: #0a1628;
}

body[data-theme="light"] .list-card li span {
  color: #51617b;
}

body[data-theme="light"] .list-card small {
  color: #6f7e95;
}

/* Feature lists */
body[data-theme="light"] .feature-list li {
  border-color: rgba(96, 81, 237, 0.08);
  color: #1e3a5f;
}

/* Status nodes */
body[data-theme="light"] .status-node span {
  color: #4b5d8b;
  background: linear-gradient(135deg, #e8eeff, #dde8ff);
  border-color: rgba(96, 81, 237, 0.14);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.9), 0 4px 12px rgba(43, 100, 228, 0.1);
}

body[data-theme="light"] .status-node strong {
  color: #2d4a6e;
}

body[data-theme="light"] .status-node.active span {
  color: #fff;
  background: linear-gradient(135deg, #7c3aed, #6051ed);
  box-shadow: 0 6px 16px rgba(96, 81, 237, 0.3);
}

body[data-theme="light"] .status-node.active strong {
  color: #4c1d95;
}

/* Callout */
body[data-theme="light"] .callout-card {
  background: linear-gradient(135deg, rgba(43, 100, 228, 0.07), rgba(146, 74, 240, 0.05));
  border-color: rgba(43, 100, 228, 0.14);
}

body[data-theme="light"] .callout-card strong,
body[data-theme="light"] .callout-card p {
  color: #1e3a5f;
}

/* Tier / chip pills */
body[data-theme="light"] .tier-pill {
  background: rgba(146, 74, 240, 0.1);
  border-color: rgba(146, 74, 240, 0.2);
  color: #5b21b6;
}

body[data-theme="light"] .verified-pill {
  color: #0a6e35;
  background: rgba(20, 187, 95, 0.1);
  border-color: rgba(20, 187, 95, 0.2);
}

body[data-theme="light"] .small-chip.success {
  background: rgba(20, 187, 95, 0.1);
  color: #0a6e35;
  border-color: rgba(20, 187, 95, 0.2);
}

/* Nav badge */
body[data-theme="light"] .nav-badge {
  background: #2b64e4;
  color: #fff;
}

/* Package detail */
body[data-theme="light"] .package-detail-main,
body[data-theme="light"] .package-detail-side,
body[data-theme="light"] .small-inline-button {
  background: #f0f4ff;
  border-color: rgba(96, 81, 237, 0.1);
  color: #1e3a5f;
}

body[data-theme="light"] .activity-detail-card,
body[data-theme="light"] .package-detail-card {
  background: #ffffff;
  border-color: rgba(96, 81, 237, 0.1);
}

/* Upgrade section */
body[data-theme="light"] .upsell-card {
  background: linear-gradient(135deg, #f5f0ff, #ede8ff);
  border-color: rgba(146, 74, 240, 0.16);
}

body[data-theme="light"] .upgrade-benefits span {
  background: rgba(146, 74, 240, 0.08);
  border-color: rgba(146, 74, 240, 0.16);
  color: #5b21b6;
}

body[data-theme="light"] .upgrade-timer {
  color: #5a6e8c;
}

body[data-theme="light"] .bottom-upgrade-button,
body[data-theme="light"] .upgrade-button {
  color: #fff;
}

/* Footer */
body[data-theme="light"] .footer-center p,
body[data-theme="light"] .footer-meta span {
  color: #5a6e8c;
}

body[data-theme="light"] .footer-security span {
  background: rgba(20, 187, 95, 0.08);
  border-color: rgba(20, 187, 95, 0.18);
  color: #0a6e35;
}

/* Icons */
body[data-theme="light"] .icon-svg {
  stroke: currentColor;
}

body[data-theme="light"] .list-icon,
body[data-theme="light"] .service-icon {
  box-shadow: 0 4px 12px rgba(43, 100, 228, 0.12);
}

/* Fix icon-button icons specifically - were invisible */
body[data-theme="light"] .icon-button {
  color: #2d4a6e;
  background: #eef2ff;
  border-color: rgba(96, 81, 237, 0.16);
}

body[data-theme="light"] .icon-button .icon-svg {
  color: #2d4a6e;
  stroke: #2d4a6e;
  filter: none;
}

body[data-theme="light"] .icon-button:hover {
  background: #e0e8ff;
  border-color: rgba(96, 81, 237, 0.28);
}

/* Menu toggle burger bars */
body[data-theme="light"] .menu-toggle {
  background: #eef2ff;
  border-color: rgba(96, 81, 237, 0.16);
}

body[data-theme="light"] .menu-toggle span {
  background: #1e3a5f;
}

/* Theme toggle track */
body[data-theme="light"] .theme-track {
  background: rgba(43, 100, 228, 0.15);
}

body[data-theme="light"] .theme-thumb {
  background: linear-gradient(135deg, #2b64e4, #0ea8da);
}

body[data-theme="light"] .theme-toggle span {
  color: #2d4a6e;
  font-weight: 600;
}

/* Ghost pill */
body[data-theme="light"] .ghost-pill {
  background: rgba(20, 187, 95, 0.08);
  border-color: rgba(20, 187, 95, 0.22);
  color: #0a6e35;
}

/* Round banner trophy icon */
body[data-theme="light"] .round-badge {
  background: linear-gradient(135deg, rgba(214, 139, 0, 0.18), rgba(245, 158, 11, 0.12));
  border-color: rgba(214, 139, 0, 0.2);
}

body[data-theme="light"] .round-badge .icon-svg {
  stroke: #92400e;
  color: #92400e;
}

/* Welcome avatar icon */
body[data-theme="light"] .welcome-avatar {
  background: linear-gradient(135deg, #dde8ff, #c7d9ff);
  border-color: rgba(43, 100, 228, 0.2);
}

body[data-theme="light"] .welcome-avatar .icon-svg {
  stroke: #2b64e4;
  color: #2b64e4;
}

/* Upgrade icon */
body[data-theme="light"] .upgrade-icon {
  background: linear-gradient(135deg, rgba(146, 74, 240, 0.14), rgba(96, 81, 237, 0.1));
  border-color: rgba(146, 74, 240, 0.2);
}

body[data-theme="light"] .upgrade-icon .icon-svg {
  stroke: #7c3aed;
  color: #7c3aed;
}

/* Bottom upgrade strip */
body[data-theme="light"] .bottom-upgrade-strip {
  background: linear-gradient(135deg, #f0f4ff, #ede8ff);
  border-color: rgba(96, 81, 237, 0.14);
}

body[data-theme="light"] .bottom-upgrade-strip h2 {
  color: #0a1628;
}

body[data-theme="light"] .bottom-upgrade-strip p {
  color: #3d5a80;
}

body[data-theme="light"] .bottom-upgrade-icon .icon-svg {
  stroke: #7c3aed;
  color: #7c3aed;
}

body[data-theme="light"] .bottom-upgrade-steps span {
  color: #2d4a6e;
  background: rgba(96, 81, 237, 0.07);
  border-color: rgba(96, 81, 237, 0.12);
}

/* Ecosystem panel */
body[data-theme="light"] .ecosystem-panel {
  background: #ffffff;
}

/* Bar fills */
body[data-theme="light"] .bar-fill {
  opacity: 0.85;
}

/* Scenario box labels */
body[data-theme="light"] .scenario-box p,
body[data-theme="light"] .scenario-box span,
body[data-theme="light"] .scenario-box strong {
  color: #1e3a5f;
}

/* Wallet pill hover */
body[data-theme="light"] .wallet-pill:hover {
  box-shadow: 0 6px 20px rgba(43, 100, 228, 0.3);
  transform: translateY(-1px);
}

/* Earnings / dividend estimator inputs */
body[data-theme="light"] .estimator-row span,
body[data-theme="light"] .estimator-row strong {
  color: #1e3a5f;
}

/* Panel head icons */
body[data-theme="light"] .panel-head .icon-svg {
  stroke: #2d4a6e;
  color: #2d4a6e;
}

/* Muted text */
body[data-theme="light"] .muted {
  color: #5a6e8c;
}

/* Topbar domain pill text */
body[data-theme="light"] .domain-pill {
  color: #0a1628;
  font-weight: 700;
}

/* Topbar meta */
body[data-theme="light"] .topbar-meta {
  color: #3d5a80;
}



/* Round banner text */
body[data-theme="light"] .round-banner strong {
  color: #0a3d20;
}

body[data-theme="light"] .round-banner .eyebrow {
  color: #0a6e35 !important;
}

/* Section headings */
body[data-theme="light"] .panel-head h2 {
  color: #0a1628;
}

body[data-theme="light"] .hero-subline {
  color: #6c58ea;
}

/* Revenue preset buttons */
body[data-theme="light"] .revenue-buttons button,
body[data-theme="light"] .revenue-option {
  background: #eef2ff;
  border-color: rgba(96, 81, 237, 0.14);
  color: #2d4a6e;
}

body[data-theme="light"] .revenue-buttons button.active,
body[data-theme="light"] .revenue-option.active {
  background: #2b64e4;
  color: #fff;
  border-color: #2b64e4;
}

/* Status tags */
body[data-theme="light"] .status-tag.available {
  color: #0a6e35;
  background: rgba(20, 187, 95, 0.1);
}

body[data-theme="light"] .status-tag.soon {
  color: #92400e;
  background: rgba(245, 158, 11, 0.1);
}

body[data-theme="light"] .status-tag.timed {
  color: #1e40af;
  background: rgba(43, 100, 228, 0.1);
}

body[data-theme="light"] .status-tag.neutral {
  color: #374151;
  background: rgba(107, 114, 128, 0.1);
}

/* Sliders */
body[data-theme="light"] input[type="range"] {
  accent-color: #2b64e4;
}

/* Scenario row labels */
body[data-theme="light"] .scenario-row span,
body[data-theme="light"] .scenario-row strong {
  color: #1e3a5f;
}



@media (max-width: 1220px) {
  .app-shell {
    display: flex;
  }

  .sidebar {
    flex: 0 0 286px;
    width: 286px;
    height: 100vh;
    position: relative;
    border-right: 1px solid var(--border);
    border-bottom: 0;
  }

  .menu-toggle {
    display: none;
  }

  .hero-grid,
  .content-grid,
  .lower-grid,
  .package-detail-shell,
  .upgrade-zone-top,
  .bottom-upgrade-strip,
  .dashboard-footer {
    grid-template-columns: 1fr;
  }

  .topbar,
  .dashboard-footer {
    align-items: stretch;
  }

  .bottom-upgrade-left,
  .footer-security {
    justify-content: center;
  }
}

@media (max-width: 860px) {
  .app-shell {
    display: flex;
    height: 100vh;
    overflow: hidden;
  }

  /* Sidebar devine drawer slide-in */
  .sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 286px;
    height: 100vh;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 280ms cubic-bezier(0.4, 0, 0.2, 1);
    border-right: 1px solid var(--border);
    border-bottom: 0;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    flex-shrink: 0;
  }

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

  .sidebar.is-open {
    transform: translateX(0);
  }

  /* Overlay Ã®ntunecat cÃ¢nd meniul e deschis */
  .sidebar-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 199;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(2px);
    opacity: 0;
    transition: opacity 280ms ease;
  }

  .sidebar-overlay.is-open {
    display: block;
    opacity: 1;
  }

  /* Burger toggle vizibil pe mobile */
  .menu-toggle {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
  }

  .menu-toggle span {
    transition: transform 220ms ease, opacity 220ms ease;
    transform-origin: center;
  }

  .menu-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-toggle.is-open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }

  .menu-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .sidebar-scroll {
    min-height: 0;
    height: auto;
    max-height: none;
    overflow: visible;
    position: static;
    padding: 0;
  }

  .sidebar-sticky {
    position: static;
  }

  .sidebar-nav {
    position: static;
  }

  .stats-row,
  .ecosystem-grid,
  .portfolio-stats,
  .revenue-buttons,
  .package-detail-shell,
  .upgrade-zone-top {
    grid-template-columns: 1fr;
  }

  .round-banner,
  .welcome-head,
  .upsell-top {
    grid-template-columns: 1fr;
  }

  .round-banner,
  .welcome-head,
  .upsell-top {
    display: grid;
  }

  /* Topbar rÄƒmÃ¢ne flex row pe mobile, doar mai compact */
  .topbar {
    display: flex;
    flex-wrap: nowrap;
    padding: 10px 14px;
    gap: 10px;
  }

  .topbar-left {
    display: flex;
    flex-shrink: 0;
    gap: 10px;
    align-items: center;
  }

  .topbar-right {
    display: flex;
    flex: 1;
    gap: 8px;
    align-items: center;
    justify-content: flex-end;
    overflow: hidden;
  }

  /* Ascunde elementele mai puÈ›in importante pe mobile pentru a nu aglomera */
  .topbar-meta,
  .domain-pill {
    display: none;
  }

  .panel-head,
  .list-card li,
  .feature-list li,
  .scenario-row {
    flex-direction: column;
    align-items: stretch;
  }

  .list-card li {
    min-height: 0;
    grid-template-columns: 1fr;
    row-gap: 10px;
  }

  .list-card small {
    min-width: 0;
    text-align: left;
    justify-self: start;
  }

  .status-track {
    grid-template-columns: 1fr 1fr;
  }

  .status-line {
    display: none;
  }

  .chart-label {
    position: static;
    margin-top: 10px;
  }

  .chart-block {
    padding-bottom: 14px;
  }

  .chart-tooltip {
    left: 50% !important;
    right: auto;
    min-width: min(220px, calc(100% - 28px));
  }

  .bottom-upgrade-steps,
  .footer-meta {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .main {
    padding: 16px;
  }

  .domain-pill,
  .topbar-meta,
  .theme-toggle,
  .wallet-pill,
  .ghost-pill {
    width: 100%;
  }

  .brand-copy strong {
    font-size: 1.45rem;
  }

  .brand-sidebar .brand-mark {
    width: min(100%, 200px);
  }

  .welcome-panel h1 {
    font-size: 2rem;
  }

  .stat-card strong,
  .payout-box strong {
    font-size: 2rem;
  }

  .footer-meta {
    gap: 10px;
  }

  .bottom-upgrade-button {
    width: 100%;
  }
}

/* ==========================================================================
   In-Dashboard Web App Window & eSIM Activation Card Modal System
   ========================================================================== */

.dash-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(3, 6, 14, 0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-modal-overlay.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Floating Web App Window */
.dash-window {
  position: relative;
  width: min(94vw, 1240px);
  height: min(88vh, 820px);
  background: var(--surface);
  border: 1px solid rgba(72, 227, 255, 0.24);
  border-radius: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.75),
    0 0 50px rgba(72, 227, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), width 0.3s ease, height 0.3s ease, border-radius 0.3s ease;
}

.dash-modal-overlay.is-open .dash-window {
  transform: scale(1) translateY(0);
}

.dash-window.is-fullscreen {
  width: 100vw;
  height: 100vh;
  border-radius: 0;
  border: none;
}

.dash-window-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 20px;
  background: linear-gradient(180deg, rgba(14, 20, 36, 0.98), rgba(9, 13, 25, 0.96));
  border-bottom: 1px solid rgba(129, 153, 201, 0.16);
  user-select: none;
}

.window-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.win-btn {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.win-btn:hover {
  transform: scale(1.15);
}

.win-close { background: #ff5f56; box-shadow: 0 0 8px rgba(255, 95, 86, 0.4); }
.win-minimize { background: #ffbd2e; box-shadow: 0 0 8px rgba(255, 189, 46, 0.4); }
.win-maximize { background: #27c93f; box-shadow: 0 0 8px rgba(39, 201, 63, 0.4); }

.window-title-container {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 10px;
}

.window-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  text-shadow: 0 0 12px rgba(72, 227, 255, 0.2);
}

.window-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.win-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--text-soft);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.win-action-btn:hover {
  background: rgba(55, 146, 255, 0.2);
  color: var(--text);
  border-color: rgba(72, 227, 255, 0.3);
}

.win-action-btn.close-text-btn:hover {
  background: rgba(255, 75, 88, 0.2);
  color: #ff7582;
  border-color: rgba(255, 75, 88, 0.3);
}

.win-action-btn .icon-svg {
  width: 14px;
  height: 14px;
}

.dash-window-body {
  position: relative;
  flex: 1;
  width: 100%;
  background: #04060c;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.dash-window-body iframe {
  width: 100%;
  height: 100%;
  flex: 1;
  border: none;
}

.window-loading {
  position: absolute;
  inset: 0;
  z-index: 5;
  background: rgba(6, 9, 18, 0.94);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  color: var(--text-soft);
  font-size: 0.88rem;
  font-weight: 600;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.window-loading.is-hidden {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.window-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(72, 227, 255, 0.15);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.iframe-fallback-banner {
  padding: 10px 18px;
  background: rgba(13, 18, 34, 0.96);
  border-top: 1px solid rgba(72, 227, 255, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.fallback-btn {
  padding: 6px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(55, 146, 255, 0.3), rgba(72, 227, 255, 0.3));
  border: 1px solid var(--border-strong);
  color: var(--text);
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
}

.fallback-btn:hover {
  background: var(--blue);
  color: #fff;
}

/* Seed Round Information Modal */
.round-info-modal-box {
  width: min(94vw, 1080px);
  max-height: min(88vh, 820px);
  background:
    radial-gradient(circle at 18% 0%, rgba(72, 227, 255, 0.16), transparent 36%),
    linear-gradient(180deg, rgba(16, 20, 36, 0.98), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(72, 227, 255, 0.24);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.78),
    0 0 44px rgba(72, 227, 255, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-modal-overlay.is-open .round-info-modal-box {
  transform: scale(1) translateY(0);
}

.round-info-summary {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.round-info-summary div,
.round-package-card,
.round-info-disclaimer {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.round-info-summary div {
  border-radius: 16px;
  padding: 14px;
}

.round-info-summary span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.round-info-summary strong {
  color: var(--text);
  font-size: 1.25rem;
}

.round-info-body {
  overflow: auto;
  padding-right: 4px;
}

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

.round-package-card {
  border-radius: 18px;
  padding: 16px;
}

.round-package-card.featured {
  border-color: rgba(255, 201, 94, 0.36);
  background:
    linear-gradient(135deg, rgba(255, 201, 94, 0.14), rgba(72, 227, 255, 0.06)),
    rgba(255, 255, 255, 0.04);
}

.round-package-card div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.round-package-card strong {
  color: var(--text);
  font-size: 1rem;
}

.round-package-card span {
  color: var(--cyan);
  font-size: 0.84rem;
  font-weight: 800;
  white-space: nowrap;
}

.round-package-card p,
.round-info-disclaimer p {
  margin: 0;
  color: var(--text-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.round-package-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.55;
}

.round-info-disclaimer {
  margin-top: 12px;
  border-radius: 18px;
  padding: 16px;
}

.round-info-disclaimer strong {
  display: block;
  margin-bottom: 6px;
  color: var(--amber);
}

/* eSIM Activation Card Modal */
.esim-modal-box {
  width: min(92vw, 680px);
  background: linear-gradient(180deg, rgba(16, 20, 36, 0.98), rgba(9, 12, 22, 0.96));
  border: 1px solid rgba(255, 201, 94, 0.28);
  border-radius: 28px;
  padding: 24px;
  box-shadow:
    0 24px 60px rgba(0, 0, 0, 0.8),
    0 0 40px rgba(255, 201, 94, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transform: scale(0.94) translateY(16px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dash-modal-overlay.is-open .esim-modal-box {
  transform: scale(1) translateY(0);
}

.dash-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.dash-modal-header h3 {
  margin: 0;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.modal-close-icon {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.modal-close-icon:hover {
  background: rgba(255, 75, 88, 0.2);
  color: #ff7582;
  border-color: rgba(255, 75, 88, 0.3);
}

.esim-card-preview {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  background: #000;
}

.esim-card-img {
  width: 100%;
  height: auto;
  display: block;
}

.esim-details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.esim-detail-item {
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.esim-detail-item span {
  display: block;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 4px;
}

.esim-detail-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  word-break: break-all;
}

.dash-modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.modal-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #ffd064, #f4a11f);
  color: #1a1200;
  font-weight: 800;
  font-size: 0.85rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 20px rgba(255, 201, 94, 0.25);
  transition: all 0.2s ease;
}

.modal-primary-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 0 28px rgba(255, 201, 94, 0.4);
}

.modal-primary-btn .icon-svg {
  width: 16px;
  height: 16px;
}

.modal-secondary-btn {
  padding: 10px 20px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-soft);
  font-weight: 700;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.modal-secondary-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--text);
}

/* Sidebar Ecosystem Nav Dropdown */
.nav-item-dropdown-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.nav-item-has-dropdown {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.nav-item-has-dropdown:hover {
  background: var(--bg-hover);
}

.nav-item-main {
  flex: 1;
  border-radius: var(--radius-sm) 0 0 var(--radius-sm);
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 36px;
  background: transparent;
  border: none;
  color: var(--text-soft);
  cursor: pointer;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  transition: color 0.2s ease, transform 0.25s ease;
}

.nav-dropdown-toggle:hover {
  color: var(--cyan);
}

.dropdown-arrow {
  width: 14px;
  height: 14px;
  transition: transform 0.25s ease;
}

.nav-item-dropdown-wrap.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.nav-sub-menu {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding-left: 12px;
  margin-top: 2px;
  margin-bottom: 6px;
  border-left: 1px solid rgba(72, 227, 255, 0.18);
  margin-left: 20px;
}

.nav-item-dropdown-wrap.is-open .nav-sub-menu {
  display: flex;
}

.sub-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: var(--radius-sm);
  background: transparent;
  border: none;
  color: var(--text-soft);
  font-size: 0.82rem;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
}

.sub-nav-item:hover {
  background: rgba(72, 227, 255, 0.08);
  color: var(--text);
  transform: translateX(3px);
}

.sub-nav-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sub-nav-dot.blue { background: var(--blue); box-shadow: 0 0 6px var(--blue); }
.sub-nav-dot.violet { background: var(--violet); box-shadow: 0 0 6px var(--violet); }
.sub-nav-dot.green { background: var(--green); box-shadow: 0 0 6px var(--green); }
.sub-nav-dot.cyan { background: var(--cyan); box-shadow: 0 0 6px var(--cyan); }
.sub-nav-dot.amber { background: var(--amber); box-shadow: 0 0 6px var(--amber); }
.sub-nav-dot.gold { background: var(--gold); box-shadow: 0 0 6px var(--gold); }

/* Ecosystem Horizontal Scroll & Slider Controls */
.ecosystem-controls {
  display: flex;
  align-items: center;
  gap: 10px;
}

.scroll-arrow-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(72, 227, 255, 0.25);
  background: rgba(255, 255, 255, 0.05);
  color: var(--cyan);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  backdrop-filter: blur(8px);
}

.scroll-arrow-btn:hover {
  background: rgba(72, 227, 255, 0.2);
  border-color: var(--cyan);
  transform: scale(1.08);
  box-shadow: 0 0 12px rgba(72, 227, 255, 0.4);
}

.scroll-arrow-btn:active {
  transform: scale(0.95);
}

.ecosystem-slider-wrapper {
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  margin-top: 14px;
}

/* Custom Horizontal Scrollbar for Ecosystem Slider */
.ecosystem-slider-wrapper::-webkit-scrollbar {
  height: 6px;
}

.ecosystem-slider-wrapper::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 6px;
}

.ecosystem-slider-wrapper::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--cyan), var(--blue));
  border-radius: 6px;
}

.ecosystem-grid.scrollable-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  gap: 18px !important;
  width: max-content !important;
  min-width: 100% !important;
}

.ecosystem-grid.scrollable-row .service-card {
  width: 280px !important;
  min-width: 280px !important;
  max-width: 280px !important;
  flex: 0 0 280px !important;
  scroll-snap-align: start;
}

/* Dedicated STRDOME Shop Action Card inside Modal */
.shop-portal-card {
  position: absolute;
  inset: 0;
  z-index: 15;
  background: radial-gradient(circle at 50% 30%, rgba(18, 28, 52, 0.98), rgba(8, 12, 22, 0.99));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  overflow-y: auto;
  text-align: center;
}

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

.shop-portal-card.is-auto-opening .shop-portal-actions {
  display: none;
}

.shop-portal-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(72, 227, 255, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  filter: blur(40px);
}

.shop-portal-content {
  position: relative;
  z-index: 2;
  max-width: 540px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.shop-portal-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  border-radius: 20px;
  background: rgba(72, 227, 255, 0.12);
  border: 1px solid rgba(72, 227, 255, 0.35);
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.shop-portal-content h2 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text);
  margin: 0;
}

.shop-portal-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
  margin: 12px 0;
  text-align: left;
}

.shop-feature-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.07);
}

.shop-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.shop-feature-icon.green { background: rgba(46, 213, 115, 0.15); color: var(--green); }
.shop-feature-icon.cyan { background: rgba(72, 227, 255, 0.15); color: var(--cyan); }
.shop-feature-icon.amber { background: rgba(255, 201, 94, 0.15); color: var(--amber); }

.shop-feature-item strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text);
}

.shop-feature-item span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* Tag Status Indicators & Activation Animations */
.tag-status-indicator {
  margin-left: auto;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 12px;
  background: rgba(255, 201, 94, 0.15);
  color: var(--amber);
  border: 1px solid rgba(255, 201, 94, 0.3);
  transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  letter-spacing: 0.03em;
}

.shop-feature-item {
  transition: all 0.4s ease;
}

.shop-feature-item[data-status="pending"] {
  opacity: 0.55;
  border-color: rgba(255, 255, 255, 0.05);
}

.shop-feature-item[data-status="loading"] {
  opacity: 0.85;
  border-color: rgba(72, 227, 255, 0.5);
  box-shadow: 0 0 16px rgba(72, 227, 255, 0.2);
  animation: tagPulse 0.9s infinite alternate;
}

.shop-feature-item[data-status="active"] {
  opacity: 1;
  border-color: rgba(46, 213, 115, 0.45);
  background: rgba(46, 213, 115, 0.07);
  box-shadow: 0 0 20px rgba(46, 213, 115, 0.25);
  transform: scale(1.02);
}

.shop-feature-item[data-status="active"] .tag-status-indicator {
  background: rgba(46, 213, 115, 0.2);
  color: var(--green);
  border-color: rgba(46, 213, 115, 0.5);
  box-shadow: 0 0 8px rgba(46, 213, 115, 0.3);
}

@keyframes tagPulse {
  0% { border-color: rgba(72, 227, 255, 0.2); }
  100% { border-color: rgba(72, 227, 255, 0.7); box-shadow: 0 0 18px rgba(72, 227, 255, 0.35); }
}

.shop-portal-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin-top: 8px;
}

.shop-launch-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 15px 24px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, #48e3ff 0%, #3792ff 100%);
  color: #060a12;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(72, 227, 255, 0.35);
  transition: all 0.3s ease;
}

.shop-launch-btn.is-disabled {
  pointer-events: none;
  opacity: 0.6;
  background: linear-gradient(135deg, rgba(72, 227, 255, 0.15) 0%, rgba(55, 146, 255, 0.15) 100%);
  color: rgba(255, 255, 255, 0.65);
  box-shadow: none;
  border: 1px solid rgba(72, 227, 255, 0.25);
}

.launch-btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-top-color: var(--cyan);
  border-radius: 50%;
  animation: btnSpin 0.8s linear infinite;
  display: inline-block;
}

.shop-launch-btn.is-disabled .shop-btn-icon {
  display: none;
}

.shop-launch-btn:not(.is-disabled) .launch-btn-spinner {
  display: none;
}

.shop-launch-btn:not(.is-disabled) .shop-btn-icon {
  display: inline-block;
}

@keyframes btnSpin {
  to { transform: rotate(360deg); }
}

.shop-launch-btn.just-unlocked {
  animation: btnUnlockGlow 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes btnUnlockGlow {
  0% { transform: scale(0.95); box-shadow: 0 0 0 rgba(72, 227, 255, 0.9); }
  50% { transform: scale(1.04); box-shadow: 0 0 35px rgba(72, 227, 255, 0.85); }
  100% { transform: scale(1); box-shadow: 0 8px 24px rgba(72, 227, 255, 0.35); }
}

.shop-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(72, 227, 255, 0.5);
  color: #060a12;
}

.shop-secure-note {
  font-size: 0.76rem;
  color: var(--muted);
  margin: 0;
}

.activity-marketplace-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

@media (max-width: 992px) {
  .activity-marketplace-row {
    grid-template-columns: 1fr;
  }
}

/* Topbar Floating Notifications Dropdown */
.notifications-wrapper {
  position: relative;
  z-index: 9999;
}

.notif-badge-dot {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 8px var(--amber);
}

.notif-dropdown {
  position: fixed;
  top: var(--notif-top, 72px);
  left: var(--notif-left, auto);
  width: min(360px, calc(100vw - 24px));
  background: rgba(10, 14, 26, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(72, 227, 255, 0.35);
  border-radius: var(--radius-md);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.9), 0 0 32px rgba(72, 227, 255, 0.2);
  z-index: 999999 !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px) scale(0.96);
  transform-origin: top center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.notif-dropdown.is-open {
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateY(0) scale(1) !important;
}

.notif-dropdown.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.notif-dropdown-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.notif-dropdown-header h3 {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text);
}

.alert-chip {
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(255, 201, 94, 0.15);
  color: var(--amber);
  border: 1px solid rgba(255, 201, 94, 0.3);
}

.notif-dropdown-list {
  list-style: none;
  margin: 0;
  padding: 8px 10px 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  max-height: 360px;
  overflow-y: auto;
}

.notif-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 12px;
  border-radius: var(--radius-sm);
  transition: background 0.2s ease;
}

.notif-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.notif-item.unread {
  background: rgba(72, 227, 255, 0.04);
}

.notif-icon-box {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.notif-icon-box.amber { background: rgba(255, 201, 94, 0.15); color: var(--amber); }
.notif-icon-box.blue { background: rgba(55, 146, 255, 0.15); color: var(--blue); }

.notif-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.notif-content strong {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--text);
}

.notif-content span {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.notif-content small {
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 2px;
}

/* Compact Founder Advantage Layout */
.compact-advantage-card {
  padding: 18px 20px;
}

/* Wallet Button Indicator Dot */
button.wallet-pill {
  border: 1px solid rgba(72, 227, 255, 0.35);
  background: rgba(72, 227, 255, 0.08);
  color: var(--cyan);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.25s ease;
}

button.wallet-pill:hover {
  background: rgba(72, 227, 255, 0.18);
  box-shadow: 0 0 16px rgba(72, 227, 255, 0.3);
  transform: translateY(-1px);
}

.wallet-connected-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  display: inline-block;
}

/* Web3 Wallet Connect Modal */
.wallet-modal-box {
  max-width: 480px;
  width: 92%;
}

.wallet-modal-head-title {
  display: flex;
  align-items: center;
  gap: 10px;
}

.wallet-modal-head-title h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0;
  color: var(--text);
}

.cyan-icon {
  color: var(--cyan);
  width: 22px;
  height: 22px;
}

.wallet-modal-subtitle {
  font-size: 0.86rem;
  color: var(--text-soft);
  margin-bottom: 18px;
  line-height: 1.45;
}

/* Connected Active Wallet Card */
.wallet-active-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(72, 227, 255, 0.3);
  border-radius: var(--radius-sm);
  padding: 16px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}

.wallet-active-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--green);
  background: rgba(46, 213, 115, 0.15);
  border: 1px solid rgba(46, 213, 115, 0.3);
  padding: 3px 10px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.pulse-dot.green {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
}

.wallet-active-details {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.wallet-active-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(72, 227, 255, 0.2), rgba(55, 146, 255, 0.2));
  border: 1px solid rgba(72, 227, 255, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cyan);
}

.wallet-active-details strong {
  display: block;
  font-size: 0.96rem;
  color: var(--text);
}

.wallet-address {
  font-size: 0.8rem;
  font-family: var(--font-mono, monospace);
  color: var(--cyan);
}

.wallet-balance-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
}

.wallet-balance-row div {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.wallet-balance-row strong {
  font-size: 0.95rem;
  color: var(--text);
}

.network-badge {
  font-size: 0.78rem;
  color: var(--text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.net-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.wallet-options-label {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-bottom: 12px;
}

.wallet-options-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.wallet-option-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: left;
  width: 100%;
}

.wallet-option-card:hover {
  background: rgba(72, 227, 255, 0.06);
  border-color: rgba(72, 227, 255, 0.3);
  transform: translateX(3px);
}

.wallet-option-card.is-active {
  background: rgba(72, 227, 255, 0.1);
  border-color: rgba(72, 227, 255, 0.5);
  box-shadow: 0 0 16px rgba(72, 227, 255, 0.15);
}

.wallet-opt-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.str-bg { background: rgba(72, 227, 255, 0.15); color: var(--cyan); }
.metamask-bg { background: rgba(235, 140, 0, 0.15); color: #f6851b; }
.walletconnect-bg { background: rgba(59, 153, 252, 0.15); color: #3b99fc; }
.coinbase-bg { background: rgba(0, 82, 255, 0.15); color: #0052ff; }
.ledger-bg { background: rgba(255, 255, 255, 0.1); color: var(--text); }

.wallet-opt-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-grow: 1;
}

.wallet-opt-info strong {
  font-size: 0.9rem;
  color: var(--text);
}

.wallet-opt-info span {
  font-size: 0.76rem;
  color: var(--text-soft);
}

.wallet-status-tag {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wallet-status-tag.active {
  background: rgba(46, 213, 115, 0.18);
  color: var(--green);
  border-color: rgba(46, 213, 115, 0.4);
}

.wallet-qr-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 24px 16px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(72, 227, 255, 0.2);
  border-radius: var(--radius-sm);
  text-align: center;
}

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

.qr-frame {
  width: 140px;
  height: 140px;
  padding: 12px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qr-mock-svg {
  width: 100%;
  height: 100%;
  color: #060a12;
}

.qr-note {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin: 0;
}

.wallet-modal-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.78rem;
  color: var(--muted);
}

.wallet-modal-footer a {
  color: var(--cyan);
  text-decoration: none;
}

.wallet-modal-footer a:hover {
  text-decoration: underline;
}

/* Floating Auth & Login Notice Bar inside Modal */
.iframe-auth-notice-bar {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 18px;
  border-radius: 30px;
  background: rgba(12, 18, 32, 0.94);
  border: 1px solid rgba(72, 227, 255, 0.35);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.6), 0 0 16px rgba(72, 227, 255, 0.2);
  backdrop-filter: blur(12px);
  max-width: 90%;
  width: max-content;
  transition: all 0.3s ease;
}

.iframe-auth-notice-bar.is-hidden {
  display: none !important;
}

.auth-notice-text {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-soft);
  white-space: nowrap;
}

.amber-icon {
  color: var(--amber);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.auth-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #48e3ff 0%, #3792ff 100%);
  color: #060a12;
  font-size: 0.78rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(72, 227, 255, 0.3);
  transition: all 0.25s ease;
}

.auth-launch-btn:hover {
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(72, 227, 255, 0.5);
  color: #060a12;
}
