/* src/styles/tokens.css */
:root {
  --demo-ink: #064a59;
  --demo-paper: #faf8f3;
  --demo-sand: #efe6d6;
  --demo-line: #ded3bf;
  --demo-coral: #b94731;
  --demo-coral-hover: #933620;
  --demo-muted: #56676a;
  --demo-serif:
    Georgia,
    "Times New Roman",
    serif;
  --demo-sans:
    "Segoe UI",
    Arial,
    sans-serif;
  --demo-card-bg: #fdfbf7;
  --demo-focus: #b57922;
  --demo-radius-sm: 4px;
  --demo-radius-md: 12px;
  --demo-radius-lg: 20px;
  --demo-shadow-sm: 0 1px 2px rgba(6, 74, 89, 0.08);
  --demo-shadow-md: 0 8px 24px rgba(6, 74, 89, 0.12);
}
:root[data-theme=dark] {
  --demo-ink: #f2ece0;
  --demo-paper: #0e1b22;
  --demo-sand: #142129;
  --demo-line: #223037;
  --demo-coral: #c9a15a;
  --demo-coral-hover: #d8b36b;
  --demo-muted: #9aa6a2;
  --demo-card-bg: #101c23;
  --demo-focus: #c9a15a;
  --demo-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.35);
  --demo-shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
}
:root {
  --demo-button-text:#fff;
  --demo-hero-overlay:linear-gradient(
      90deg,rgba(250,248,243,.88) 0%,rgba(250,248,243,.63) 28%,rgba(250,248,243,.06) 60%,transparent 100%);
  --demo-hero-overlay-mobile:linear-gradient(
      180deg,rgba(250,248,243,.95) 0%,rgba(250,248,243,.83) 28%,rgba(250,248,243,.12) 64%,transparent 100%);
  --demo-about-bg:radial-gradient(
      ellipse at 10% 0%,#fff9ec 0,transparent 70%),#efe6d6;
}
:root[data-theme=dark] {
  --demo-button-text:#152029;
  --demo-hero-overlay:linear-gradient(
      90deg,#0e1b22ed,#0e1b22ae 40%,#0e1b2210 80%);
  --demo-hero-overlay-mobile:linear-gradient(
      180deg,#0e1b22f5,#0e1b22bd 40%,#0e1b2220 80%);
  --demo-about-bg:#142129;
}

/* src/styles.css */
*,
*::before,
*::after {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: var(--demo-paper);
  color: var(--demo-ink);
  font-family: var(--demo-sans);
  transition: background-color 0.2s ease, color 0.2s ease;
}
body {
  min-height: 100vh;
}
h1,
h2,
h3,
h4 {
  font-family: var(--demo-serif);
  margin: 0 0 0.5em;
  line-height: 1.08;
  font-weight: 400;
}
p {
  margin: 0 0 1em;
  line-height: 1.6;
}
a {
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
:focus-visible {
  outline: 3px solid var(--demo-focus);
  outline-offset: 2px;
}
.demo-container {
  width: min(1180px, calc(100% - 96px));
  margin: 0 auto;
}
.demo-eyebrow {
  font-size: 12px;
  letter-spacing: .2em;
  color: var(--demo-ink);
  font-weight: 600;
  margin-bottom: 0.5em;
}
.demo-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  min-height: 52px;
  padding: 14px 25px;
  line-height: 1.4;
  border-radius: var(--demo-radius-sm);
  background: var(--demo-coral);
  color: var(--demo-button-text);
  border: none;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: background-color 0.15s ease, transform 0.15s ease;
}
.demo-btn:hover {
  background: var(--demo-coral-hover);
}
.demo-btn:active {
  transform: translateY(1px);
}
.demo-btn--ghost {
  background: transparent;
  color: var(--demo-ink);
  border: 1px solid var(--demo-line);
}
.demo-btn--ghost:hover {
  background: var(--demo-sand);
}
.demo-skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--demo-coral);
  color: var(--demo-button-text);
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 var(--demo-radius-sm) 0;
}
.demo-skip-link:focus {
  left: 0;
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 24px;
}
body {
  font-size: 16px;
  line-height: 1.6;
}
.demo-icon {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}
section[id] {
  scroll-margin-top: 24px;
}
@media (max-width: 1000px) {
  .demo-container {
    width: calc(100% - 48px);
  }
}
@media (max-width: 760px) {
  .demo-container {
    width: calc(100% - 36px);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

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