/* src/styles.scss */
:root {
  --color-ink: #f5f7fa;
  --color-ink-soft: #99a2ad;
  --color-ink-muted: #68717c;
  --color-surface: rgba(12, 12, 14, 0.84);
  --color-surface-strong: rgba(16, 16, 18, 0.94);
  --color-surface-muted: rgba(255, 255, 255, 0.04);
  --color-accent: #f3f4f6;
  --color-accent-deep: #ffffff;
  --color-highlight: #6f7680;
  --color-border: rgba(255, 255, 255, 0.08);
  --color-border-strong: rgba(255, 255, 255, 0.14);
  --font-body:
    "Manrope",
    "Segoe UI",
    sans-serif;
  --font-display:
    "Sora",
    "Segoe UI",
    sans-serif;
  --shadow-soft: 0 32px 80px rgba(0, 0, 0, 0.34);
  --shadow-strong: 0 48px 130px rgba(0, 0, 0, 0.5);
  --radius-xl: 32px;
  --radius-lg: 22px;
  --max-content-width: 1220px;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  min-height: 100%;
  scroll-behavior: smooth;
  color-scheme: dark;
}
body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-ink);
  background:
    radial-gradient(
      circle at top center,
      rgba(255, 255, 255, 0.08),
      transparent 28%),
    radial-gradient(
      circle at 20% 80%,
      rgba(122, 128, 138, 0.12),
      transparent 22%),
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.015) 0,
      rgba(255, 255, 255, 0.015) 1px,
      transparent 1px,
      transparent 120px),
    linear-gradient(
      180deg,
      #040404 0%,
      #09090b 46%,
      #050505 100%);
}
body::before,
body::after {
  position: fixed;
  content: "";
  pointer-events: none;
  z-index: -1;
}
body::before {
  top: -10rem;
  right: -8rem;
  width: 24rem;
  height: 24rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  filter: blur(46px);
}
body::after {
  bottom: -7rem;
  left: -5rem;
  width: 20rem;
  height: 20rem;
  border-radius: 38% 62% 57% 43%;
  background: rgba(114, 121, 132, 0.08);
  filter: blur(36px);
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button {
  color: inherit;
}
img,
svg {
  display: block;
  max-width: 100%;
}
::selection {
  color: #040404;
  background: rgba(243, 244, 246, 0.9);
}
::-webkit-scrollbar {
  width: 0.8rem;
}
::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.02);
}
::-webkit-scrollbar-thumb {
  border: 2px solid rgba(0, 0, 0, 0);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  background-clip: padding-box;
}
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px) scale(0.985);
  transition: opacity 0.7s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal-on-scroll--visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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