:root {
  --ink: #101827;
  --muted: #5b6472;
  --accent: #0f5132;
}

body {
  color: var(--ink);
  background: radial-gradient(circle at top left, #eef6f8 0%, #f7f7f0 45%, #f1f3f7 100%);
  min-height: 100vh;
}

body.home {
  --panel: rgba(255, 255, 255, 0.9);
}

body.app {
  --panel: rgba(255, 255, 255, 0.92);
}

.hero-panel {
  background: var(--panel);
  border: 1px solid rgba(16, 24, 39, 0.08);
}

body.home .hero-panel {
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12);
}

body.app .hero-panel {
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

.eyebrow {
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 0.75rem;
  color: var(--muted);
}

.label {
  font-weight: 600;
}

.table thead th {
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
}

.dashboard-table thead th {
  padding: 0.6rem 0.5rem;
  white-space: nowrap;
  background: transparent;
}

.dashboard-group-divider {
  border-right: 2px solid rgba(16, 24, 39, 0.2);
}

.dashboard-group-header {
  text-align: center;
}

.dashboard-group-divider-cell {
  border-right: 2px solid rgba(16, 24, 39, 0.2);
}

.dashboard-table thead,
.dashboard-table {
  overflow: visible;
}

.dashboard-table-wrapper {
  overflow: visible;
}

.dashboard-table thead th:first-child {
  width: 220px;
}

.table td,
.table th {
  vertical-align: middle;
}

.dashboard-table td {
  text-align: center;
}

.dashboard-table td.dashboard-domain-cell {
  text-align: left;
}

.feature-list li {
  padding: 0.35rem 0;
}

.glow-dot {
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #22c55e;
  box-shadow: 0 0 16px rgba(34, 197, 94, 0.6);
}

.menu {
  float: right;
}

.dashboard-actions .btn-link {
  color: inherit;
  opacity: 0.7;
  transition: color 0.15s ease, opacity 0.15s ease;
}

.dashboard-actions .btn-link:hover,
.dashboard-actions .btn-link:focus {
  opacity: 1;
}

.dashboard-actions .btn-link.text-danger:hover,
.dashboard-actions .btn-link.text-danger:focus {
  color: #b42318;
}

.dashboard-actions .btn-link.text-dark:hover,
.dashboard-actions .btn-link.text-dark:focus {
  color: #111827;
}
