@charset "UTF-8";

/* src/styles.scss */
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slide-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.sr-hidden {
  opacity: 0;
  transform: translateY(12px);
}
.fade-in,
.fade {
  animation: fade-in 0.2s ease both;
}
.slide-up,
.slide {
  animation: slide-up 0.2s ease both;
}
.reveal {
  animation: fade-in-up 0.25s ease both;
}
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .sr-hidden {
    opacity: 1;
    transform: none;
  }
}
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--accent-grad);
  z-index: 2000;
  box-shadow: 0 1px 8px rgba(16, 185, 129, 0.35);
  transition: width 0.12s linear;
  will-change: width;
}
:root {
  --bg-0: #06090f;
  --bg-1: #0a0f1a;
  --bg-2: #0d1422;
  --bg: var(--bg-0);
  --surface: rgba(18, 24, 36, .72);
  --surface-2: rgba(18, 24, 36, .55);
  --line: rgba(255, 255, 255, .08);
  --txt: #eaf1f6;
  --muted: #a8b4c7;
  --muted-2: #94a3b8;
  --accent: #22c55e;
  --accent-2: #16a34a;
  --accent-3: #34d399;
  --accent-glow: rgba(34, 197, 94, .35);
  --accent-grad:
    linear-gradient(
      135deg,
      var(--accent),
      var(--accent-2));
  --radius-1: 16px;
  --radius-2: 20px;
  --radius-pill: 999px;
  --shadow-1: 0 10px 30px rgba(0, 0, 0, .35);
  --shadow-2: 0 18px 50px rgba(0, 0, 0, .45);
  --inner-1: inset 0 1px 0 rgba(255, 255, 255, .06), inset 0 -1px 0 rgba(0, 0, 0, .35);
  --ring: 0 0 0 3px rgba(34, 197, 94, .25);
  --container: 1120px;
}
* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
  margin: 0;
  background:
    radial-gradient(
      1000px 700px at 12% 0%,
      var(--bg-1) 0,
      var(--bg-2) 45%,
      var(--bg-0) 100%);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  color: var(--txt);
  font:
    16px/1.5 Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    "Segoe UI",
    Roboto,
    Ubuntu,
    Cantarell,
    Arial,
    sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(6, 9, 15, 0) 0%,
      rgba(6, 9, 15, 0.6) 100%);
  pointer-events: none;
  z-index: -1;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px);
  background-size: 80px 80px, 80px 80px;
  background-position: 0 0, 0 0;
}
body.body-offset {
  padding-top: 84px;
}
img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--accent);
  text-decoration: none;
  transition:
    color 0.15s ease,
    transform 0.15s ease,
    filter 0.15s ease;
}
a:hover {
  text-decoration: none;
  transform: translateY(-1px);
  filter: brightness(1.1);
}
:focus-visible {
  outline: none;
  box-shadow: var(--ring);
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 24px;
}
@media (max-width: 1060px) {
  .container {
    padding: 20px;
  }
}
.section {
  padding: 46px 0;
}
.panel,
.glass {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  box-shadow: var(--shadow-1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  position: relative;
}
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-2);
  padding: 18px;
  box-shadow: var(--shadow-1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    filter 0.3s ease;
  position: relative;
}
.card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-2);
  filter: brightness(1.03);
}
button,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-grad);
  color: #062010;
  font-weight: 800;
  border: 1px solid transparent;
  border-radius: var(--radius-1);
  padding: 10px 14px;
  cursor: pointer;
  box-shadow: var(--shadow-1);
  transition:
    transform 0.15s ease,
    filter 0.15s ease,
    box-shadow 0.15s ease;
}
button:hover,
.btn:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: var(--shadow-2);
}
button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.04);
  color: var(--txt);
  border: 1px solid var(--line);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.07);
}
.btn-neon {
  background: transparent;
  color: var(--accent);
  border: 1px solid rgba(34, 197, 94, 0.45);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.12), inset 0 0 24px rgba(34, 197, 94, 0.08);
}
.btn-neon:hover {
  filter: brightness(1.1);
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22), inset 0 0 32px rgba(34, 197, 94, 0.12);
}
input,
select,
textarea {
  width: 100%;
  background: var(--surface-2);
  color: var(--txt);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 10px 12px;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}
input::placeholder,
textarea::placeholder {
  color: var(--muted-2);
}
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  border-color: rgba(34, 197, 94, 0.45);
  box-shadow: var(--ring);
}
input:disabled,
select:disabled,
textarea:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.muted {
  color: var(--muted);
}
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 16px 0;
}
.badge {
  display: inline-block;
  padding: 8px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(120, 180, 140, 0.35);
  font-weight: 800;
}
.pill {
  display: inline-block;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}
.pill:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-1);
  filter: brightness(1.08);
}
.card-neo {
  border-radius: 24px;
  box-shadow: var(--shadow-1), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
}
.capsule {
  border-radius: var(--radius-pill);
}
.glow {
  box-shadow: 0 0 0 2px var(--accent-glow), 0 8px 30px rgba(34, 197, 94, 0.18);
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
}
.chip .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
}
@media (max-width: 520px) {
  .container {
    padding: 16px;
  }
  button,
  .btn {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .container {
    padding: 12px;
  }
  body {
    font-size: 15px;
  }
}
@media (max-width: 360px) {
  .container {
    padding: 8px;
  }
  body {
    font-size: 14px;
  }
}
.fluent-icon svg {
  width: 1em;
  height: 1em;
  display: block;
  fill: currentColor;
}

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