@import "https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap";

/* src/styles.css */
:root {
  --qh-violet: #7c3aed;
  --qh-violet-deep: #6d28d9;
  --qh-violet-050: #f5f3ff;
  --qh-violet-200: #ddd6fe;
  --qh-footer: #2e1065;
  --qh-ink: #0f172a;
  --qh-muted: #64748b;
  --qh-line: #e2e8f0;
  --qh-bg: #ffffff;
  --qh-bg-soft: #eef0f4;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family:
    "Plus Jakarta Sans",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--qh-ink);
  background: var(--qh-bg);
  line-height: 1.5;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font-family: inherit;
}
svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.qh-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}
.app-content > * {
  display: block;
  max-width: 1280px;
  margin: 0 auto;
}
.qh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 700;
  font-size: 14px;
  padding: 11px 18px;
  border-radius: 10px;
  border: 1px solid var(--qh-line);
  background: #fff;
  color: var(--qh-ink);
  cursor: pointer;
  transition: filter .15s;
}
.qh-btn:hover {
  filter: brightness(0.98);
}
.qh-btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--qh-violet),
      var(--qh-violet-deep));
  color: #fff;
  border-color: transparent;
}
@media (max-width: 767px) {
  .app-content button,
  .app-content .btn-primary,
  .app-content .btn-ghost,
  .app-content .btn-outline,
  .app-content select,
  .app-content input:not([type=checkbox]) {
    min-height: 44px;
  }
  .app-content a {
    min-height: 32px;
    display: inline-flex;
    align-items: center;
  }
}

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