/* src/styles.scss */
:root {
  --font-display:
    "Sora",
    system-ui,
    sans-serif;
  --font-sans:
    "IBM Plex Sans",
    system-ui,
    sans-serif;
}
html[data-theme=dark] {
  --bg: #0b0f14;
  --surface: #121826;
  --surface-strong: #161d2b;
  --text: #eef3f9;
  --text-muted: #a8b3c2;
  --text-soft: #c7d0dc;
  --accent: #6ef3c5;
  --accent-strong: #49e3b0;
  --line: rgba(255, 255, 255, 0.08);
  --shadow-soft: 0 20px 40px rgba(5, 8, 12, 0.35);
  --shadow-strong: 0 25px 60px rgba(5, 8, 12, 0.45);
}
html[data-theme=light] {
  --bg: #f4f6f9;
  --surface: #ffffff;
  --surface-strong: #f8fafc;
  --text: #0b0f14;
  --text-muted: #445065;
  --text-soft: #5b677c;
  --accent: #0ea37a;
  --accent-strong: #0c8e6c;
  --line: rgba(10, 15, 20, 0.12);
  --shadow-soft: 0 16px 30px rgba(15, 20, 30, 0.1);
  --shadow-strong: 0 20px 50px rgba(15, 20, 30, 0.15);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}
body::before {
  background:
    radial-gradient(
      1200px 700px at 10% -10%,
      rgba(110, 243, 197, 0.1),
      transparent 60%),
    radial-gradient(
      1000px 800px at 90% -20%,
      rgba(99, 166, 255, 0.12),
      transparent 60%),
    radial-gradient(
      900px 900px at 50% 110%,
      rgba(176, 111, 255, 0.1),
      transparent 60%);
}
body::after {
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="140" height="140" viewBox="0 0 140 140"><filter id="n"><feTurbulence type="fractalNoise" baseFrequency="0.6" numOctaves="3" stitchTiles="stitch"/></filter><rect width="140" height="140" filter="url(%23n)" opacity="0.06"/></svg>');
  opacity: 0.08;
}
h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  margin: 0 0 12px;
}
p {
  line-height: 1.6;
}
a {
  color: inherit;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
.container {
  width: min(1120px, 90vw);
  margin: 0 auto;
}
.section {
  padding: 96px 0;
}
.section-head {
  max-width: 720px;
}
.section-sub {
  color: var(--text-muted);
}
.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--text-soft);
  margin: 0 0 12px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.btn.primary {
  background: var(--accent);
  color: #06110d;
  box-shadow: 0 16px 30px rgba(110, 243, 197, 0.25);
}
.btn.primary:hover {
  transform: translateY(-2px);
}
.btn.ghost {
  border-color: var(--line);
  color: var(--text);
}
.btn.ghost:hover {
  transform: translateY(-2px);
}
.reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}
section {
  scroll-margin-top: 90px;
}
@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
  }
  .btn,
  .contact-card,
  .back-to-top {
    transition: none;
  }
}

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