:root {
  --navy-950: #041320;
  --navy-900: #071b2e;
  --navy-800: #0a2944;
  --navy-700: #0c385d;
  --blue-600: #0d67b1;
  --blue-500: #1282ce;
  --blue-300: #79c7f2;
  --silver-500: #9eafb9;
  --ink: #142033;
  --muted: #617181;
  --line: #dfe7ec;
  --surface: #f5f8fa;
  --white: #ffffff;
  --shadow-lg: 0 28px 80px rgba(6, 31, 53, 0.17);
  --shadow-md: 0 16px 42px rgba(8, 35, 58, 0.10);
  --radius-lg: 24px;
  --radius-md: 16px;
  --header-height: 82px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-height) + 24px); }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
.container { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.section { padding: 104px 0; }

.skip-link {
  position: fixed;
  left: 16px;
  top: -70px;
  z-index: 999;
  padding: 12px 18px;
  color: var(--white);
  background: var(--blue-600);
  border-radius: 8px;
  font-weight: 700;
}
.skip-link:focus { top: 16px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(5, 21, 35, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(18px);
  transition: box-shadow 180ms ease, background 180ms ease;
}
.site-header.scrolled { background: rgba(4, 19, 32, 0.98); box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2); }
.nav-shell { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 36px; }
.brand img { width: 190px; height: 61px; object-fit: contain; object-position: left center; }
.primary-nav { display: flex; align-items: center; gap: 32px; color: #eaf3f8; font-size: 14px; font-weight: 700; }
.primary-nav > a:not(.button) { position: relative; }
.primary-nav > a:not(.button)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue-300);
  transition: right 180ms ease;
}
.primary-nav > a:not(.button):hover::after,
.primary-nav > a:not(.button):focus-visible::after { right: 0; }
.menu-toggle { display: none; width: 44px; height: 44px; padding: 9px; border: 0; background: transparent; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; margin: 6px 0; border-radius: 2px; background: var(--white); transition: transform 180ms ease, opacity 180ms ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 9px;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
  box-shadow: 0 12px 30px rgba(13, 103, 177, 0.25);
  font-weight: 800;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(13, 103, 177, 0.34); }
.button-small { min-height: 44px; padding: 10px 17px; font-size: 13px; }
.button-ghost { background: rgba(255, 255, 255, 0.035); border-color: rgba(255, 255, 255, 0.32); box-shadow: none; }
.button-ghost:hover, .button-ghost:focus-visible { background: rgba(255, 255, 255, 0.1); box-shadow: none; }
.button-outline { color: var(--blue-600); background: var(--white); border-color: #79b8df; box-shadow: none; }
.button-outline:hover, .button-outline:focus-visible { background: #edf7fd; box-shadow: none; }
.button-white { color: var(--navy-900); background: var(--white); box-shadow: none; }

.eyebrow { margin: 0 0 16px; color: var(--blue-600); font-size: 12px; font-weight: 900; letter-spacing: 0.15em; text-transform: uppercase; }
.eyebrow-light { color: #82cef8; }
h1, h2, h3 { margin-top: 0; font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif; color: var(--ink); letter-spacing: -0.035em; }
h1 { font-size: clamp(46px, 5.4vw, 76px); line-height: 1.03; }
h2 { font-size: clamp(36px, 4.1vw, 55px); line-height: 1.08; }
h3 { font-size: 22px; line-height: 1.25; }

.section-dark { color: var(--white); background: linear-gradient(135deg, var(--navy-950), var(--navy-800) 68%, #071b2e); }
.hero { position: relative; min-height: 710px; padding: 102px 0 96px; overflow: hidden; }
.hero h1 { max-width: 760px; margin-bottom: 26px; color: var(--white); }
.hero-glow { position: absolute; border-radius: 50%; filter: blur(4px); pointer-events: none; }
.hero-glow-one { width: 640px; height: 640px; top: -280px; right: -220px; background: radial-gradient(circle, rgba(19, 134, 211, 0.28), transparent 68%); }
.hero-glow-two { width: 420px; height: 420px; bottom: -260px; left: 28%; background: radial-gradient(circle, rgba(48, 154, 217, 0.14), transparent 70%); }
.hero-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1.04fr 0.96fr; align-items: center; gap: 70px; }
.hero-lead { max-width: 680px; margin: 0; color: #cfdee8; font-size: 19px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 34px 0 30px; }
.proof-row { display: flex; flex-wrap: wrap; gap: 12px 24px; color: #acc3d1; font-size: 13px; font-weight: 650; }
.proof-row span::before { content: "✓"; margin-right: 8px; color: #70cdfc; font-weight: 900; }

.dashboard-frame { overflow: hidden; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 20px; background: rgba(8, 34, 55, 0.94); box-shadow: 0 36px 90px rgba(0, 0, 0, 0.38); transform: perspective(1400px) rotateY(-3deg) rotateX(1deg); }
.dashboard-bar { height: 56px; display: flex; align-items: center; padding: 0 18px; border-bottom: 1px solid rgba(255, 255, 255, 0.08); color: #bed0db; font-size: 12px; }
.dashboard-bar > span { margin-inline: auto; font-weight: 700; }
.dashboard-bar > b { display: flex; align-items: center; gap: 6px; color: #65dda2; font-size: 9px; letter-spacing: 0.13em; }
.dashboard-bar > b i { width: 7px; height: 7px; border-radius: 50%; background: #59d798; box-shadow: 0 0 0 4px rgba(89, 215, 152, 0.1); }
.traffic-lights { display: flex; gap: 6px; }
.traffic-lights i { width: 8px; height: 8px; border-radius: 50%; background: #536f82; }
.dashboard-body { padding: 22px; }
.metric-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 19px; }
.metric-row article { padding: 15px; border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 11px; background: #102d46; }
.metric-row small, .metric-row strong, .metric-row em { display: block; }
.metric-row small { color: #8fa8b8; font-size: 9px; }
.metric-row strong { margin: 2px 0 1px; color: var(--white); font-size: 25px; }
.metric-row em { color: #6f8da0; font-size: 9px; font-style: normal; }
.workflow-label { display: flex; justify-content: space-between; margin: 0 2px 10px; color: #b6c9d5; font-size: 10px; }
.workflow-label strong { color: #73caff; font-size: 8px; letter-spacing: 0.1em; }
.flow-step { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1px solid rgba(255, 255, 255, 0.07); border-radius: 11px; background: #0f2b44; }
.flow-step.complete { border-color: rgba(67, 169, 227, 0.36); }
.flow-step.active { border-color: rgba(94, 213, 156, 0.34); }
.flow-step > span { display: grid; place-items: center; width: 34px; height: 34px; flex: 0 0 auto; border-radius: 9px; color: var(--white); background: #0c6fb8; font-size: 11px; font-weight: 900; }
.flow-step > div { flex: 1; }
.flow-step small, .flow-step b { display: block; }
.flow-step small { color: #86a1b3; font-size: 9px; }
.flow-step b { color: #f1f7fa; font-size: 11px; }
.flow-step em { color: #72dca5; font-size: 8px; font-style: normal; }
.flow-line { width: 2px; height: 14px; margin-left: 29px; background: #315b76; }
.flow-line.complete { background: #277cb3; }
.dashboard-message { display: flex; align-items: center; gap: 9px; margin-top: 18px; padding-top: 15px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: #a9bdc9; font-size: 9px; }
.dashboard-message i { width: 7px; height: 7px; flex: 0 0 auto; border-radius: 50%; background: #58d99b; }
.dashboard-message span { flex: 1; }
.dashboard-message time { color: #708b9d; }

.value-band { background: var(--white); border-bottom: 1px solid var(--line); box-shadow: 0 12px 34px rgba(8, 30, 50, 0.04); }
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.value-grid > div { display: grid; grid-template-columns: auto 1fr; gap: 13px; align-items: start; min-height: 128px; padding: 32px 28px; border-right: 1px solid var(--line); }
.value-grid > div:first-child { padding-left: 0; }
.value-grid > div:last-child { border-right: 0; padding-right: 0; }
.value-grid span { color: var(--blue-600); font-size: 11px; font-weight: 900; }
.value-grid p { margin: 0; color: var(--muted); font-size: 14px; }
.value-grid b { display: block; color: var(--ink); font-size: 15px; }

.split-heading { display: grid; grid-template-columns: 1fr 0.9fr; gap: 92px; align-items: start; }
.split-heading h2 { margin-bottom: 0; }
.lead-copy { color: #526373; font-size: 18px; }
.lead-copy p:first-child { margin-top: 0; }

.solutions-section { background: var(--surface); }
.section-heading { max-width: 830px; margin-bottom: 52px; }
.section-heading.centered { margin-inline: auto; text-align: center; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading > p:last-child { max-width: 720px; margin-bottom: 0; color: var(--muted); font-size: 17px; }
.centered > p:last-child { margin-inline: auto; }
.solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.solution-card { position: relative; min-height: 390px; padding: 30px; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-md); background: var(--white); box-shadow: 0 9px 30px rgba(7, 34, 55, 0.045); transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease; }
.solution-card:hover { transform: translateY(-5px); border-color: #b6d8eb; box-shadow: var(--shadow-md); }
.icon-wrap { width: 43px; height: 43px; display: grid; place-items: center; margin-bottom: 24px; border-radius: 11px; color: var(--blue-600); background: #ebf6fd; font-size: 22px; font-weight: 900; }
.card-number { position: absolute; top: 31px; right: 30px; color: #9eb2bf; font-size: 11px; font-weight: 900; }
.solution-card h3 { margin-bottom: 13px; }
.solution-card p, .solution-card li { color: #627382; }
.solution-card ul { margin: 20px 0 0; padding-left: 18px; }
.solution-card li + li { margin-top: 5px; }
.solution-card-featured { color: var(--white); border-color: transparent; background: linear-gradient(145deg, var(--navy-800), var(--navy-700)); }
.solution-card-featured h3 { color: var(--white); }
.solution-card-featured p { color: #c6d8e3; }
.solution-card-featured .icon-wrap { color: var(--white); background: rgba(255, 255, 255, 0.09); }
.solution-card-featured .card-number { color: #7895a8; }
.inline-link { display: inline-flex; gap: 7px; align-items: center; margin-top: 13px; color: #86d4ff; font-weight: 800; }
.inline-link span { transition: transform 180ms ease; }
.inline-link:hover span { transform: translateX(4px); }

.approach-section { background: var(--white); }
.approach-layout { display: grid; grid-template-columns: 0.86fr 1.14fr; gap: 100px; align-items: center; }
.approach-copy h2 { margin-bottom: 23px; }
.approach-copy > p:not(.eyebrow) { margin-bottom: 30px; color: #5d6f7e; font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; }
.process-list li { display: grid; grid-template-columns: 48px 1fr; gap: 22px; padding: 25px 0; border-bottom: 1px solid var(--line); }
.process-list li:first-child { padding-top: 0; }
.process-list li:last-child { border-bottom: 0; }
.process-list li > span { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid #add3e9; border-radius: 50%; color: var(--blue-600); font-size: 11px; font-weight: 900; }
.process-list h3 { margin: 0 0 3px; }
.process-list p { margin: 0; color: #687987; }

.industries-section { background: #f7f9fb; border-top: 1px solid #eef2f4; border-bottom: 1px solid #eef2f4; }
.industry-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.industry-grid span { display: grid; place-items: center; min-height: 82px; padding: 16px; border: 1px solid var(--line); border-radius: 13px; background: var(--white); color: #354a5b; text-align: center; font-weight: 800; }

.contact-section { background: var(--white); }
.contact-panel { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 60px; align-items: center; padding: 58px; border-radius: var(--radius-lg); color: var(--white); background: radial-gradient(circle at 85% 10%, rgba(23, 132, 201, 0.23), transparent 34%), linear-gradient(135deg, var(--navy-950), var(--navy-700)); box-shadow: var(--shadow-lg); }
.contact-panel h2 { max-width: 650px; margin-bottom: 20px; color: var(--white); }
.contact-panel > div:first-child > p:last-child { max-width: 650px; color: #c8d8e1; font-size: 17px; }
.contact-card { display: flex; flex-direction: column; gap: 15px; padding: 28px; border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 15px; background: rgba(255, 255, 255, 0.07); }
.contact-card > span { color: #9db6c5; font-size: 11px; font-weight: 900; letter-spacing: 0.13em; text-transform: uppercase; }
.contact-email { overflow-wrap: anywhere; font-size: 19px; font-weight: 850; }
.contact-card small { color: #a9bdc9; }

.site-footer { padding: 38px 0 22px; color: #b4c5cf; background: var(--navy-950); }
.footer-main { display: grid; grid-template-columns: auto 1fr auto; gap: 32px; align-items: center; }
.footer-brand img { width: 166px; height: 55px; object-fit: contain; object-position: left center; }
.footer-main p { margin: 0; }
.footer-links { display: flex; align-items: center; gap: 20px; font-size: 13px; font-weight: 700; }
.footer-links a:hover { color: var(--white); }
.back-to-top { padding: 0; border: 0; color: #b4c5cf; background: transparent; cursor: pointer; font-weight: 800; }
.back-to-top:hover, .back-to-top:focus-visible { color: var(--white); }
.back-to-top span { margin-left: 4px; }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; margin-top: 28px; padding-top: 20px; border-top: 1px solid rgba(255, 255, 255, 0.08); color: #738a99; font-size: 12px; }

.reveal { opacity: 0; transform: translateY(20px); transition: opacity 650ms ease, transform 650ms ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --header-height: 74px; }
  .menu-toggle { display: block; }
  .primary-nav { position: fixed; inset: var(--header-height) 0 auto 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 18px 20px 26px; border-top: 1px solid rgba(255,255,255,.08); background: rgba(4, 19, 32, 0.99); box-shadow: 0 20px 40px rgba(0,0,0,.22); }
  .primary-nav.open { display: flex; }
  .primary-nav a { padding: 15px 8px; }
  .primary-nav .button { margin-top: 8px; }
  .hero-layout, .split-heading, .approach-layout, .contact-panel { grid-template-columns: 1fr; }
  .hero-layout { gap: 58px; }
  .dashboard-frame { max-width: 680px; margin-inline: auto; transform: none; }
  .value-grid { grid-template-columns: 1fr; }
  .value-grid > div { min-height: auto; padding: 22px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .value-grid > div:last-child { border-bottom: 0; }
  .split-heading, .approach-layout { gap: 50px; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .industry-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-panel { padding: 44px; }
  .footer-main { grid-template-columns: 1fr; text-align: center; }
  .footer-brand img { margin-inline: auto; }
  .footer-links { justify-content: center; flex-wrap: wrap; }
}

@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  .section { padding: 76px 0; }
  .brand img { width: 153px; height: 51px; }
  .hero { min-height: auto; padding: 76px 0 72px; }
  h1 { font-size: 43px; }
  h2 { font-size: 36px; }
  .hero-lead { font-size: 17px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
  .proof-row { flex-direction: column; }
  .metric-row { grid-template-columns: 1fr; }
  .dashboard-frame { border-radius: 14px; }
  .dashboard-body { padding: 15px; }
  .solutions-grid, .industry-grid { grid-template-columns: 1fr; }
  .solution-card { min-height: auto; padding: 26px; }
  .contact-panel { padding: 28px; border-radius: 18px; }
  .contact-card { padding: 23px; }
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; }
}
