/* src/styles.css */
:root {
  --bg: #070B17;
  --panel: rgba(255,255,255,.06);
  --panel2: rgba(255,255,255,.04);
  --stroke: rgba(255,255,255,.12);
  --text: rgba(235,240,255,.92);
  --muted: rgba(235,240,255,.70);
  --muted2: rgba(235,240,255,.58);
  --brand1: #4F7DFF;
  --brand2: #00E5A8;
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --shadow: 0 30px 90px rgba(0,0,0,.45);
}
html {
  scroll-behavior: smooth;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background:
    radial-gradient(
      1100px 650px at 15% 0%,
      rgba(79, 125, 255, .22),
      transparent 60%),
    radial-gradient(
      900px 520px at 88% 12%,
      rgba(0, 229, 168, .20),
      transparent 58%),
    radial-gradient(
      780px 560px at 55% 100%,
      rgba(56, 189, 248, .12),
      transparent 55%),
    var(--bg);
  color: var(--text);
  font-family:
    ui-sans-serif,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Helvetica,
    Arial;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}
.section {
  padding: 70px 0;
}
.section.alt {
  background: rgba(255, 255, 255, .03);
  border-top: 1px solid rgba(255, 255, 255, .07);
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}
.h1 {
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1.05;
  margin: 14px 0 12px;
  letter-spacing: -0.7px;
}
.h2 {
  font-size: 28px;
  margin: 0;
  letter-spacing: -.3px;
}
.h3 {
  font-size: 18px;
  margin: 0 0 8px;
}
.lead {
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
  max-width: 60ch;
}
.muted {
  color: var(--muted);
  line-height: 1.7;
}
.muted2 {
  color: var(--muted2);
  line-height: 1.7;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .06);
  color: var(--text);
  font-weight: 900;
  cursor: pointer;
  transition: transform .12s ease, border-color .12s ease;
  -webkit-user-select: none;
  user-select: none;
}
.btn:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, .22);
}
.btn.primary {
  background:
    linear-gradient(
      135deg,
      rgba(79, 125, 255, .95),
      rgba(0, 229, 168, .88));
  border-color: rgba(255, 255, 255, .10);
  color: #061024;
}
.btn.ghost {
  background: rgba(255, 255, 255, .03);
}
.btn.sm {
  padding: 10px 12px;
  border-radius: 14px;
  font-size: 13px;
}
.card {
  border-radius: var(--radius-xl);
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(255, 255, 255, .05);
  padding: 18px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, .18);
}
.field span {
  display: block;
  font-size: 12px;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--muted);
}
input,
textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, .12);
  background: rgba(7, 11, 23, .55);
  color: var(--text);
  padding: 12px;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: rgba(79, 125, 255, .60);
  box-shadow: 0 0 0 3px rgba(79, 125, 255, .18);
}
.section + .section {
  padding-top: 0;
}
@media (max-width: 960px) {
  .section {
    padding: 56px 0;
  }
  .container {
    width: min(1120px, calc(100% - 28px));
  }
}
@media (max-width: 560px) {
  .section {
    padding: 38px 0;
  }
  .container {
    width: min(1120px, calc(100% - 22px));
  }
  .h1 {
    font-size: clamp(28px, 7.2vw, 40px);
  }
  .h2 {
    font-size: clamp(20px, 5.2vw, 26px);
  }
  .h3 {
    font-size: 16px;
  }
  .lead {
    font-size: 14px;
    line-height: 1.55;
  }
  .muted,
  .muted2 {
    font-size: 13px;
    line-height: 1.65;
  }
  .card {
    padding: 12px;
    border-radius: 18px;
  }
  .btn {
    padding: 11px 12px;
    border-radius: 14px;
    font-size: 13px;
  }
  input,
  textarea {
    padding: 11px;
    border-radius: 14px;
  }
  .field span {
    font-size: 11px;
  }
}
body {
  transition: background .25s ease, color .25s ease;
}
body[data-theme=light] {
  --bg: #f6f9ff;
  --panel: rgba(15,23,42,.04);
  --panel2: rgba(15,23,42,.03);
  --stroke: rgba(15,23,42,.10);
  --text: #0f172a;
  --muted: rgba(15,23,42,.72);
  --muted2: rgba(15,23,42,.58);
  --shadow: 0 22px 70px rgba(15,23,42,.10);
  background:
    radial-gradient(
      1100px 650px at 15% 0%,
      rgba(79, 125, 255, .12),
      transparent 60%),
    radial-gradient(
      900px 520px at 88% 12%,
      rgba(0, 229, 168, .10),
      transparent 58%),
    radial-gradient(
      780px 560px at 55% 100%,
      rgba(56, 189, 248, .08),
      transparent 55%),
    var(--bg);
  color: var(--text);
}
body[data-theme=light] .topbar,
body[data-theme=light] .footer {
  background: rgba(255, 255, 255, .78) !important;
  border-color: rgba(15, 23, 42, .08) !important;
}
body[data-theme=light] .brand__name,
body[data-theme=light] .nav a,
body[data-theme=light] .footer__links a,
body[data-theme=light] .muted,
body[data-theme=light] .muted2,
body[data-theme=light] .lead,
body[data-theme=light] .sub {
  color: rgba(15, 23, 42, .74) !important;
}
body[data-theme=light] .nav a.active {
  color: #0f172a !important;
  background: rgba(79, 125, 255, .10) !important;
  border-color: rgba(79, 125, 255, .18) !important;
}
body[data-theme=light] .navBrand__text,
body[data-theme=light] .footer__pill,
body[data-theme=light] .footer__eyebrow,
body[data-theme=light] .footer__bottom-inner,
body[data-theme=light] .footer__cta-copy {
  color: rgba(15, 23, 42, .74) !important;
}
body[data-theme=light] .menu span {
  background: #0f172a !important;
}
body[data-theme=light] .nav {
  background:
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f1f5f9 100%) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  box-shadow: 0 24px 70px rgba(15, 23, 42, .14) !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}
body[data-theme=light] .navBrand {
  border-bottom-color: rgba(15, 23, 42, .10) !important;
}
body[data-theme=light] .nav a {
  color: #0f172a !important;
}
body[data-theme=light] .nav a:hover {
  color: #0f172a !important;
  background: rgba(79, 125, 255, .08) !important;
}
body[data-theme=light] .themeBtn,
body[data-theme=light] .menu {
  background: rgba(255, 255, 255, .88) !important;
  border-color: rgba(15, 23, 42, .12) !important;
  color: #0f172a !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .10) !important;
}
body[data-theme=light] .menu span {
  background: #0f172a !important;
}
body[data-theme=light] .footer__panel,
body[data-theme=light] .footer__pill,
body[data-theme=light] .footer__links a {
  background: rgba(255, 255, 255, .72) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .08) !important;
}
body[data-theme=light] .footer__glow {
  background:
    radial-gradient(
      circle,
      rgba(79, 125, 255, .14),
      transparent 68%) !important;
}
body[data-theme=light] .menu,
body[data-theme=light] .chip,
body[data-theme=light] .pill,
body[data-theme=light] .badge,
body[data-theme=light] .icon,
body[data-theme=light] input,
body[data-theme=light] textarea,
body[data-theme=light] .card,
body[data-theme=light] .section,
body[data-theme=light] .offer,
body[data-theme=light] .price,
body[data-theme=light] .tile,
body[data-theme=light] .post,
body[data-theme=light] .frame,
body[data-theme=light] .mock__top,
body[data-theme=light] .dkpi,
body[data-theme=light] .kpi {
  background: rgba(255, 255, 255, .74) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  color: #0f172a !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .10) !important;
}
body[data-theme=light] .mock,
body[data-theme=light] .mock__title,
body[data-theme=light] .kpi span,
body[data-theme=light] .dkpi span,
body[data-theme=light] .lab,
body[data-theme=light] .kpi__lab {
  color: rgba(15, 23, 42, .70) !important;
}
body[data-theme=light] .bars {
  background: rgba(15, 23, 42, .03) !important;
  border-color: rgba(15, 23, 42, .10) !important;
}
body[data-theme=light] .btn {
  background: rgba(255, 255, 255, .78);
  border-color: rgba(15, 23, 42, .12);
  color: #0f172a;
}
body[data-theme=light] .btn.ghost {
  background: rgba(255, 255, 255, .7);
}
body[data-theme=light] .btn.primary {
  background:
    linear-gradient(
      135deg,
      rgba(79, 125, 255, .95),
      rgba(0, 229, 168, .88));
  color: #061024;
  border-color: transparent;
}
body[data-theme=light] .overlay {
  background:
    linear-gradient(
      to top,
      rgba(246, 249, 255, .96) 15%,
      rgba(246, 249, 255, .78) 45%,
      rgba(246, 249, 255, .24) 75%,
      transparent 100%) !important;
}
.stack {
  gap: 12px !important;
  padding: 12px 0 20px !important;
}
.stack .page {
  padding: 0 !important;
}
.stack .page > .container {
  width: 100% !important;
}
.stack .section {
  padding: 18px !important;
}
.stack .page .grid,
.stack .page .cta,
.stack .page .cats,
.stack .page .railWrapper,
.stack .page .trust {
  margin-top: 12px !important;
}
@media (max-width: 960px) {
  .stack {
    gap: 10px !important;
    padding: 10px 0 18px !important;
  }
  .stack .section {
    padding: 16px !important;
  }
}
@media (max-width: 560px) {
  .stack {
    gap: 8px !important;
    padding: 8px 0 14px !important;
  }
  .stack .section {
    padding: 14px !important;
  }
}
body[data-theme=light] .stack {
  gap: 18px !important;
}
body[data-theme=light] .stack > * {
  display: block;
  width: 100%;
  border-radius: 0;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible;
}
body[data-theme=light] .stack > * > .page,
body[data-theme=light] .stack > app-pricing > .pricing,
body[data-theme=light] .stack > app-expertise > .section,
body[data-theme=light] .stack > app-testimonials > .section,
body[data-theme=light] .stack > app-contact-cta > .cta,
body[data-theme=light] .stack > app-logo-strip > .strip {
  overflow: visible !important;
}
body[data-theme=light] .stack > * > .page,
body[data-theme=light] .stack > app-pricing > .pricing,
body[data-theme=light] .stack > app-expertise > .section,
body[data-theme=light] .stack > app-testimonials > .section,
body[data-theme=light] .stack > app-contact-cta > .section,
body[data-theme=light] .stack > app-logo-strip > .section {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body[data-theme=light] .stack .page {
  padding: 40px 0 34px !important;
}
body[data-theme=light] .stack > app-pricing > .pricing,
body[data-theme=light] .stack > app-expertise > .section,
body[data-theme=light] .stack > app-testimonials > .section,
body[data-theme=light] .stack > app-contact-cta > .cta,
body[data-theme=light] .stack > app-logo-strip > .strip {
  padding-top: 24px !important;
}
body[data-theme=light] .page .head,
body[data-theme=light] .page .page__head {
  margin-bottom: 6px;
}
body[data-theme=light] .page .card,
body[data-theme=light] .page .post,
body[data-theme=light] .page .offer,
body[data-theme=light] .page .note,
body[data-theme=light] .page .pill,
body[data-theme=light] .pricing .offer {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .96),
      rgba(248, 250, 252, .90)) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .08) !important;
}
body[data-theme=light] .page .h1,
body[data-theme=light] .page .h2,
body[data-theme=light] .page .h3,
body[data-theme=light] .page p,
body[data-theme=light] .page li,
body[data-theme=light] .page span,
body[data-theme=light] .pricing .title,
body[data-theme=light] .pricing .subtitle,
body[data-theme=light] .pricing .offer__title,
body[data-theme=light] .pricing .offer__subtitle,
body[data-theme=light] .pricing .offer__price,
body[data-theme=light] .pricing .offer__list li,
body[data-theme=light] .pricing .offer__result,
body[data-theme=light] .pricing .offer__resultLabel,
body[data-theme=light] .pricing .recommendedBadge,
body[data-theme=light] .post .h2,
body[data-theme=light] .post .muted,
body[data-theme=light] .post .meta,
body[data-theme=light] .careers-page .muted {
  color: #0f172a !important;
}
body[data-theme=light] .page .muted,
body[data-theme=light] .page .muted2,
body[data-theme=light] .page .lead,
body[data-theme=light] .page .card p,
body[data-theme=light] .page .steps,
body[data-theme=light] .page .list,
body[data-theme=light] .page .note,
body[data-theme=light] .pricing .subtitle,
body[data-theme=light] .pricing .offer__subtitle,
body[data-theme=light] .pricing .offer__result,
body[data-theme=light] .post .muted {
  color: rgba(15, 23, 42, .74) !important;
}
body[data-theme=light] .post {
  background-color: #ffffff !important;
  background-size: 120px auto !important;
  background-repeat: no-repeat !important;
  background-position: right 18px top 18px !important;
}
body[data-theme=light] .post .overlay {
  background:
    linear-gradient(
      to top,
      rgba(255, 255, 255, .96) 12%,
      rgba(255, 255, 255, .88) 46%,
      rgba(255, 255, 255, .68) 74%,
      rgba(255, 255, 255, .56) 100%) !important;
}
body[data-theme=light] .post .meta {
  color: #0ea5a4 !important;
}
body[data-theme=light] .rail::-webkit-scrollbar-thumb {
  background: rgba(15, 23, 42, .18);
}
body[data-theme=light] .arrow {
  background: rgba(255, 255, 255, .96) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  color: #0f172a !important;
  box-shadow: 0 10px 30px rgba(15, 23, 42, .10);
}
body[data-theme=light] .pricing {
  background:
    radial-gradient(
      900px 480px at 10% 88%,
      rgba(0, 229, 168, .06),
      transparent 60%),
    radial-gradient(
      980px 520px at 84% 6%,
      rgba(79, 125, 255, .08),
      transparent 60%),
    transparent !important;
  border-color: transparent !important;
  box-shadow: none !important;
}
body[data-theme=light] .pricing .title span {
  background:
    linear-gradient(
      135deg,
      #3b82f6,
      #14b8a6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent !important;
}
body[data-theme=light] .pricing .offer {
  overflow: visible !important;
}
body[data-theme=light] .stack > app-pricing {
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body[data-theme=light] .stack > app-pricing > .pricing {
  overflow: visible !important;
  padding-top: 64px !important;
}
body[data-theme=light] .pricing .grid {
  padding-top: 54px !important;
}
body[data-theme=light] .pricing .offer.green::before {
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(16, 185, 129, .10),
      transparent 24%);
}
body[data-theme=light] .pricing .offer.blue::before {
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(59, 130, 246, .10),
      transparent 24%);
}
body[data-theme=light] .pricing .offer.violet::before {
  background:
    radial-gradient(
      circle at 18% 10%,
      rgba(168, 85, 247, .10),
      transparent 24%);
}
body[data-theme=light] .pricing .offer__icon {
  background: #111827 !important;
  color: #fff !important;
}
body[data-theme=light] .pricing .recommendedBadge {
  background: #111827 !important;
  color: #fff !important;
}
body[data-theme=light] .pricing .offer__cta {
  background: rgba(255, 255, 255, .9) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  color: #0f172a !important;
  box-shadow: none !important;
}
body[data-theme=light] .pricing .offer__cta.primary {
  background:
    linear-gradient(
      135deg,
      rgba(79, 125, 255, .95),
      rgba(0, 229, 168, .88)) !important;
  color: #061024 !important;
}
body[data-theme=light] app-careers-page .card {
  background-color: #f8fafc !important;
  background-size: 110px auto !important;
  background-repeat: no-repeat !important;
  background-position: right 20px top 20px !important;
}
body[data-theme=light] app-careers-page .card::before {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .90) 0%,
      rgba(248, 250, 252, .95) 100%) !important;
}
body[data-theme=light] app-careers-page .card .btn {
  background: rgba(255, 255, 255, .94) !important;
}
body[data-theme=light] app-about-page .card,
body[data-theme=light] app-services-page .card,
body[data-theme=light] app-contact-page .card {
  background:
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .96),
      rgba(248, 250, 252, .92)),
    radial-gradient(
      circle at top right,
      rgba(20, 184, 166, .10),
      transparent 28%) !important;
}
body[data-theme=light] app-about-page .pill {
  background: rgba(255, 255, 255, .92) !important;
  color: #0f172a !important;
}
body[data-theme=light] app-contact-page input,
body[data-theme=light] app-contact-page textarea {
  background: rgba(255, 255, 255, .96) !important;
  color: #0f172a !important;
  border-color: rgba(15, 23, 42, .10) !important;
}
body[data-theme=light] app-contact-page span {
  color: rgba(15, 23, 42, .70) !important;
}
@media (max-width: 960px) {
  body[data-theme=light] .stack > * {
    border-radius: 0;
  }
  body[data-theme=light] .stack .page {
    padding: 24px 0 26px !important;
  }
}
.stack > * {
  margin-inline: 4px;
}
.stack > * > .container,
.stack > app-pricing > .container,
.stack > app-expertise > .section,
.stack > app-testimonials > .section,
.stack > app-contact-cta > .section,
.stack > app-logo-strip > .section {
  width: min(1088px, calc(100% - 44px)) !important;
  margin-inline: auto !important;
}
body[data-theme=light] app-expertise .section,
body[data-theme=light] app-testimonials .section,
body[data-theme=light] app-contact-cta .section,
body[data-theme=light] app-logo-strip .section {
  background: transparent !important;
}
body[data-theme=light] app-expertise .h3,
body[data-theme=light] app-expertise .list,
body[data-theme=light] app-expertise .list li,
body[data-theme=light] app-testimonials .h3,
body[data-theme=light] app-testimonials p,
body[data-theme=light] app-testimonials .kpi__value,
body[data-theme=light] app-testimonials .kpi__lab {
  color: #0f172a !important;
}
body[data-theme=light] app-expertise .icon,
body[data-theme=light] app-testimonials .icon,
body[data-theme=light] app-testimonials .kpi {
  background: rgba(255, 255, 255, .92) !important;
  border-color: rgba(15, 23, 42, .10) !important;
}
@media (max-width: 960px) {
  .stack > * > .container,
  .stack > app-pricing > .container,
  .stack > app-expertise > .section,
  .stack > app-testimonials > .section,
  .stack > app-contact-cta > .section,
  .stack > app-logo-strip > .section {
    width: min(1088px, calc(100% - 34px)) !important;
  }
}
@media (max-width: 560px) {
  .stack > * {
    margin-inline: 0;
  }
  .stack > * > .container,
  .stack > app-pricing > .container,
  .stack > app-expertise > .section,
  .stack > app-testimonials > .section,
  .stack > app-contact-cta > .section,
  .stack > app-logo-strip > .section {
    width: min(1088px, calc(100% - 24px)) !important;
  }
}
body[data-theme=light] .stack > * > .section,
body[data-theme=light] .stack > * > .cta,
body[data-theme=light] .stack > * > .strip,
body[data-theme=light] .stack > * > .pricing,
body[data-theme=light] .stack > * > .page {
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
body[data-theme=light] app-contact-cta .cta {
  min-height: 0 !important;
  background:
    radial-gradient(
      520px 220px at 15% 20%,
      rgba(79, 125, 255, .10),
      transparent 62%),
    radial-gradient(
      520px 220px at 85% 35%,
      rgba(0, 229, 168, .10),
      transparent 62%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .72),
      rgba(255, 255, 255, .42)) !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  box-shadow: 0 16px 40px rgba(15, 23, 42, .06) !important;
  overflow: visible !important;
}
body[data-theme=light] app-contact-cta .cta__bg {
  inset: 0 !important;
  opacity: .95 !important;
  background:
    radial-gradient(
      460px 180px at 18% 25%,
      rgba(79, 125, 255, .12),
      transparent 60%),
    radial-gradient(
      460px 180px at 82% 28%,
      rgba(0, 229, 168, .12),
      transparent 60%),
    radial-gradient(
      520px 220px at 50% 120%,
      rgba(168, 85, 247, .08),
      transparent 62%),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, .35),
      rgba(255, 255, 255, .08)) !important;
  filter: none !important;
}
body[data-theme=light] app-contact-cta .cta__inner {
  padding: 26px !important;
}
body[data-theme=light] app-contact-cta .h2,
body[data-theme=light] app-contact-cta p,
body[data-theme=light] app-contact-cta .check {
  color: #0f172a !important;
}
body[data-theme=light] app-contact-cta .checks {
  gap: 12px !important;
}
body[data-theme=light] app-contact-cta .check {
  background: rgba(255, 255, 255, .86) !important;
  border: 1px solid rgba(15, 23, 42, .10) !important;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .06) !important;
}
body[data-theme=light] app-contact-cta .btn:not(.primary) {
  background: rgba(255, 255, 255, .9) !important;
  border-color: rgba(15, 23, 42, .10) !important;
  color: #0f172a !important;
}
body[data-theme=light] app-contact-cta .btn.primary {
  box-shadow: 0 14px 30px rgba(79, 125, 255, .18) !important;
}
@media (max-width: 560px) {
  body[data-theme=light] app-contact-cta .cta__inner {
    padding: 18px !important;
  }
}
@media (max-width: 860px) {
  body.menu-open {
    overflow: hidden;
  }
}

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