@charset "UTF-8";
@import "https://fonts.googleapis.com/css2?family=Instrument+Serif:ital@0;1&family=Manrope:wght@400;500;600;700;800&display=swap";

/* src/styles.scss */
:root {
  --canvas: #fbf7f2;
  --surface: #ffffff;
  --surface-sunk: #fbf7f2;
  --surface-alt: #f3ece4;
  --ink: #1b1229;
  --ink-plum: #2c1738;
  --muted: #6e6478;
  --muted-2: #8a8194;
  --faint: #a99f94;
  --faint-2: #c4bab0;
  --red: #d81b34;
  --red-deep: #a8102a;
  --red-ink: #c0142e;
  --gold: #f6d68c;
  --gold-deep: #c9a24a;
  --ok-bg: #e8f6ee;
  --ok-fg: #126b42;
  --ok: #1e8e5a;
  --low-bg: #fff3e2;
  --low-fg: #b4650f;
  --low: #c7761b;
  --out-bg: #fde9ec;
  --out-fg: #c0142e;
  --line: #ede6de;
  --line-2: #e4dcd3;
  --line-3: #f5f0ea;
  --r-sm: 9px;
  --r-md: 12px;
  --r-lg: 16px;
  --r-xl: 20px;
  --r-2xl: 24px;
  --shadow-card: 0 22px 40px -26px rgba(43, 20, 50, 0.5);
  --shadow-pop: 0 40px 90px -30px rgba(0, 0, 0, 0.7);
  --header-h: 66px;
  --serif:
    "Instrument Serif",
    Georgia,
    "Times New Roman",
    serif;
  --sans:
    "Manrope",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  font-family: var(--sans);
  background: var(--canvas);
  color: var(--ink);
  font-size: 14px;
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font-family: inherit;
}
input,
select {
  font-family: inherit;
  color: inherit;
}
.serif {
  font-family: var(--serif);
  font-weight: 400;
}
.scroll-x {
  overflow-x: auto;
  scrollbar-width: thin;
}
.scroll-x::-webkit-scrollbar {
  height: 6px;
}
.scroll-x::-webkit-scrollbar-thumb {
  background: var(--line-2);
  border-radius: 4px;
}
@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes popIn {
  from {
    transform: scale(0.6);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes floaty {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-14px);
  }
}
@keyframes pulseRing {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 27, 52, 0.4);
  }
  100% {
    box-shadow: 0 0 0 20px rgba(216, 27, 52, 0);
  }
}
@keyframes toastIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.anim-fade {
  animation: fadeIn 0.35s both;
}
.anim-rise {
  animation: riseIn 0.35s both;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
}
.btn {
  border: 0;
  border-radius: var(--r-md);
  font-weight: 700;
  cursor: pointer;
  font-size: 13.5px;
  transition:
    transform 0.16s ease,
    background 0.18s ease,
    color 0.18s ease,
    border-color 0.18s ease;
}
.btn:disabled {
  cursor: not-allowed;
}
.btn-primary {
  background:
    linear-gradient(
      120deg,
      var(--red),
      var(--red-deep));
  color: #fff;
  box-shadow: 0 14px 28px -16px rgba(216, 27, 52, 0.8);
}
.btn-primary:hover:not(:disabled) {
  transform: translateY(-2px);
}
.btn-ink {
  background: var(--ink);
  color: #fff;
}
.btn-ink:hover:not(:disabled) {
  background: var(--red);
}
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line-2);
}
.btn-ghost:hover:not(:disabled) {
  border-color: var(--ink);
}
.uppercase-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--faint);
}
.page {
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(16px, 3vw, 32px) clamp(14px, 3vw, 28px) 80px;
}
.page-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.text-muted {
  color: var(--muted);
}

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