:root {
  --background: #050914;
  --background-soft: #080e1b;
  --surface: rgba(11, 19, 34, 0.82);
  --surface-solid: #0b1322;
  --surface-hover: #111d31;

  --border: rgba(148, 163, 184, 0.13);
  --border-strong: rgba(103, 232, 249, 0.24);

  --text: #f5f8ff;
  --text-soft: #9ba9bd;
  --text-muted: #66748a;

  --primary: #38bdf8;
  --primary-bright: #67e8f9;
  --primary-dark: #0369a1;

  --purple: #8b5cf6;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #fb7185;

  --sidebar-width: 272px;
  --topbar-height: 86px;

  --radius-sm: 9px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow:
    0 24px 80px rgba(0, 0, 0, 0.38);
}

/* =========================================================
   Base
   ========================================================= */

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: var(--background);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: "Inter", sans-serif;
  background:
    radial-gradient(
      circle at 74% -20%,
      rgba(56, 189, 248, 0.11),
      transparent 35%
    ),
    radial-gradient(
      circle at 14% 100%,
      rgba(139, 92, 246, 0.08),
      transparent 35%
    ),
    var(--background);
}

body::selection {
  color: #03101a;
  background: var(--primary-bright);
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a,
input,
select,
textarea {
  outline: none;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

svg {
  display: block;
}

[hidden] {
  display: none !important;
}

/* =========================================================
   Scrollbar
   ========================================================= */

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: rgba(5, 9, 20, 0.8);
}

::-webkit-scrollbar-thumb {
  border: 2px solid rgba(5, 9, 20, 0.8);
  border-radius: 999px;
  background: rgba(100, 116, 139, 0.55);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(103, 232, 249, 0.45);
}

/* =========================================================
   Application Layout
   ========================================================= */

.app-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 50;
  width: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  padding: 20px 14px;
  border-right: 1px solid var(--border);
  background:
    linear-gradient(
      180deg,
      rgba(13, 23, 40, 0.97),
      rgba(7, 13, 25, 0.98)
    );
  backdrop-filter: blur(24px);
}

.main-content {
  min-width: 0;
  flex: 1;
  margin-left: var(--sidebar-width);
}

/* =========================================================
   Sidebar Brand
   ========================================================= */

.brand {
  min-height: 54px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 10px 14px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 13px;
  color: var(--primary-bright);
  background:
    linear-gradient(
      145deg,
      rgba(56, 189, 248, 0.18),
      rgba(139, 92, 246, 0.13)
    );
  box-shadow:
    0 0 30px rgba(56, 189, 248, 0.1);
}

.brand-mark svg {
  width: 22px;
  height: 22px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.brand-copy span {
  margin-top: 2px;
  color: var(--text-muted);
  font-size: 11px;
}

/* =========================================================
   Server Selector
   ========================================================= */

.server-selector {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 4px 0 18px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(17, 29, 49, 0.66);
  transition:
    border-color 160ms ease,
    background 160ms ease,
    transform 160ms ease;
}

.server-selector:hover {
  border-color: var(--border-strong);
  background: var(--surface-hover);
  transform: translateY(-1px);
}

.server-selector-icon {
  width: 36px;
  height: 36px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.server-selector-icon svg {
  width: 18px;
  height: 18px;
}

.server-selector-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.server-selector-copy strong {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.server-selector-copy span {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 5px;
  color: var(--text-muted);
  font-size: 10px;
  text-transform: capitalize;
}

.server-selector-chevron {
  width: 15px;
  color: var(--text-muted);
}

/* =========================================================
   Sidebar Navigation
   ========================================================= */

.sidebar-nav {
  overflow-y: auto;
  flex: 1;
  padding-right: 3px;
}

.nav-section {
  margin-bottom: 20px;
}

.nav-heading {
  display: block;
  margin: 0 10px 8px;
  color: #536277;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.nav-item {
  position: relative;
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 3px;
  padding: 0 11px;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 500;
  transition:
    color 150ms ease,
    background 150ms ease,
    border-color 150ms ease;
}

.nav-item svg {
  width: 17px;
  height: 17px;
}

.nav-item:hover {
  color: #dbeafe;
  background: rgba(30, 48, 73, 0.52);
}

.nav-item.active {
  color: #e7f8ff;
  border-color: rgba(56, 189, 248, 0.14);
  background:
    linear-gradient(
      90deg,
      rgba(56, 189, 248, 0.16),
      rgba(56, 189, 248, 0.05)
    );
}

.nav-item.active::before {
  position: absolute;
  top: 9px;
  bottom: 9px;
  left: -1px;
  width: 2px;
  border-radius: 4px;
  background: var(--primary-bright);
  box-shadow:
    0 0 14px rgba(103, 232, 249, 0.8);
  content: "";
}

.nav-item.disabled {
  cursor: default;
  opacity: 0.55;
}

.nav-badge {
  margin-left: auto;
  padding: 3px 6px;
  border: 1px solid rgba(139, 92, 246, 0.2);
  border-radius: 5px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.1);
  font-size: 8px;
  text-transform: uppercase;
}

/* =========================================================
   Sidebar Account
   ========================================================= */

.sidebar-bottom {
  padding-top: 10px;
  border-top: 1px solid var(--border);
}

.account-card {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(15, 25, 42, 0.72);
}

.account-avatar {
  width: 34px;
  height: 34px;
  display: grid;
  overflow: hidden;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: rgba(56, 189, 248, 0.1);
}

.account-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-avatar svg {
  width: 17px;
  color: var(--primary-bright);
}

.account-copy {
  min-width: 0;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.account-copy strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.account-copy span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
}

/* =========================================================
   Topbar
   ========================================================= */

.topbar {
  position: sticky;
  top: 0;
  z-index: 35;
  min-height: var(--topbar-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 9, 20, 0.83);
  backdrop-filter: blur(22px);
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar h1 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 20px;
  letter-spacing: -0.025em;
}

.topbar p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.connection-pill {
  min-height: 36px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text-soft);
  background: rgba(13, 22, 38, 0.8);
  font-size: 11px;
}

.status-dot {
  width: 7px;
  height: 7px;
  display: inline-block;
  flex: 0 0 auto;
  border-radius: 50%;
}

.status-dot.online {
  background: var(--success);
  box-shadow:
    0 0 10px rgba(52, 211, 153, 0.7);
}

.status-dot.offline {
  background: #64748b;
}

.mobile-menu-button {
  width: 38px;
  height: 38px;
  display: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--text);
  background: var(--surface);
}

/* =========================================================
   Page Content
   ========================================================= */

.page-content {
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  padding: 26px 28px 60px;
}

/* =========================================================
   Buttons
   ========================================================= */

.button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 16px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 650;
  transition:
    transform 150ms ease,
    border-color 150ms ease,
    background 150ms ease,
    box-shadow 150ms ease,
    opacity 150ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  transform: none;
}

.button svg {
  width: 16px;
  height: 16px;
}

.button.compact {
  min-height: 36px;
  padding: 0 12px;
  font-size: 11px;
}

.button-primary {
  color: #03101a;
  background:
    linear-gradient(
      135deg,
      #67e8f9,
      #38bdf8
    );
  box-shadow:
    0 12px 30px rgba(56, 189, 248, 0.16);
}

.button-primary:hover {
  box-shadow:
    0 16px 38px rgba(56, 189, 248, 0.25);
}

.button-secondary {
  color: #dbeafe;
  border-color: var(--border);
  background: rgba(15, 25, 42, 0.78);
}

.button-secondary:hover {
  border-color: var(--border-strong);
  background: rgba(20, 35, 58, 0.9);
}

.button-danger {
  color: #fecdd3;
  border-color: rgba(251, 113, 133, 0.24);
  background: rgba(251, 113, 133, 0.09);
}

.button-danger:hover {
  background: rgba(251, 113, 133, 0.15);
}

.icon-button {
  width: 34px;
  height: 34px;
  display: grid;
  padding: 0;
  border: 0;
  place-items: center;
  border-radius: 9px;
  color: var(--text-muted);
  background: transparent;
}

.icon-button:hover {
  color: var(--text);
  background: rgba(30, 48, 73, 0.62);
}

.icon-button.bordered {
  border: 1px solid var(--border);
  background: rgba(13, 22, 38, 0.78);
}

.icon-button svg {
  width: 16px;
  height: 16px;
}

/* =========================================================
   Inputs
   ========================================================= */

.select-input,
.number-input,
.text-input {
  min-height: 36px;
  padding: 0 32px 0 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: #dce7f5;
  background-color: rgba(13, 22, 38, 0.92);
  font-size: 10px;
}

.text-input {
  padding-right: 11px;
}

.select-input:focus,
.number-input:focus,
.text-input:focus {
  border-color: rgba(103, 232, 249, 0.42);
  box-shadow:
    0 0 0 3px rgba(56, 189, 248, 0.07);
}

.number-input {
  width: 100px;
  padding-right: 10px;
}

.search-input {
  min-width: min(420px, 38vw);
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(13, 22, 38, 0.8);
}

.search-input:focus-within {
  border-color: rgba(103, 232, 249, 0.42);
}

.search-input svg {
  width: 15px;
  color: var(--text-muted);
}

.search-input input {
  width: 100%;
  border: 0;
  color: var(--text);
  background: transparent;
  font-size: 11px;
}

.search-input input::placeholder {
  color: #536277;
}

/* =========================================================
   Dashboard Hero
   ========================================================= */

.hero-panel {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  align-items: center;
  padding: 38px 42px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(
      120deg,
      rgba(15, 26, 46, 0.94),
      rgba(9, 16, 31, 0.86)
    );
  box-shadow: var(--shadow);
}

.hero-panel::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(
      circle at 75% 50%,
      rgba(56, 189, 248, 0.16),
      transparent 32%
    );
  content: "";
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
}

.eyebrow {
  min-height: 27px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.07);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel h2 {
  max-width: 660px;
  margin: 18px 0 12px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.03;
  letter-spacing: -0.045em;
}

.hero-panel p {
  max-width: 620px;
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: grid;
  place-items: center;
}

.shield-orbit {
  position: relative;
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
}

.orbit-ring {
  position: absolute;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 50%;
}

.ring-one {
  inset: 0;
  animation: orbit 16s linear infinite;
}

.ring-two {
  inset: 28px;
  border-color: rgba(139, 92, 246, 0.25);
  border-style: dashed;
  animation: orbit-reverse 12s linear infinite;
}

.hero-shield {
  width: 92px;
  height: 92px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.3);
  border-radius: 30px;
  color: var(--primary-bright);
  background:
    linear-gradient(
      145deg,
      rgba(56, 189, 248, 0.2),
      rgba(139, 92, 246, 0.13)
    );
  box-shadow:
    0 0 70px rgba(56, 189, 248, 0.18);
  transform: rotate(45deg);
}

.hero-shield svg {
  width: 40px;
  height: 40px;
  transform: rotate(-45deg);
}

@keyframes orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes orbit-reverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =========================================================
   Statistics
   ========================================================= */

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 18px;
}

.stat-card {
  min-height: 96px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.stat-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.stat-icon {
  width: 42px;
  height: 42px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.stat-icon.success {
  color: #6ee7b7;
  background: rgba(52, 211, 153, 0.1);
}

.stat-icon.cyan {
  color: #a5f3fc;
  background: rgba(34, 211, 238, 0.1);
}

.stat-icon.purple {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.1);
}

.stat-icon.warning {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.1);
}

.stat-icon.danger {
  color: #fda4af;
  background: rgba(251, 113, 133, 0.1);
}

.stat-icon svg {
  width: 20px;
}

.stat-card span {
  display: block;
  color: var(--text-muted);
  font-size: 10px;
}

.stat-card strong {
  display: block;
  margin-top: 6px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

/* =========================================================
   Sections
   ========================================================= */

.section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 32px 0 14px;
}

.section-heading h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.section-heading p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 11px;
}

/* =========================================================
   Server Cards
   ========================================================= */

.server-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fill, minmax(310px, 1fr));
  gap: 14px;
}

.server-card {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.server-card:hover {
  border-color: var(--border-strong);
  background: rgba(14, 25, 43, 0.95);
  transform: translateY(-2px);
}

.server-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.server-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.server-icon svg {
  width: 19px;
}

.server-status {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-muted);
  font-size: 10px;
  text-transform: capitalize;
}

.server-card h3 {
  margin: 18px 0 7px;
  font-family: "Manrope", sans-serif;
  font-size: 16px;
}

.server-card > p {
  margin: 0;
  color: var(--text-muted);
  font-size: 11px;
}

.server-card-footer {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 16px;
  align-items: end;
  margin-top: 22px;
  padding-top: 15px;
  border-top: 1px solid var(--border);
}

.server-card-footer span {
  display: block;
  color: var(--text-muted);
  font-size: 9px;
}

.server-card-footer strong {
  display: block;
  margin-top: 5px;
  font-size: 11px;
  text-transform: capitalize;
}

.server-open {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.08);
}

.server-open svg {
  width: 15px;
}

/* =========================================================
   Empty State
   ========================================================= */

.empty-state {
  min-height: 290px;
  display: grid;
  align-content: center;
  padding: 30px;
  border: 1px dashed rgba(148, 163, 184, 0.2);
  border-radius: var(--radius-lg);
  place-items: center;
  text-align: center;
  background: rgba(10, 17, 30, 0.5);
}

.empty-state-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.08);
}

.empty-state-icon svg {
  width: 28px;
}

.empty-state h3 {
  margin: 17px 0 7px;
  font-family: "Manrope", sans-serif;
}

.empty-state p {
  max-width: 440px;
  margin: 0 0 20px;
  color: var(--text-muted);
  font-size: 12px;
  line-height: 1.6;
}

/* =========================================================
   Settings Page
   ========================================================= */

.settings-page {
  max-width: 1900px;
}

.settings-toolbar {
  position: sticky;
  top: calc(var(--topbar-height) + 12px);
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 14, 27, 0.9);
  backdrop-filter: blur(20px);
}

.settings-toolbar-left,
.settings-toolbar-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.settings-overview {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}

.settings-overview-card {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.settings-overview-card span {
  display: block;
  color: var(--text-muted);
  font-size: 9px;
}

.settings-overview-card strong {
  display: block;
  margin-top: 5px;
  font-size: 11px;
}

.toggle-overview {
  padding-right: 19px;
}

.settings-status {
  margin-bottom: 16px;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 11px;
}

.settings-status.info {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.07);
}

.settings-status.success {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.07);
}

.settings-status.warning {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(251, 191, 36, 0.07);
}

.settings-status.error {
  color: #fecdd3;
  border-color: rgba(251, 113, 133, 0.22);
  background: rgba(251, 113, 133, 0.07);
}

/* =========================================================
   Protection Categories
   ========================================================= */

.protection-category-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: start;
}

.protection-category {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(8, 14, 27, 0.78);
}

.category-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 17px;
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(
      100deg,
      rgba(17, 29, 49, 0.72),
      rgba(10, 17, 31, 0.58)
    );
}

.category-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.09);
}

.category-icon svg {
  width: 18px;
}

.category-header h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
}

.category-header p {
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.5;
}

.category-count {
  padding: 5px 7px;
  border-radius: 6px;
  color: var(--text-muted);
  background: rgba(30, 48, 73, 0.6);
  font-size: 8px;
}

.protection-list {
  padding: 4px 0;
}

.protection-empty {
  padding: 18px;
  color: var(--text-muted);
  font-size: 10px;
  text-align: center;
}

/* =========================================================
   Protection Rows
   ========================================================= */

.protection-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(148, 163, 184, 0.07);
  transition: background 140ms ease;
}

.protection-row:last-child {
  border-bottom: 0;
}

.protection-row:hover {
  background: rgba(17, 29, 49, 0.35);
}

.protection-title-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.protection-main h3 {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
}

.protection-main p {
  display: none;
  max-width: 420px;
  margin: 5px 0 0;
  color: var(--text-muted);
  font-size: 8px;
  line-height: 1.45;
}

.experimental-badge {
  padding: 3px 5px;
  border: 1px solid rgba(139, 92, 246, 0.25);
  border-radius: 5px;
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.08);
  font-size: 7px;
}

.protection-controls {
  display: flex;
  align-items: center;
  gap: 7px;
}

.action-select {
  width: 74px;
}

.sensitivity-select {
  display: none;
  width: 96px;
}

/* =========================================================
   Switch
   ========================================================= */

.switch {
  position: relative;
  width: 35px;
  height: 20px;
  display: inline-flex;
  flex: 0 0 auto;
}

.switch input {
  position: absolute;
  opacity: 0;
}

.switch-track {
  position: absolute;
  inset: 0;
  cursor: pointer;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: #172235;
  transition:
    background 150ms ease,
    border-color 150ms ease;
}

.switch-track::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #718096;
  transition:
    transform 150ms ease,
    background 150ms ease;
  content: "";
}

.switch input:checked + .switch-track {
  border-color: rgba(103, 232, 249, 0.48);
  background: rgba(56, 189, 248, 0.28);
}

.switch input:checked + .switch-track::after {
  background: #e6fbff;
  box-shadow:
    0 0 10px rgba(103, 232, 249, 0.8);
  transform: translateX(15px);
}

/* =========================================================
   Advanced Protection Settings
   ========================================================= */

.advanced-settings {
  display: none;
  grid-column: 1 / -1;
  margin-top: 4px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(5, 10, 20, 0.7);
}

.protection-row.advanced-open {
  background: rgba(17, 29, 49, 0.35);
}

.protection-row.advanced-open .advanced-settings {
  display: block;
}

.protection-row.advanced-open .protection-main p {
  display: block;
}

.protection-row.advanced-open .sensitivity-select {
  display: block;
}

.advanced-settings-grid,
.allowlist-grid {
  display: grid;
  grid-template-columns:
    repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.allowlist-grid {
  margin-top: 12px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field-group > span {
  color: var(--text-soft);
  font-size: 9px;
  font-weight: 600;
}

.field-group input,
.field-group textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: rgba(13, 22, 38, 0.9);
  font-size: 10px;
}

.field-group input {
  min-height: 36px;
  padding: 0 10px;
}

.field-group textarea {
  min-height: 88px;
  padding: 10px;
  resize: vertical;
  line-height: 1.5;
}

.field-group input:focus,
.field-group textarea:focus {
  border-color: rgba(103, 232, 249, 0.42);
}

.input-with-suffix {
  position: relative;
}

.input-with-suffix input {
  padding-right: 50px;
}

.input-with-suffix > span {
  position: absolute;
  top: 50%;
  right: 10px;
  color: var(--text-muted);
  font-size: 9px;
  transform: translateY(-50%);
}

/* =========================================================
   Tables
   ========================================================= */

.table-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.table-wrapper {
  overflow-x: auto;
}

.data-table {
  width: 100%;
  border-collapse: collapse;
}

.data-table th {
  padding: 13px 15px;
  color: var(--text-muted);
  background: rgba(17, 29, 49, 0.62);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-align: left;
  text-transform: uppercase;
}

.data-table td {
  padding: 14px 15px;
  border-top: 1px solid rgba(148, 163, 184, 0.07);
  color: var(--text-soft);
  font-size: 10px;
}

.data-table tbody tr {
  transition: background 140ms ease;
}

.data-table tbody tr:hover {
  background: rgba(17, 29, 49, 0.34);
}

.table-player {
  display: flex;
  align-items: center;
  gap: 10px;
}

.table-player-avatar {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.08);
}

.table-player-copy {
  display: flex;
  flex-direction: column;
}

.table-player-copy strong {
  color: var(--text);
  font-size: 10px;
}

.table-player-copy span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 8px;
}

/* =========================================================
   Badges
   ========================================================= */

.badge {
  min-height: 23px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 8px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text-soft);
  background: rgba(30, 48, 73, 0.45);
  font-size: 8px;
  font-weight: 600;
}

.badge.success {
  color: #a7f3d0;
  border-color: rgba(52, 211, 153, 0.22);
  background: rgba(52, 211, 153, 0.08);
}

.badge.warning {
  color: #fde68a;
  border-color: rgba(251, 191, 36, 0.22);
  background: rgba(251, 191, 36, 0.08);
}

.badge.danger {
  color: #fecdd3;
  border-color: rgba(251, 113, 133, 0.22);
  background: rgba(251, 113, 133, 0.08);
}

.badge.info {
  color: #bae6fd;
  border-color: rgba(56, 189, 248, 0.22);
  background: rgba(56, 189, 248, 0.08);
}

.risk-score {
  min-width: 38px;
  display: inline-flex;
  justify-content: center;
  padding: 5px 7px;
  border-radius: 7px;
  font-size: 9px;
  font-weight: 700;
}

.risk-score.low {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.09);
}

.risk-score.medium {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.09);
}

.risk-score.high {
  color: #fecdd3;
  background: rgba(251, 113, 133, 0.09);
}

/* =========================================================
   Landing Page
   ========================================================= */

.landing-shell {
  min-height: 100vh;
  overflow: hidden;
}

.landing-header {
  position: relative;
  z-index: 50;
  width: min(1440px, calc(100% - 48px));
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 0 auto;
  border-bottom: 1px solid var(--border);
}

.landing-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.landing-brand-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.27);
  border-radius: 13px;
  color: var(--primary-bright);
  background:
    linear-gradient(
      145deg,
      rgba(56, 189, 248, 0.18),
      rgba(139, 92, 246, 0.12)
    );
  box-shadow:
    0 0 30px rgba(56, 189, 248, 0.11);
}

.landing-brand-icon svg {
  width: 22px;
  height: 22px;
}

.landing-brand > div:last-child {
  display: flex;
  flex-direction: column;
}

.landing-brand strong {
  font-family: "Manrope", sans-serif;
  font-size: 16px;
  letter-spacing: -0.025em;
}

.landing-brand span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 9px;
}

.landing-navigation {
  display: flex;
  align-items: center;
  gap: 32px;
}

.landing-navigation a {
  color: var(--text-soft);
  font-size: 11px;
  font-weight: 500;
  transition: color 150ms ease;
}

.landing-navigation a:hover {
  color: var(--primary-bright);
}

.landing-header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

/* =========================================================
   Landing Hero
   ========================================================= */

.landing-hero {
  position: relative;
  width: min(1440px, calc(100% - 48px));
  min-height: 760px;
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(600px, 1.1fr);
  align-items: center;
  gap: 40px;
  margin: 0 auto;
  padding: 86px 0 100px;
}

.landing-hero-grid {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.22;
  background-image:
    linear-gradient(
      rgba(103, 232, 249, 0.05) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(103, 232, 249, 0.05) 1px,
      transparent 1px
    );
  background-size: 64px 64px;
  mask-image:
    linear-gradient(
      to bottom,
      transparent,
      black 18%,
      black 72%,
      transparent
    );
}

.landing-hero-glow {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.landing-glow-one {
  top: 120px;
  left: -280px;
  width: 620px;
  height: 620px;
  background:
    radial-gradient(
      circle,
      rgba(56, 189, 248, 0.14),
      transparent 70%
    );
}

.landing-glow-two {
  right: -240px;
  bottom: 10px;
  width: 700px;
  height: 700px;
  background:
    radial-gradient(
      circle,
      rgba(139, 92, 246, 0.12),
      transparent 70%
    );
}

.landing-hero-content {
  position: relative;
  z-index: 5;
}

.landing-badge,
.landing-section-badge {
  width: fit-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 11px;
  border: 1px solid rgba(103, 232, 249, 0.2);
  border-radius: 999px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.07);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.landing-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--success);
  box-shadow:
    0 0 12px rgba(52, 211, 153, 0.9);
}

.landing-hero h1 {
  max-width: 730px;
  margin: 23px 0 20px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.062em;
}

.landing-hero h1 span {
  color: transparent;
  background:
    linear-gradient(
      100deg,
      #67e8f9,
      #38bdf8 45%,
      #a78bfa
    );
  background-clip: text;
  -webkit-background-clip: text;
}

.landing-hero-content > p {
  max-width: 650px;
  margin: 0;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.8;
}

.landing-hero-actions {
  display: flex;
  gap: 11px;
  margin-top: 31px;
}

.landing-main-button {
  min-height: 48px;
  padding: 0 21px;
}

.landing-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.landing-trust-row div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
}

.landing-trust-row svg {
  width: 15px;
  color: var(--success);
}

/* =========================================================
   Landing Preview Window
   ========================================================= */

.landing-dashboard-preview {
  position: relative;
  z-index: 5;
  perspective: 1400px;
}

.preview-window {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 19px;
  background: #07101d;
  box-shadow:
    0 50px 120px rgba(0, 0, 0, 0.45),
    0 0 80px rgba(56, 189, 248, 0.08);
  transform:
    rotateY(-5deg)
    rotateX(2deg);
}

.preview-window-header {
  min-height: 45px;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  align-items: center;
  padding: 0 15px;
  border-bottom: 1px solid var(--border);
  background: rgba(11, 19, 34, 0.95);
}

.preview-dots {
  display: flex;
  gap: 6px;
}

.preview-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #334155;
}

.preview-dots span:first-child {
  background: #fb7185;
}

.preview-dots span:nth-child(2) {
  background: #fbbf24;
}

.preview-dots span:nth-child(3) {
  background: #34d399;
}

.preview-address {
  overflow: hidden;
  padding: 7px 14px;
  border: 1px solid var(--border);
  border-radius: 7px;
  color: var(--text-muted);
  background: rgba(5, 9, 20, 0.8);
  font-size: 8px;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.preview-secure {
  display: flex;
  justify-content: flex-end;
}

.preview-secure svg {
  width: 13px;
  color: var(--success);
}

.preview-layout {
  min-height: 440px;
  display: grid;
  grid-template-columns: 54px 1fr;
}

.preview-sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
  padding: 15px 0;
  border-right: 1px solid var(--border);
  background: #08111f;
}

.preview-logo {
  width: 31px;
  height: 31px;
  display: grid;
  margin-bottom: 10px;
  place-items: center;
  border-radius: 9px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.preview-logo svg {
  width: 15px;
}

.preview-sidebar > span {
  width: 23px;
  height: 4px;
  border-radius: 999px;
  background: #233149;
}

.preview-sidebar > span.active {
  background: var(--primary-bright);
  box-shadow:
    0 0 12px rgba(103, 232, 249, 0.65);
}

.preview-content {
  padding: 17px;
}

.preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-topbar > div:first-child {
  display: flex;
  flex-direction: column;
}

.preview-topbar small {
  color: var(--text-muted);
  font-size: 7px;
}

.preview-topbar strong {
  margin-top: 4px;
  font-size: 12px;
}

.preview-online {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 9px;
  border: 1px solid rgba(52, 211, 153, 0.16);
  border-radius: 7px;
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.06);
  font-size: 7px;
}

.preview-online span {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--success);
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 17px;
}

.preview-stats article {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(12, 21, 37, 0.88);
}

.preview-stat-icon {
  width: 28px;
  height: 28px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 8px;
}

.preview-stat-icon svg {
  width: 13px;
}

.preview-stat-icon.cyan {
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.preview-stat-icon.purple {
  color: #c4b5fd;
  background: rgba(139, 92, 246, 0.1);
}

.preview-stat-icon.green {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.1);
}

.preview-stats article > div:last-child {
  display: flex;
  flex-direction: column;
}

.preview-stats span {
  color: var(--text-muted);
  font-size: 6px;
}

.preview-stats strong {
  margin-top: 3px;
  font-size: 12px;
}

.preview-bottom-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 9px;
  margin-top: 9px;
}

.preview-chart-card,
.preview-detection-card {
  min-height: 270px;
  padding: 13px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: rgba(12, 21, 37, 0.88);
}

.preview-card-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.preview-card-heading > div {
  display: flex;
  flex-direction: column;
}

.preview-card-heading span {
  color: var(--text-muted);
  font-size: 6px;
}

.preview-card-heading strong {
  margin-top: 3px;
  font-size: 9px;
}

.preview-period {
  padding: 4px 6px;
  border-radius: 5px;
  color: var(--primary-bright) !important;
  background: rgba(56, 189, 248, 0.08);
}

.preview-chart {
  height: 190px;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-top: 18px;
  padding-top: 20px;
  border-bottom: 1px solid var(--border);
  background:
    repeating-linear-gradient(
      to bottom,
      rgba(148, 163, 184, 0.05),
      rgba(148, 163, 184, 0.05) 1px,
      transparent 1px,
      transparent 38px
    );
}

.preview-chart span {
  min-height: 10px;
  flex: 1;
  border-radius: 4px 4px 0 0;
  background:
    linear-gradient(
      to top,
      rgba(56, 189, 248, 0.2),
      rgba(103, 232, 249, 0.9)
    );
  box-shadow:
    0 0 12px rgba(56, 189, 248, 0.12);
}

.preview-detection {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 8px;
  align-items: center;
  margin-top: 11px;
  padding: 9px;
  border: 1px solid rgba(148, 163, 184, 0.08);
  border-radius: 8px;
  background: rgba(6, 13, 25, 0.7);
}

.preview-detection-icon {
  width: 25px;
  height: 25px;
  display: grid;
  place-items: center;
  border-radius: 7px;
}

.preview-detection-icon svg {
  width: 12px;
}

.preview-detection-icon.danger {
  color: #fda4af;
  background: rgba(251, 113, 133, 0.1);
}

.preview-detection-icon.warning {
  color: #fde68a;
  background: rgba(251, 191, 36, 0.1);
}

.preview-detection-icon.cyan {
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.preview-detection > div:nth-child(2) {
  display: flex;
  flex-direction: column;
}

.preview-detection strong {
  font-size: 7px;
}

.preview-detection span {
  margin-top: 3px;
  color: var(--text-muted);
  font-size: 6px;
}

.preview-detection small {
  padding: 4px 6px;
  border-radius: 5px;
  color: var(--text-soft);
  background: rgba(30, 48, 73, 0.6);
  font-size: 6px;
}

.preview-floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 13px;
  border: 1px solid var(--border-strong);
  border-radius: 12px;
  background: rgba(9, 17, 31, 0.94);
  box-shadow:
    0 20px 45px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
}

.preview-floating-left {
  bottom: 36px;
  left: -40px;
}

.preview-floating-right {
  top: 75px;
  right: -38px;
}

.floating-icon {
  width: 31px;
  height: 31px;
  display: grid;
  place-items: center;
  border-radius: 9px;
}

.floating-icon svg {
  width: 15px;
}

.floating-icon.green {
  color: #a7f3d0;
  background: rgba(52, 211, 153, 0.1);
}

.floating-icon.cyan {
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.1);
}

.preview-floating-card > div:last-child {
  display: flex;
  flex-direction: column;
}

.preview-floating-card span {
  color: var(--text-muted);
  font-size: 7px;
}

.preview-floating-card strong {
  margin-top: 4px;
  font-size: 9px;
}

/* =========================================================
   Landing Statistics
   ========================================================= */

.landing-statistics {
  width: min(1200px, calc(100% - 48px));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 17px;
  background: rgba(10, 18, 32, 0.72);
}

.landing-statistics article {
  min-height: 110px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-right: 1px solid var(--border);
}

.landing-statistics article:last-child {
  border-right: 0;
}

.landing-statistics strong {
  color: var(--primary-bright);
  font-family: "Manrope", sans-serif;
  font-size: 23px;
}

.landing-statistics span {
  margin-top: 7px;
  color: var(--text-muted);
  font-size: 9px;
}

/* =========================================================
   Landing Sections
   ========================================================= */

.landing-section {
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  padding: 125px 0;
}

.landing-section-heading {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.landing-section-heading .landing-section-badge {
  margin: 0 auto;
}

.landing-section-heading h2,
.landing-platform-card h2,
.landing-call-to-action h2 {
  margin: 18px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.landing-section-heading p,
.landing-platform-card p,
.landing-call-to-action p {
  margin: 0;
  color: var(--text-soft);
  font-size: 13px;
  line-height: 1.75;
}

/* =========================================================
   Landing Features
   ========================================================= */

.landing-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}

.landing-feature-card {
  position: relative;
  min-height: 350px;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background:
    linear-gradient(
      145deg,
      rgba(14, 24, 42, 0.84),
      rgba(8, 14, 27, 0.78)
    );
  transition:
    transform 180ms ease,
    border-color 180ms ease;
}

.landing-feature-card:hover {
  border-color: var(--border-strong);
  transform: translateY(-4px);
}

.landing-feature-card.featured {
  border-color: rgba(56, 189, 248, 0.28);
  box-shadow:
    0 30px 80px rgba(56, 189, 248, 0.06);
}

.landing-feature-label {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 5px 8px;
  border: 1px solid rgba(103, 232, 249, 0.18);
  border-radius: 6px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.07);
  font-size: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.landing-feature-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(103, 232, 249, 0.15);
  border-radius: 14px;
  color: var(--primary-bright);
  background: rgba(56, 189, 248, 0.08);
}

.landing-feature-icon svg {
  width: 22px;
}

.landing-feature-card h3 {
  margin: 23px 0 11px;
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.landing-feature-card > p {
  margin: 0;
  color: var(--text-soft);
  font-size: 11px;
  line-height: 1.75;
}

.landing-feature-card ul {
  display: grid;
  gap: 10px;
  margin: 23px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid var(--border);
  list-style: none;
}

.landing-feature-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-soft);
  font-size: 10px;
}

.landing-feature-card li svg {
  width: 13px;
  color: var(--success);
}

/* =========================================================
   Landing Protection
   ========================================================= */

.landing-protection-section {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100% - 1280px) / 2));
  padding-left: max(24px, calc((100% - 1280px) / 2));
  background:
    linear-gradient(
      to bottom,
      transparent,
      rgba(12, 22, 39, 0.6),
      transparent
    );
}

.landing-protection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}

.landing-protection-grid article {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  padding: 21px;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: rgba(9, 17, 31, 0.78);
  transition:
    transform 160ms ease,
    border-color 160ms ease;
}

.landing-protection-grid article:hover {
  border-color: var(--border-strong);
  transform: translateY(-3px);
}

.landing-protection-grid article > svg {
  width: 22px;
  color: var(--primary-bright);
}

.landing-protection-grid strong {
  margin-top: 22px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
}

.landing-protection-grid span {
  margin-top: 8px;
  color: var(--text-muted);
  font-size: 9px;
  line-height: 1.6;
}

/* =========================================================
   Landing Platform
   ========================================================= */

.landing-platform-card {
  min-height: 500px;
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  align-items: center;
  gap: 70px;
  padding: 60px;
  border: 1px solid var(--border);
  border-radius: 23px;
  background:
    radial-gradient(
      circle at 85% 50%,
      rgba(56, 189, 248, 0.12),
      transparent 35%
    ),
    linear-gradient(
      140deg,
      rgba(14, 24, 42, 0.92),
      rgba(8, 14, 27, 0.88)
    );
}

.landing-platform-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.landing-platform-list div {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--text-soft);
  font-size: 10px;
}

.landing-platform-list svg {
  width: 15px;
  color: var(--success);
}

.landing-cloud-diagram {
  position: relative;
  min-height: 350px;
}

.diagram-node {
  position: absolute;
  width: 145px;
  height: 110px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 18px;
  color: var(--primary-bright);
  background: rgba(9, 17, 31, 0.9);
  box-shadow:
    0 25px 60px rgba(0, 0, 0, 0.28);
}

.diagram-node svg {
  width: 29px;
}

.diagram-node span {
  color: var(--text-soft);
  font-size: 9px;
}

.diagram-server {
  top: 20px;
  left: 0;
}

.diagram-cloud {
  top: 120px;
  left: 50%;
  color: #c4b5fd;
  border-color: rgba(139, 92, 246, 0.36);
  transform: translateX(-50%);
}

.diagram-dashboard {
  right: 0;
  bottom: 15px;
}

.diagram-line {
  position: absolute;
  height: 1px;
  background:
    linear-gradient(
      90deg,
      transparent,
      rgba(103, 232, 249, 0.75),
      transparent
    );
  transform-origin: left center;
}

.line-one {
  top: 103px;
  left: 120px;
  width: 155px;
  transform: rotate(27deg);
}

.line-two {
  right: 100px;
  bottom: 113px;
  width: 155px;
  transform: rotate(27deg);
}

/* =========================================================
   Landing CTA
   ========================================================= */

.landing-call-to-action {
  position: relative;
  width: min(1280px, calc(100% - 48px));
  min-height: 330px;
  display: flex;
  overflow: hidden;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin: 0 auto 110px;
  padding: 55px 60px;
  border: 1px solid var(--border-strong);
  border-radius: 22px;
  background:
    linear-gradient(
      125deg,
      rgba(13, 24, 43, 0.96),
      rgba(8, 15, 29, 0.9)
    );
}

.landing-call-glow {
  position: absolute;
  top: -220px;
  right: -100px;
  width: 550px;
  height: 550px;
  pointer-events: none;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(56, 189, 248, 0.18),
      transparent 70%
    );
}

.landing-call-to-action > div:not(.landing-call-glow) {
  position: relative;
  z-index: 2;
}

.landing-call-to-action > div:first-of-type {
  max-width: 700px;
}

.landing-call-actions {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  gap: 10px;
}

/* =========================================================
   Landing Footer
   ========================================================= */

.landing-footer {
  width: min(1440px, calc(100% - 48px));
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 0 auto;
  border-top: 1px solid var(--border);
}

.landing-footer p {
  color: var(--text-muted);
  font-size: 9px;
}

.landing-footer > div:last-child {
  display: flex;
  gap: 20px;
}

.landing-footer > div:last-child a {
  color: var(--text-muted);
  font-size: 9px;
}

.landing-footer > div:last-child a:hover {
  color: var(--primary-bright);
}

.footer-brand .landing-brand-icon {
  width: 35px;
  height: 35px;
}

.footer-brand .landing-brand-icon svg {
  width: 18px;
}

/* =========================================================
   Responsive
   ========================================================= */

@media (min-width: 1500px) {
  .protection-main p {
    display: block;
  }
}

@media (max-width: 1350px) {
  .protection-category-grid {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }

  .statistics-grid,
  .settings-overview {
    grid-template-columns:
      repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1150px) {
  .landing-navigation {
    display: none;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    padding-top: 70px;
  }

  .landing-hero-content {
    max-width: 850px;
    justify-self: center;
    text-align: center;
  }

  .landing-badge {
    margin: 0 auto;
  }

  .landing-hero-content > p {
    margin-right: auto;
    margin-left: auto;
  }

  .landing-hero-actions,
  .landing-trust-row {
    justify-content: center;
  }

  .landing-dashboard-preview {
    width: min(820px, 100%);
    margin: 30px auto 0;
  }

  .landing-feature-grid {
    grid-template-columns: 1fr;
  }

  .landing-feature-card {
    min-height: 0;
  }

  .landing-protection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-platform-card {
    grid-template-columns: 1fr;
  }

  .landing-cloud-diagram {
    width: min(560px, 100%);
    margin: 0 auto;
  }
}

@media (max-width: 980px) {
  .sidebar {
    transform: translateX(-100%);
    transition: transform 180ms ease;
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .mobile-menu-button {
    display: grid;
    place-items: center;
  }

  .topbar {
    padding: 14px 18px;
  }

  .page-content {
    padding: 20px 18px 50px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    display: none;
  }

  .settings-toolbar {
    position: static;
    flex-direction: column;
    align-items: stretch;
  }

  .settings-toolbar-left,
  .settings-toolbar-actions {
    flex-wrap: wrap;
  }

  .search-input {
    min-width: 0;
    flex: 1;
  }

  .protection-category-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .landing-header,
  .landing-hero,
  .landing-footer {
    width: min(100% - 28px, 1440px);
  }

  .landing-header {
    min-height: 72px;
  }

  .landing-header-actions .button-secondary {
    display: none;
  }

  .landing-brand span {
    display: none;
  }

  .landing-hero {
    min-height: auto;
    padding: 60px 0 75px;
  }

  .landing-hero h1 {
    font-size: clamp(43px, 14vw, 66px);
  }

  .landing-hero-actions {
    flex-direction: column;
  }

  .landing-trust-row {
    display: grid;
    max-width: 270px;
    justify-content: start;
    margin-right: auto;
    margin-left: auto;
  }

  .preview-floating-card {
    display: none;
  }

  .preview-window {
    transform: none;
  }

  .preview-layout {
    min-height: 330px;
    grid-template-columns: 40px 1fr;
  }

  .preview-content {
    padding: 11px;
  }

  .preview-stats {
    grid-template-columns: 1fr;
  }

  .preview-stats article:nth-child(n + 2) {
    display: none;
  }

  .preview-bottom-grid {
    grid-template-columns: 1fr;
  }

  .preview-detection-card {
    display: none;
  }

  .preview-chart-card {
    min-height: 210px;
  }

  .preview-chart {
    height: 135px;
  }

  .landing-statistics {
    width: min(100% - 28px, 1200px);
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-statistics article:nth-child(2) {
    border-right: 0;
  }

  .landing-statistics article:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .landing-section {
    width: min(100% - 28px, 1280px);
    padding: 85px 0;
  }

  .landing-protection-section {
    width: 100%;
    padding-right: 14px;
    padding-left: 14px;
  }

  .landing-protection-grid {
    grid-template-columns: 1fr;
  }

  .landing-platform-card {
    padding: 34px 23px;
  }

  .landing-platform-list {
    grid-template-columns: 1fr;
  }

  .landing-cloud-diagram {
    min-height: 420px;
  }

  .diagram-server {
    left: 0;
  }

  .diagram-cloud {
    top: 150px;
  }

  .diagram-dashboard {
    right: 0;
  }

  .line-one,
  .line-two {
    display: none;
  }

  .landing-call-to-action {
    width: min(100% - 28px, 1280px);
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 70px;
    padding: 36px 24px;
  }

  .landing-call-actions {
    width: 100%;
  }

  .landing-footer {
    flex-direction: column;
    justify-content: center;
    padding: 30px 0;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .topbar-actions .connection-pill,
  .topbar-actions .button {
    display: none;
  }

  .topbar h1 {
    font-size: 16px;
  }

  .topbar p {
    display: none;
  }

  .hero-panel {
    padding: 28px 22px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .statistics-grid,
  .settings-overview {
    grid-template-columns: 1fr;
  }

  .protection-row {
    grid-template-columns: 1fr;
  }

  .protection-controls {
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .advanced-settings-grid,
  .allowlist-grid {
    grid-template-columns: 1fr;
  }

  .server-grid {
    grid-template-:root {
  --bg: #050914;
  --surface: #0b1322;
  --surface-soft: #101c30;
  --border: rgba(148, 163, 184, 0.14);
  --text: #f5f8ff;
  --muted: #8695aa;
  --primary: #50d8ff;
  --success: #34d399;
  --warning: #fbbf24;
  --danger: #fb7185;
  --sidebar: 260px;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--bg);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--text);
  font-family: Arial, sans-serif;
  background:
    radial-gradient(
      circle at 70% 0%,
      rgba(80, 216, 255, 0.1),
      transparent 35%
    ),
    var(--bg);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.primary-button,
.secondary-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
}

.primary-button {
  color: #031018;
  background: var(--primary);
}

.primary-button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.secondary-button {
  color: var(--text);
  border-color: var(--border);
  background: var(--surface);
}

.brand {
  display: flex;
  align-items: center;
  gap: 11px;
}

.brand-logo {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(80, 216, 255, 0.3);
  border-radius: 12px;
  color: var(--primary);
  background: rgba(80, 216, 255, 0.08);
  font-weight: 800;
}

.brand > span:last-child {
  display: flex;
  flex-direction: column;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}

.landing {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.landing-nav {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border);
}

.landing-nav > div {
  display: flex;
  align-items: center;
  gap: 18px;
}

.landing-hero {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.badge {
  display: inline-flex;
  padding: 8px 11px;
  border: 1px solid rgba(80, 216, 255, 0.22);
  border-radius: 999px;
  color: var(--primary);
  background: rgba(80, 216, 255, 0.07);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}

.landing-hero h1 {
  max-width: 700px;
  margin: 22px 0;
  font-size: clamp(48px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.landing-hero h1 em {
  color: var(--primary);
  font-style: normal;
}

.landing-hero p {
  max-width: 620px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 28px;
}

.preview-card,
.activation-card,
.installation-card,
.documentation,
.panel,
.server-card,
.dashboard-header {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(11, 19, 34, 0.9);
}

.preview-card {
  padding: 22px;
  box-shadow:
    0 40px 100px rgba(0, 0, 0, 0.4);
}

.preview-header {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 11px;
}

.preview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 18px;
}

.preview-stats article {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
}

.preview-stats span,
.preview-stats strong {
  display: block;
}

.preview-stats span {
  color: var(--muted);
  font-size: 9px;
}

.preview-stats strong {
  margin-top: 8px;
  font-size: 22px;
}

.preview-chart {
  height: 250px;
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.preview-chart span {
  flex: 1;
  border-radius: 5px 5px 0 0;
  background:
    linear-gradient(
      to top,
      rgba(80, 216, 255, 0.15),
      var(--primary)
    );
}

.app-shell {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  position: fixed;
  inset: 0 auto 0 0;
  width: var(--sidebar);
  display: flex;
  flex-direction: column;
  padding: 22px 15px;
  border-right: 1px solid var(--border);
  background: #08101d;
}

.sidebar nav {
  display: grid;
  gap: 5px;
  margin-top: 35px;
}

.sidebar nav a {
  padding: 12px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 12px;
}

.sidebar nav a:hover {
  color: var(--text);
  background: var(--surface-soft);
}

.sidebar-footer {
  margin-top: auto;
}

.account {
  display: flex;
  flex-direction: column;
  margin-bottom: 12px;
}

.account small {
  margin-top: 4px;
  color: var(--muted);
}

.sidebar-footer form button {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  background: var(--surface);
}

.main-content {
  width: calc(100% - var(--sidebar));
  margin-left: var(--sidebar);
}

.topbar {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  background: rgba(5, 9, 20, 0.88);
}

.topbar h1 {
  margin: 0;
  font-size: 21px;
}

.topbar p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 10px;
}

.user-chip {
  padding: 9px 12px;
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--muted);
  background: var(--surface);
  font-size: 10px;
}

.page-content {
  width: 100%;
  max-width: 1500px;
  margin: 0 auto;
  padding: 30px;
}

.activation-card {
  max-width: 720px;
  margin: 40px auto;
  padding: 38px;
}

.activation-card h2 {
  margin: 18px 0 8px;
  font-size: 34px;
}

.activation-card > p {
  color: var(--muted);
}

.activation-form {
  display: grid;
  gap: 20px;
  margin-top: 30px;
}

.activation-form label:not(.checkbox-row) {
  display: grid;
  gap: 9px;
}

.activation-form input[type="text"] {
  min-height: 54px;
  padding: 0 15px;
  border: 1px solid var(--border);
  border-radius: 11px;
  color: var(--text);
  background: #050a13;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.checkbox-row {
  display: flex;
  align-items: center;
  gap: 9px;
  color: var(--muted);
  font-size: 10px;
}

.alert {
  margin-top: 20px;
  padding: 13px;
  border-radius: 10px;
  font-size: 11px;
}

.alert.error {
  color: #fecdd3;
  border: 1px solid rgba(251, 113, 133, 0.25);
  background: rgba(251, 113, 133, 0.08);
}

.alert.success {
  color: #a7f3d0;
  border: 1px solid rgba(52, 211, 153, 0.25);
  background: rgba(52, 211, 153, 0.08);
}

.server-grid {
  display: grid;
  grid-template-columns:
    repeat(auto-fill, minmax(280px, 1fr));
  gap: 14px;
}

.server-card {
  padding: 22px;
}

.server-status {
  display: inline-flex;
  padding: 6px 8px;
  border-radius: 999px;
  color: var(--warning);
  background: rgba(251, 191, 36, 0.08);
  font-size: 9px;
  text-transform: uppercase;
}

.server-status.online {
  color: var(--success);
  background: rgba(52, 211, 153, 0.08);
}

.server-card h3 {
  margin: 18px 0 8px;
}

.server-card p {
  color: var(--muted);
  font-size: 10px;
}

.installation-card {
  padding: 38px;
}

.installation-card h2 {
  margin: 18px 0 8px;
  font-size: 34px;
}

.installation-card > p {
  max-width: 700px;
  color: var(--muted);
  line-height: 1.7;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 30px 0;
}

.steps article {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #070d18;
}

.steps strong {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: var(--surface-soft);
}

.steps article.current {
  border-color: rgba(80, 216, 255, 0.4);
}

.steps article.current strong {
  color: #031018;
  background: var(--primary);
}

.steps article.complete strong {
  color: #041c13;
  background: var(--success);
}

.steps h3 {
  margin: 15px 0 0;
  font-size: 11px;
}

.token-box,
.download-box,
.code-box,
.waiting-box {
  margin-top: 15px;
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #050a13;
}

.token-box span,
.token-box code,
.token-box p {
  display: block;
}

.token-box span,
.code-box span {
  color: var(--muted);
  font-size: 9px;
}

.token-box code,
.code-box code {
  display: block;
  overflow-x: auto;
  margin-top: 10px;
  color: var(--primary);
  font-size: 11px;
}

.token-box p {
  color: var(--warning);
  font-size: 9px;
}

.download-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.download-box strong,
.download-box span {
  display: block;
}

.download-box span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 9px;
}

.waiting-box {
  display: flex;
  align-items: center;
  gap: 14px;
}

.waiting-box p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 9px;
}

.spinner {
  width: 30px;
  height: 30px;
  border: 2px solid rgba(80, 216, 255, 0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.dashboard-header {
  padding: 26px;
}

.dashboard-header h2 {
  margin: 16px 0 8px;
  font-size: 30px;
}

.dashboard-header p {
  color: var(--success);
}

.statistics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
  margin-top: 14px;
}

.statistics-grid article {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
}

.statistics-grid span,
.statistics-grid strong {
  display: block;
}

.statistics-grid span {
  color: var(--muted);
  font-size: 9px;
}

.statistics-grid strong {
  margin-top: 10px;
  font-size: 24px;
}

.dashboard-panels {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.panel {
  overflow: hidden;
}

.panel h3 {
  margin: 0;
  padding: 18px;
  border-bottom: 1px solid var(--border);
}

.empty-panel {
  min-height: 220px;
  display: grid;
  place-items: center;
  color: var(--muted);
  font-size: 10px;
}

.list-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 18px;
  border-bottom: 1px solid var(--border);
}

.list-row > div {
  display: flex;
  flex-direction: column;
}

.list-row span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
}

.documentation {
  max-width: 900px;
  margin: 20px auto;
  padding: 38px;
}

.documentation h1 {
  font-size: 38px;
}

.documentation h2 {
  margin-top: 38px;
}

.documentation p,
.documentation li {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.8;
}

.error-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  text-align: center;
}

.error-page > span {
  color: var(--primary);
  font-size: 90px;
  font-weight: 800;
}

.error-page h1 {
  margin: 10px 0;
}

.error-page p {
  max-width: 520px;
  margin: 0 0 25px;
  color: var(--muted);
}

@media (max-width: 1000px) {
  .landing-hero {
    grid-template-columns: 1fr;
    padding: 80px 0;
  }

  .sidebar {
    position: static;
    width: 100%;
  }

  .app-shell {
    display: block;
  }

  .main-content {
    width: 100%;
    margin-left: 0;
  }

  .steps,
  .statistics-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .dashboard-panels {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .landing {
    width: calc(100% - 24px);
  }

  .landing-nav > div > a:first-child {
    display: none;
  }

  .landing-hero h1 {
    font-size: 47px;
  }

  .hero-actions,
  .download-box {
    flex-direction: column;
    align-items: stretch;
  }

  .page-content,
  .installation-card,
  .activation-card {
    padding: 20px;
  }

  .steps,
  .statistics-grid {
    grid-template-columns: 1fr;
  }
}: 1fr;
  }

  .settings-toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .settings-toolbar-actions .button:last-child {
    grid-column: 1 / -1;
  }
}