:root {
  --primary: #1d5fff;
  --primary-dark: #08145f;
  --accent: #55dff7;
  --purple: #6a1bff;
  --soft: #f4f7fb;
  --dark: #070b24;
  --text: #172033;
  --muted: #64748b;
  --white: #ffffff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(8, 20, 95, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 86px; }
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; }

.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  background: var(--primary);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 9999;
}
.skip-link:focus { left: 12px; }

.site-header { transition: .25s ease; }
.site-header.scrolled { background: rgba(7, 11, 36, .88); backdrop-filter: blur(16px); box-shadow: 0 10px 35px rgba(0,0,0,.16); }
.navbar { padding: 18px 0; }
.navbar-brand { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 700; letter-spacing: -.02em; }
.navbar-brand:hover, .nav-link:hover { color: var(--accent); }
.brand-icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: linear-gradient(135deg, var(--primary), var(--purple)); color: #fff; }
.nav-link { color: rgba(255,255,255,.86); font-weight: 600; }
.navbar-toggler { border: 0; background: rgba(255,255,255,.12); }
.navbar-toggler:focus { box-shadow: 0 0 0 .2rem rgba(85,223,247,.35); }
.navbar-toggler-icon { filter: invert(1); }

.btn { min-height: 44px; display: inline-flex; align-items: center; justify-content: center; gap: 8px; border-radius: 999px; font-weight: 700; padding-inline: 22px; transition: transform .2s ease, box-shadow .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: linear-gradient(135deg, var(--primary), var(--purple)); border: 0; box-shadow: 0 12px 30px rgba(29,95,255,.28); }
.btn-outline-light { border-color: rgba(255,255,255,.35); color: #fff; }
.btn-sm-pill { min-height: 40px; padding: 9px 18px; }

.section-pad { padding: 96px 0; }
.bg-soft { background: var(--soft); }
.hero-section { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: center; color: #fff; background: radial-gradient(circle at 15% 20%, rgba(85,223,247,.18), transparent 30%), linear-gradient(135deg, #05091f 0%, #08145f 55%, #0d164a 100%); padding-top: 130px; }
.hero-glow { position: absolute; width: 420px; height: 420px; border-radius: 50%; filter: blur(30px); opacity: .45; }
.hero-glow-one { right: -120px; top: 90px; background: rgba(106,27,255,.35); }
.hero-glow-two { left: -180px; bottom: -120px; background: rgba(85,223,247,.22); }
.eyebrow { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; padding: 8px 14px; border: 1px solid rgba(255,255,255,.18); border-radius: 999px; color: var(--accent); font-weight: 800; font-size: .86rem; background: rgba(255,255,255,.08); }
.eyebrow.dark { color: var(--primary); border-color: rgba(29,95,255,.13); background: rgba(29,95,255,.08); }
h1, h2, h3 { letter-spacing: -.04em; line-height: 1.08; font-weight: 850; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); margin-bottom: 20px; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; }
.hero-text { color: rgba(255,255,255,.78); font-size: 1.18rem; max-width: 620px; margin-bottom: 28px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-metrics { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 14px; max-width: 560px; }
.hero-metrics div { padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.hero-metrics strong { display: block; font-size: 1.5rem; color: #fff; }
.hero-metrics span { color: rgba(255,255,255,.68); font-size: .9rem; }

.dashboard-card { position: relative; padding: 28px; border-radius: 32px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); box-shadow: 0 30px 80px rgba(0,0,0,.32); backdrop-filter: blur(24px); }
.dashboard-top, .dashboard-grid, .integration-list { display: flex; gap: 14px; justify-content: space-between; align-items: center; }
.dashboard-top span, .dashboard-card small { color: rgba(255,255,255,.62); }
.status-pill { color: #fff !important; background: rgba(85,223,247,.18); border: 1px solid rgba(85,223,247,.32); padding: 8px 12px; border-radius: 999px; }
.chart-box { height: 260px; display: flex; align-items: end; gap: 16px; padding: 28px; margin: 24px 0; border-radius: 24px; background: rgba(255,255,255,.08); }
.chart-box span { flex: 1; min-width: 26px; border-radius: 999px 999px 8px 8px; background: linear-gradient(180deg, var(--accent), var(--primary)); }
.dashboard-grid { margin-bottom: 20px; }
.dashboard-grid div { flex: 1; padding: 16px; border-radius: 18px; background: rgba(255,255,255,.08); }
.dashboard-grid strong { display: block; font-size: 1.45rem; }
.integration-list { flex-wrap: wrap; justify-content: flex-start; }
.integration-list span { padding: 8px 12px; border-radius: 999px; background: rgba(255,255,255,.1); }

.trust-strip { padding: 28px 0; border-bottom: 1px solid #e7edf7; }
.tech-list { display: flex; flex-wrap: wrap; gap: 10px; }
.tech-list span { padding: 9px 14px; border-radius: 999px; background: #eef4ff; color: var(--primary-dark); font-weight: 700; }
.section-heading { max-width: 760px; margin-bottom: 48px; }
.section-heading p { color: var(--muted); font-size: 1.08rem; }
.feature-card, .service-card, .case-card, blockquote, .benefit-box, .process-step { height: 100%; border-radius: var(--radius); background: #fff; padding: 28px; box-shadow: 0 16px 44px rgba(15,23,42,.06); border: 1px solid rgba(15,23,42,.06); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover, .service-card:hover, .case-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.feature-card i { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 16px; margin-bottom: 18px; color: #fff; background: linear-gradient(135deg, var(--primary), var(--purple)); }
.feature-card p, .service-card p, .case-card p, .benefit-box p, .process-step p { color: var(--muted); margin-bottom: 0; }
.service-card a { display: inline-flex; align-items: center; gap: 8px; margin-top: 20px; font-weight: 800; color: var(--primary); }
.dark-section { background: linear-gradient(135deg, #070b24, #08145f); color: #fff; }
.dark-section p { color: rgba(255,255,255,.72); }
.benefit-box { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.13); box-shadow: none; }
.benefit-box i { color: var(--accent); font-size: 1.55rem; margin-bottom: 14px; }
.process-line { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.process-step span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--primary-dark); color: #fff; margin-bottom: 18px; font-weight: 800; }
.case-card { min-height: 240px; display: flex; flex-direction: column; justify-content: end; background: linear-gradient(135deg, rgba(29,95,255,.09), rgba(106,27,255,.06)); }
.case-card span { color: var(--primary); font-weight: 800; margin-bottom: 12px; }
blockquote { margin: 0; font-size: 1.05rem; }
blockquote cite { display: block; margin-top: 20px; color: var(--primary-dark); font-style: normal; font-weight: 800; }
.cta-section { background: #070b24; color: #fff; }
.cta-box { max-width: 900px; margin: 0 auto; padding: 56px 28px; border-radius: 32px; background: radial-gradient(circle at top, rgba(85,223,247,.18), transparent 40%), linear-gradient(135deg, rgba(29,95,255,.22), rgba(106,27,255,.18)); border: 1px solid rgba(255,255,255,.12); }
.cta-box p { color: rgba(255,255,255,.72); max-width: 640px; margin: 0 auto 28px; }
.footer { background: #05091f; color: rgba(255,255,255,.72); padding: 60px 0 26px; }
.footer h2, .footer h3 { color: #fff; font-size: 1.2rem; }
.footer ul { padding: 0; margin: 0; list-style: none; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 14px; padding-top: 28px; margin-top: 36px; border-top: 1px solid rgba(255,255,255,.1); font-size: .92rem; }
.back-to-top { position: fixed; right: 18px; bottom: 18px; width: 46px; height: 46px; border: 0; border-radius: 50%; background: var(--primary); color: #fff; opacity: 0; pointer-events: none; transform: translateY(10px); transition: .2s ease; z-index: 99; }
.back-to-top.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.reveal { opacity: 0; transform: translateY(18px); transition: .7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 991px) {
  .navbar-collapse { margin-top: 14px; padding: 18px; border-radius: 20px; background: rgba(7, 11, 36, .96); }
  .section-pad { padding: 72px 0; }
  .hero-section { min-height: auto; }
  .process-line { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 575px) {
  .hero-actions .btn { width: 100%; }
  .hero-metrics { grid-template-columns: 1fr; }
  .dashboard-card { padding: 20px; border-radius: 24px; }
  .chart-box { height: 190px; padding: 18px; gap: 10px; }
  .process-line { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .01ms !important; }
}
