* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  background: #0f172a;
  color: #e2e8f0;
  font: 16px/1.7 "Segoe UI", sans-serif;
}
.dash-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 28px;
  background: #1e293b;
  border-bottom: 3px solid #eab308;
  position: sticky;
  top: 0;
  z-index: 5;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: #fde047;
}
.brand svg {
  width: 28px;
  height: 28px;
  color: #eab308;
}
.dash-bar nav {
  display: flex;
  gap: 18px;
}
.dash-bar a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 14px;
}
.dash-bar a:hover {
  color: #fde047;
}
main {
  padding: 28px 32px 48px;
}
.hero {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 28px;
}
.hero-copy {
  flex: 1.2;
}
.hero h1 {
  font-size: 28px;
  line-height: 1.35;
  color: #f8fafc;
  margin-bottom: 12px;
}
.hero p {
  margin-bottom: 10px;
  max-width: 40em;
}
.hero-viz {
  flex: 0.8;
  background: #1e293b;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.viz-row {
  display: flex;
  gap: 8px;
  height: 36px;
}
.viz-row i {
  flex: 1;
  background: #334155;
  border-top: 3px solid #eab308;
}
.viz-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  flex: 1;
}
.viz-grid b {
  background: #334155;
  border-radius: 4px;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 28px;
}
.metrics article {
  background: #1e293b;
  padding: 16px;
  border-radius: 8px;
  border-left: 4px solid #eab308;
}
.metrics svg,
.admin-grid svg,
.duo svg {
  width: 22px;
  height: 22px;
  color: #eab308;
  margin-bottom: 8px;
}
.metrics h3 {
  font-size: 15px;
  color: #fde047;
  margin-bottom: 8px;
}
.metrics p,
.admin-grid p,
.duo p,
#rename p,
#lack p {
  font-size: 15px;
}
.admin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 28px;
}
.admin-grid article {
  background: #1e293b;
  padding: 18px 20px;
  border-radius: 8px;
}
.admin-grid h2,
#member h2,
#rename h2,
#lack h2,
#faq h2 {
  font-size: 18px;
  color: #f8fafc;
  margin: 8px 0 10px;
}
.perm-wrap {
  background: #1e293b;
  padding: 18px;
  border-radius: 8px;
  margin-bottom: 28px;
  overflow: auto;
}
.perm-wrap h3 {
  color: #fde047;
  margin-bottom: 12px;
}
table.perm {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
table.perm th {
  background: #334155;
  color: #fde047;
  text-align: left;
  padding: 10px;
}
table.perm td {
  padding: 10px;
  border-bottom: 1px solid #334155;
  vertical-align: top;
}
.progress {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.progress article {
  background: #1e293b;
  padding: 14px 18px;
  border-radius: 8px;
}
.track {
  height: 8px;
  background: #334155;
  border-radius: 99px;
  margin-bottom: 8px;
}
.track span {
  display: block;
  height: 8px;
  background: #eab308;
  border-radius: 99px;
}
.progress h3 {
  color: #fde047;
  font-size: 15px;
  margin-bottom: 6px;
}
.duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.duo article {
  background: #1e293b;
  padding: 16px;
  border-radius: 8px;
}
#member,
#rename,
#lack,
#faq {
  margin-bottom: 28px;
}
#rename,
#lack,
#member {
  padding-top: 8px;
}
details {
  background: #1e293b;
  margin-bottom: 8px;
  padding: 12px 16px;
  border-radius: 6px;
}
summary {
  cursor: pointer;
  color: #fde047;
}
details p {
  margin-top: 8px;
}
.site-footer {
  padding: 24px 32px;
  background: #020617;
  color: #94a3b8;
  font-size: 13px;
}
.site-footer p {
  margin-bottom: 6px;
}
