/* src/styles.css */
:root {
  color-scheme: dark;
  --bg: #141110;
  --surface-1: #1d1917;
  --surface-2: #272220;
  --surface-3: #2e2926;
  --border: #2e2926;
  --border-strong: #3d3733;
  --text-primary: #f2ede7;
  --text-secondary: #c2b8b1;
  --text-muted: #9c918a;
  --inverse-surface: #262120;
  --on-inverse-surface: #f2ede7;
  --on-inverse-accent: #e99a98;
  --accent: #d8484d;
  --accent-soft: #3a1f1f;
  --accent-ink: #e99a98;
  --success: #7fa476;
  --success-soft: #25301f;
  --success-deep: #5e7350;
  --warning: #d9b845;
  --warning-soft: #332b14;
  --critical: #d8484d;
  --good: #7fa476;
  --sand: #2b2621;
  --ring-track: #2e2926;
  --ring-movement: #d8484d;
  --ring-training: #d9b845;
  --ring-standing: #8c9a57;
  --series-1: #3987e5;
  --series-2: #d95926;
  --radius: 12px;
  --radius-sm: 8px;
  --gap: 16px;
  --font:
    "Inter",
    system-ui,
    -apple-system,
    "Segoe UI",
    sans-serif;
  --font-display:
    "Playfair Display",
    Georgia,
    "Times New Roman",
    serif;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: var(--bg);
  color: var(--text-primary);
  font-family: var(--font);
  font-size: 15px;
  line-height: 1.5;
}
a {
  color: var(--accent-ink);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
}
h1 {
  font-family: var(--font-display);
  font-size: 26px;
  letter-spacing: -0.02em;
}
h2 {
  font-size: 17px;
}
h3 {
  font-size: 15px;
}
.eyebrow {
  margin: 0;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow--muted {
  color: var(--text-muted);
}
.figure {
  margin: 0;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.card {
  background: var(--surface-1);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}
.card--flush {
  padding: 0;
  overflow: hidden;
}
.stack {
  display: flex;
  flex-direction: column;
  gap: var(--gap);
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.row--wrap {
  flex-wrap: wrap;
}
.row--end {
  justify-content: flex-end;
}
.row--between {
  justify-content: space-between;
}
.grow {
  flex: 1 1 auto;
  min-width: 0;
}
.grid {
  display: grid;
  gap: var(--gap);
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
.grid--kpi {
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
}
.muted {
  color: var(--text-muted);
}
.secondary {
  color: var(--text-secondary);
}
.small {
  font-size: 13px;
}
.mono {
  font-family:
    ui-monospace,
    "SF Mono",
    Menlo,
    monospace;
  font-size: 12px;
}
.nowrap {
  white-space: nowrap;
}
.right {
  text-align: right;
}
button,
.btn {
  font: inherit;
  font-weight: 600;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 120ms ease, border-color 120ms ease;
  white-space: nowrap;
}
button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.btn--primary {
  background: var(--accent);
  color: #fff;
}
.btn--primary:hover:not(:disabled) {
  background: #e05a5f;
}
.btn--ghost {
  background: transparent;
  color: var(--text-secondary);
  border-color: var(--border-strong);
}
.btn--ghost:hover:not(:disabled) {
  background: var(--surface-2);
  color: var(--text-primary);
}
.btn--danger {
  background: transparent;
  color: var(--critical);
  border-color: #5a3030;
}
.btn--danger:hover:not(:disabled) {
  background: #2a1a1a;
}
.btn--sm {
  padding: 5px 10px;
  font-size: 13px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field > label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
}
input,
select,
textarea {
  font: inherit;
  width: 100%;
  background: var(--surface-2);
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
}
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: -1px;
  border-color: transparent;
}
input[type=checkbox] {
  width: auto;
  accent-color: var(--accent);
}
.field__error {
  font-size: 13px;
  color: var(--critical);
}
:is(button, a, [tabindex]):focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
table {
  width: 100%;
  border-collapse: collapse;
}
th {
  text-align: left;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  font-weight: 600;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--surface-2);
  position: sticky;
  top: 0;
}
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
tbody tr:last-child td {
  border-bottom: none;
}
tbody tr:hover {
  background: var(--surface-2);
}
.table-wrap {
  overflow-x: auto;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 999px;
  background: var(--surface-3);
  color: var(--text-secondary);
  white-space: nowrap;
}
.pill--good {
  background: var(--success-soft);
  color: var(--success);
}
.pill--warning {
  background: var(--warning-soft);
  color: var(--warning);
}
.pill--critical {
  background: var(--accent-soft);
  color: var(--accent-ink);
}
.pill--toggle {
  border: 1px solid var(--border-strong);
  background: var(--surface-2);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  padding: 5px 12px;
}
.pill--toggle:hover {
  color: var(--text-primary);
}
.pill--on {
  background: var(--accent);
  border-color: transparent;
  color: #fff;
}
.empty {
  padding: 48px 20px;
  text-align: center;
  color: var(--text-muted);
}
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid var(--border-strong);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: spin 700ms linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* angular:styles/global:styles */
/*# sourceMappingURL=styles.css.map */
