@import "https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@400;500;700&display=swap";

/* src/styles.css */
:root {
  --bg-color: #011222;
  --bg-alt: #021a30;
  --primary-color: #ffffff;
  --accent-cyan: #FF5722;
  --accent-purple: #FF9800;
  --accent-magenta: #0277BD;
  --accent-orange: #FF3D00;
  --surface-color: rgba(255, 255, 255, 0.03);
  --surface-border: rgba(255, 255, 255, 0.1);
  --text-main: #ffffff;
  --text-muted: #a0aec0;
  --font-family:
    "Outfit",
    "Inter",
    sans-serif;
  --section-padding: 6rem 2rem;
  --max-width: 1200px;
  --border-radius: 16px;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
[data-theme=light] {
  --bg-color: #f5f7fa;
  --bg-alt: #ffffff;
  --primary-color: #1a202c;
  --accent-cyan: #E64A19;
  --accent-purple: #F57C00;
  --accent-magenta: #01579B;
  --accent-orange: #DD2C00;
  --surface-color: rgba(255, 255, 255, 0.85);
  --surface-border: rgba(0, 0, 0, 0.1);
  --text-main: #1a202c;
  --text-muted: #4a5568;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: var(--font-family);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.4s ease, color 0.4s ease;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary-color);
  letter-spacing: -0.02em;
}
a {
  color: var(--accent-cyan);
  text-decoration: none;
  transition: var(--transition);
}
a:hover {
  color: var(--accent-purple);
  text-shadow: 0 0 8px var(--accent-purple);
}
ul {
  list-style: none;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1rem;
}
.section {
  padding: var(--section-padding);
  position: relative;
}
.section-bg-alt {
  background-color: var(--bg-alt);
}
.section-title {
  text-align: center;
  font-size: 3rem;
  margin-bottom: 1.25rem;
  color: var(--primary-color);
  background:
    linear-gradient(
      to right,
      #fff,
      #a0aec0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  max-width: 700px;
  margin: 0 auto 3.5rem;
  font-size: 1.2rem;
  line-height: 1.7;
}
.corp-card,
.glass-card {
  background: rgba(1, 18, 34, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 87, 34, 0.15);
  border-radius: var(--border-radius);
  padding: 2.5rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.corp-card::before,
.glass-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: var(--border-radius);
  padding: 2px;
  background:
    linear-gradient(
      135deg,
      var(--accent-cyan),
      var(--accent-magenta));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}
.corp-card:hover,
.glass-card:hover {
  transform: translateY(-8px) scale(1.02);
  background: rgba(1, 18, 34, 0.9);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 87, 34, 0.15);
  border-color: rgba(255, 87, 34, 0.4);
}
.corp-card:hover::before,
.glass-card:hover::before {
  opacity: 1;
}
.section-gradient-1 {
  background:
    linear-gradient(
      180deg,
      var(--bg-color) 0%,
      #011C35 100%);
}
.section-gradient-2 {
  background:
    linear-gradient(
      180deg,
      #011C35 0%,
      #022442 50%,
      var(--bg-color) 100%);
}
.section-gradient-brand {
  background:
    linear-gradient(
      135deg,
      #022442 0%,
      #0a3d69 100%);
  border-top: 1px solid rgba(255, 87, 34, 0.2);
  border-bottom: 1px solid rgba(255, 87, 34, 0.2);
}
.text-gradient {
  background:
    linear-gradient(
      to right,
      var(--accent-cyan),
      var(--primary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.bg-dark {
  background-color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.2rem;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  font-family: var(--font-family);
  font-size: 1.05rem;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-primary {
  background:
    linear-gradient(
      135deg,
      var(--accent-cyan) 0%,
      var(--accent-purple) 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(79, 172, 254, 0.3);
  border: none;
}
.btn-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:
    linear-gradient(
      135deg,
      var(--accent-purple) 0%,
      var(--accent-cyan) 100%);
  z-index: -1;
  transition: opacity 0.4s ease-in-out;
  opacity: 0;
}
.btn-primary:hover::before {
  opacity: 1;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(79, 172, 254, 0.5);
  color: #fff;
}
.btn-outline {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
}
.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(255, 255, 255, 0.1);
}
.fluid-bg {
  background:
    linear-gradient(
      -45deg,
      #011222,
      #022B54,
      #011a32,
      #011222);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
.fluid-bg-vibrant {
  background:
    linear-gradient(
      -45deg,
      #0277BD,
      #FF5722,
      #021a30);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}
@keyframes gradientBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.reveal,
.reveal-left,
.reveal-right,
.reveal-scale {
  opacity: 0;
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.reveal {
  transform: translateY(40px);
}
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}
.reveal-scale {
  transform: scale(0.8);
}
.reveal.active,
.reveal-left.active,
.reveal-right.active,
.reveal-scale.active {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.delay-100 {
  transition-delay: 100ms;
}
.delay-200 {
  transition-delay: 200ms;
}
.delay-300 {
  transition-delay: 300ms;
}
.delay-400 {
  transition-delay: 400ms;
}
[data-theme=light] ::-webkit-scrollbar-track {
  background: #f5f7fa;
}
[data-theme=light] ::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.2);
}
[data-theme=light] ::-webkit-scrollbar-thumb:hover {
  background: var(--accent-cyan);
}
[data-theme=light] .section-title {
  background:
    linear-gradient(
      to right,
      #1a202c,
      #4a5568);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme=light] .corp-card,
[data-theme=light] .glass-card {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
[data-theme=light] .corp-card:hover,
[data-theme=light] .glass-card:hover {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(230, 74, 25, 0.3);
}
[data-theme=light] .section-gradient-1 {
  background:
    linear-gradient(
      180deg,
      #f5f7fa 0%,
      #edf2f7 100%);
}
[data-theme=light] .section-gradient-2 {
  background:
    linear-gradient(
      180deg,
      #edf2f7 0%,
      #e2e8f0 50%,
      #f5f7fa 100%);
}
[data-theme=light] .section-gradient-brand {
  background:
    linear-gradient(
      135deg,
      #edf2f7 0%,
      #e2e8f0 100%);
  border-top: 1px solid rgba(230, 74, 25, 0.15);
  border-bottom: 1px solid rgba(230, 74, 25, 0.15);
}
[data-theme=light] .text-gradient {
  background:
    linear-gradient(
      to right,
      var(--accent-cyan),
      #1a202c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
[data-theme=light] .btn-outline {
  background: rgba(0, 0, 0, 0.03);
  color: #1a202c;
  border-color: rgba(0, 0, 0, 0.15);
}
[data-theme=light] .btn-outline:hover {
  background: rgba(0, 0, 0, 0.06);
  border-color: #1a202c;
}
[data-theme=light] .fluid-bg {
  background:
    linear-gradient(
      -45deg,
      #f5f7fa,
      #e2e8f0,
      #edf2f7,
      #f5f7fa);
  background-size: 400% 400%;
  animation: gradientBG 15s ease infinite;
}
[data-theme=light] .fluid-bg-vibrant {
  background:
    linear-gradient(
      -45deg,
      #e2e8f0,
      #fce4ec,
      #e8eaf6);
  background-size: 400% 400%;
  animation: gradientBG 10s ease infinite;
}
[data-theme=light] a:hover {
  text-shadow: none;
}
.no-data-fallback {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
  font-size: 1.25rem;
  font-weight: 500;
  width: 100%;
  grid-column: 1 / -1;
  background: var(--surface-color);
  border: 1px dashed var(--surface-border);
  border-radius: var(--border-radius);
  margin-top: 2rem;
}
@media (max-width: 992px) {
  :root {
    --section-padding: 4.5rem 1.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
  }
}
@media (max-width: 768px) {
  :root {
    --section-padding: 3.5rem 1rem;
  }
  .section-title {
    font-size: 2.1rem;
    margin-bottom: 1rem;
  }
  h1 {
    font-size: 2.2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  h3 {
    font-size: 1.5rem;
  }
  h4 {
    font-size: 1.3rem;
  }
  h5 {
    font-size: 1.1rem;
  }
  .corp-card,
  .glass-card {
    padding: 1.75rem;
  }
}
@media (max-width: 576px) {
  :root {
    --section-padding: 3rem 1rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  .btn {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }
}

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