:root {
  color-scheme: light;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f7fbff;
  --text: #071945;
  --muted: #5e6d8f;
  --blue: #126bff;
  --blue-2: #22a7ff;
  --blue-3: #004fe7;
  --cyan: #36d7f7;
  --ink-line: rgba(7, 25, 69, 0.08);
  --tech-line: rgba(18, 107, 255, 0.11);
  --line: #cfe0ff;
  --line-strong: #b8d0ff;
  --green: #10b95a;
  --yellow: #f6bc16;
  --shadow: 0 18px 45px rgba(11, 71, 180, 0.12);
  --soft-shadow: 0 12px 30px rgba(11, 71, 180, 0.08);
  --radius: 8px;
  --container: 1300px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
}

body {
  margin: 0;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background:
    linear-gradient(128deg, transparent 0 58%, rgba(18, 107, 255, 0.045) 58.1% 58.25%, transparent 58.35% 100%),
    linear-gradient(48deg, transparent 0 70%, rgba(7, 25, 69, 0.045) 70.08% 70.22%, transparent 70.35% 100%),
    radial-gradient(ellipse at 78% 14%, rgba(18, 107, 255, 0.075), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #f8fbff 48%, #ffffff 100%);
  color: var(--text);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(7, 25, 69, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(7, 25, 69, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(18, 107, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 255, 0.05) 1px, transparent 1px);
  background-size:
    96px 96px,
    96px 96px,
    24px 24px,
    24px 24px;
  mask-image: linear-gradient(180deg, transparent 0, black 10%, black 62%, transparent 86%);
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 18%, rgba(7, 25, 69, 0.055) 18.1% 18.22%, transparent 18.35% 100%),
    linear-gradient(142deg, transparent 0 62%, rgba(18, 107, 255, 0.06) 62.08% 62.2%, transparent 62.35% 100%),
    linear-gradient(38deg, transparent 0 82%, rgba(54, 215, 247, 0.08) 82.08% 82.18%, transparent 82.3% 100%);
  background-size:
    820px 520px,
    680px 460px,
    900px 560px;
  background-position:
    right top,
    left 240px,
    center 120px;
  opacity: 0.34;
  mask-image: linear-gradient(180deg, black 0, black 54%, transparent 82%);
}

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

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

svg {
  display: block;
}

.site-header,
.hero,
.section,
.contact-panel,
.site-footer {
  width: min(calc(100% - 64px), var(--container));
  margin-inline: auto;
}

.site-header {
  display: grid;
  grid-template-columns: auto;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 38px 0 30px;
  position: relative;
  z-index: 10;
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(7, 25, 69, 0.08), rgba(54, 215, 247, 0.22), transparent);
  opacity: 0.72;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  position: relative;
  z-index: 1;
  font-size: 29px;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand-mark {
  width: 42px;
  height: 42px;
  filter: drop-shadow(0 8px 12px rgba(18, 107, 255, 0.18));
}

.footer-bottom a {
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.footer-bottom a:hover {
  color: var(--blue);
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: var(--radius);
  border: 1px solid transparent;
  padding: 0 26px;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 0;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

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

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

.button.primary {
  color: white;
  background: linear-gradient(180deg, #1974ff 0%, #0058f2 100%);
  box-shadow: 0 14px 28px rgba(18, 107, 255, 0.22);
}

.button.primary:hover {
  box-shadow: 0 18px 34px rgba(18, 107, 255, 0.28);
}

.button.secondary,
.button.email {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.88);
  border-color: var(--line-strong);
  box-shadow: var(--soft-shadow);
}

.button.whatsapp {
  color: white;
  background: linear-gradient(180deg, #16c766 0%, #0aa84f 100%);
  box-shadow: 0 15px 32px rgba(16, 185, 90, 0.24);
}

.hero {
  min-height: 650px;
  display: grid;
  grid-template-columns: minmax(380px, 0.86fr) minmax(610px, 1.14fr);
  align-items: center;
  gap: 42px;
  padding: 20px 0 8px;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -26px -42px -18px 42%;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(124deg, transparent 0 28%, rgba(7, 25, 69, 0.085) 28.1% 28.25%, transparent 28.36% 100%),
    linear-gradient(32deg, transparent 0 62%, rgba(18, 107, 255, 0.09) 62.08% 62.28%, transparent 62.4% 100%),
    linear-gradient(90deg, rgba(18, 107, 255, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(18, 107, 255, 0.08) 1px, transparent 1px);
  background-size:
    430px 330px,
    520px 380px,
    52px 52px,
    52px 52px;
  clip-path: polygon(9% 0, 100% 0, 100% 76%, 78% 100%, 0 100%, 0 20%);
  opacity: 0.38;
  mask-image: linear-gradient(90deg, transparent 0, black 22%, black 82%, transparent 100%);
}

.hero::after {
  content: "";
  position: absolute;
  top: 112px;
  right: 1%;
  width: 36%;
  height: 310px;
  z-index: 0;
  pointer-events: none;
  border-top: 1px solid rgba(7, 25, 69, 0.08);
  border-right: 1px solid rgba(18, 107, 255, 0.14);
  background:
    linear-gradient(145deg, transparent 0 44%, rgba(54, 215, 247, 0.16) 44.1% 44.24%, transparent 44.35% 100%),
    linear-gradient(20deg, transparent 0 70%, rgba(7, 25, 69, 0.07) 70.08% 70.2%, transparent 70.35% 100%);
  opacity: 0.44;
  mask-image: linear-gradient(180deg, transparent 0, black 18%, black 72%, transparent 100%);
}

.hero-copy {
  max-width: 585px;
  position: relative;
  z-index: 2;
}

.audience {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 18px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 10px 18px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 12px 25px rgba(11, 71, 180, 0.06);
  color: #23355f;
  font-size: 15px;
  font-weight: 600;
}

.audience svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero h1 {
  margin: 0;
  max-width: 650px;
  font-size: clamp(48px, 5vw, 73px);
  line-height: 1.06;
  letter-spacing: 0;
  color: var(--text);
}

.hero h1 span {
  display: block;
  color: var(--blue);
}

.hero-lede {
  max-width: 555px;
  margin: 22px 0 26px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
}

.proof-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin-top: 28px;
  color: #314263;
  font-size: 14px;
  font-weight: 600;
}

.proof-strip span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.proof-strip span + span {
  position: relative;
}

.proof-strip span + span::before {
  content: "";
  width: 1px;
  height: 18px;
  background: var(--line);
  position: absolute;
  left: -15px;
}

.proof-strip svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: var(--blue);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-visual {
  min-height: 625px;
  position: relative;
  z-index: 1;
  isolation: isolate;
  overflow: hidden;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: 64px 50px 20px;
  z-index: -3;
  background:
    linear-gradient(128deg, transparent 0 35%, rgba(7, 25, 69, 0.1) 35.1% 35.28%, transparent 35.42% 100%),
    linear-gradient(38deg, transparent 0 68%, rgba(54, 215, 247, 0.16) 68.08% 68.28%, transparent 68.42% 100%),
    radial-gradient(circle at 50% 48%, rgba(18, 107, 255, 0.14), transparent 32%),
    linear-gradient(rgba(18, 107, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 255, 0.11) 1px, transparent 1px);
  background-size:
    360px 280px,
    420px 320px,
    auto,
    38px 38px,
    38px 38px;
  transform: perspective(620px) rotateX(59deg) rotateZ(-26deg);
  transform-origin: center;
  border-radius: 50%;
  opacity: 0.62;
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 80px 80px 40px;
  z-index: -2;
  background:
    linear-gradient(115deg, transparent 0 52%, rgba(7, 25, 69, 0.07) 52.08% 52.22%, transparent 52.36% 100%),
    linear-gradient(40deg, transparent 0 34%, rgba(54, 215, 247, 0.14) 34.08% 34.22%, transparent 34.36% 100%),
    radial-gradient(circle, rgba(18, 107, 255, 0.18), transparent 58%);
  filter: blur(26px);
}

.connector-map {
  position: absolute;
  inset: 24px 0 0;
  width: 100%;
  height: 95%;
  z-index: -1;
}

.connector-map path {
  fill: none;
  stroke: rgba(18, 107, 255, 0.62);
  stroke-width: 2.4;
  stroke-dasharray: 6 10;
  stroke-dashoffset: 0;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: 0.68;
  filter: drop-shadow(0 0 6px rgba(18, 107, 255, 0.24));
  transition:
    opacity 180ms ease,
    stroke 180ms ease,
    stroke-width 180ms ease,
    filter 180ms ease;
  animation: data-channel 1.45s linear infinite;
}

.connector-map path:nth-of-type(2) {
  animation-delay: -0.24s;
}

.connector-map path:nth-of-type(3) {
  animation-delay: -0.48s;
}

.connector-map path:nth-of-type(4) {
  animation-delay: -0.72s;
}

.connector-map path:nth-of-type(5) {
  animation-delay: -0.96s;
}

.connector-map path:nth-of-type(6) {
  animation-delay: -1.2s;
}

.connector-map .flow-packets {
  pointer-events: none;
}

.connector-map .flow-packet {
  fill: #38d8ff;
  stroke: white;
  stroke-width: 1.8px;
  opacity: 0.54;
  filter:
    drop-shadow(0 0 5px rgba(56, 216, 255, 0.78))
    drop-shadow(0 0 11px rgba(18, 107, 255, 0.42));
  transition:
    opacity 180ms ease,
    r 180ms ease;
}

.hero-visual[data-active-flow] .connector-map path {
  opacity: 0.38;
}

.hero-visual[data-active-flow] .connector-map .flow-packet {
  opacity: 0.22;
}

.connector-map path.is-flow-active {
  stroke: rgba(18, 107, 255, 0.95);
  stroke-width: 3.3;
  opacity: 1;
  filter:
    drop-shadow(0 0 8px rgba(18, 107, 255, 0.46))
    drop-shadow(0 0 16px rgba(56, 216, 255, 0.24));
  animation-duration: 0.82s;
}

.connector-map .flow-packet.is-flow-active {
  fill: #0f6cff;
  opacity: 1;
  r: 4.8px;
  filter:
    drop-shadow(0 0 7px rgba(56, 216, 255, 0.95))
    drop-shadow(0 0 15px rgba(18, 107, 255, 0.68));
}

.hero-visual.is-agent-thinking .connector-map path.is-flow-active {
  stroke-width: 3.8;
  animation-duration: 0.48s;
}

@keyframes data-channel {
  to {
    stroke-dashoffset: -32;
  }
}

.agent-card {
  width: 170px;
  min-height: 142px;
  position: absolute;
  border: 1px solid var(--line-strong);
  border-radius: 11px;
  padding: 16px 16px 14px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.88)),
    linear-gradient(135deg, rgba(18, 107, 255, 0.12), transparent 42%, rgba(7, 25, 69, 0.045));
  box-shadow:
    var(--soft-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease;
}

.agent-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  right: 13px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 247, 0.62), transparent);
  opacity: 0.72;
}

.agent-card:hover,
.agent-card:focus-visible,
.agent-card.is-active {
  transform: translateY(-4px);
  border-color: var(--blue);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(247, 251, 255, 0.94)),
    linear-gradient(135deg, rgba(18, 107, 255, 0.16), transparent 42%, rgba(7, 25, 69, 0.055));
  box-shadow: 0 18px 42px rgba(18, 107, 255, 0.18);
}

.agent-card:focus-visible {
  outline: 3px solid rgba(18, 107, 255, 0.2);
  outline-offset: 3px;
}

.agent-card.is-active::after {
  content: "";
  position: absolute;
  top: 12px;
  right: 12px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 16px rgba(18, 107, 255, 0.65);
}

.agent-card h3,
.feature-card h3,
.industry-card h3,
.timeline h3 {
  margin: 0;
  color: #0b1d4b;
  font-size: 14px;
  line-height: 1.25;
  font-weight: 800;
}

.agent-card h3 {
  padding-left: 32px;
  min-height: 24px;
  display: flex;
  align-items: center;
}

.agent-card ul {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
  color: #3f4e71;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.75;
}

.agent-card li {
  display: flex;
  align-items: center;
  gap: 7px;
}

.agent-card li::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1.5px solid #7c8bab;
  border-radius: 2px;
}

.card-icon {
  width: 25px;
  height: 25px;
  position: absolute;
  top: 15px;
  left: 15px;
  display: grid;
  place-items: center;
  color: var(--blue);
}

.card-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card-systems {
  top: 137px;
  left: 18px;
}

.card-data {
  top: 24px;
  left: 295px;
}

.card-agents {
  top: 101px;
  right: 52px;
}

.card-actions {
  top: 286px;
  right: 8px;
}

.card-integrations {
  left: 82px;
  bottom: 86px;
}

.card-analytics {
  right: 220px;
  bottom: 40px;
}

.agent-core {
  --bot-x: 0px;
  --bot-y: 0px;
  --bot-rotate: 0deg;
  --bot-scale: 1;
  --eye-x: 0px;
  --eye-y: 0px;
  width: 270px;
  height: 240px;
  position: absolute;
  left: 50%;
  top: 46%;
  transform:
    translate(-50%, -50%)
    translate(var(--bot-x), var(--bot-y))
    rotate(var(--bot-rotate))
    scale(var(--bot-scale));
  transition: transform 180ms ease;
}

.agent-core::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 4px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(18, 107, 255, 0.35);
  border-radius: 50%;
  opacity: 0;
  transform: translateX(-50%) scale(0.72);
  pointer-events: none;
}

.hero-visual.is-agent-thinking .agent-core::after {
  animation: agent-pulse 850ms ease-out;
}

@keyframes agent-pulse {
  0% {
    opacity: 0.72;
    transform: translateX(-50%) scale(0.5);
  }

  100% {
    opacity: 0;
    transform: translateX(-50%) scale(1.25);
  }
}

.platform {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) rotateX(58deg) rotateZ(45deg);
  border-radius: 24px;
  background: linear-gradient(135deg, #eff7ff 0%, #cde3ff 45%, #f9fdff 100%);
  box-shadow:
    0 22px 36px rgba(22, 92, 220, 0.22),
    inset 0 0 0 2px rgba(255, 255, 255, 0.86);
}

.platform-back {
  width: 220px;
  height: 220px;
  bottom: 5px;
}

.platform-mid {
  width: 166px;
  height: 166px;
  bottom: 40px;
  background: linear-gradient(135deg, #f8fcff 0%, #d9ebff 55%, #ffffff 100%);
}

.robot {
  width: 134px;
  height: 152px;
  position: absolute;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
}

.robot::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 15px;
  width: 98px;
  height: 98px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #fff 0%, #ddecff 100%);
  box-shadow: 0 14px 28px rgba(0, 58, 160, 0.22);
}

.robot-head {
  width: 88px;
  height: 53px;
  position: absolute;
  z-index: 2;
  left: 50%;
  top: 41px;
  transform: translateX(-50%);
  border-radius: 21px;
  background: linear-gradient(180deg, #11296c 0%, #0e1f55 100%);
  box-shadow:
    inset 0 0 0 2px rgba(255, 255, 255, 0.12),
    0 14px 24px rgba(0, 72, 180, 0.2);
}

.robot-head::before,
.robot-head::after {
  content: "";
  position: absolute;
  top: 18px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #5ce2ff;
  box-shadow: 0 0 14px rgba(92, 226, 255, 0.78);
  transform: translate(var(--eye-x), var(--eye-y));
  transition: transform 150ms ease;
}

.robot-head::before {
  left: 23px;
}

.robot-head::after {
  right: 23px;
}

.robot-head span {
  position: absolute;
  top: 17px;
  width: 16px;
  height: 22px;
  border: 4px solid #93c6ff;
}

.robot-head span:first-child {
  left: -12px;
  border-right: 0;
  border-radius: 12px 0 0 12px;
}

.robot-head span:last-child {
  right: -12px;
  border-left: 0;
  border-radius: 0 12px 12px 0;
}

.robot-body {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 24px;
  width: 84px;
  height: 58px;
  transform: translateX(-50%);
  border-radius: 36px 36px 25px 25px;
  background: linear-gradient(180deg, #ffffff 0%, #cfe3ff 100%);
  box-shadow: 0 16px 24px rgba(0, 72, 180, 0.18);
}

.agent-status {
  width: min(260px, calc(100% - 24px));
  position: absolute;
  left: var(--status-x, 50%);
  top: var(--status-y, 455px);
  z-index: 4;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(247, 251, 255, 0.9)),
    linear-gradient(135deg, rgba(54, 215, 247, 0.12), transparent 48%);
  box-shadow:
    var(--soft-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(8px);
  transform: translateX(-50%);
  text-align: left;
  pointer-events: none;
  transition:
    left 220ms ease,
    top 220ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.agent-status::before {
  content: "";
  position: absolute;
  top: 0;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 107, 255, 0.62), rgba(54, 215, 247, 0.55), transparent);
}

.hero-visual.is-agent-thinking .agent-status {
  border-color: var(--blue);
  box-shadow: 0 18px 42px rgba(18, 107, 255, 0.16);
}

.agent-status span {
  display: block;
  margin-bottom: 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.agent-status strong {
  display: block;
  color: var(--text);
  font-size: 15px;
  line-height: 1.25;
}

.agent-status p {
  margin: 5px 0 0;
  color: #4f5d7f;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 560;
}

.section {
  padding: 18px 0 8px;
  position: relative;
}

.section-heading {
  display: flex;
  justify-content: center;
  margin-bottom: 12px;
}

.section h2 {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.2;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card,
.industry-card,
.outcome-grid article,
.solution-grid article {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.93), rgba(248, 251, 255, 0.82)),
    linear-gradient(135deg, rgba(18, 107, 255, 0.08), transparent 44%, rgba(7, 25, 69, 0.035));
  box-shadow:
    var(--soft-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.84);
}

.feature-card::before,
.industry-card::before,
.outcome-grid article::before,
.solution-grid article::before {
  content: "";
  position: absolute;
  top: 0;
  left: 16px;
  right: 16px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(54, 215, 247, 0.42), transparent);
}

.feature-card {
  min-height: 166px;
  display: grid;
  grid-template-columns: 58px 1fr;
  column-gap: 16px;
  padding: 22px 22px 18px;
}

.feature-icon {
  width: 46px;
  height: 46px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-row: 1 / span 3;
}

.feature-card p,
.industry-card p,
.timeline p,
.solution-grid span {
  margin: 9px 0 0;
  color: #4f5d7f;
  font-size: 13px;
  line-height: 1.62;
  font-weight: 520;
}

.feature-card a {
  width: fit-content;
  margin-top: 16px;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.solution-grid article {
  padding: 20px 22px;
}

.solution-grid strong {
  display: block;
  font-size: 15px;
  color: var(--text);
}

.solution-grid span {
  display: block;
}

.industry-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.industry-card {
  min-height: 132px;
  padding: 20px 18px;
}

.industry-card svg {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.industry-card p {
  font-size: 12px;
  line-height: 1.58;
}

.approach {
  padding-top: 28px;
}

.timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding-top: 26px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 39px;
  left: 11%;
  right: 11%;
  border-top: 2px dashed var(--line-strong);
}

.timeline article {
  position: relative;
  display: grid;
  justify-items: center;
  text-align: center;
}

.timeline span {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  border-radius: 50%;
  background: linear-gradient(180deg, #3f8cff 0%, #126bff 100%);
  color: white;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(18, 107, 255, 0.2);
}

.timeline svg {
  width: 30px;
  height: 30px;
  margin-bottom: 8px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline p {
  max-width: 190px;
  font-size: 12px;
}

.outcomes {
  padding-top: 20px;
}

.outcome-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.outcome-grid article {
  min-height: 94px;
  display: grid;
  grid-template-columns: 54px 1fr;
  align-items: center;
  column-gap: 12px;
  padding: 18px 20px;
}

.outcome-grid svg {
  width: 46px;
  height: 46px;
  color: var(--blue);
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  grid-row: 1 / span 2;
}

.outcome-grid article:last-child svg {
  color: var(--yellow);
}

.outcome-grid strong {
  display: block;
  color: #071945;
  font-size: 27px;
  line-height: 1;
}

.outcome-grid span {
  color: #4f5d7f;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 560;
}

.contact-panel {
  display: grid;
  grid-template-columns: 250px 1fr auto;
  align-items: center;
  gap: 28px;
  position: relative;
  overflow: hidden;
  min-height: 174px;
  margin-top: 28px;
  padding: 24px 30px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.94), rgba(248, 251, 255, 0.97)),
    linear-gradient(128deg, transparent 0 54%, rgba(7, 25, 69, 0.07) 54.08% 54.24%, transparent 54.36% 100%),
    radial-gradient(ellipse at 9% 55%, rgba(18, 107, 255, 0.14), transparent 30%);
  box-shadow:
    var(--soft-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.contact-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(54, 215, 247, 0.28), transparent),
    linear-gradient(rgba(18, 107, 255, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(18, 107, 255, 0.055) 1px, transparent 1px);
  background-size:
    100% 1px,
    34px 34px,
    34px 34px;
  background-position:
    top,
    center,
    center;
  opacity: 0.74;
}

.contact-panel > * {
  position: relative;
  z-index: 1;
}

.skyline svg {
  width: 225px;
  height: auto;
}

.skyline path {
  fill: none;
  stroke: #86b9ff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.skyline path:first-child {
  stroke: none;
}

.contact-copy h2 {
  margin: 0 0 6px;
  font-size: 22px;
  line-height: 1.25;
}

.contact-copy p {
  margin: 0;
  color: #415174;
  font-size: 16px;
  font-weight: 550;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr;
  gap: 44px;
  margin-top: 34px;
  padding: 36px 0 24px;
  border-top: 1px solid #dbe7fb;
}

.footer-brand .brand {
  font-size: 28px;
}

.footer-brand {
  max-width: 300px;
}

.footer-brand p {
  margin: 10px 0 0;
  color: #4f5d7f;
  font-size: 13px;
  line-height: 1.6;
  font-weight: 550;
}

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 22px;
  padding-top: 24px;
  border-top: 1px solid #dbe7fb;
  color: #667492;
  font-size: 13px;
}

.footer-bottom div {
  display: flex;
  gap: 34px;
  color: #20345e;
}

@media (max-width: 1180px) {
  .site-header,
  .hero,
  .section,
  .contact-panel,
  .site-footer {
    width: min(calc(100% - 40px), var(--container));
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 24px;
    padding-top: 6px;
  }

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

  .hero-visual {
    min-height: 610px;
  }

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

  .industry-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .outcome-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .contact-panel {
    grid-template-columns: 210px 1fr;
  }

  .contact-actions {
    grid-column: 2;
  }

}

@media (max-width: 820px) {
  body::before {
    background-size: 72px 72px;
  }

  body::after {
    opacity: 0.42;
    background-size:
      520px 360px,
      460px 320px,
      560px 360px;
  }

  .site-header,
  .hero,
  .section,
  .contact-panel,
  .site-footer {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    padding: 22px 0 18px;
    gap: 18px;
  }

  .brand {
    font-size: 25px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .audience {
    font-size: 13px;
    padding: 8px 12px;
  }

  .hero h1 {
    font-size: clamp(39px, 11.5vw, 52px);
    line-height: 1.05;
  }

  .hero-lede {
    margin: 18px 0 22px;
    font-size: 15.5px;
    line-height: 1.58;
  }

  .button {
    width: 100%;
    min-height: 50px;
  }

  .proof-strip {
    display: grid;
    gap: 12px;
  }

  .proof-strip span + span::before {
    display: none;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .hero-visual {
    min-height: auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-top: 6px;
    padding-top: 178px;
  }

  .hero-visual::before,
  .hero-visual::after,
  .connector-map {
    display: none;
  }

  .agent-core {
    top: 86px;
    --bot-scale: 0.72;
  }

  .agent-card {
    width: auto;
    min-height: 64px;
    position: relative;
    inset: auto;
    padding: 12px;
    border-radius: 10px;
  }

  .agent-card:hover,
  .agent-card:focus-visible,
  .agent-card.is-active {
    transform: translateY(-2px);
  }

  .agent-card h3 {
    min-height: 22px;
    padding-left: 28px;
    font-size: 12.5px;
  }

  .agent-card ul {
    display: none;
  }

  .agent-status {
    width: 100%;
    position: relative;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    grid-column: 1 / -1;
    padding: 13px 14px;
    transform: none;
  }

  .card-icon {
    top: 12px;
    left: 12px;
    width: 20px;
    height: 20px;
  }

  .card-icon svg {
    width: 20px;
    height: 20px;
  }

  .service-grid,
  .solution-grid,
  .industry-grid,
  .outcome-grid {
    grid-template-columns: 1fr;
  }

  .feature-card {
    grid-template-columns: 48px 1fr;
    min-height: auto;
    padding: 17px 16px;
  }

  .industry-card {
    min-height: auto;
    padding: 17px 16px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 8px;
  }

  .timeline::before {
    display: none;
  }

  .timeline article {
    grid-template-columns: 42px 36px 1fr;
    justify-items: start;
    align-items: center;
    text-align: left;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.84);
  }

  .timeline span,
  .timeline svg {
    margin: 0;
  }

  .timeline h3,
  .timeline p {
    grid-column: 3;
  }

  .timeline p {
    max-width: none;
    margin-top: 2px;
  }

  .outcome-grid article {
    grid-template-columns: 52px 1fr;
    min-height: 82px;
    padding: 14px 16px;
  }

  .contact-panel {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 22px 18px;
  }

  .skyline svg {
    width: min(190px, 100%);
  }

  .contact-actions {
    grid-column: 1;
  }

  .contact-actions {
    display: grid;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (max-width: 480px) {
  .site-header {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-top: 166px;
  }

  .agent-core {
    top: 80px;
    --bot-scale: 0.66;
  }

  .contact-copy h2 {
    font-size: 20px;
  }

  .footer-bottom div {
    display: grid;
    gap: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .connector-map path {
    animation: none;
  }

  .connector-map .flow-packet {
    display: none;
  }

  .agent-card,
  .agent-core,
  .robot-head::before,
  .robot-head::after {
    transition: none;
  }

  .hero-visual.is-agent-thinking .agent-core::after {
    animation: none;
  }
}
