:root {
  --navy-950: #061426;
  --navy-900: #071a33;
  --navy-850: #0a203d;
  --navy-800: #102a4c;
  --blue-600: #246af4;
  --blue-500: #347cff;
  --blue-100: #dceaff;
  --cyan-400: #57dbe1;
  --cyan-100: #dafafb;
  --ink: #10223c;
  --ink-muted: #5d6b80;
  --line: #dfe7f1;
  --surface: #f5f8fc;
  --white: #ffffff;
  --shadow-sm: 0 14px 32px rgba(17, 46, 83, .08);
  --shadow-lg: 0 30px 80px rgba(3, 18, 38, .24);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1200px;
  --header-height: 84px;
  --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--white);
  outline-offset: 2px;
  box-shadow: 0 0 0 5px #0755c7;
}

::selection {
  color: var(--white);
  background: var(--blue-600);
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 9999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--navy-950);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  z-index: 1000;
  inset: 0 0 auto;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition: height .3s ease, background-color .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(6, 20, 38, .91);
  border-color: rgba(255, 255, 255, .08);
  box-shadow: 0 10px 35px rgba(0, 8, 24, .18);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  color: var(--white);
}

.brand-logo {
  display: block;
  flex: 0 0 auto;
  width: 185px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: rgba(255, 255, 255, .78);
  font-size: .9rem;
  font-weight: 540;
}

.main-nav > a:not(.button) {
  position: relative;
  padding: 10px 0;
  transition: color .2s ease;
}

.main-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--cyan-400);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .25s var(--ease);
}

.main-nav > a:hover,
.main-nav > a.is-active {
  color: var(--white);
}

.main-nav > a:hover::after,
.main-nav > a.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  color: var(--white);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 12px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 4px 0;
  background: currentColor;
  border-radius: 10px;
  transition: transform .25s ease, opacity .2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 14px 22px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: .94rem;
  font-weight: 680;
  line-height: 1.2;
  transition: color .25s ease, background-color .25s ease, border-color .25s ease, transform .25s var(--ease), box-shadow .25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-small {
  min-height: 44px;
  padding: 11px 17px;
  border-radius: 10px;
  font-size: .87rem;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-500), #1f5de5);
  box-shadow: 0 12px 30px rgba(38, 105, 241, .28);
}

.button-primary:hover {
  box-shadow: 0 16px 36px rgba(38, 105, 241, .38);
}

.button-secondary {
  color: var(--white);
  background: rgba(255, 255, 255, .04);
  border-color: rgba(255, 255, 255, .2);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .35);
}

.button-white {
  color: var(--navy-900);
  background: var(--white);
  box-shadow: 0 15px 35px rgba(2, 18, 39, .18);
}

.button-white:hover {
  color: var(--blue-600);
  box-shadow: 0 18px 45px rgba(2, 18, 39, .25);
}

.hero {
  position: relative;
  min-height: 780px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 30%, rgba(41, 121, 255, .2), transparent 32%),
    radial-gradient(circle at 18% 60%, rgba(14, 178, 202, .09), transparent 34%),
    linear-gradient(135deg, var(--navy-950) 0%, var(--navy-900) 55%, #092344 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: -250px;
  right: -230px;
  width: 640px;
  height: 640px;
  border: 1px solid rgba(102, 224, 228, .1);
  box-shadow: 0 0 0 90px rgba(68, 126, 222, .025), 0 0 0 180px rgba(68, 126, 222, .02);
}

.hero::after {
  bottom: -310px;
  left: -260px;
  width: 620px;
  height: 620px;
  background: rgba(22, 104, 219, .05);
  border: 1px solid rgba(93, 211, 226, .08);
}

.hero-grid-lines {
  position: absolute;
  inset: 0;
  opacity: .035;
  background-image: linear-gradient(rgba(255, 255, 255, .7) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .7) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .7), transparent 92%);
  pointer-events: none;
}

.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.03fr) minmax(430px, .97fr);
  align-items: center;
  gap: 72px;
  min-height: 780px;
  padding-top: calc(var(--header-height) + 48px);
  padding-bottom: 80px;
}

.hero-copy {
  max-width: 680px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  margin: 0 0 22px;
  gap: 10px;
  color: var(--cyan-400);
  font-size: .76rem;
  font-weight: 760;
  letter-spacing: .14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow-dot {
  position: relative;
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(87, 219, 225, .11);
}

.eyebrow-blue {
  color: var(--blue-600);
}

.hero h1,
.section-heading h2,
.about-copy h2,
.industry-copy h2,
.contact-copy h2,
.legal-hero h1 {
  margin: 0;
  font-weight: 690;
  letter-spacing: -.048em;
  line-height: 1.07;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(3rem, 5.3vw, 4.9rem);
}

.hero h1 span,
.section-heading h2 span,
.about-copy h2 span,
.contact-copy h2 span {
  color: transparent;
  background: linear-gradient(105deg, #5d91ff 4%, #65e1e4 95%);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(230, 240, 252, .72);
  font-size: clamp(1.04rem, 1.65vw, 1.2rem);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 12px;
}

.hero-capabilities {
  display: flex;
  flex-wrap: wrap;
  margin: 34px 0 0;
  padding: 0;
  gap: 20px;
  color: rgba(216, 230, 246, .53);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .08em;
  list-style: none;
  text-transform: uppercase;
}

.hero-capabilities li {
  display: flex;
  align-items: center;
  gap: 20px;
}

.hero-capabilities li:not(:last-child)::after {
  width: 3px;
  height: 3px;
  content: "";
  background: var(--cyan-400);
  border-radius: 50%;
  opacity: .65;
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 570px;
  margin-left: auto;
  aspect-ratio: 1;
}

.visual-glow {
  position: absolute;
  inset: 15%;
  background: radial-gradient(circle, rgba(49, 121, 255, .24), transparent 67%);
  filter: blur(18px);
}

.visual-stage {
  position: relative;
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .015));
  border: 1px solid rgba(170, 210, 244, .13);
  border-radius: 38px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .08), var(--shadow-lg);
  backdrop-filter: blur(10px);
  transform: perspective(900px) rotateY(-2deg) rotateX(1deg);
}

.connection-map {
  width: 100%;
  height: 100%;
}

.visual-label {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  color: rgba(226, 239, 250, .7);
  background: rgba(5, 20, 40, .62);
  border: 1px solid rgba(145, 198, 231, .16);
  box-shadow: 0 14px 30px rgba(0, 8, 24, .18);
  backdrop-filter: blur(10px);
}

.visual-label-top {
  top: 22px;
  left: 24px;
  padding: 10px 14px;
  gap: 9px;
  border-radius: 10px;
  font-size: .72rem;
  font-weight: 620;
  letter-spacing: .03em;
}

.status-dot {
  width: 7px;
  height: 7px;
  background: #65e5c2;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(101, 229, 194, .1);
}

.visual-label-bottom {
  right: 22px;
  bottom: 21px;
  left: 22px;
  justify-content: center;
  padding: 10px;
  gap: 13px;
  border-radius: 11px;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.visual-label-bottom i {
  width: 3px;
  height: 3px;
  background: var(--cyan-400);
  border-radius: 50%;
}

.data-card {
  position: absolute;
  z-index: 3;
  display: flex;
  align-items: center;
  min-width: 174px;
  padding: 12px 14px;
  gap: 11px;
  background: rgba(9, 32, 61, .91);
  border: 1px solid rgba(109, 184, 226, .2);
  border-radius: 14px;
  box-shadow: 0 18px 38px rgba(0, 9, 25, .28);
  backdrop-filter: blur(12px);
}

.data-card-left {
  top: 35%;
  left: -26px;
}

.data-card-right {
  top: 53%;
  right: -24px;
}

.data-icon {
  display: grid;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--cyan-400);
  background: rgba(59, 141, 243, .12);
  border: 1px solid rgba(102, 190, 227, .14);
  border-radius: 10px;
}

.data-icon svg {
  width: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.data-card span:last-child {
  display: flex;
  flex-direction: column;
}

.data-card small {
  color: rgba(209, 227, 244, .52);
  font-size: .64rem;
  line-height: 1.4;
}

.data-card strong {
  color: #f3f8ff;
  font-size: .82rem;
  font-weight: 650;
}

.scroll-cue {
  position: absolute;
  z-index: 3;
  bottom: 25px;
  left: 50%;
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(231, 241, 251, .72);
  font-size: .65rem;
  font-weight: 680;
  letter-spacing: .12em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.scroll-cue svg {
  width: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-light {
  background: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(330px, .58fr);
  align-items: end;
  margin-bottom: 55px;
  gap: 70px;
}

.section-heading .eyebrow {
  margin-bottom: 17px;
}

.section-heading h2,
.about-copy h2,
.industry-copy h2,
.contact-copy h2,
.legal-hero h1 {
  font-size: clamp(2.25rem, 4vw, 3.45rem);
}

.section-heading h2 span,
.about-copy h2 span {
  background-image: linear-gradient(100deg, #145cda, #087b87);
}

.section-heading > p {
  margin: 0 0 3px;
  color: var(--ink-muted);
  font-size: .98rem;
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.solution-card {
  position: relative;
  min-height: 395px;
  padding: 38px 27px 34px;
  overflow: hidden;
  border-right: 1px solid var(--line);
  transition: background-color .3s ease, transform .3s var(--ease), box-shadow .3s ease;
}

.solution-card:first-child {
  border-left: 1px solid var(--line);
}

.solution-card:hover {
  z-index: 2;
  background: var(--white);
  box-shadow: 0 20px 55px rgba(17, 51, 89, .1);
  transform: translateY(-7px);
}

.card-number {
  position: absolute;
  top: 22px;
  right: 25px;
  color: #c5d2e1;
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .12em;
}

.icon-box {
  display: grid;
  width: 58px;
  height: 58px;
  margin-bottom: 54px;
  place-items: center;
  color: var(--blue-600);
  background: #eff5ff;
  border: 1px solid #dae8fa;
  border-radius: 16px;
  transition: color .3s ease, background-color .3s ease, transform .3s var(--ease);
}

.solution-card:hover .icon-box {
  color: var(--white);
  background: var(--blue-600);
  transform: rotate(-4deg) scale(1.03);
}

.icon-box svg,
.product-icon svg,
.industry-list svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.solution-card h3 {
  min-height: 56px;
  margin: 0 0 15px;
  color: var(--ink);
  font-size: 1.19rem;
  font-weight: 700;
  letter-spacing: -.025em;
  line-height: 1.35;
}

.solution-card p {
  margin: 0;
  color: var(--ink-muted);
  font-size: .91rem;
  line-height: 1.7;
}

.card-line {
  position: absolute;
  right: 27px;
  bottom: 0;
  left: 27px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-600), var(--cyan-400));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}

.solution-card:hover .card-line {
  transform: scaleX(1);
}

.products-section {
  overflow: hidden;
  color: var(--white);
  background: var(--navy-950);
}

.products-backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 17%, rgba(34, 107, 244, .16), transparent 25%),
    radial-gradient(circle at 91% 72%, rgba(56, 205, 214, .08), transparent 26%);
  pointer-events: none;
}

.products-backdrop::before {
  position: absolute;
  top: 84px;
  right: -270px;
  width: 620px;
  height: 620px;
  content: "";
  border: 1px solid rgba(94, 205, 223, .07);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(79, 155, 230, .018), 0 0 0 160px rgba(79, 155, 230, .012);
}

.products-section .container {
  position: relative;
}

.section-heading-light > p {
  color: rgba(217, 232, 247, .58);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 17px;
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 340px;
  padding: 31px;
  overflow: hidden;
  background: linear-gradient(145deg, rgba(255, 255, 255, .055), rgba(255, 255, 255, .018));
  border: 1px solid rgba(158, 195, 227, .12);
  border-radius: var(--radius-md);
  transition: border-color .3s ease, background-color .3s ease, transform .3s var(--ease);
}

.product-card:hover {
  background-color: rgba(25, 76, 135, .12);
  border-color: rgba(100, 204, 225, .27);
  transform: translateY(-5px);
}

.product-featured {
  background:
    radial-gradient(circle at 88% 15%, rgba(58, 134, 251, .18), transparent 35%),
    linear-gradient(145deg, rgba(45, 111, 214, .15), rgba(255, 255, 255, .025));
  border-color: rgba(91, 157, 231, .25);
}

.product-topline {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--cyan-400);
  background: rgba(66, 142, 237, .1);
  border: 1px solid rgba(111, 192, 224, .15);
  border-radius: 13px;
}

.product-icon svg {
  width: 23px;
}

.badge {
  padding: 7px 10px;
  border: 1px solid;
  border-radius: 999px;
  font-size: .64rem;
  font-weight: 750;
  letter-spacing: .06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.badge-solution {
  color: #9cbde4;
  background: rgba(60, 106, 166, .1);
  border-color: rgba(135, 181, 224, .14);
}

.badge-progress {
  color: #85ece0;
  background: rgba(41, 198, 180, .08);
  border-color: rgba(78, 224, 205, .2);
}

.product-card > div:nth-child(2) {
  position: relative;
  z-index: 2;
  max-width: 500px;
}

.product-kicker {
  margin: 0 0 7px !important;
  color: var(--cyan-400) !important;
  font-size: .69rem !important;
  font-weight: 730;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(1.55rem, 2.6vw, 2rem);
  font-weight: 670;
  letter-spacing: -.035em;
  line-height: 1.2;
}

.product-card p {
  margin: 0;
  color: rgba(214, 229, 243, .61);
  font-size: .93rem;
}

.product-orbit {
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(94, 206, 221, .11);
  border-radius: 50%;
}

.product-orbit span {
  position: absolute;
  inset: 47px;
  border: 1px dashed rgba(92, 153, 230, .17);
  border-radius: inherit;
}

.product-orbit i {
  position: absolute;
  top: 49px;
  left: 20px;
  width: 8px;
  height: 8px;
  background: var(--cyan-400);
  border-radius: 50%;
  box-shadow: 0 0 18px var(--cyan-400);
}

.products-note {
  margin: 25px 0 0;
  color: rgba(222, 235, 247, .72);
  font-size: .76rem;
  text-align: center;
}

.about-section {
  background: var(--surface);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(380px, .9fr) minmax(0, 1fr);
  align-items: center;
  gap: 100px;
}

.about-visual {
  width: 100%;
  max-width: 520px;
}

.about-panel {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 48%, rgba(56, 130, 236, .11), transparent 40%),
    linear-gradient(145deg, #f4f8fe, #e9f0f8);
  border: 1px solid #d9e4f0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.about-panel::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: .18;
  background-image: linear-gradient(#adc0d4 1px, transparent 1px), linear-gradient(90deg, #adc0d4 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: linear-gradient(to bottom, #000, transparent 85%);
}

.about-panel svg {
  position: relative;
  width: 100%;
}

.about-caption {
  position: absolute;
  right: 24px;
  bottom: 22px;
  left: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  color: var(--ink);
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  box-shadow: 0 10px 32px rgba(23, 55, 89, .1);
  backdrop-filter: blur(10px);
}

.about-caption strong {
  font-size: .82rem;
}

.about-caption span {
  color: var(--ink-muted);
  font-size: .68rem;
}

.about-copy .eyebrow {
  margin-bottom: 16px;
}

.about-copy h2 {
  margin-bottom: 29px;
}

.about-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: var(--ink-muted);
}

.about-copy .about-lead {
  color: var(--ink) !important;
  font-size: 1.12rem;
  font-weight: 560;
}

.values-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 32px 0 0;
  padding: 27px 0 0;
  gap: 13px 26px;
  border-top: 1px solid var(--line);
  list-style: none;
}

.values-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #34445b;
  font-size: .86rem;
  font-weight: 560;
}

.values-list li span {
  position: relative;
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  margin-top: 4px;
  background: #e4efff;
  border-radius: 50%;
}

.values-list li span::after {
  position: absolute;
  top: 4px;
  left: 6px;
  width: 4px;
  height: 7px;
  content: "";
  border-right: 1.5px solid var(--blue-600);
  border-bottom: 1.5px solid var(--blue-600);
  transform: rotate(45deg);
}

.industry-section {
  padding: 0 0 118px;
  background: var(--surface);
}

.industry-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(380px, .72fr);
  padding: 62px 66px;
  gap: 70px;
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(59, 137, 251, .2), transparent 31%),
    linear-gradient(135deg, var(--navy-900), #0a2546);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.industry-copy .eyebrow {
  margin-bottom: 16px;
}

.industry-copy h2 {
  max-width: 620px;
  font-size: clamp(2rem, 3.4vw, 3rem);
}

.industry-copy > p:last-child {
  max-width: 650px;
  margin: 23px 0 0;
  color: rgba(218, 231, 244, .65);
}

.industry-list {
  display: grid;
  align-content: center;
  margin: 0;
  padding: 0;
  gap: 10px;
  list-style: none;
}

.industry-list li {
  display: flex;
  align-items: center;
  padding: 13px 15px;
  gap: 12px;
  color: rgba(239, 247, 255, .84);
  background: rgba(255, 255, 255, .045);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 11px;
  font-size: .85rem;
  font-weight: 570;
}

.industry-list svg {
  width: 20px;
  height: 20px;
  color: var(--cyan-400);
}

.contact-section {
  padding: 0 0 118px;
  background: var(--white);
}

.contact-panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  min-height: 350px;
  padding: 68px 72px;
  overflow: hidden;
  gap: 60px;
  color: var(--white);
  background: linear-gradient(120deg, #174fbd 0%, #1765c6 57%, #0b7285 100%);
  border-radius: var(--radius-lg);
  box-shadow: 0 28px 70px rgba(30, 98, 214, .25);
}

.contact-panel::before {
  position: absolute;
  top: -210px;
  right: -150px;
  width: 530px;
  height: 530px;
  content: "";
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(255, 255, 255, .035), 0 0 0 120px rgba(255, 255, 255, .025);
}

.contact-copy,
.contact-actions {
  position: relative;
  z-index: 2;
}

.contact-copy .eyebrow {
  margin-bottom: 15px;
  color: #d5ffff;
}

.contact-copy h2 {
  font-size: clamp(2.5rem, 4.6vw, 4rem);
}

.contact-copy h2 span {
  color: #d8ffff;
  background: none;
  -webkit-text-fill-color: initial;
}

.contact-copy p:last-child {
  max-width: 590px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, .9);
  font-size: 1.03rem;
}

.contact-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 282px;
}

.contact-actions .button {
  width: 100%;
  margin-bottom: 18px;
}

.contact-email {
  font-size: .88rem;
  font-weight: 650;
  border-bottom: 1px solid rgba(255, 255, 255, .4);
}

.contact-email:hover {
  border-color: var(--white);
}

.contact-actions > span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .9);
  font-size: .72rem;
}

.contact-decoration {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.contact-decoration span {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 50%;
}

.site-footer {
  color: rgba(218, 231, 244, .6);
  background: var(--navy-950);
}

.footer-main {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding-top: 54px;
  padding-bottom: 42px;
  gap: 48px;
}

.brand-footer {
  min-width: 180px;
}

.brand-footer .brand-logo {
  width: 180px;
}

.footer-main > p {
  margin: 0;
  font-size: .82rem;
}

.footer-main nav {
  display: flex;
  gap: 24px;
  font-size: .78rem;
}

.footer-main nav a,
.footer-bottom a {
  transition: color .2s ease;
}

.footer-main nav a:hover,
.footer-bottom a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 21px;
  padding-bottom: 24px;
  border-top: 1px solid rgba(255, 255, 255, .08);
  font-size: .72rem;
}

.footer-bottom p {
  margin: 0;
}

/* Legal pages */
.legal-page {
  background: var(--surface);
}

.legal-header {
  position: relative;
  height: 76px;
  background: var(--navy-950);
}

.legal-header .header-inner {
  min-height: 76px;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: .82rem;
  font-weight: 600;
  transition: color .2s ease;
}

.back-link:hover {
  color: var(--white);
}

.back-link svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.legal-hero {
  position: relative;
  overflow: hidden;
  padding: 90px 0 82px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 20%, rgba(45, 129, 255, .22), transparent 29%),
    linear-gradient(135deg, var(--navy-950), #0a2342);
}

.legal-hero::after {
  position: absolute;
  top: -190px;
  right: -100px;
  width: 460px;
  height: 460px;
  content: "";
  border: 1px solid rgba(91, 222, 226, .1);
  border-radius: 50%;
  box-shadow: 0 0 0 60px rgba(91, 222, 226, .018), 0 0 0 120px rgba(91, 222, 226, .012);
}

.legal-hero .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.legal-hero .eyebrow {
  margin-bottom: 15px;
}

.legal-hero p:last-child {
  max-width: 690px;
  margin: 22px 0 0;
  color: rgba(221, 234, 247, .65);
  font-size: 1.03rem;
}

.legal-content-wrap {
  padding: 70px 0 110px;
}

.legal-content {
  max-width: 900px;
  margin-inline: auto;
  padding: 58px 64px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.legal-meta {
  margin: 0 0 38px;
  padding-bottom: 22px;
  color: var(--ink-muted);
  border-bottom: 1px solid var(--line);
  font-size: .82rem;
}

.legal-content h2 {
  margin: 43px 0 13px;
  color: var(--ink);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1.3;
}

.legal-content h2:first-of-type {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink-muted);
  font-size: .96rem;
}

.legal-content p {
  margin: 0 0 16px;
}

.legal-content ul {
  margin: 15px 0 21px;
  padding-left: 22px;
}

.legal-content li + li {
  margin-top: 8px;
}

.legal-content a {
  color: var(--blue-600);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-note {
  margin-top: 38px !important;
  padding: 18px 20px;
  color: #314a69 !important;
  background: #f0f6ff;
  border-left: 3px solid var(--blue-600);
  border-radius: 0 10px 10px 0;
}

.legal-footer .footer-main {
  grid-template-columns: auto 1fr;
}

.legal-footer .footer-main nav {
  justify-self: end;
}

/* Motion is progressive enhancement: content stays visible without JavaScript. */
.js [data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .solutions-grid [data-reveal]:nth-child(2),
.js .products-grid [data-reveal]:nth-child(2) {
  transition-delay: .07s;
}

.js .solutions-grid [data-reveal]:nth-child(3),
.js .products-grid [data-reveal]:nth-child(3) {
  transition-delay: .14s;
}

.js .solutions-grid [data-reveal]:nth-child(4),
.js .products-grid [data-reveal]:nth-child(4) {
  transition-delay: .21s;
}

@media (max-width: 1080px) {
  .main-nav {
    gap: 20px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr) minmax(380px, .8fr);
    gap: 35px;
  }

  .hero-visual {
    max-width: 500px;
  }

  .solutions-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-card:nth-child(2) {
    border-right: 1px solid var(--line);
  }

  .solution-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .solution-card:nth-child(3) {
    border-left: 1px solid var(--line);
  }

  .about-layout {
    gap: 55px;
  }

  .industry-panel {
    padding: 52px 48px;
    gap: 45px;
  }

  .contact-panel {
    padding: 58px 52px;
  }
}

@media (max-width: 900px) {
  :root {
    --header-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 18px;
    left: 18px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    max-height: calc(100vh - var(--header-height) - 20px);
    padding: 18px;
    overflow-y: auto;
    gap: 2px;
    color: #dfeaf5;
    background: rgba(7, 26, 51, .98);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    box-shadow: 0 25px 55px rgba(0, 8, 24, .34);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .22s ease, visibility .22s ease, transform .22s ease;
    backdrop-filter: blur(18px);
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav > a:not(.button) {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .main-nav > a:not(.button)::after {
    display: none;
  }

  .main-nav > a:not(.button):hover,
  .main-nav > a.is-active:not(.button) {
    background: rgba(255, 255, 255, .06);
  }

  .nav-cta {
    margin-top: 9px;
  }

  .no-js .menu-toggle {
    display: none;
  }

  .no-js .site-header {
    position: static;
    height: auto;
    background: var(--navy-950);
  }

  .no-js .header-inner {
    flex-wrap: wrap;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .no-js .main-nav {
    position: static;
    flex-basis: 100%;
    flex-direction: column;
    max-height: none;
    margin-top: 12px;
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .hero {
    min-height: auto;
  }

  .hero-layout {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 145px;
    padding-bottom: 110px;
    gap: 68px;
  }

  .hero-copy {
    max-width: 740px;
  }

  .hero h1 {
    font-size: clamp(3rem, 8.2vw, 4.8rem);
  }

  .hero-visual {
    width: min(100%, 570px);
    margin-inline: auto;
  }

  .scroll-cue {
    display: none;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .section-heading > p {
    max-width: 680px;
  }

  .about-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-visual {
    max-width: 560px;
    margin-inline: auto;
  }

  .about-copy {
    max-width: 700px;
  }

  .industry-panel,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .industry-panel {
    gap: 38px;
  }

  .industry-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-panel {
    gap: 38px;
  }

  .contact-actions {
    width: min(100%, 360px);
  }

  .footer-main {
    grid-template-columns: auto 1fr;
  }

  .footer-main nav {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .brand-logo {
    width: 170px;
  }

  .hero-layout {
    padding-top: 128px;
    padding-bottom: 78px;
    gap: 54px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13vw, 3.65rem);
  }

  .hero-lead {
    margin-top: 22px;
    font-size: 1rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
    margin-top: 29px;
  }

  .hero-capabilities {
    margin-top: 28px;
    gap: 8px 14px;
    font-size: .67rem;
  }

  .hero-capabilities li {
    gap: 14px;
  }

  .visual-stage {
    border-radius: 24px;
    transform: none;
  }

  .data-card {
    min-width: 146px;
    padding: 9px 10px;
  }

  .data-card-left {
    left: -7px;
  }

  .data-card-right {
    right: -7px;
  }

  .data-icon {
    width: 32px;
    height: 32px;
  }

  .data-card small {
    font-size: .56rem;
  }

  .data-card strong {
    font-size: .72rem;
  }

  .visual-label-top {
    top: 14px;
    left: 14px;
    font-size: .62rem;
  }

  .visual-label-bottom {
    right: 12px;
    bottom: 12px;
    left: 12px;
    gap: 7px;
    font-size: .52rem;
  }

  .section {
    padding: 88px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section-heading h2,
  .about-copy h2,
  .legal-hero h1 {
    font-size: clamp(2.08rem, 10vw, 2.85rem);
  }

  .solutions-grid,
  .products-grid {
    grid-template-columns: 1fr;
  }

  .solution-card {
    min-height: 340px;
    padding: 31px 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .solution-card:last-child {
    border-bottom: 0;
  }

  .icon-box {
    margin-bottom: 40px;
  }

  .product-card {
    min-height: 330px;
    padding: 24px;
  }

  .badge {
    max-width: 150px;
    text-align: center;
  }

  .about-layout {
    gap: 48px;
  }

  .about-caption {
    right: 14px;
    bottom: 14px;
    left: 14px;
  }

  .about-caption span {
    display: none;
  }

  .values-list,
  .industry-list {
    grid-template-columns: 1fr;
  }

  .industry-section {
    padding-bottom: 88px;
  }

  .industry-panel {
    padding: 39px 25px;
    border-radius: 22px;
  }

  .industry-copy h2 {
    font-size: 2.05rem;
  }

  .contact-section {
    padding-bottom: 88px;
  }

  .contact-panel {
    min-height: auto;
    padding: 44px 25px;
    border-radius: 22px;
  }

  .contact-copy h2 {
    font-size: 2.7rem;
  }

  .contact-email {
    font-size: .79rem;
    overflow-wrap: anywhere;
  }

  .contact-actions {
    width: 100%;
    min-width: 0;
  }

  .footer-main {
    grid-template-columns: 1fr;
    padding-top: 44px;
    gap: 24px;
  }

  .footer-main nav {
    grid-column: auto;
    flex-direction: column;
    gap: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .legal-hero {
    padding: 72px 0 64px;
  }

  .legal-content-wrap {
    padding: 42px 0 75px;
  }

  .legal-content {
    padding: 34px 24px;
    border-radius: 15px;
  }

  .legal-content h2 {
    margin-top: 36px;
    font-size: 1.23rem;
  }

  .legal-footer .footer-main {
    grid-template-columns: 1fr;
  }

  .legal-footer .footer-main nav {
    justify-self: start;
  }
}

@media (max-width: 400px) {
  .legal-header .brand-logo {
    width: 150px;
  }

  .hero h1 {
    font-size: 2.35rem;
  }

  .hero-capabilities {
    max-width: 300px;
  }

  .visual-label-bottom {
    display: none;
  }

  .data-card-right {
    top: 58%;
  }

  .product-topline {
    align-items: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .skip-link,
  .hero-visual,
  .scroll-cue,
  .contact-decoration {
    display: none !important;
  }

  body,
  .legal-page {
    color: #000;
    background: #fff;
  }

  .legal-hero {
    padding: 30px 0;
    color: #000;
    background: #fff;
  }

  .legal-content-wrap {
    padding: 20px 0;
  }

  .legal-content {
    max-width: none;
    padding: 0;
    border: 0;
    box-shadow: none;
  }
}
