:root {
  --ink: #07111f;
  --ink-soft: #132237;
  --blue: #2864f0;
  --blue-light: #5b8cff;
  --cyan: #54d6e8;
  --lime: #c9f36a;
  --paper: #f7f8fa;
  --white: #ffffff;
  --muted: #657084;
  --line: #dfe4eb;
  --radius: 22px;
  --shadow: 0 24px 70px rgba(7, 17, 31, .12);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  color: var(--ink);
  background: var(--white);
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }
.section { padding: 124px 0; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 24px 0;
  color: var(--white);
  transition: .3s ease;
}
.site-header.scrolled {
  padding: 14px 0;
  color: var(--ink);
  background: rgba(255,255,255,.88);
  border-bottom: 1px solid rgba(7,17,31,.08);
  backdrop-filter: blur(18px);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; }
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font: 800 25px/1 "Manrope", sans-serif;
  letter-spacing: -.05em;
}
.brand-mark {
  position: relative;
  display: inline-flex;
  align-items: end;
  gap: 3px;
  width: 29px;
  height: 25px;
  transform: skew(-12deg);
}
.brand-mark span {
  display: block;
  width: 7px;
  border-radius: 2px;
  background: var(--lime);
}
.brand-mark span:nth-child(1) { height: 12px; }
.brand-mark span:nth-child(2) { height: 19px; }
.brand-mark span:nth-child(3) { height: 25px; }
.site-nav { display: flex; align-items: center; gap: 38px; font-weight: 600; font-size: 14px; }
.site-nav > a:not(.nav-cta) { position: relative; opacity: .82; }
.site-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -6px;
  height: 2px;
  background: var(--lime);
  transition: .25s;
}
.site-nav > a:hover::after { right: 0; }
.site-nav > a:hover { opacity: 1; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}
.scrolled .nav-cta { color: var(--white); background: var(--ink); border-color: var(--ink); }
.nav-cta:hover { background: var(--blue); border-color: var(--blue); color: var(--white); }
.menu-toggle { display: none; border: 0; background: none; }

.hero {
  position: relative;
  min-height: 820px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 25%, rgba(48,99,244,.25), transparent 32%),
    linear-gradient(130deg, #07111f 0%, #0a192d 62%, #0b2340 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 90px;
  background: linear-gradient(178deg, transparent 49%, var(--white) 50%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  align-items: center;
  gap: 70px;
  min-height: 720px;
  padding-top: 90px;
}
.hero-copy { padding-bottom: 20px; }
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow { color: var(--lime); }
.eyebrow span { width: 28px; height: 1px; background: currentColor; }
.hero h1 {
  max-width: 720px;
  font: 700 clamp(48px, 5.2vw, 76px)/1.06 "Manrope", sans-serif;
  letter-spacing: -.055em;
}
.hero h1 em { color: var(--cyan); font-style: normal; }
.hero-copy > p {
  max-width: 590px;
  margin-top: 28px;
  color: #b8c4d5;
  font-size: 19px;
  line-height: 1.7;
}
.hero-actions { display: flex; align-items: center; gap: 32px; margin-top: 38px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 15px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  transition: .25s ease;
}
.button span, .nav-cta span { font-size: 18px; transition: transform .25s; }
.button:hover span, .nav-cta:hover span { transform: translate(3px, -3px); }
.button-primary { color: var(--ink); background: var(--lime); }
.button-primary:hover { background: var(--white); transform: translateY(-2px); }
.text-link { font-size: 14px; font-weight: 700; color: #d7e0ec; }
.text-link span { margin-left: 8px; color: var(--cyan); }
.hero-proof {
  display: flex;
  gap: 42px;
  margin-top: 52px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.hero-proof div { display: flex; align-items: center; gap: 12px; }
.hero-proof strong { font: 700 25px/1 "Manrope", sans-serif; }
.hero-proof span { max-width: 110px; color: #94a4b9; font-size: 12px; line-height: 1.35; }

.hero-visual { position: relative; height: 500px; }
.visual-card {
  position: absolute;
  color: var(--ink);
  background: rgba(255,255,255,.96);
  box-shadow: 0 30px 90px rgba(0,0,0,.25);
  backdrop-filter: blur(15px);
}
.card-main {
  inset: 60px 0 auto 35px;
  min-height: 335px;
  padding: 28px;
  border-radius: 26px;
  transform: rotate(2deg);
}
.card-top { display: flex; align-items: center; gap: 9px; color: var(--muted); font-size: 12px; font-weight: 600; }
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: #4ecb7b; box-shadow: 0 0 0 4px #e4f8eb; }
.live-label { margin-left: auto; padding: 4px 7px; border-radius: 5px; color: var(--blue); background: #edf2ff; font-size: 9px; }
.metric-row { display: flex; align-items: end; justify-content: space-between; margin-top: 48px; }
.metric-row div:first-child { display: grid; gap: 5px; }
.metric-row span { color: var(--muted); font-size: 12px; }
.metric-row strong { font: 700 40px/1 "Manrope", sans-serif; letter-spacing: -.04em; }
.trend { padding: 6px 10px; border-radius: 8px; color: #17834c; background: #e6f8ed; font-size: 11px; font-weight: 700; }
.chart { display: flex; align-items: end; gap: 10px; height: 120px; margin-top: 30px; border-bottom: 1px solid var(--line); }
.chart span { flex: 1; min-height: 8px; border-radius: 5px 5px 0 0; background: linear-gradient(var(--blue-light), var(--blue)); }
.card-float { z-index: 4; border-radius: 16px; }
.card-integration {
  left: -12px; bottom: 40px;
  display: flex; align-items: center; gap: 12px;
  width: 245px; padding: 17px;
}
.mini-icon { display: grid; place-items: center; width: 38px; height: 38px; border-radius: 10px; background: #e7f9fb; color: #1694a5; font-size: 24px; }
.card-integration div { display: grid; line-height: 1.3; }
.card-integration strong { font-size: 13px; }
.card-integration div span { color: var(--muted); font-size: 10px; }
.check { display: grid; place-items: center; margin-left: auto; width: 24px; height: 24px; border-radius: 50%; color: white; background: #42bd73; font-size: 12px; }
.card-delivery { right: -25px; top: 25px; width: 175px; padding: 18px; }
.card-delivery > span { color: var(--muted); font-size: 10px; }
.card-delivery strong { display: block; margin: 4px 0 10px; font: 700 24px/1 "Manrope", sans-serif; }
.progress { height: 5px; overflow: hidden; border-radius: 5px; background: #e8ebef; }
.progress span { display: block; width: 78%; height: 100%; background: var(--blue); }
.orbit { position: absolute; border: 1px solid rgba(84,214,232,.22); border-radius: 50%; }
.orbit-one { inset: 10px -70px 10px 0; }
.orbit-two { inset: 80px 0 70px 60px; }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(3px); opacity: .4; }
.hero-glow-one { width: 300px; height: 300px; right: -100px; top: 60px; background: radial-gradient(var(--blue), transparent 65%); }
.trust-line {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-top: -6px;
  color: var(--ink);
}
.trust-line > span { color: var(--muted); font-size: 12px; }
.trust-line div { display: flex; gap: 52px; color: #a8afb9; font: 700 12px "Manrope", sans-serif; letter-spacing: .08em; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 60px; margin-bottom: 60px; }
.section-heading h2, .about-copy h2, .process-intro h2, .contact h2 {
  font: 700 clamp(36px, 4vw, 54px)/1.12 "Manrope", sans-serif;
  letter-spacing: -.045em;
}
.section-heading h2 { max-width: 620px; }
.section-heading > p { max-width: 420px; color: var(--muted); font-size: 17px; }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  position: relative;
  min-height: 440px;
  padding: 30px 26px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: .3s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: transparent; }
.service-card.featured { color: var(--white); background: var(--blue); border-color: var(--blue); }
.service-number { color: #9aa3b1; font: 600 11px "Manrope", sans-serif; letter-spacing: .12em; }
.featured .service-number { color: rgba(255,255,255,.65); }
.service-icon {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin: 38px 0 30px;
  border-radius: 15px;
  color: var(--blue);
  background: #edf2ff;
}
.featured .service-icon { color: var(--ink); background: var(--lime); }
.service-icon svg { width: 27px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { font: 700 20px "Manrope", sans-serif; letter-spacing: -.02em; }
.service-card p { margin-top: 14px; color: var(--muted); font-size: 14px; line-height: 1.7; }
.featured p { color: rgba(255,255,255,.74); }
.service-card ul { position: absolute; left: 26px; bottom: 28px; list-style: none; }
.service-card li { margin-top: 6px; color: #778194; font-size: 12px; }
.service-card li::before { content: "—"; margin-right: 8px; color: var(--blue); }
.featured li { color: rgba(255,255,255,.74); }
.featured li::before { color: var(--lime); }

.process { color: var(--white); background: var(--ink); }
.process-grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 120px; }
.section-kicker.light { color: var(--cyan); }
.process-intro { position: sticky; top: 150px; align-self: start; }
.process-intro p { max-width: 440px; margin: 28px 0 34px; color: #9baabd; font-size: 17px; }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { background: var(--lime); transform: translateY(-2px); }
.process-steps { border-top: 1px solid rgba(255,255,255,.13); }
.process-step { display: grid; grid-template-columns: 60px 1fr; gap: 24px; padding: 36px 0; border-bottom: 1px solid rgba(255,255,255,.13); }
.process-step > span { color: var(--cyan); font: 600 11px "Manrope", sans-serif; letter-spacing: .1em; }
.process-step h3 { font: 700 23px "Manrope", sans-serif; }
.process-step p { margin-top: 8px; color: #9baabd; }

.about { background: var(--paper); }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 100px; }
.about-visual { position: relative; min-height: 500px; }
.about-shape {
  position: absolute;
  inset: 10px 30px 50px 0;
  overflow: hidden;
  border-radius: 34% 66% 55% 45% / 45% 43% 57% 55%;
  background:
    radial-gradient(circle at 65% 35%, rgba(84,214,232,.9), transparent 22%),
    linear-gradient(145deg, #1e5ce8, #0a1b31 70%);
}
.about-shape::before, .about-shape::after {
  content: "";
  position: absolute;
  width: 300px; height: 300px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
}
.about-shape::before { left: -80px; top: -40px; }
.about-shape::after { right: -100px; bottom: -80px; }
.shape-line { position: absolute; width: 160%; height: 1px; background: rgba(255,255,255,.22); transform: rotate(-35deg); }
.line-one { top: 35%; left: -20%; }
.line-two { top: 58%; left: -25%; }
.about-badge {
  position: absolute;
  inset: 50% auto auto 50%;
  display: flex; align-items: center; gap: 14px;
  color: var(--white);
  transform: translate(-50%, -50%);
}
.about-badge strong { font: 700 72px/1 "Manrope", sans-serif; letter-spacing: -.07em; }
.about-badge span { padding-left: 14px; border-left: 1px solid rgba(255,255,255,.4); font-size: 12px; line-height: 1.4; }
.quote-card {
  position: absolute;
  right: 0; bottom: 15px;
  width: 245px;
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
  font: 600 14px/1.6 "Manrope", sans-serif;
}
.about-copy h2 { max-width: 620px; }
.about-copy > p { max-width: 620px; margin-top: 24px; color: var(--muted); font-size: 17px; }
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 38px; padding-top: 28px; border-top: 1px solid var(--line); }
.values div { display: grid; gap: 7px; }
.values span { color: var(--blue); font-size: 10px; font-weight: 700; }
.values strong { font: 700 13px "Manrope", sans-serif; }

.contact { padding: 90px 0; background: var(--paper); }
.contact-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 64px 70px;
  color: var(--white);
  border-radius: 28px;
  background:
    radial-gradient(circle at 75% 10%, rgba(84,214,232,.28), transparent 24%),
    var(--blue);
}
.contact-card .section-kicker { margin-bottom: 16px; }
.contact-card p { margin-top: 14px; color: rgba(255,255,255,.75); }
.button-large { flex: none; padding: 18px 27px; }

.site-footer { padding: 70px 0 28px; color: #a6b1c1; background: var(--ink); }
.footer-main { display: grid; grid-template-columns: 1fr 1fr 1fr; align-items: center; padding-bottom: 60px; }
.brand-footer { color: var(--white); }
.footer-main p { text-align: center; font-size: 13px; }
.footer-links { display: flex; justify-content: flex-end; gap: 28px; color: var(--white); font-size: 13px; font-weight: 600; }
.footer-links a:hover { color: var(--cyan); }
.footer-bottom { display: flex; justify-content: space-between; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-bottom a:hover { color: var(--white); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.service-card:nth-child(2), .process-step:nth-child(2) { transition-delay: .08s; }
.service-card:nth-child(3), .process-step:nth-child(3) { transition-delay: .16s; }
.service-card:nth-child(4), .process-step:nth-child(4) { transition-delay: .24s; }

@media (max-width: 1050px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { gap: 70px; }
  .about-grid { gap: 50px; }
}

@media (max-width: 780px) {
  .container { width: min(100% - 32px, 620px); }
  .section { padding: 86px 0; }
  .site-header { padding: 19px 0; }
  .menu-toggle {
    display: grid; gap: 6px; width: 38px; height: 38px; place-content: center;
    border: 1px solid rgba(255,255,255,.25); border-radius: 50%;
  }
  .scrolled .menu-toggle { border-color: var(--line); }
  .menu-toggle span { display: block; width: 17px; height: 2px; background: currentColor; }
  .site-nav {
    position: absolute;
    top: calc(100% + 10px); left: 16px; right: 16px;
    display: none; align-items: stretch; gap: 0;
    padding: 14px;
    color: var(--ink);
    border-radius: 16px;
    background: var(--white);
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: grid; }
  .site-nav a { padding: 13px 14px; }
  .site-nav .nav-cta { justify-content: space-between; margin-top: 6px; color: var(--white); background: var(--ink); }
  .hero { min-height: auto; padding-bottom: 170px; }
  .hero::after { height: 90px; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 150px; }
  .hero h1 { font-size: clamp(43px, 12vw, 62px); }
  .hero-copy > p { font-size: 17px; }
  .hero-visual { height: 430px; margin-top: 10px; }
  .card-main { left: 15px; right: 15px; }
  .card-delivery { right: 0; }
  .card-integration { left: 0; }
  .trust-line { display: none; }
  .section-heading { display: grid; gap: 20px; margin-bottom: 42px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 410px; }
  .process-grid { grid-template-columns: 1fr; gap: 65px; }
  .process-intro { position: static; }
  .about-grid { grid-template-columns: 1fr; gap: 55px; }
  .about-visual { min-height: 430px; }
  .about-shape { right: 10px; }
  .about-badge strong { font-size: 58px; }
  .values { grid-template-columns: 1fr; gap: 20px; }
  .contact-card { display: grid; padding: 44px 28px; }
  .button-large { justify-self: start; }
  .footer-main { grid-template-columns: 1fr; gap: 25px; text-align: left; }
  .footer-main p { text-align: left; }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 440px) {
  .hero-actions { align-items: flex-start; flex-direction: column; gap: 20px; }
  .hero-proof { gap: 20px; }
  .hero-proof div { align-items: flex-start; flex-direction: column; gap: 6px; }
  .hero-visual { height: 400px; }
  .card-main { top: 48px; min-height: 305px; padding: 22px; }
  .metric-row { margin-top: 34px; }
  .chart { gap: 7px; height: 100px; }
  .card-integration { bottom: 7px; width: 215px; }
  .card-delivery { top: 5px; width: 155px; }
  .about-visual { min-height: 380px; }
  .about-badge { flex-direction: column; gap: 5px; text-align: center; }
  .about-badge span { padding: 7px 0 0; border: 0; border-top: 1px solid rgba(255,255,255,.4); }
  .quote-card { width: 210px; padding: 19px; }
  .footer-bottom { gap: 20px; }
}

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