/* [project]/src/app/globals.css [app-client] (css) */
:root {
  --lightningcss-light: initial;
  --lightningcss-dark: ;
  color-scheme: light dark;
  --brand: #d63517;
  --brand-dark: #b52d14;
  --bg: #f6f6f5;
  --surface: #fff;
  --surface-2: #fafaf9;
  --border: #e2e1de;
  --border-strong: #cfcdc8;
  --text: #1c1b19;
  --text-muted: #6b6862;
  --text-faint: #918d85;
  --ok: #1a7f4b;
  --ok-bg: #e8f5ee;
  --warn: #9a6209;
  --warn-bg: #fdf3e2;
  --error: #b3261e;
  --error-bg: #fdecea;
  --info-bg: #eef2f7;
  --radius: 10px;
  --radius-sm: 6px;
  --shadow: 0 1px 2px #14120f0d, 0 4px 12px #14120f0a;
  --mono: ui-monospace, "SF Mono", "Cascadia Mono", "Roboto Mono", Menlo, Consolas, monospace;
}

@media (prefers-color-scheme: dark) {
  :root {
    --lightningcss-light: ;
    --lightningcss-dark: initial;
    --bg: #16171a;
    --surface: #1e2024;
    --surface-2: #24272c;
    --border: #31353b;
    --border-strong: #434850;
    --text: #edeef0;
    --text-muted: #a3a8b0;
    --text-faint: #7c828c;
    --ok: #4ac57e;
    --ok-bg: #14301f;
    --warn: #e0a53c;
    --warn-bg: #33260d;
    --error: #f2867d;
    --error-bg: #3a1917;
    --info-bg: #22262d;
    --shadow: 0 1px 2px #0000004d, 0 4px 14px #00000040;
  }
}

* {
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Helvetica Neue, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.55;
}

a {
  color: inherit;
  text-decoration: none;
}

.shell {
  grid-template-columns: 232px 1fr;
  min-height: 100vh;
  display: grid;
}

.sidebar {
  background: var(--surface);
  border-right: 1px solid var(--border);
  flex-direction: column;
  gap: 22px;
  padding: 20px 14px;
  display: flex;
}

.brand {
  align-items: center;
  gap: 10px;
  padding: 0 8px;
  display: flex;
}

.brand-mark {
  background: var(--brand);
  color: #fff;
  border-radius: 7px;
  flex-shrink: 0;
  place-items: center;
  width: 26px;
  height: 26px;
  font-size: 13px;
  font-weight: 700;
  display: grid;
}

.brand-name {
  letter-spacing: -.01em;
  font-weight: 650;
}

.brand-sub {
  color: var(--text-faint);
  margin-top: -3px;
  font-size: 12px;
}

.nav {
  flex-direction: column;
  gap: 2px;
  display: flex;
}

.nav-link {
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  font-size: 14px;
  transition: background .12s, color .12s;
  display: flex;
}

.nav-link:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-link[data-active="true"] {
  background: var(--info-bg);
  color: var(--text);
  font-weight: 550;
}

.nav-section {
  text-transform: uppercase;
  letter-spacing: .06em;
  color: var(--text-faint);
  margin-bottom: 4px;
  padding: 0 10px;
  font-size: 11px;
}

.sidebar-foot {
  color: var(--text-faint);
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
  padding: 0 10px;
  font-size: 12px;
  display: flex;
}

.main {
  width: 100%;
  max-width: 1120px;
  padding: 28px 32px 56px;
}

.page-head {
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 22px;
  display: flex;
}

h1 {
  letter-spacing: -.015em;
  margin: 0;
  font-size: 22px;
  font-weight: 650;
}

h2 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 600;
}

h3 {
  text-transform: uppercase;
  letter-spacing: .05em;
  color: var(--text-muted);
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 600;
}

.lede {
  color: var(--text-muted);
  margin: 4px 0 0;
  font-size: 14px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px;
}

.card + .card {
  margin-top: 16px;
}

.card-head {
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 14px;
  display: flex;
}

.grid {
  gap: 16px;
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.health {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: var(--shadow);
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  display: flex;
}

.health-dot {
  border-radius: 50%;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
}

.health[data-level="green"] {
  border-color: color-mix(in srgb, var(--ok) 35%, var(--border));
  background: var(--ok-bg);
}

.health[data-level="green"] .health-dot {
  background: var(--ok);
}

.health[data-level="yellow"] {
  border-color: color-mix(in srgb, var(--warn) 35%, var(--border));
  background: var(--warn-bg);
}

.health[data-level="yellow"] .health-dot {
  background: var(--warn);
}

.health[data-level="red"] {
  border-color: color-mix(in srgb, var(--error) 40%, var(--border));
  background: var(--error-bg);
}

.health[data-level="red"] .health-dot {
  background: var(--error);
}

.health[data-level="unknown"] .health-dot {
  background: var(--text-faint);
}

.health-title {
  font-weight: 600;
}

.health-detail {
  color: var(--text-muted);
  font-size: 13px;
}

.stat {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
}

.stat-label {
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-size: 12px;
}

.stat-value {
  letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
  margin-top: 4px;
  font-size: 22px;
  font-weight: 600;
}

.stat-hint {
  color: var(--text-faint);
  margin-top: 2px;
  font-size: 12px;
}

.badge {
  white-space: nowrap;
  border: 1px solid #0000;
  border-radius: 999px;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  font-size: 12px;
  font-weight: 550;
  display: inline-flex;
}

.badge[data-tone="ok"] {
  background: var(--ok-bg);
  color: var(--ok);
  border-color: color-mix(in srgb, var(--ok) 25%, transparent);
}

.badge[data-tone="warn"] {
  background: var(--warn-bg);
  color: var(--warn);
  border-color: color-mix(in srgb, var(--warn) 25%, transparent);
}

.badge[data-tone="error"] {
  background: var(--error-bg);
  color: var(--error);
  border-color: color-mix(in srgb, var(--error) 25%, transparent);
}

.badge[data-tone="neutral"] {
  background: var(--surface-2);
  color: var(--text-muted);
  border-color: var(--border);
}

.notice {
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface-2);
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  font-size: 13.5px;
  display: flex;
}

.notice + .notice {
  margin-top: 8px;
}

.notice-icon {
  flex-shrink: 0;
  font-weight: 700;
  line-height: 1.45;
}

.notice[data-level="error"] {
  background: var(--error-bg);
  border-color: color-mix(in srgb, var(--error) 30%, var(--border));
}

.notice[data-level="error"] .notice-icon {
  color: var(--error);
}

.notice[data-level="warn"] {
  background: var(--warn-bg);
  border-color: color-mix(in srgb, var(--warn) 30%, var(--border));
}

.notice[data-level="warn"] .notice-icon {
  color: var(--warn);
}

.notice[data-level="info"] .notice-icon {
  color: var(--text-muted);
}

.notice-title {
  margin-bottom: 1px;
  font-weight: 600;
}

.notice-body {
  color: var(--text-muted);
}

.table-wrap {
  border-top: 1px solid var(--border);
  margin: 0 -18px -18px;
  overflow-x: auto;
}

table {
  border-collapse: collapse;
  width: 100%;
  font-size: 13.5px;
}

th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .04em;
  color: var(--text-muted);
  background: var(--surface-2);
  border-bottom: 1px solid var(--border);
  white-space: nowrap;
  padding: 10px 12px;
  font-size: 12px;
  font-weight: 600;
}

th:first-child, td:first-child {
  padding-left: 18px;
}

th:last-child, td:last-child {
  padding-right: 18px;
}

td {
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
  padding: 10px 12px;
}

tbody tr:last-child td {
  border-bottom: none;
}

tbody tr:hover {
  background: var(--surface-2);
}

.num {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

.mono {
  font-family: var(--mono);
  font-size: 12.5px;
}

button, .button {
  font: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  cursor: pointer;
  white-space: nowrap;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  font-size: 13.5px;
  font-weight: 550;
  transition: background .12s, border-color .12s, opacity .12s;
  display: inline-flex;
}

button:hover:not(:disabled), .button:hover {
  background: var(--surface-2);
  border-color: var(--text-faint);
}

button:disabled {
  opacity: .5;
  cursor: not-allowed;
}

button[data-variant="primary"] {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

button[data-variant="primary"]:hover:not(:disabled) {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
}

button[data-variant="danger"] {
  color: var(--error);
  border-color: color-mix(in srgb, var(--error) 35%, var(--border));
}

button[data-variant="danger"]:hover:not(:disabled) {
  background: var(--error-bg);
}

button[data-variant="quiet"] {
  color: var(--text-muted);
  background: none;
  border-color: #0000;
  padding: 5px 8px;
}

.button-row {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

label {
  margin-bottom: 5px;
  font-size: 13px;
  font-weight: 550;
  display: block;
}

input[type="text"], input[type="password"] {
  font: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  width: 100%;
  color: var(--text);
  padding: 8px 11px;
  font-size: 14px;
}

input:focus-visible, button:focus-visible, a:focus-visible, select:focus-visible {
  outline: 2px solid var(--brand);
  outline-offset: 1px;
}

.field {
  margin-bottom: 14px;
}

.field-hint {
  color: var(--text-faint);
  margin-top: 4px;
  font-size: 12px;
}

.checkbox-row {
  align-items: flex-start;
  gap: 8px;
  font-size: 13.5px;
  display: flex;
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-row label {
  margin: 0;
  font-weight: 400;
}

select {
  font: inherit;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text);
  width: 100%;
  padding: 8px 11px;
  font-size: 14px;
}

.definitions {
  gap: 9px;
  font-size: 13.5px;
  display: grid;
}

.definition {
  grid-template-columns: minmax(130px, 38%) 1fr;
  align-items: baseline;
  gap: 12px;
  display: grid;
}

.definition dt {
  color: var(--text-muted);
}

.definition dd {
  overflow-wrap: anywhere;
  margin: 0;
}

.log {
  font-family: var(--mono);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  max-height: 460px;
  margin: 0;
  padding: 12px 14px;
  font-size: 12.5px;
  line-height: 1.6;
  overflow: auto;
}

.log-line {
  grid-template-columns: 62px 1fr;
  gap: 10px;
  display: grid;
}

.log-time {
  color: var(--text-faint);
}

.log-line[data-level="error"] .log-message {
  color: var(--error);
}

.log-line[data-level="warn"] .log-message {
  color: var(--warn);
}

.empty {
  text-align: center;
  color: var(--text-muted);
  padding: 40px 20px;
  font-size: 14px;
}

.muted {
  color: var(--text-muted);
}

.faint {
  color: var(--text-faint);
}

.small {
  font-size: 12.5px;
}

.stack {
  flex-direction: column;
  gap: 14px;
  display: flex;
}

.inline-gap {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  display: flex;
}

.bar {
  background: var(--border);
  border-radius: 999px;
  height: 6px;
  margin-top: 8px;
  overflow: hidden;
}

.bar-fill {
  background: var(--ok);
  border-radius: 999px;
  height: 100%;
}

.bar-fill[data-tone="warn"] {
  background: var(--warn);
}

.bar-fill[data-tone="error"] {
  background: var(--error);
}

.center-page {
  place-items: center;
  min-height: 100vh;
  padding: 24px;
  display: grid;
}

.login-card {
  width: 100%;
  max-width: 380px;
}

.form-error {
  color: var(--error);
  margin-bottom: 12px;
  font-size: 13.5px;
}

.copy-block {
  margin: 10px 0 4px;
}

.copy-head {
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  display: flex;
}

.copy-content {
  font-family: var(--mono);
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  white-space: pre;
  -webkit-user-select: all;
  user-select: all;
  margin: 0;
  padding: 11px 13px;
  font-size: 12.5px;
  line-height: 1.6;
  overflow-x: auto;
}

.step {
  border-top: 1px solid var(--border);
  grid-template-columns: 30px 1fr;
  gap: 14px;
  padding: 16px 0;
  display: grid;
}

.step:first-of-type {
  border-top: none;
  padding-top: 4px;
}

.step-mark {
  border: 1px solid var(--border-strong);
  width: 24px;
  height: 24px;
  color: var(--text-muted);
  background: var(--surface-2);
  border-radius: 50%;
  place-items: center;
  font-size: 12px;
  font-weight: 700;
  display: grid;
}

.step[data-done="true"] .step-mark {
  background: var(--ok-bg);
  border-color: color-mix(in srgb, var(--ok) 40%, transparent);
  color: var(--ok);
}

.step[data-done="false"][data-required="true"] .step-mark {
  background: var(--error-bg);
  border-color: color-mix(in srgb, var(--error) 40%, transparent);
  color: var(--error);
}

.step-title {
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  font-weight: 600;
  display: flex;
}

.step-body {
  color: var(--text-muted);
  font-size: 13.5px;
}

.result-box {
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: var(--surface-2);
  margin-top: 14px;
  padding: 12px 14px;
  font-size: 13.5px;
}

@media (max-width: 860px) {
  .shell {
    grid-template-columns: 1fr;
  }

  .sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .nav {
    flex-flow: wrap;
  }

  .sidebar-foot {
    margin-top: 8px;
  }

  .main {
    padding: 20px 16px 40px;
  }
}

/*# sourceMappingURL=src_app_globals_0p2ml0n.css.map*/