:root {
  color-scheme: dark;
  --bg: #08111f;
  --panel: #101a2b;
  --panel-2: #0c1524;
  --line: rgba(183, 203, 230, 0.16);
  --line-strong: rgba(183, 203, 230, 0.32);
  --text: #eef5ff;
  --muted: #99a9bf;
  --soft: #c9d8ec;
  --blue: #4f8bff;
  --cyan: #49d1ff;
  --green: #52e0a4;
  --amber: #ffbf5b;
  --red: #ff6b7d;
  --violet: #b78cff;
  --shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
  background: var(--bg);
  color: var(--text);
}

body {
  overflow-x: hidden;
}

button,
input {
  font: inherit;
}

button {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--soft);
  border-radius: 8px;
  cursor: pointer;
  height: 36px;
  padding: 0 12px;
}

button:hover,
button.active {
  border-color: rgba(79, 139, 255, 0.7);
  background: rgba(79, 139, 255, 0.18);
  color: var(--text);
}

a {
  color: var(--cyan);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1,
h2,
h3,
p {
  margin: 0;
}

h1 {
  font-size: clamp(1.35rem, 2.2vw, 2.35rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  font-size: 1.05rem;
  line-height: 1.2;
}

h3 {
  font-size: 0.9rem;
  line-height: 1.2;
}

.eyebrow {
  color: var(--green);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quiet-link {
  color: var(--soft);
  font-size: 0.82rem;
}

.status-pill,
.tag {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid rgba(82, 224, 164, 0.35);
  background: rgba(82, 224, 164, 0.11);
  color: #bdf7dc;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
}

.mono {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
}

.truncate {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  vertical-align: bottom;
  white-space: nowrap;
}
