html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg, #08091A);
  color: var(--fg, #E4E3F5);
  font-family: "SF Pro Display", -apple-system, "Helvetica Neue", sans-serif;
}
main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 18px;
}
.card {
  --cc: #3D5DF2;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 420px;
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border, rgba(120, 190, 220, 0.12));
  border-radius: 10px;
  background: transparent;
  color: inherit;
  text-decoration: none;
}
.card:hover {
  border-color: var(--cc);
  background: color-mix(in srgb, var(--cc) 8%, transparent);
}
.glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  border-radius: 8px;
  background: color-mix(in srgb, var(--cc) 13%, transparent);
  border: 1px solid color-mix(in srgb, var(--cc) 32%, transparent);
  color: var(--cc);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}
.name {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--fg, #E4E3F5);
}
.role {
  display: block;
  font-size: 10.5px;
  line-height: 1.3;
  color: var(--fg-muted, #8D8CB0);
}
.note {
  max-width: 420px;
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--fg-muted, #8D8CB0);
  text-align: center;
}
