:root{
  --bg:#0b0f14;
  --card1:rgba(16,23,34,.92);
  --card2:rgba(16,23,34,.72);
  --text:#e7edf6;
  --muted:rgba(231,237,246,.65);
  --muted2:rgba(231,237,246,.50);
  --line:rgba(231,237,246,.14);
  --shadow:0 24px 60px rgba(0,0,0,.55);
  --radius:20px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  --sans: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
}

*{ box-sizing:border-box; }
html,body{ height:100%; margin:0; }

body{
  font-family:var(--sans);
  color:var(--text);
  background:
    radial-gradient(900px 600px at 50% 5%, rgba(231,237,246,.10), transparent 60%),
    radial-gradient(700px 500px at 30% 90%, rgba(231,237,246,.06), transparent 65%),
    var(--bg);
}

.page{
  min-height:100%;
  display:grid;
  place-items:center;
  padding:32px 20px;
}

.card{
  width:100%;
  max-width:520px;
  background:linear-gradient(180deg, var(--card1), var(--card2));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:28px 26px;
  box-shadow:var(--shadow);
  text-align:center;
}

.logo-wrap{
  display:flex;
  justify-content:center;
  margin-bottom:16px;
}

.logo{
  max-width:260px;
  width:70%;
  height:auto;
  display:block;
}

h1{
  margin:0 0 6px;
  font-size:28px;
  letter-spacing:.02em;
}

.lead{
  margin:0;
  font-size:13px;
  color:var(--muted);
}

.divider{
  margin:20px 0;
  height:1px;
  background:var(--line);
}

.directory{
  text-align:left;
  display:grid;
  gap:14px;
}

.section{
  display:grid;
  gap:8px;
}

.section-title{
  font-weight:800;
  font-size:15px;
  color:rgba(231,237,246,.92);
}

.row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
}

.row.sub{
  padding-left:0px;
}

.status{
  color:var(--muted2);
  font-size:12px;
  white-space:nowrap;
}

.node-link{
  display:inline-block;
  padding:7px 10px;
  border-radius:12px;
  border:1px solid rgba(231,237,246,.18);
  background:rgba(231,237,246,.05);
  color:rgba(231,237,246,.92);
  text-decoration:none;
  font-weight:650;
  letter-spacing:.01em;
}

.node-link:hover{
  background:rgba(231,237,246,.10);
  border-color:rgba(231,237,246,.28);
}

.node-link.is-disabled{
  cursor: default;
  opacity: .92;
}

.fine{
  margin:0;
  font-size:12px;
  color:var(--muted2);
}

.footer{
  margin-top:12px;
  font-size:12px;
  color:rgba(231,237,246,.45);
}
.keep-in-touch { margin-top: 14px; }
.keep-in-touch .kit-title {
  font-family: monospace;
  letter-spacing: .20em;
  font-size: 12px;
  opacity: .8;
  margin-bottom: 6px;
}
.keep-in-touch .kit-text {
  font-size: 12px;
  opacity: .65;
  line-height: 1.5;
}
.keep-in-touch .kit-link {
  color: rgba(120,255,170,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(120,255,170,0.25);
}
.keep-in-touch .kit-link:hover {
  border-bottom-color: rgba(120,255,170,0.55);
}
