:root {
  --primary: #8b5cf6;
  --secondary: #06b6d4;
  --accent: #10b981;
  --bg: #010409;
  --panel: rgba(10, 15, 30, 0.58);
  --panel-soft: rgba(15, 23, 42, 0.5);
  --line: rgba(255, 255, 255, 0.1);
  --text: #f8fafc;
  --muted: #94a3b8;
  --danger: #ef4444;
  --success: #10b981;
  --radius: 22px;
  --radius-soft: 14px;
  --shadow: 0 20px 64px rgba(0, 0, 0, 0.5);
}

* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: 'Outfit', sans-serif;
  letter-spacing: -0.02em;
}

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

code,
pre,
.mono {
  font-family: 'JetBrains Mono', monospace;
}

.mesh-gradient {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 0% 0%, rgba(139, 92, 246, 0.22) 0%, transparent 52%),
    radial-gradient(circle at 100% 100%, rgba(6, 182, 212, 0.17) 0%, transparent 55%),
    radial-gradient(circle at 50% 60%, rgba(16, 185, 129, 0.05) 0%, transparent 42%);
  animation: pulse-bg 14s ease-in-out infinite alternate;
}

.grid-pattern {
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 88%);
}

@keyframes pulse-bg {
  0% {
    transform: scale(1);
    opacity: 0.72;
  }

  100% {
    transform: scale(1.12);
    opacity: 1;
  }
}

.app-shell {
  min-height: 100vh;
}

.app-shell-auth {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 1.1rem;
  padding: 1rem;
}

.app-shell-guest {
  display: block;
  max-width: 1260px;
  margin: 0 auto;
  padding: 1.2rem;
}

.app-shell-landing {
  max-width: none;
  padding: 0.55rem 0.8rem 0.9rem;
}

.glass-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  backdrop-filter: blur(26px) saturate(180%);
  -webkit-backdrop-filter: blur(26px) saturate(180%);
  box-shadow: var(--shadow);
}

.glass-soft {
  background: var(--panel-soft);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-soft);
}

.sidebar {
  border-radius: 34px;
  padding: 1.2rem 1rem 1rem;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 1.1rem;
  position: sticky;
  top: 1rem;
  max-height: calc(100vh - 2rem);
  background: rgba(2, 6, 23, 0.54);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-block {
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  padding-bottom: 0.95rem;
}

.brand {
  font-family: 'Outfit', sans-serif;
  font-size: 1.4rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

.brand-react {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 13px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(6, 182, 212, 1));
  box-shadow: 0 0 26px rgba(139, 92, 246, 0.34);
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-label {
  font-family: 'Outfit', sans-serif;
  font-size: 1.26rem;
  font-weight: 900;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.brand-label span {
  color: #8b5cf6;
}

.brand-meta {
  margin: 0.3rem 0 0;
  color: var(--muted);
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-weight: 800;
}

.side-nav {
  display: grid;
  align-content: start;
  gap: 0.36rem;
}

.side-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid transparent;
  border-radius: 18px;
  padding: 0.64rem 0.74rem;
  color: #64748b;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 0.62rem;
  transition: all 0.24s ease;
}

.side-link:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #cbd5e1;
}

.side-link-icon {
  width: 22px;
  height: 22px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #64748b;
  transition: color 0.22s ease, background 0.22s ease;
}

.side-link:hover .side-link-icon {
  color: #22d3ee;
}

.side-link-icon svg {
  width: 16px;
  height: 16px;
}

.side-link-label {
  white-space: nowrap;
}

.side-link-state {
  margin-left: auto;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #8b5cf6;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.95);
}

.side-link-active {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.22);
  transform: translateX(2px);
}

.side-link-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 22px;
  border-radius: 999px;
  background: #8b5cf6;
  box-shadow: 0 0 12px rgba(139, 92, 246, 0.95);
}

.side-link-active .side-link-icon {
  color: #a78bfa;
}

.side-foot {
  padding: 0.72rem;
}

.side-foot p {
  margin: 0;
}

.side-foot p + p {
  margin-top: 0.35rem;
}

.side-foot-status {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.side-foot-status span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.95);
}

.main-column {
  min-width: 0;
}

.topbar {
  border-radius: 24px;
  padding: 0.95rem 1rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
}

.topbar-react {
  position: sticky;
  top: 0.3rem;
  z-index: 30;
  background: rgba(2, 6, 23, 0.72);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

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

.topbar-title {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-actions-react {
  gap: 0.58rem;
}

.topbar-user-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.2rem 0.45rem 0.2rem 0.22rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.topbar-user-avatar {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  font-size: 0.9rem;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(6, 182, 212, 1));
  color: #fff;
}

.topbar-user-meta {
  display: grid;
  gap: 0.05rem;
}

.topbar-user-name {
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

.topbar-user-plan {
  font-size: 0.58rem;
  color: #a78bfa;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.topbar-logout {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.65);
  color: #64748b;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.22s ease, border-color 0.22s ease, transform 0.15s ease;
}

.topbar-logout:hover {
  color: #f87171;
  border-color: rgba(248, 113, 113, 0.45);
}

.topbar-logout:active {
  transform: scale(0.95);
}

.topbar-logout svg {
  width: 18px;
  height: 18px;
}

.content {
  margin-top: 1rem;
  display: grid;
  gap: 1rem;
}

.content-landing {
  margin-top: 0;
}

.animate-in {
  animation: fade-slide 0.35s ease;
}

@keyframes fade-slide {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

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

.flash-stack {
  margin-top: 1rem;
  display: grid;
  gap: 0.5rem;
}

.flash {
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.7rem 0.85rem;
  font-size: 0.92rem;
}

.flash-success {
  border-color: rgba(16, 185, 129, 0.45);
  background: rgba(16, 185, 129, 0.18);
}

.flash-error {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.18);
}

.progress-overlay {
  position: fixed;
  inset: 0;
  z-index: 2100;
  display: none;
  place-items: center;
  padding: 1rem;
  background: rgba(2, 6, 23, 0.66);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.progress-overlay-active {
  display: grid;
  animation: fade-slide 0.25s ease;
}

.progress-card {
  width: min(640px, 100%);
  border-radius: 28px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.progress-card h2 {
  margin-top: 0.42rem;
  font-size: clamp(1.4rem, 4vw, 2rem);
}

.progress-steps {
  margin-top: 0.86rem;
  display: grid;
  gap: 0.5rem;
}

.progress-step {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.56);
  padding: 0.52rem 0.64rem;
  color: #cbd5e1;
  font-weight: 600;
}

.progress-step-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.7);
  box-shadow: 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.progress-step-active {
  border-color: rgba(6, 182, 212, 0.4);
  background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.14));
}

.progress-step-active .progress-step-dot {
  background: #06b6d4;
  box-shadow: 0 0 12px rgba(6, 182, 212, 0.8);
  animation: pulse-dot 1.1s ease-in-out infinite;
}

.progress-step-complete {
  border-color: rgba(16, 185, 129, 0.34);
  color: #a7f3d0;
}

.progress-step-complete .progress-step-dot {
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.75);
}

.progress-bar-track {
  margin-top: 0.82rem;
  height: 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.95), rgba(6, 182, 212, 0.95), rgba(16, 185, 129, 0.95));
  transition: width 0.5s ease;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.2);
    opacity: 1;
  }

  100% {
    transform: scale(0.95);
    opacity: 0.85;
  }
}

.grid {
  display: grid;
  gap: 1rem;
}

.two-up {
  grid-template-columns: repeat(auto-fit, minmax(330px, 1fr));
}

.three-up {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.panel {
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1rem;
}

.panel-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.8rem;
}

.muted {
  color: var(--muted);
}

.small {
  font-size: 0.85rem;
}

.hero {
  border-radius: 34px;
  padding: 1.2rem 1.2rem 1.5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(139, 92, 246, 0.45);
  background: rgba(139, 92, 246, 0.12);
  color: #c4b5fd;
  border-radius: 999px;
  padding: 0.25rem 0.58rem;
  font-size: 0.72rem;
}

.hero-title {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 7vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.055em;
  line-height: 0.9;
}

.hero-title span {
  background: linear-gradient(90deg, #8b5cf6, #10b981, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
}

.hero-copy {
  margin: 0.8rem 0 0;
  max-width: 880px;
  color: #cbd5e1;
}

.dashboard-react-shell {
  display: grid;
  gap: 1rem;
}

.dashboard-react-hero {
  position: relative;
  overflow: hidden;
  border-radius: 42px;
  padding: clamp(1rem, 3vw, 1.9rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: rgba(2, 6, 23, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.dashboard-react-grid-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 8% 32%, rgba(139, 92, 246, 0.45), transparent 30%),
    radial-gradient(circle at 88% 66%, rgba(6, 182, 212, 0.42), transparent 33%);
}

.dashboard-react-hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0.24;
}

.dashboard-react-hero-content,
.dashboard-react-hero-actions {
  position: relative;
  z-index: 1;
}

.dashboard-react-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.38rem;
  border: 1px solid rgba(139, 92, 246, 0.28);
  background: rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  padding: 0.23rem 0.55rem;
}

.dashboard-react-chip span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.82);
}

.dashboard-react-chip p {
  margin: 0;
  color: #c4b5fd;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.58rem;
  font-weight: 900;
}

.dashboard-react-title {
  margin-top: 0.6rem;
  font-size: clamp(1.9rem, 5.5vw, 4.35rem);
  text-transform: uppercase;
  line-height: 0.92;
  font-style: italic;
  letter-spacing: -0.045em;
}

.dashboard-react-title span {
  color: #64748b;
}

.dashboard-react-copy {
  margin: 0.5rem 0 0;
  max-width: 680px;
  color: #94a3b8;
  font-size: clamp(0.9rem, 2vw, 1.16rem);
  font-weight: 600;
}

.dashboard-react-primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.56rem;
  border-radius: 28px;
  padding: 1rem 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.68rem;
  font-weight: 900;
  background: #fff;
  color: #020617;
  transition: transform 0.2s ease, filter 0.2s ease;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
}

.dashboard-react-primary-btn:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(0.96);
}

.dashboard-react-primary-btn svg {
  width: 18px;
  height: 18px;
}

.dashboard-react-layout {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(260px, 0.4fr);
  gap: 1rem;
}

.dashboard-react-main,
.dashboard-react-side {
  min-width: 0;
}

.dashboard-react-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.6rem;
  padding: 0 0.25rem;
}

.dashboard-react-section-head h3 {
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.23em;
  font-size: 0.64rem;
  font-weight: 900;
}

.dashboard-react-section-head span {
  color: #a78bfa;
  font-size: 0.6rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  border: 1px solid rgba(167, 139, 250, 0.28);
  border-radius: 999px;
  padding: 0.21rem 0.5rem;
  background: rgba(167, 139, 250, 0.1);
}

.dashboard-react-cards {
  margin-top: 0.68rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 0.8rem;
}

.dashboard-react-card {
  border-radius: 30px;
  padding: 0.76rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 23, 42, 0.42);
  display: grid;
  gap: 0.7rem;
}

.dashboard-react-card-reveal {
  opacity: 0;
  transform: translateY(10px) scale(0.99);
  animation: dashboardCardReveal 0.5s ease forwards;
  animation-delay: var(--card-delay, 0ms);
}

@keyframes dashboardCardReveal {
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  .dashboard-react-card-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.dashboard-react-card-preview {
  aspect-ratio: 16 / 9;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(2, 6, 23, 0.84);
  position: relative;
  overflow: hidden;
}

.dashboard-react-card-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(148, 163, 184, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
}

.dashboard-react-card-status {
  position: absolute;
  top: 0.48rem;
  right: 0.48rem;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 999px;
  padding: 0.2rem 0.42rem;
  font-size: 0.52rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 900;
  background: rgba(16, 185, 129, 0.12);
  border: 1px solid rgba(16, 185, 129, 0.28);
  color: #34d399;
}

.dashboard-react-card-status i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 8px rgba(52, 211, 153, 0.88);
}

.dashboard-react-card-body h4 {
  font-size: 1.1rem;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.dashboard-react-node {
  margin: 0.26rem 0 0;
  color: #475569;
  font-size: 0.53rem;
  letter-spacing: 0.14em;
  font-weight: 900;
  text-transform: uppercase;
}

.dashboard-react-metrics {
  margin-top: 0.62rem;
  display: flex;
  gap: 1.6rem;
}

.dashboard-react-metrics p {
  margin: 0;
  font-size: 0.54rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: #475569;
  font-weight: 900;
}

.dashboard-react-metrics strong {
  margin-top: 0.16rem;
  display: block;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
}

.dashboard-react-yield {
  color: #34d399;
}

.dashboard-react-card-actions {
  display: flex;
  gap: 0.45rem;
}

.dashboard-react-secondary-btn,
.dashboard-react-plain-btn {
  flex: 1;
  border-radius: 16px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.56rem;
  font-weight: 900;
  transition: transform 0.16s ease, filter 0.16s ease, border-color 0.16s ease;
}

.dashboard-react-secondary-btn {
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #f8fafc;
}

.dashboard-react-plain-btn {
  background: #fff;
  color: #020617;
}

.dashboard-react-secondary-btn:hover,
.dashboard-react-plain-btn:hover {
  transform: translateY(-1px);
}

.dashboard-react-telemetry {
  border-radius: 28px;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 6, 23, 0.76);
}

.dashboard-react-telemetry-head {
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.dashboard-react-telemetry-head p {
  margin: 0;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.21em;
  font-weight: 900;
  font-size: 0.58rem;
}

.dashboard-react-telemetry-head span {
  display: inline-flex;
  align-items: center;
  gap: 0.24rem;
  color: #34d399;
  font-size: 0.52rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 900;
}

.dashboard-react-telemetry-head span i {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #34d399;
}

.dashboard-react-telemetry-items {
  margin-top: 0.8rem;
  display: grid;
  gap: 0.72rem;
}

.dashboard-react-telemetry-items article {
  padding-left: 0.65rem;
  border-left: 2px solid rgba(148, 163, 184, 0.16);
}

.dashboard-react-telemetry-items h5 {
  margin: 0;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-react-telemetry-items p {
  margin: 0.2rem 0 0;
  color: #94a3b8;
  font-size: 0.8rem;
  font-weight: 600;
}

.dashboard-react-telemetry-items small {
  margin-top: 0.16rem;
  display: block;
  color: #475569;
  font-size: 0.58rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
}

.dashboard-react-upgrade {
  margin-top: 0.8rem;
  border-radius: 36px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.34), rgba(6, 182, 212, 0.3));
  text-align: center;
}

.dashboard-react-upgrade-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto;
  display: grid;
  place-items: center;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.dashboard-react-upgrade-icon svg {
  width: 28px;
  height: 28px;
}

.dashboard-react-upgrade h5 {
  margin-top: 0.7rem;
  font-size: 1.35rem;
  text-transform: uppercase;
  font-style: italic;
}

.dashboard-react-upgrade p {
  margin: 0.42rem 0 0;
  color: #cbd5e1;
  font-size: 0.72rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  font-weight: 700;
}

.dashboard-react-upgrade-btn {
  margin-top: 0.8rem;
  width: 100%;
  min-height: 46px;
  border-radius: 18px;
  background: #fff;
  color: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.62rem;
  font-weight: 900;
}

.dashboard-react-empty {
  margin-top: 0.7rem;
  border-radius: 24px;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.landing-react-shell {
  width: min(1280px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 1.3rem;
  padding: 0.15rem 0.25rem 2rem;
}

.landing-react-header {
  position: sticky;
  top: 0.3rem;
  z-index: 40;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.72);
  backdrop-filter: blur(32px);
  -webkit-backdrop-filter: blur(32px);
  border-radius: 20px;
  padding: 0.66rem 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.landing-react-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
}

.landing-react-brand-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, rgba(139, 92, 246, 1), rgba(6, 182, 212, 1));
  box-shadow: 0 0 26px rgba(139, 92, 246, 0.38);
}

.landing-react-brand-mark svg {
  width: 25px;
  height: 25px;
}

.landing-react-brand-text {
  font-size: 1.45rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-style: italic;
  line-height: 1;
}

.landing-react-brand-text span {
  color: #8b5cf6;
}

.landing-react-header-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.landing-react-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(2.1rem, 6vw, 5.6rem);
  padding: clamp(0.6rem, 2vw, 1.2rem) 0.35rem 0;
}

.landing-react-hero {
  text-align: center;
  max-width: 980px;
}

.landing-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 1px solid rgba(139, 92, 246, 0.24);
  background: rgba(139, 92, 246, 0.12);
  border-radius: 999px;
  padding: 0.28rem 0.64rem;
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #c4b5fd;
}

.landing-chip i {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #34d399;
  box-shadow: 0 0 10px rgba(52, 211, 153, 0.8);
  animation: pulse-dot 1.2s ease-in-out infinite;
}

.landing-react-title {
  margin: 0.78rem 0 0;
  font-size: clamp(2.5rem, 11vw, 8.9rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.06em;
  line-height: 0.84;
}

.landing-react-title span {
  color: transparent;
  background: linear-gradient(90deg, #8b5cf6, #34d399, #06b6d4);
  -webkit-background-clip: text;
  background-clip: text;
  font-style: italic;
}

.landing-react-copy {
  margin: 0.78rem auto 0;
  max-width: 810px;
  color: #94a3b8;
  font-weight: 600;
  font-size: clamp(0.95rem, 2.2vw, 1.35rem);
  line-height: 1.5;
}

.landing-react-intake-wrap {
  width: min(840px, 100%);
}

.landing-react-intake {
  position: relative;
  display: grid;
  gap: 0.65rem;
}

.landing-react-intake-glow {
  position: absolute;
  inset: -8px;
  z-index: 0;
  border-radius: 34px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.55), rgba(6, 182, 212, 0.48), rgba(52, 211, 153, 0.4));
  filter: blur(22px);
  opacity: 0.12;
  transition: opacity 0.35s ease;
}

.landing-react-input-shell {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.5rem;
  border-radius: 30px;
  padding: 0.48rem;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(2, 6, 23, 0.9);
}

.landing-react-intake-focused .landing-react-intake-glow {
  opacity: 0.24;
}

.landing-react-input-shell-focused {
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.18) inset;
}

.landing-react-input-row {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0 0.9rem;
  font-size: 1rem;
}

.landing-react-input-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #64748b;
  background: rgba(15, 23, 42, 0.88);
  transition: all 0.25s ease;
}

.landing-react-input-shell-focused .landing-react-input-icon {
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.12);
}

.landing-react-input-icon svg {
  width: 23px;
  height: 23px;
}

.landing-react-input-row input {
  border: 0;
  padding: 0.82rem 0;
  border-radius: 0;
  background: transparent;
  font-size: clamp(1rem, 2vw, 1.28rem);
  font-weight: 600;
}

.landing-react-input-row input:focus {
  outline: 0;
  border-color: transparent;
}

.landing-react-submit {
  border: 0;
  border-radius: 20px;
  background: #fff;
  color: #020617;
  min-width: 160px;
  padding: 0.9rem 1.4rem;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.52rem;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.landing-react-submit:hover {
  transform: translateY(-1px) scale(1.01);
  filter: brightness(0.97);
}

.landing-react-submit svg {
  width: 18px;
  height: 18px;
}

.landing-react-advanced-toggle {
  justify-self: start;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #64748b;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.55rem;
  cursor: pointer;
}

.landing-react-advanced-toggle svg {
  width: 14px;
  height: 14px;
  transition: transform 0.22s ease;
}

.landing-react-advanced-toggle:hover {
  color: #94a3b8;
}

.landing-react-advanced-toggle-active {
  color: #a78bfa;
}

.landing-react-advanced-toggle-active svg {
  transform: rotate(180deg);
}

.landing-react-advanced-panel {
  position: relative;
  z-index: 1;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.7);
  overflow: hidden;
}

.landing-react-advanced-panel-open {
  animation: fade-slide 0.24s ease;
}

.landing-react-advanced-panel textarea {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-height: 110px;
  padding: 0.9rem 1rem;
  resize: vertical;
}

.landing-react-advanced-panel textarea:focus {
  outline: none;
  border-color: transparent;
}

.landing-react-features {
  width: 100%;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.landing-react-feature {
  border-radius: 36px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(15, 23, 42, 0.42);
  padding: clamp(1rem, 2.4vw, 1.5rem);
  transition: border-color 0.22s ease, transform 0.22s ease;
}

.landing-react-feature:hover {
  border-color: rgba(255, 255, 255, 0.18);
  transform: translateY(-2px);
}

.landing-react-feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: #8b5cf6;
}

.landing-react-feature-icon svg {
  width: 24px;
  height: 24px;
}

.landing-react-feature h3 {
  margin: 0.8rem 0 0;
  text-transform: uppercase;
  font-style: italic;
  font-size: clamp(1.12rem, 2.2vw, 1.55rem);
  letter-spacing: -0.02em;
}

.landing-react-feature p {
  margin: 0.55rem 0 0;
  color: #64748b;
  font-weight: 600;
  line-height: 1.45;
}

.workspace-react-shell {
  display: grid;
  gap: 1rem;
}

.workspace-react-head {
  border-radius: 40px;
  padding: clamp(0.95rem, 2.6vw, 1.35rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background:
    radial-gradient(circle at 92% 8%, rgba(139, 92, 246, 0.2), transparent 38%),
    rgba(2, 6, 23, 0.68);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
}

.workspace-react-head-danger {
  border-color: rgba(239, 68, 68, 0.3);
  background:
    radial-gradient(circle at 92% 8%, rgba(239, 68, 68, 0.2), transparent 40%),
    rgba(2, 6, 23, 0.74);
}

.workspace-react-head-copy {
  min-width: 0;
}

.workspace-react-kicker {
  margin: 0;
  color: #a78bfa;
  font-size: 0.61rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-weight: 900;
}

.workspace-react-title {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 6.5vw, 5rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.045em;
}

.workspace-react-note {
  margin: 0.62rem 0 0;
  max-width: 66ch;
  color: #94a3b8;
  font-weight: 600;
}

.workspace-react-head-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.workspace-react-select-form {
  width: min(330px, 100%);
}

.workspace-react-select-form label {
  font-size: 0.73rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #94a3b8;
  font-weight: 900;
}

.workspace-react-select-form select {
  min-height: 48px;
  border-radius: 16px;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(2, 6, 23, 0.74);
  font-size: 0.92rem;
  font-weight: 700;
}

.workspace-react-grid-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.42fr);
  gap: 1rem;
}

.workspace-react-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

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

.workspace-react-stack {
  display: grid;
  gap: 1rem;
}

.workspace-react-card {
  border-radius: 32px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.42);
  padding: clamp(0.85rem, 2vw, 1.05rem);
}

.workspace-react-card h3 {
  font-size: clamp(1.18rem, 2.2vw, 1.75rem);
  text-transform: uppercase;
  font-style: italic;
  letter-spacing: -0.02em;
}

.workspace-react-card h4 {
  margin: 0;
  font-size: 1.08rem;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.workspace-react-empty {
  text-align: center;
}

.workspace-react-chip-row {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-wrap: wrap;
}

.workspace-react-export-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.workspace-react-chip {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  padding: 0.22rem 0.54rem;
  font-size: 0.56rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
}

.workspace-react-chip-active {
  border-color: rgba(139, 92, 246, 0.35);
  background: rgba(139, 92, 246, 0.16);
  color: #c4b5fd;
}

.workspace-react-badge {
  border-radius: 999px;
  border: 1px solid rgba(16, 185, 129, 0.4);
  background: rgba(16, 185, 129, 0.12);
  color: #6ee7b7;
  padding: 0.23rem 0.58rem;
  font-size: 0.58rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
}

.workspace-react-badge-danger {
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.14);
  color: #fca5a5;
}

.workspace-react-ghost-btn {
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f8fafc;
  min-height: 44px;
  padding: 0.58rem 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 900;
  transition: transform 0.16s ease, border-color 0.16s ease;
}

.workspace-react-ghost-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
}

.workspace-react-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

.workspace-react-list li {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  color: #cbd5e1;
  font-size: 0.9rem;
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.07);
  padding: 0.52rem 0.62rem;
}

.workspace-react-list li strong {
  color: #a78bfa;
  font-size: 0.64rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.workspace-react-list-compact li {
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.workspace-react-progress-list {
  margin-top: 0.36rem;
  display: grid;
  gap: 0.6rem;
}

.workspace-react-progress-list div {
  border-radius: 14px;
  padding: 0.5rem 0.58rem;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(2, 6, 23, 0.38);
}

.workspace-react-progress-list p {
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
  color: #94a3b8;
  font-size: 0.62rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 900;
}

.workspace-react-progress-list p span {
  color: #f8fafc;
}

.workspace-react-progress-list i {
  margin-top: 0.4rem;
  display: block;
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.95), rgba(6, 182, 212, 0.95));
}

.workspace-react-big-value {
  margin: 0.4rem 0 0;
  font-size: clamp(2rem, 5.8vw, 3.6rem);
  line-height: 0.92;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

.workspace-react-highlight {
  background: linear-gradient(140deg, rgba(139, 92, 246, 0.35), rgba(6, 182, 212, 0.32));
  border-color: rgba(255, 255, 255, 0.16);
}

.workspace-react-highlight h3 {
  color: #fff;
}

.workspace-react-highlight p {
  margin: 0.48rem 0 0;
  color: #dbeafe;
  font-size: 0.86rem;
}

.workspace-react-highlight-btn {
  margin-top: 0.74rem;
  min-height: 42px;
  border-radius: 16px;
  padding: 0.56rem 0.9rem;
  border: 1px solid transparent;
  background: #ffffff;
  color: #020617;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.58rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.workspace-react-highlight-btn-submit {
  border: 0;
  cursor: pointer;
}

.workspace-react-code {
  max-height: 520px;
}

.workspace-react-stat-grid {
  margin-top: 0.82rem;
}

.workspace-react-metric {
  margin-top: 0.25rem;
  display: block;
  font-size: clamp(1.7rem, 5vw, 2.55rem);
  font-style: italic;
  letter-spacing: -0.03em;
}

.workspace-react-inner-card {
  border-radius: 18px;
  padding: 0.84rem;
}

.analytics-react-chart {
  margin-top: 0.85rem;
  min-height: 230px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.7);
  padding: 0.7rem;
  display: flex;
  align-items: flex-end;
  gap: 0.42rem;
}

.analytics-react-bar-item {
  flex: 1;
  display: grid;
  justify-items: center;
  gap: 0.34rem;
}

.analytics-react-bar {
  width: 100%;
  border-radius: 11px 11px 8px 8px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.95), rgba(139, 92, 246, 0.95));
  min-height: 10px;
}

.analytics-react-bar-item small {
  color: #64748b;
  font-size: 0.64rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.flow-react-track {
  margin-top: 0.5rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.7rem;
}

.flow-react-node {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.42);
  padding: 0.78rem;
}

.flow-react-node-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.flow-react-index {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: rgba(139, 92, 246, 0.18);
  color: #c4b5fd;
}

.flow-react-type {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #94a3b8;
  font-size: 0.52rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 900;
  padding: 0.18rem 0.46rem;
}

.flow-react-node h4 {
  margin-top: 0.55rem;
}

.flow-react-node p {
  margin: 0.25rem 0 0;
  color: #94a3b8;
  font-size: 0.82rem;
}

.page-react-list {
  display: grid;
  gap: 0.72rem;
}

.page-react-item {
  border-radius: 22px;
  padding: 0.8rem;
}

.page-react-item-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.page-react-item-head h4 {
  margin: 0;
}

.plugin-react-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.75rem;
}

.plugin-react-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.4);
  padding: 0.78rem;
  display: grid;
  gap: 0.48rem;
}

.plugin-react-card-active {
  border-color: rgba(139, 92, 246, 0.45);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.12);
}

.plugin-react-card h4 {
  margin: 0.1rem 0 0;
}

.plugin-react-actions {
  margin-top: 0.42rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.55rem;
}

.admin-react-shell {
  gap: 1rem;
}

.admin-react-metric-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.75rem;
}

.admin-react-tab-strip {
  border-radius: 20px;
  padding: 0.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.admin-react-tab {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  padding: 0.48rem 0.8rem;
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  background: rgba(2, 6, 23, 0.45);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.admin-react-tab:hover {
  color: #e2e8f0;
  border-color: rgba(255, 255, 255, 0.24);
}

.admin-react-tab-active {
  color: #fff;
  border-color: rgba(239, 68, 68, 0.45);
  background: rgba(239, 68, 68, 0.16);
}

.admin-react-form-grid {
  margin-top: 0.65rem;
}

.admin-react-check {
  margin-top: 0;
  align-items: center;
}

.admin-react-actions-cell {
  min-width: 290px;
}

.admin-react-inline-form {
  display: block;
  margin-top: 0.45rem;
}

.admin-react-inline-form:first-child {
  margin-top: 0;
}

.admin-react-inline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 0.45rem;
  align-items: center;
}

.admin-react-pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.admin-react-domain-grid {
  margin-top: 0.7rem;
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.admin-react-domain-card {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  background: rgba(2, 6, 23, 0.46);
  padding: 0.75rem;
}

.admin-react-domain-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}

.admin-react-domain-head h4 {
  margin: 0;
}

.admin-react-domain-form {
  margin-top: 0.5rem;
}

.admin-react-ordered-list {
  margin: 0.55rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.5rem;
}

.admin-react-ordered-list li {
  color: #dbeafe;
  font-size: 0.86rem;
  line-height: 1.4;
}

.billing-react-hero {
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(2, 6, 23, 0.62);
  padding: 0.88rem;
}

.billing-react-hero h4 {
  margin-top: 0.4rem;
  font-size: 1.6rem;
  text-transform: uppercase;
  font-style: italic;
}

.billing-react-price {
  margin: 0.35rem 0 0;
  font-size: 2rem;
  font-weight: 900;
}

.billing-react-price span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.live-preview-browser {
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(2, 6, 23, 0.62);
  overflow: hidden;
}

.live-preview-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.34rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(15, 23, 42, 0.9);
  padding: 0.56rem 0.7rem;
}

.live-preview-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
}

.live-preview-browser-bar span:first-child {
  background: rgba(239, 68, 68, 0.85);
}

.live-preview-browser-bar span:nth-child(2) {
  background: rgba(245, 158, 11, 0.85);
}

.live-preview-browser-bar span:nth-child(3) {
  background: rgba(16, 185, 129, 0.85);
}

.live-preview-browser-bar p {
  margin: 0 0 0 0.45rem;
  color: #86efac;
  font-size: 0.75rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.live-preview-browser-bar b {
  margin-left: auto;
  font-size: 0.56rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #10b981;
  border: 1px solid rgba(16, 185, 129, 0.42);
  border-radius: 999px;
  padding: 0.18rem 0.45rem;
}

.live-preview-browser-content {
  max-height: 620px;
  overflow: auto;
  padding: 0.75rem;
  display: grid;
  gap: 0.6rem;
}

.live-preview-page {
  border-radius: 20px;
  padding: 0.78rem;
}

.live-preview-page h3 {
  margin: 0;
  font-size: 1.08rem;
}

.live-preview-page h3 span {
  font-size: 0.72rem;
  color: #64748b;
  margin-left: 0.24rem;
  font-family: 'JetBrains Mono', monospace;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.7rem;
  margin-top: 1rem;
}

.stat-card {
  border-radius: 14px;
  padding: 0.7rem;
}

.stat-card p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--muted);
}

.stat-card strong {
  display: block;
  margin-top: 0.34rem;
  font-size: 1.35rem;
  font-weight: 800;
}

.form-grid {
  display: grid;
  gap: 0.72rem;
}

label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(2, 6, 23, 0.48);
  color: #f8fafc;
  padding: 0.68rem 0.72rem;
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: #64748b;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(139, 92, 246, 0.55);
  border-color: rgba(139, 92, 246, 0.6);
}

.btn {
  border: 1px solid transparent;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(6, 182, 212, 0.95));
  color: #ffffff;
  font-weight: 700;
  padding: 0.62rem 1rem;
  cursor: pointer;
  transition: transform 0.18s ease, filter 0.18s ease;
}

.btn:hover {
  transform: translateY(-1px);
  filter: brightness(1.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(15, 23, 42, 0.66);
}

.inline-form {
  display: inline;
}

.badge,
.pill {
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 0.22rem 0.58rem;
  font-size: 0.72rem;
  display: inline-flex;
  align-items: center;
  color: #e2e8f0;
}

.pill-alt {
  border-color: rgba(16, 185, 129, 0.46);
  color: #6ee7b7;
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
}

th,
td {
  text-align: left;
  padding: 0.68rem 0.55rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  vertical-align: top;
}

th {
  color: #cbd5e1;
  font-size: 0.84rem;
}

td {
  font-size: 0.92rem;
}

.card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.35);
  padding: 0.8rem;
  margin-bottom: 0.68rem;
}

.compact-list {
  margin: 0.4rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.json-block {
  margin: 0;
  border-radius: 12px;
  background: rgba(2, 6, 23, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0.78rem;
  font-size: 0.82rem;
  max-height: 330px;
  overflow: auto;
}

.setup-shell {
  padding: 1.2rem;
}

.setup-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  align-items: start;
}

.setup-options {
  grid-column: 1 / -1;
  padding: 0.75rem;
}

.check-inline {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.38rem;
  font-weight: 500;
  color: #e2e8f0;
}

.check-inline input {
  width: auto;
}

.setup-actions {
  grid-column: 1 / -1;
}

.chart-wrap {
  min-height: 220px;
  display: grid;
  align-items: end;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.55rem;
  padding-top: 0.6rem;
}

.bar-item {
  display: grid;
  gap: 0.45rem;
  justify-items: center;
}

.bar {
  width: 100%;
  border-radius: 12px 12px 8px 8px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.95), rgba(139, 92, 246, 0.95));
  min-height: 10px;
}

.bar-item span {
  font-size: 0.78rem;
  color: #cbd5e1;
}

.plugin-grid {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 0.8rem;
}

.plugin-card {
  border-radius: 15px;
  padding: 0.75rem;
}

.plugin-card h3 {
  margin: 0.25rem 0 0.5rem;
  font-size: 1.03rem;
}

.billing-hero {
  border-radius: 16px;
  padding: 0.9rem;
  margin: 0.7rem 0;
}

.price {
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0.4rem 0 0;
}

.price span {
  font-size: 0.95rem;
  color: var(--muted);
}

.action-grid {
  display: grid;
  gap: 0.6rem;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.55rem;
  margin-top: 0.8rem;
}

.auth-wrap {
  min-height: calc(100vh - 2rem);
  display: grid;
  place-items: center;
}

.auth-panel {
  width: min(540px, 100%);
  border-radius: 30px;
  padding: 1.1rem;
}

.auth-immersive {
  align-items: center;
}

.auth-shell-plus {
  width: min(1180px, 100%);
  border-radius: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(420px, 1fr);
}

.auth-visual-plus {
  position: relative;
  padding: 1.6rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
  background:
    radial-gradient(circle at 15% 10%, rgba(139, 92, 246, 0.28), transparent 52%),
    radial-gradient(circle at 90% 88%, rgba(6, 182, 212, 0.16), transparent 46%),
    rgba(2, 6, 23, 0.84);
}

.auth-brand-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.auth-brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 0.02em;
  background: #ffffff;
  color: #020617;
  box-shadow: 0 16px 38px rgba(255, 255, 255, 0.14);
}

.auth-visual-title {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  text-transform: uppercase;
  font-style: italic;
  line-height: 0.95;
}

.auth-visual-copy {
  margin: 0;
  color: #cbd5e1;
  font-weight: 600;
  max-width: 36ch;
}

.auth-quote {
  padding: 0.9rem;
  border-radius: 20px;
}

.auth-quote p {
  margin: 0;
}

.auth-quote p + div {
  margin-top: 0.65rem;
}

.auth-telemetry {
  display: flex;
  gap: 0.45rem;
  flex-wrap: wrap;
}

.auth-telemetry span {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 0.25rem 0.56rem;
  font-size: 0.66rem;
  font-family: 'JetBrains Mono', monospace;
  color: #cbd5e1;
}

.auth-telemetry span i {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 10px rgba(16, 185, 129, 0.85);
}

.auth-form-plus {
  padding: 1.6rem;
  display: grid;
  align-content: center;
  gap: 0.85rem;
  background: rgba(2, 6, 23, 0.58);
}

.auth-mode-strip {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  border-radius: 999px;
  padding: 0.32rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(15, 23, 42, 0.72);
  width: fit-content;
}

.auth-mode {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #64748b;
  font-weight: 800;
}

.auth-mode-link {
  text-decoration: none;
  transition: color 0.2s ease;
}

.auth-mode-link:hover {
  color: #cbd5e1;
}

.auth-mode-active {
  color: #ffffff;
}

.auth-mode-divider {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: #334155;
}

.auth-form-title {
  font-size: clamp(2.1rem, 6vw, 4rem);
  line-height: 0.9;
  text-transform: uppercase;
  font-style: italic;
}

.auth-submit {
  margin-top: 0.25rem;
  min-height: 52px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.auth-switch-copy {
  margin-top: 0.9rem;
  font-size: 0.84rem;
  color: #94a3b8;
}

.auth-inline-link {
  color: #e2e8f0;
  text-decoration: underline;
  text-decoration-color: rgba(148, 163, 184, 0.8);
  text-underline-offset: 2px;
}

.auth-inline-link:hover {
  color: #ffffff;
}

.setup-matrix {
  margin-top: 0.9rem;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 0.9rem;
  align-items: start;
}

.setup-stage-panel {
  padding: 0.72rem;
  display: grid;
  gap: 0.58rem;
}

.setup-stage {
  padding: 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(2, 6, 23, 0.38);
}

.setup-stage h3 {
  margin-top: 0.35rem;
  font-size: 1rem;
  line-height: 1.1;
}

.setup-stage p {
  margin: 0.35rem 0 0;
}

.setup-stage-active {
  border-color: rgba(139, 92, 246, 0.42);
  box-shadow: 0 0 0 1px rgba(139, 92, 246, 0.18) inset;
  background:
    linear-gradient(130deg, rgba(139, 92, 246, 0.16), rgba(6, 182, 212, 0.08)),
    rgba(2, 6, 23, 0.5);
}

.setup-shell-plus {
  position: relative;
  overflow: hidden;
}

.setup-shell-plus::after {
  content: '';
  position: absolute;
  width: min(480px, 60%);
  aspect-ratio: 1;
  right: -12%;
  top: -26%;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.18), rgba(2, 6, 23, 0));
  pointer-events: none;
}

.setup-stage-progress {
  margin-top: 0.8rem;
  display: flex;
  gap: 0.35rem;
}

.setup-progress-dot {
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.35);
}

.setup-progress-dot-active {
  width: 56px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.95), rgba(6, 182, 212, 0.92));
  box-shadow: 0 0 14px rgba(139, 92, 246, 0.55);
}

.setup-matrix-plus {
  margin-top: 1rem;
}

.setup-stage-panel-plus {
  backdrop-filter: blur(22px);
}

.setup-form-plus {
  gap: 0.85rem;
}

.setup-block {
  border-radius: 18px;
  padding: 0.82rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.setup-block-head {
  margin-bottom: 0.65rem;
}

.setup-block-head h3 {
  font-size: 1.08rem;
}

.setup-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.status-ok {
  color: #6ee7b7;
}

.status-bad {
  color: #fca5a5;
}

.install-shell {
  position: relative;
  overflow: hidden;
}

.install-shell::after {
  content: '';
  position: absolute;
  inset: auto -10% -48% auto;
  width: 50%;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.18), rgba(2, 6, 23, 0));
  pointer-events: none;
}

.install-status {
  min-height: 460px;
}

.install-check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
}

.install-check {
  padding: 0.65rem 0.7rem;
}

.install-check p {
  margin: 0.25rem 0 0;
}

.install-shell-plus {
  overflow: hidden;
}

.install-stage-row {
  margin-top: 0.8rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
}

.install-stage {
  border-radius: 14px;
  padding: 0.62rem 0.64rem;
}

.install-stage h3 {
  margin-top: 0.2rem;
  font-size: 0.96rem;
}

.install-stage p {
  margin: 0.24rem 0 0;
}

.install-stage-active {
  border: 1px solid rgba(139, 92, 246, 0.44);
  background:
    linear-gradient(132deg, rgba(139, 92, 246, 0.18), rgba(6, 182, 212, 0.1)),
    rgba(2, 6, 23, 0.54);
}

.install-layout {
  display: grid;
  gap: 1rem;
  grid-template-columns: minmax(300px, 0.9fr) minmax(500px, 1.3fr);
}

.install-helper {
  margin-top: 0.9rem;
  padding: 0.72rem;
}

.install-helper p {
  margin: 0;
}

.install-helper p + p {
  margin-top: 0.28rem;
}

.install-form-plus {
  gap: 0.8rem;
}

.install-form-block {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem;
}

.install-form-head {
  margin-bottom: 0.62rem;
}

.install-form-head h3 {
  font-size: 1.02rem;
}

.flow-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.72rem;
  position: relative;
}

.flow-track::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 40%;
  height: 2px;
  background: linear-gradient(90deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.36), rgba(16, 185, 129, 0.05));
  pointer-events: none;
}

.flow-node {
  padding: 0.72rem;
  border-radius: 16px;
  position: relative;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.flow-node:hover {
  transform: translateY(-2px);
  border-color: rgba(139, 92, 246, 0.35);
}

.flow-node::after {
  content: '';
  position: absolute;
  top: 0.72rem;
  right: 0.72rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #10b981;
  box-shadow: 0 0 12px rgba(16, 185, 129, 0.75);
}

.live-browser {
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  overflow: hidden;
  background: rgba(2, 6, 23, 0.5);
}

.live-browser-bar {
  display: flex;
  align-items: center;
  gap: 0.36rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.52rem 0.65rem;
  background: rgba(15, 23, 42, 0.85);
}

.live-browser-bar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.live-browser-bar span:first-child {
  background: rgba(239, 68, 68, 0.8);
}

.live-browser-bar span:nth-child(2) {
  background: rgba(245, 158, 11, 0.8);
}

.live-browser-bar span:nth-child(3) {
  background: rgba(16, 185, 129, 0.8);
}

.live-browser-bar p {
  margin: 0 0 0 0.4rem;
  color: #94a3b8;
  font-size: 0.74rem;
}

.live-browser-content {
  padding: 0.75rem;
  max-height: 560px;
  overflow: auto;
}

.live-browser-content .card {
  margin-bottom: 0.58rem;
  animation: fade-slide 0.32s ease;
}

.live-browser-content .card:last-child {
  margin-bottom: 0;
}

.btn:disabled,
.btn[disabled] {
  opacity: 0.55;
  cursor: not-allowed;
  filter: grayscale(0.2);
  transform: none;
}

.fab {
  position: fixed;
  z-index: 120;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f8fafc;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: transform 0.18s ease, filter 0.18s ease;
}

.fab:hover {
  transform: translateY(-2px) scale(1.03);
  filter: brightness(1.07);
}

.fab-terminal {
  top: 82px;
  right: 22px;
  background: rgba(2, 6, 23, 0.88);
}

.fab-advisor {
  right: 24px;
  bottom: 24px;
  font-family: 'Outfit', sans-serif;
  font-weight: 900;
  letter-spacing: 0.03em;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.95), rgba(6, 182, 212, 0.95));
  box-shadow: 0 18px 44px rgba(139, 92, 246, 0.4);
}

.fab-advisor::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(139, 92, 246, 0.45);
  animation: fab-ping 1.6s ease-out infinite;
}

@keyframes fab-ping {
  0% {
    transform: scale(0.9);
    opacity: 0.8;
  }

  100% {
    transform: scale(1.26);
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .app-shell-auth {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    max-height: none;
  }

  .side-nav {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  }

  .setup-matrix {
    grid-template-columns: 1fr;
  }

  .auth-shell-plus {
    grid-template-columns: 1fr;
  }

  .auth-visual-plus {
    min-height: 220px;
  }

  .install-layout {
    grid-template-columns: 1fr;
  }

  .install-stage-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landing-react-header {
    border-radius: 16px;
  }

  .landing-react-input-shell {
    grid-template-columns: 1fr;
  }

  .landing-react-submit {
    width: 100%;
    min-height: 52px;
    border-radius: 16px;
  }

  .flow-track::before {
    display: none;
  }

  .workspace-react-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .workspace-react-head-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .workspace-react-select-form {
    width: 100%;
  }

  .workspace-react-grid-main,
  .workspace-react-grid-2 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .app-shell-auth,
  .app-shell-guest {
    padding: 0.65rem;
  }

  .app-shell-landing {
    padding: 0.45rem 0.52rem 0.68rem;
  }

  .topbar {
    border-radius: 18px;
    flex-wrap: wrap;
  }

  .hero {
    padding: 0.95rem;
    border-radius: 22px;
  }

  .hero-title {
    font-size: clamp(1.8rem, 13vw, 3rem);
  }

  .landing-react-shell {
    gap: 0.8rem;
    padding-bottom: 1.2rem;
  }

  .landing-react-header {
    flex-wrap: wrap;
    padding: 0.54rem 0.6rem;
    top: 0.15rem;
  }

  .landing-react-brand-mark {
    width: 38px;
    height: 38px;
  }

  .landing-react-brand-mark svg {
    width: 21px;
    height: 21px;
  }

  .landing-react-brand-text {
    font-size: 1.12rem;
  }

  .landing-react-title {
    font-size: clamp(2.2rem, 15vw, 4.4rem);
    line-height: 0.9;
  }

  .landing-react-copy {
    font-size: 0.96rem;
  }

  .landing-react-input-row {
    padding: 0 0.55rem;
  }

  .landing-react-input-icon {
    width: 40px;
    height: 40px;
  }

  .landing-react-input-row input {
    font-size: 1rem;
  }

  .landing-react-feature {
    border-radius: 24px;
  }

  .workspace-react-head {
    border-radius: 24px;
    padding: 0.82rem;
  }

  .workspace-react-title {
    font-size: clamp(1.8rem, 12vw, 3.2rem);
  }

  .workspace-react-card {
    border-radius: 22px;
    padding: 0.76rem;
  }

  .workspace-react-ghost-btn {
    width: 100%;
  }

  .workspace-react-grid-3 {
    grid-template-columns: 1fr;
  }

  .plugin-react-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .page-react-item-head {
    flex-direction: column;
  }

  .live-preview-browser-bar {
    flex-wrap: wrap;
  }

  .live-preview-browser-bar b {
    margin-left: 0;
  }

  .install-check-grid {
    grid-template-columns: 1fr;
  }

  .progress-card {
    border-radius: 20px;
    padding: 0.8rem;
  }

  .install-stage-row {
    grid-template-columns: 1fr;
  }

  .auth-shell-plus,
  .auth-panel {
    border-radius: 24px;
  }

  .auth-form-plus,
  .auth-visual-plus {
    padding: 1rem;
  }

  .fab {
    width: 50px;
    height: 50px;
  }

  .fab-terminal {
    right: 12px;
    top: 74px;
  }

  .fab-advisor {
    right: 14px;
    bottom: 16px;
  }
}
