@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-100.ttf") format("truetype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-200.ttf") format("truetype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-300.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-400.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-500.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-600.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-700.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-800.ttf") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "TT Hoves Pro";
  src: url("/fonts/tt-hoves-pro-900.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --ink: #010101;
  --panel: #010101;
  --panel-2: #010101;
  --text: #fefefe;
  --muted: rgba(254, 254, 254, 0.76);
  --line: rgba(52, 134, 246, 0.42);
  --blue: #3486f6;
  --blue-dark: #023095;
  --gold: #efb04b;
  --max: 1180px;
  --gutter: clamp(16px, 4vw, 64px);
  --r: 22px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--ink);
  color: var(--text);
  font:
    16px/1.55 "TT Hoves Pro",
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  overflow-x: hidden;
  font-style: normal;
  font-synthesis: none;
}
button,
input,
textarea,
select {
  font-style: normal;
  font-synthesis: none;
}
a {
  color: inherit;
  text-decoration: none;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}
.site {
  position: relative;
  overflow: hidden;
}
.wrap {
  width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  margin-inline: auto;
}
.header {
  width: min(calc(100% - 40px), var(--max));
  height: 64px;
  margin: 0;
  padding: 0 14px 0 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  z-index: 30;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  border: 0;
  border-radius: 32px;
  background: rgba(1, 1, 1, 0.94);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  transition:
    width 0.32s ease,
    height 0.32s ease,
    top 0.32s ease,
    padding 0.32s ease,
    background 0.32s ease,
    border-radius 0.32s ease,
    box-shadow 0.32s ease,
    backdrop-filter 0.32s ease;
}
.site > main {
  padding-top: 84px;
}
.header.is-scrolled {
  width: min(calc(100% - 64px), 1060px);
  background: rgba(1, 1, 1, 0.62);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(18px) saturate(132%);
  -webkit-backdrop-filter: blur(18px) saturate(132%);
}
.brand {
  display: inline-flex;
  align-items: center;
  width: 172px;
}
.brand img {
  display: block;
  width: 100%;
  height: auto;
}
.nav {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 14px;
  color: var(--muted);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.nav a:hover {
  color: var(--text);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 11px 19px;
  border: 1px solid var(--blue);
  border-radius: 999px;
  background: var(--blue);
  color: var(--text);
  font-family: "TT Hoves Pro", ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.01em;
  line-height: 1.2;
  box-shadow: none;
  transition:
    0.22s transform,
    0.22s box-shadow,
    0.22s border-color;
}
.button:hover {
  transform: translateY(-1px);
  border-color: var(--blue);
  background: #2376e9;
  box-shadow: 0 4px 12px rgba(2, 48, 149, 0.2);
}
.button.primary {
  background: var(--blue);
}
.button.ghost {
  color: var(--text);
  border-color: var(--blue);
  background: var(--blue);
  box-shadow: none;
}
.button.ghost:hover {
  border-color: var(--blue);
  background: #2376e9;
  box-shadow: 0 4px 12px rgba(2, 48, 149, 0.2);
}
.actions .button + .button {
  background: transparent;
  border-color: var(--blue);
  box-shadow: none;
}
.actions .button + .button:hover {
  background: rgba(2, 48, 149, 0.2);
  box-shadow: 0 4px 12px rgba(2, 48, 149, 0.16);
}
.menu-btn {
  display: none;
  background: none;
  border: 0;
  color: var(--text);
  font: inherit;
}
.hero {
  padding: 76px 0 74px;
  min-height: 615px;
  display: grid;
  align-items: center;
  position: relative;
}
.hero:before,
.glow {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 999px;
  filter: blur(10px);
  background: radial-gradient(circle, rgba(2, 48, 149, 0.54), transparent 67%);
}
.hero:before {
  width: 720px;
  height: 600px;
  top: -160px;
  right: -190px;
}
.intelligence-hero:before {
  display: none;
}
.eyebrow {
  display: block;
  color: var(--text);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.intelligence-hero {
  padding: 88px 0 112px;
}
.intelligence-hero .hero-grid {
  grid-template-columns: 1fr;
  gap: 76px;
}
.intelligence-hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}
.intelligence-hero h1 {
  max-width: 790px;
  margin-bottom: 32px;
  margin-right: auto;
  margin-left: auto;
}
.intelligence-hero .lead {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
}
.intelligence-hero .product-frame {
  width: min(100%, 1120px);
  margin: 0 auto;
  isolation: isolate;
  transform: none;
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.intelligence-hero .product-frame:before {
  display: block;
  inset: -34% -8% auto;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(2, 48, 149, 0.7) 0%,
    rgba(2, 48, 149, 0.32) 48%,
    transparent 76%
  );
  filter: blur(26px);
  transform: none;
  z-index: 0;
}
.intelligence-hero .product-frame:after {
  position: absolute;
  inset: -22% 22% auto;
  height: 30%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse,
    rgba(52, 134, 246, 0.38),
    transparent 72%
  );
  content: "";
  filter: blur(28px);
  z-index: 0;
}
.intelligence-hero .product-frame img {
  position: relative;
  z-index: 1;
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--blue);
  box-shadow:
    0 -18px 56px rgba(2, 48, 149, 0.34),
    0 -4px 22px rgba(52, 134, 246, 0.18);
}
.data-dashboard {
  width: 100%;
  padding: 14px 0;
}
.data-dashboard-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(175px, 0.8fr);
  align-items: center;
  gap: 24px;
}
.data-panel {
  position: relative;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(52, 134, 246, 0.42);
  border-radius: 14px;
  background:
    radial-gradient(
      circle at 82% 10%,
      rgba(52, 134, 246, 0.14),
      transparent 38%
    ),
    rgba(1, 1, 1, 0.92);
  box-shadow:
    0 24px 45px rgba(0, 0, 0, 0.42),
    0 0 28px rgba(2, 48, 149, 0.25);
}
.data-panel::before {
  position: absolute;
  z-index: -1;
  inset: 16px -12px -16px 12px;
  border-radius: inherit;
  background: rgba(2, 48, 149, 0.22);
  filter: blur(22px);
  content: "";
}
.funnel-panel {
  transform: translateY(-14px);
}
.composition-panel {
  transform: translateY(18px);
}
.data-panel h3 {
  margin: 0 0 3px;
  color: var(--text);
  font-size: 16px;
  line-height: 1.15;
}
.data-panel > p {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}
.funnel-stages {
  display: grid;
  gap: 9px;
  margin-top: 18px;
}
.funnel-stage {
  display: flex;
  width: var(--width);
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid rgba(52, 134, 246, 0.58);
  border-radius: 7px;
  background: linear-gradient(
    90deg,
    rgba(2, 48, 149, 0.94),
    rgba(52, 134, 246, 0.25)
  );
  color: var(--text);
  font-size: 10px;
  white-space: nowrap;
  transform-origin: center;
  transition: width 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.funnel-stage b,
.composition-item b {
  font-weight: 700;
}
.composition-list {
  display: grid;
  gap: 11px;
  margin-top: 18px;
}
.composition-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5px 8px;
  color: var(--text);
  font-size: 10px;
}
.composition-item i {
  grid-column: 1 / -1;
  display: block;
  height: 6px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(254, 254, 254, 0.12);
}
.composition-item i::before {
  display: block;
  width: var(--value);
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
  box-shadow: 0 0 12px rgba(52, 134, 246, 0.55);
  content: "";
  transition: width 1.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.composition-item.green i::before {
  background: #24d89c;
}
.composition-item.yellow i::before {
  background: var(--gold);
}
.composition-item.red i::before {
  background: #f65368;
}

@keyframes dashboard-float-left {
  0%,
  100% {
    transform: translateY(-14px);
  }

  50% {
    transform: translateY(-24px);
  }
}

@keyframes dashboard-float-right {
  0%,
  100% {
    transform: translateY(18px);
  }

  50% {
    transform: translateY(8px);
  }
}

@media (prefers-reduced-motion: no-preference) {
  .funnel-panel {
    animation: dashboard-float-left 5.6s ease-in-out infinite;
  }

  .composition-panel {
    animation: dashboard-float-right 6.4s ease-in-out infinite;
  }
}
.hero:not(.intelligence-hero) .product-frame {
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}
.hero:not(.intelligence-hero) .product-frame:before {
  display: none;
}
.home-main .hero:not(.intelligence-hero) .product-frame {
  isolation: isolate;
}
@media (min-width: 851px) {
  .home-main .hero:not(.intelligence-hero) .product-frame {
    width: 108%;
    margin-left: -4%;
  }
}
.home-main .hero:not(.intelligence-hero) .product-frame:before {
  display: block;
  inset: -14% -10%;
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgba(2, 48, 149, 0.58) 0%,
    rgba(2, 48, 149, 0.28) 48%,
    transparent 74%
  );
  filter: blur(24px);
  transform: none;
  z-index: 0;
}
.home-main .hero:not(.intelligence-hero) .product-frame img {
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 48px rgba(2, 48, 149, 0.38);
}
.hero:not(.intelligence-hero) .product-frame img {
  aspect-ratio: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--blue);
}
.hero-grid,
.split {
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  gap: 56px;
  align-items: center;
  position: relative;
}
.hero h1 {
  font-size: clamp(43px, 5.4vw, 75px);
  line-height: 1.05;
  letter-spacing: -0.065em;
  margin: 0 0 24px;
  max-width: 750px;
}
.hero h1,
.page-hero h1,
.section h2,
.callout h2 {
  color: var(--text);
}
.lead {
  font-size: 18px;
  color: var(--muted);
  max-width: 650px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 30px 0 18px;
}
.note {
  font-size: 13px;
  color: var(--muted);
}
.product-frame {
  position: relative;
  padding: 12px;
  border: 1px solid rgba(52, 134, 246, 0.62);
  border-radius: 18px;
  background: linear-gradient(
    135deg,
    rgba(52, 134, 246, 0.26),
    rgba(1, 1, 1, 0.9)
  );
  box-shadow: 0 35px 80px rgba(2, 48, 149, 0.5);
  transform: rotate(2deg);
}
.product-frame:before {
  content: "";
  position: absolute;
  inset: -18px;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(2, 48, 149, 0.4),
    transparent 62%
  );
  z-index: -1;
}
.product-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1.45;
  object-fit: cover;
  object-position: left;
  border-radius: 10px;
}
.section {
  padding: 112px 0;
  position: relative;
}
.section.dark {
  background: linear-gradient(180deg, var(--ink), rgba(2, 48, 149, 0.14));
}
.home-main {
  position: relative;
  background: var(--ink);
}
.home-site::before {
  position: absolute;
  z-index: 0;
  top: -190px;
  left: -290px;
  width: 1020px;
  height: 720px;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(2, 48, 149, 0.68) 0%,
    rgba(2, 48, 149, 0.32) 50%,
    transparent 74%
  );
  filter: blur(24px);
}
.home-site .home-main {
  z-index: 1;
  background: transparent;
}
.home-main .hero:before {
  display: none;
}
.home-main .hero-grid {
  position: relative;
  z-index: 1;
}
.home-main .section.dark,
.home-main .callout {
  background: transparent;
}
.home-story-backdrop {
  position: relative;
  background: linear-gradient(
    180deg,
    var(--ink) 0%,
    var(--ink) 40%,
    rgba(2, 48, 149, 0.76) 61%,
    rgba(2, 48, 149, 0.38) 72%,
    var(--ink) 91%
  );
}
.home-main .home-solutions,
.home-main .home-about {
  background: transparent;
}
.section-head {
  max-width: 690px;
  margin-bottom: 46px;
}
.section h2 {
  font-size: clamp(32px, 4.3vw, 54px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin: 0 0 16px;
}
.section p {
  color: var(--muted);
  margin: 0 0 16px;
}
.cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 25px;
  border: 1px solid var(--line);
  background: linear-gradient(
    145deg,
    rgba(254, 254, 254, 0.07),
    rgba(254, 254, 254, 0.015)
  );
  border-radius: var(--r);
  min-height: 230px;
  transition:
    0.32s transform cubic-bezier(0.2, 0.72, 0.25, 1),
    0.32s border-color,
    0.32s box-shadow,
    0.32s background;
}
.card::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent,
    var(--blue) 26%,
    rgba(254, 254, 254, 0.82) 50%,
    var(--blue) 74%,
    transparent
  );
  box-shadow: 0 0 16px rgba(52, 134, 246, 0.75);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.42s cubic-bezier(0.2, 0.72, 0.25, 1);
}
.card::after {
  position: absolute;
  inset: -45% -35% auto;
  height: 72%;
  content: "";
  pointer-events: none;
  background: radial-gradient(
    ellipse at center,
    rgba(52, 134, 246, 0.2),
    rgba(2, 48, 149, 0.1) 42%,
    transparent 72%
  );
  opacity: 0;
  filter: blur(12px);
  transform: translateY(-12px);
  transition:
    0.36s opacity ease,
    0.36s transform ease;
}
.card:hover {
  z-index: 1;
  transform: translateY(-6px) scale(1.018);
  border-color: var(--blue);
  background: linear-gradient(
    145deg,
    rgba(52, 134, 246, 0.16),
    rgba(2, 48, 149, 0.14) 52%,
    rgba(1, 1, 1, 0.78)
  );
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.42),
    0 0 30px rgba(2, 48, 149, 0.38);
}
.card:hover::before {
  transform: scaleX(1);
}
.card:hover::after {
  opacity: 1;
  transform: translateY(0);
}
.card-num {
  position: relative;
  z-index: 1;
  color: var(--blue);
  font-weight: 800;
  font-size: 13px;
}
.card h3 {
  position: relative;
  z-index: 1;
  font-size: 21px;
  line-height: 1.2;
  margin: 27px 0 12px;
}
.card p {
  position: relative;
  z-index: 1;
  font-size: 14px;
}
.product-band {
  padding: 88px 0;
  background: radial-gradient(
    ellipse at 60% 45%,
    rgba(2, 48, 149, 0.7) 0%,
    var(--ink) 54%,
    var(--ink) 100%
  );
}
.home-about {
  position: relative;
  padding: 126px 0;
  overflow: hidden;
}
.home-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) 2px minmax(0, 0.78fr);
  align-items: center;
  gap: clamp(42px, 7vw, 114px);
  min-height: 650px;
}
.home-about h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(72px, 7.8vw, 128px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.09em;
}
.home-about h2 span {
  display: block;
}
.home-about-divider {
  width: 2px;
  height: min(100%, 700px);
  min-height: 510px;
  background: rgba(254, 254, 254, 0.92);
}
.home-about-copy {
  max-width: 560px;
}
.home-about-copy p {
  margin: 0 0 34px;
  color: var(--text);
  font-size: clamp(19px, 1.6vw, 26px);
  font-weight: 360;
  line-height: 1.48;
}
.home-about-copy p:last-child {
  margin-bottom: 0;
}
.home-about-copy strong {
  color: var(--text);
  font-weight: 750;
}
.home-contact {
  position: relative;
  min-height: 660px;
  padding: 126px 0;
  background: linear-gradient(0deg, #023095 0%, #000000 61.65021929824561%);
}
.home-contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(54px, 10vw, 160px);
  min-height: 408px;
}
.home-contact h2 {
  margin: 0;
  color: var(--text);
  font-size: clamp(68px, 7.3vw, 120px);
  font-weight: 750;
  line-height: 1.02;
  letter-spacing: -0.09em;
}
.home-contact h2 span {
  display: block;
}
.home-contact-links {
  display: grid;
  gap: 25px;
  max-width: 540px;
}
.home-contact-links a {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: rgba(254, 254, 254, 0.8);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 320;
  line-height: 1.3;
  transition:
    color 0.22s ease,
    transform 0.22s ease;
}
.home-contact-links a:hover {
  color: var(--text);
  transform: translateX(5px);
}
.home-contact-links svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.55;
}
.intelligence-video {
  padding: 112px 0;
}
.intelligence-video-layout {
  display: grid;
  grid-template-columns: 0.55fr 1fr;
  gap: 42px;
  align-items: start;
}
.intelligence-video h2 {
  max-width: 405px;
  margin: 0 0 40px;
  color: var(--text);
  font-size: clamp(38px, 4.5vw, 59px);
  line-height: 1.1;
  letter-spacing: -0.055em;
}
.intelligence-video p {
  max-width: 320px;
  margin: 0;
  color: var(--text);
  font-weight: 300;
  line-height: 1.3;
}
.intelligence-video p strong {
  color: var(--text);
  font-weight: 800;
}
.intelligence-video-player {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid var(--blue);
  border-radius: 15px;
}
.intelligence-video-player video {
  display: block;
  width: 100%;
  height: auto;
}
.media img {
  width: 100%;
  display: block;
  border-radius: 15px;
  border: 1px solid var(--line);
  box-shadow: 0 25px 60px rgba(2, 48, 149, 0.42);
}
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
  margin: 75px 0;
}
.feature.reverse .media {
  order: -1;
}
.feature h2 {
  font-size: clamp(31px, 4vw, 52px);
}
.chip {
  display: inline-block;
  color: var(--text);
  border: 1px solid rgba(52, 134, 246, 0.65);
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  margin: 0 6px 8px 0;
}
.agents-intro {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}
.agents-intro .eyebrow {
  margin-bottom: 16px;
}
.agent-chips {
  margin-top: 24px;
}
.agent-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.agent-card {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 108px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: linear-gradient(
    145deg,
    rgba(2, 48, 149, 0.16),
    rgba(1, 1, 1, 0.94)
  );
  transition:
    0.25s transform,
    0.25s border-color,
    0.25s box-shadow,
    0.25s background;
}
.agent-card:hover {
  transform: translateY(-6px);
  border-color: var(--blue);
  background: linear-gradient(
    145deg,
    rgba(52, 134, 246, 0.26),
    rgba(2, 48, 149, 0.36)
  );
  box-shadow: 0 18px 42px rgba(2, 48, 149, 0.58);
}
.agent-badge {
  display: inline-grid;
  flex: 0 0 44px;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  color: var(--text);
  font-size: 12px;
  font-weight: 800;
}
.agent-card h3 {
  margin: 2px 0 5px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.2;
}
.agent-card p {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.35;
}
.callout {
  padding: 72px 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--ink) 60%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.callout .wrap {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
}
.callout h2 {
  font-size: clamp(32px, 4.5vw, 58px);
  line-height: 1.1;
  letter-spacing: -0.055em;
  margin: 0 0 12px;
}
.footer {
  padding: 65px 0 25px;
  background: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 45px;
}
.footer h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--blue);
}
.footer p,
.footer a {
  font-size: 14px;
  color: var(--muted);
  display: block;
  margin: 8px 0;
}
.legal {
  border-top: 1px solid var(--line);
  margin-top: 44px;
  padding-top: 22px;
  color: var(--muted);
  font-size: 11px;
}
.page-hero {
  padding: 70px 0 70px;
  position: relative;
  background: radial-gradient(
    ellipse at 75% 0%,
    rgba(2, 48, 149, 0.44),
    transparent 52%
  );
}
.page-hero h1 {
  max-width: 800px;
  font-size: clamp(44px, 6vw, 76px);
  line-height: 1.07;
  letter-spacing: -0.066em;
  margin: 0 0 22px;
}
.solution-list {
  display: grid;
  gap: 16px;
}
.solution {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px;
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 22px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--r);
  transition:
    transform 0.32s cubic-bezier(0.2, 0.72, 0.25, 1),
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background 0.32s ease;
}
.solution::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  content: "";
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.4s cubic-bezier(0.2, 0.72, 0.25, 1);
}
.solution::after {
  position: absolute;
  z-index: -1;
  inset: -70% -15% auto;
  height: 150%;
  content: "";
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(52, 134, 246, 0.22), transparent 56%);
  transition: opacity 0.32s ease;
}
.solution > * {
  position: relative;
  z-index: 1;
}
@media (hover: hover) {
  .solution:hover {
    transform: translateY(-5px) scale(1.006);
    border-color: var(--blue);
    background: linear-gradient(135deg, rgba(2, 48, 149, 0.2), var(--panel) 54%);
    box-shadow:
      0 16px 34px rgba(0, 0, 0, 0.34),
      0 0 26px rgba(2, 48, 149, 0.32);
  }
  .solution:hover::before {
    transform: scaleX(1);
  }
  .solution:hover::after {
    opacity: 1;
  }
}
.solution b {
  color: var(--blue);
  font-size: 13px;
  letter-spacing: 0.12em;
}
.solution h2 {
  font-size: 29px;
  margin: 0 0 10px;
  letter-spacing: -0.04em;
}
.diagram {
  padding: 28px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background:
    radial-gradient(circle at 50% 50%, rgba(2, 48, 149, 0.5), transparent 31%),
    var(--ink);
}
.diagram-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr 1fr;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.diagram-card {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: rgba(2, 48, 149, 0.16);
  font-size: 14px;
}
.diagram-core {
  border: 1px solid var(--blue);
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  padding: 16px;
  background: radial-gradient(circle, var(--blue-dark), var(--ink) 67%);
  font-weight: 800;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 22px;
}
.contact-card {
  padding: 32px;
  border-radius: var(--r);
  border: 1px solid var(--line);
  background: var(--panel);
}
.contact-card dt {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: var(--blue);
  margin-top: 22px;
}
.contact-card dd {
  margin: 4px 0;
  font-size: 18px;
}
.policy {
  max-width: 820px;
}
.policy h2 {
  font-size: 26px;
  margin-top: 44px;
}
.skip {
  position: absolute;
  left: -999px;
}
.skip:focus {
  left: 20px;
  top: 20px;
  z-index: 50;
  background: var(--text);
  color: var(--ink);
  padding: 10px;
}
@media (max-width: 850px) {
  .nav {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .header.open .nav {
    display: flex;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    transform: none;
    white-space: normal;
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    background: var(--ink);
    border: 1px solid var(--line);
    border-radius: 24px;
  }
  .header-cta {
    display: none;
  }
  .header.open .nav a {
    padding: 8px;
  }
  .hero {
    padding: 50px 0 64px;
    min-height: auto;
  }
  .hero-grid,
  .split,
  .feature,
  .contact-grid,
  .intelligence-video-layout,
  .data-dashboard-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .home-about {
    padding: 88px 0;
  }
  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
  }
  .home-about-divider {
    width: 100%;
    height: 1px;
    min-height: 1px;
  }
  .home-about-copy {
    max-width: 640px;
  }
  .home-contact {
    min-height: auto;
    padding: 88px 0;
  }
  .home-contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    min-height: auto;
  }
  .home-contact-links {
    max-width: 640px;
  }
  .feature.reverse .media {
    order: 0;
  }
  .cards {
    grid-template-columns: repeat(2, 1fr);
  }
  .agent-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .section {
    padding: 76px 0;
  }
  .callout .wrap {
    display: block;
  }
  .callout .button {
    margin-top: 20px;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  .diagram-grid {
    grid-template-columns: 1fr;
  }
  .diagram-core {
    aspect-ratio: auto;
    border-radius: 14px;
    padding: 30px;
  }
  .product-frame {
    transform: none;
  }
}
@media (max-width: 540px) {
  .wrap {
    width: min(calc(100% - (var(--gutter) * 2)), var(--max));
  }
  .header {
    height: 66px;
    top: 12px;
    border-radius: 24px;
  }
  .site > main {
    padding-top: 78px;
  }
  .brand {
    width: 142px;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .agent-grid {
    grid-template-columns: 1fr;
  }
  .card {
    min-height: 0;
  }
  .hero h1,
  .page-hero h1 {
    font-size: 42px;
  }
  .lead {
    font-size: 16px;
  }
  .section h2 {
    font-size: 34px;
  }
  .solution {
    grid-template-columns: 1fr;
    padding: 25px;
    gap: 10px;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .page-hero {
    padding: 48px 0;
  }
  .product-band {
    padding: 65px 0;
  }
  .home-about {
    padding: 70px 0;
  }
  .home-about h2 {
    font-size: clamp(62px, 20vw, 88px);
  }
  .home-about-copy p {
    margin-bottom: 26px;
    font-size: 19px;
  }
  .home-contact {
    padding: 70px 0;
  }
  .home-contact h2 {
    font-size: clamp(62px, 20vw, 88px);
  }
  .home-contact-links {
    gap: 20px;
  }
  .home-contact-links a {
    grid-template-columns: 24px minmax(0, 1fr);
    gap: 14px;
    font-size: 17px;
  }
  .home-contact-links svg {
    width: 24px;
    height: 24px;
  }
}
@media (prefers-reduced-motion: no-preference) {
  .hero h1,
  .hero .lead,
  .hero .actions {
    animation: rise 0.7s both;
  }
  .hero .lead {
    animation-delay: 0.12s;
  }
  .hero .actions {
    animation-delay: 0.22s;
  }
  @keyframes rise {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: none;
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition: none !important;
  }
}
