/* app/frontend/src/styles.css */
:root {
  color-scheme: dark;
  --bg: #0c1420;
  --panel: #121c27;
  --panel-2: #101925;
  --border: #324254;
  --border-2: #45566d;
  --text: #f4f7fb;
  --muted: #97a6b8;
  --accent: #facc15;
  --accent-2: #eab308;
  --accent-strong: #facc15;
  --accent-soft: rgba(250, 204, 21, 0.18);
  --success: #4ade80;
  --danger: #f87171;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(
      circle at top,
      #132033 0%,
      var(--bg) 55%);
  color: var(--text);
  font-family:
    Inter,
    Arial,
    Helvetica,
    sans-serif;
}
body {
  min-height: 100vh;
  background-image:
    radial-gradient(
      circle at top,
      rgba(250, 204, 21, 0.10) 0%,
      rgba(250, 204, 21, 0) 30%),
    linear-gradient(
      180deg,
      #0b1220 0%,
      #0a101c 100%);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
input,
select,
textarea {
  width: 100%;
  background: #0b1320;
  border: 1px solid var(--border);
  border-radius: 12px;
  color: var(--text);
  padding: 11px 12px;
  outline: none;
}
input:focus,
select:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(250, 204, 21, 0.25);
}
button {
  cursor: pointer;
}
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 24px;
  background: rgba(10, 16, 28, 0.92);
  border-bottom: 1px solid rgba(250, 204, 21, 0.18);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.brand-block {
  display: flex;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
.brand-mark {
  width: 288px;
  height: 86px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  border-radius: 0;
  background: transparent;
  border: none;
  padding: 0;
  flex: 0 0 auto;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
.topnav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.topnav a {
  padding: 8px 12px;
  border-radius: 999px;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}
.topnav-auth {
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: transparent;
  color: #cbd5e1;
  font-size: 13px;
  font-weight: 700;
}
.topnav a.active,
.topnav a:hover,
.topnav-auth:hover {
  background: var(--accent-soft);
  color: #fde68a;
}
.page-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 24px auto 56px;
}
.card {
  background: rgba(16, 24, 36, 0.98);
  border: 1px solid rgba(71, 85, 105, 0.65);
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.kicker {
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  margin: 6px 0 10px;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h2 {
  margin: 6px 0 10px;
  font-size: 22px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 {
  margin: 6px 0 8px;
  font-size: 16px;
}
.muted {
  color: #a8b5c7;
}
.actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--border-2);
  background: #182335;
  color: #e8edf3;
  font-size: 13px;
  font-weight: 700;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}
.button:hover {
  background: #223149;
}
.button.primary {
  background:
    linear-gradient(
      180deg,
      var(--accent) 0%,
      var(--accent-2) 100%);
  border-color: rgba(234, 179, 8, 0.5);
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 30px rgba(234, 179, 8, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(0);
}
.button.primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(234, 179, 8, 0.35);
}
.stat {
  background: #111923;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px;
}
.value {
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
  color: var(--text);
}
.label {
  margin-top: 6px;
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 700;
}
.clean-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.clean-list li::marker {
  color: var(--accent);
}
@media (max-width: 900px) {
  .topbar {
    padding: 14px 16px;
  }
  .brand-block {
    align-items: center;
  }
  .page-shell {
    width: min(100% - 20px, 1180px);
    margin: 16px auto 40px;
  }
  .card {
    padding: 16px;
    border-radius: 16px;
  }
  .topnav {
    width: 100%;
  }
}
@media print {
  :root {
    color-scheme: light;
  }
  html,
  body {
    background: #ffffff !important;
    color: #111111 !important;
  }
  body {
    min-height: auto;
    font-size: 11pt;
    line-height: 1.35;
  }
  .topbar,
  .actions,
  .button,
  .top-actions,
  .footer-actions,
  .loading-pill,
  .toggle-chip,
  .chip,
  .control-toggle,
  .decision-group {
    display: none !important;
  }
  .page-shell {
    width: 100% !important;
    margin: 0 !important;
    max-width: none !important;
  }
  .card,
  .card-inner,
  .mini-stat,
  .summary-card,
  .summary-strip > *,
  .compact-item,
  .recommendation-card,
  .control-item,
  .workflow-item,
  .stat {
    background: #ffffff !important;
    color: #111111 !important;
    border: 1px solid #d0d7de !important;
    box-shadow: none !important;
  }
  .card,
  .card-inner {
    border-radius: 0 !important;
    padding: 14px !important;
  }
  .muted,
  .mini-label,
  .label,
  .workflow-text,
  .small-text,
  .compact-copy,
  .tagline {
    color: #555555 !important;
  }
  .kicker {
    color: #000000 !important;
  }
  a {
    color: #111111 !important;
    text-decoration: none !important;
  }
  h1 {
    font-size: 20pt;
    margin: 0 0 8px;
  }
  h2 {
    font-size: 14pt;
    margin: 0 0 8px;
  }
  h3 {
    font-size: 12pt;
  }
  pre {
    white-space: pre-wrap !important;
    word-break: break-word !important;
    color: #111111 !important;
    font-size: 10pt !important;
    line-height: 1.4 !important;
  }
  .summary-strip,
  .summary-row,
  .grid.two-tight,
  .grid.three-tight,
  .summary-grid {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .tag,
  .category-pill,
  .source-pill {
    color: #111111 !important;
    background: #ffffff !important;
    border: 1px solid #bdbdbd !important;
  }
  .control-meta,
  .detail-list,
  .status-details,
  .compact-list,
  .clean-list {
    color: #111111 !important;
  }
  .control-button {
    padding: 10px 12px !important;
    background: transparent !important;
  }
  .control-text,
  .text,
  .section-title,
  .brand,
  .mini-value,
  .summary-value,
  .value {
    color: #111111 !important;
  }
  .bullet,
  .workflow-dot {
    background: #111111 !important;
  }
  .control-item,
  .recommendation-card,
  .compact-item,
  .workflow-item {
    break-inside: avoid;
    page-break-inside: avoid;
  }
  .card,
  .card-inner {
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

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