:root {
  --ink: #091525;
  --navy: #07111f;
  --blue: #1665d8;
  --cyan: #50d8f5;
  --white: #fff;
  --muted: #5b6c7f;
  --light: #eef4f8;
  --line: #d8e3eb;
  --max: 1180px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font:
    400 16px/1.68 "DM Sans",
    Arial,
    sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
}
.skip-link {
  position: absolute;
  left: -9999px;
  top: 1rem;
  z-index: 100;
  padding: 0.7rem 1rem;
  background: #fff;
}
.skip-link:focus {
  left: 1rem;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(9, 21, 37, 0.08);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(var(--max), calc(100% - 56px));
  min-height: 88px;
  margin: auto;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font:
    700 1.08rem/1.05 "Space Grotesk",
    Arial,
    sans-serif;
}
.brand img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 5px 8px rgba(8, 45, 105, 0.18));
}
.brand small {
  display: block;
  margin-top: 5px;
  color: #718094;
  font:
    500 0.64rem "DM Sans",
    Arial,
    sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 0.9rem;
  font-weight: 600;
}
.site-header nav a:hover,
.site-header nav .active {
  color: var(--blue);
}
.site-header .nav-button {
  padding: 12px 17px;
  border-radius: 9px;
  color: #fff;
  background: var(--blue);
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 19px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 27px;
  height: 2px;
  background: currentColor;
  content: "";
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  padding: 15px 21px;
  border-radius: 10px;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.button:hover {
  transform: translateY(-2px);
  color: #464545;
}
.button:focus-visible,
.site-header a:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 4px;
}
.button--primary {
  color: #fff;
  background: var(--blue);
}
.button--text {
  color: #dce7f2;
}
.software-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background: var(--navy);
}
.software-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 64px 64px;
}
.software-hero::after {
  position: absolute;
  top: -250px;
  right: -180px;
  width: 600px;
  height: 600px;
  border: 1px solid rgba(80, 216, 245, 0.15);
  border-radius: 50%;
  box-shadow:
    0 0 0 90px rgba(80, 216, 245, 0.02),
    0 0 0 180px rgba(80, 216, 245, 0.012);
  content: "";
}
.software-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 72px;
  align-items: center;
  width: min(var(--max), calc(100% - 56px));
  min-height: 720px;
  margin: auto;
  padding: 82px 0;
}
.software-hero .eyebrow {
  color: var(--cyan);
}
.software-hero h1 {
  max-width: 710px;
  margin: 0;
  font:
    600 clamp(3.5rem, 6vw, 6rem)/0.98 "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: -0.066em;
}
.software-hero h1 span {
  display: block;
  color: var(--cyan);
}
.software-hero__lead {
  max-width: 620px;
  margin: 29px 0 34px;
  color: #bccadc;
  font-size: 1.18rem;
}
.software-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.software-hero__points {
  display: flex;
  gap: 26px;
  flex-wrap: wrap;
  margin: 38px 0 0;
  padding: 0;
  color: #9cafc2;
  font-size: 0.82rem;
  list-style: none;
}
.software-hero__points li {
  position: relative;
  padding-left: 17px;
}
.software-hero__points li::before {
  position: absolute;
  top: 0.55em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--cyan);
  content: "";
}
.software-hero__visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 20px;
  box-shadow: 0 32px 85px rgba(0, 0, 0, 0.4);
}
.software-hero__visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(4, 12, 23, 0.9));
  content: "";
}
.software-hero__visual img {
  display: block;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.software-hero__visual figcaption {
  position: absolute;
  z-index: 1;
  right: 24px;
  bottom: 20px;
  left: 24px;
  display: flex;
  justify-content: space-between;
  font-size: 0.83rem;
}
.software-hero__visual figcaption span {
  color: #aab9ca;
}
.section {
  padding: 110px 28px;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 80px;
  align-items: end;
  width: min(var(--max), 100%);
  margin: 0 auto 52px;
}
.section-heading h2,
.solutions h2,
.process h2,
.software-contact h2 {
  margin: 0;
  font:
    600 clamp(2.7rem, 4.5vw, 4.6rem)/1.04 "Space Grotesk",
    Arial,
    sans-serif;
  letter-spacing: -0.058em;
}
.section-heading > p {
  max-width: 520px;
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 1.04rem;
}
.fit__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  width: min(var(--max), 100%);
  margin: auto;
  border: 1px solid var(--line);
  background: var(--line);
}
.fit__grid article {
  min-height: 260px;
  padding: 31px;
  background: #fff;
}
.fit__grid span {
  color: var(--blue);
  font:
    700 0.72rem "Space Grotesk",
    Arial,
    sans-serif;
}
.fit__grid h3 {
  margin: 27px 0 11px;
  font:
    600 1.25rem "Space Grotesk",
    Arial,
    sans-serif;
}
.fit__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}
.solutions {
  color: #fff;
  background: var(--navy);
}
.solutions .eyebrow {
  color: var(--cyan);
}
.solutions__intro {
  width: min(var(--max), 100%);
  margin: 0 auto 52px;
}
.solutions__intro h2 {
  max-width: 800px;
}
.solutions__intro > p:not(.eyebrow) {
  max-width: 600px;
  color: #a9b9ca;
}
.solutions__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  width: min(var(--max), 100%);
  margin: auto;
  background: rgba(255, 255, 255, 0.13);
}
.solutions__list article {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 22px;
  min-height: 235px;
  padding: 34px;
  background: #091625;
}
.solution-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  border: 1px solid rgba(80, 216, 245, 0.3);
  border-radius: 12px;
  color: var(--cyan);
  background: rgba(80, 216, 245, 0.06);
}
.solution-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.solutions__list span {
  color: var(--cyan);
  font:
    600 0.7rem "Space Grotesk",
    Arial,
    sans-serif;
}
.solutions__list h3 {
  margin: 14px 0 9px;
  font:
    600 1.3rem "Space Grotesk",
    Arial,
    sans-serif;
}
.solutions__list p {
  margin: 0;
  color: #a4b4c6;
  font-size: 0.91rem;
}
.benefits {
  background: var(--light);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  width: min(var(--max), 100%);
  margin: auto;
}
.benefits__grid article {
  min-height: 250px;
  padding: 31px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}
.benefits__grid strong {
  color: var(--blue);
  font:
    700 0.72rem "Space Grotesk",
    Arial,
    sans-serif;
}
.benefits__grid h3 {
  margin: 28px 0 10px;
  font:
    600 1.23rem "Space Grotesk",
    Arial,
    sans-serif;
}
.benefits__grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
}
.process__heading {
  width: min(var(--max), 100%);
  margin: 0 auto 50px;
}
.process__heading h2 {
  max-width: 800px;
}
.process__heading > p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
}
.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(var(--max), 100%);
  margin: auto;
  padding: 0;
  list-style: none;
  border-top: 1px solid #bccbd7;
}
.process__steps li {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 12px;
  min-height: 220px;
  padding: 30px;
  border-right: 1px solid var(--line);
}
.process__steps li:first-child {
  padding-left: 0;
}
.process__steps li:last-child {
  border-right: 0;
}
.process__steps > li > span {
  color: var(--blue);
  font:
    700 0.7rem "Space Grotesk",
    Arial,
    sans-serif;
}
.process__steps h3 {
  margin: 22px 0 8px;
  font:
    600 1.25rem "Space Grotesk",
    Arial,
    sans-serif;
}
.process__steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}
.software-contact {
  padding: 100px 28px;
  color: #fff;
  background: var(--blue);
}
.software-contact__inner {
  width: min(var(--max), 100%);
  margin: auto;
}
.software-contact .eyebrow {
  color: #c3f0f9;
}
.software-contact h2 {
  max-width: 900px;
  font-size: clamp(2.9rem, 5vw, 5rem);
}
.software-contact__inner > p:not(.eyebrow) {
  max-width: 650px;
  color: #dae9fc;
  font-size: 1.15rem;
}
.software-contact__actions {
  display: flex;
  gap: 12px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.button--white {
  color: var(--blue);
  background: #fff;
}
.button--outline {
  border: 1px solid rgba(255, 255, 255, 0.55);
  color: #fff;
}
.site-footer {
  padding: 36px 28px;
  color: #fff;
  background: #050c16;
}
.site-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 25px;
  width: min(var(--max), 100%);
  margin: auto;
}
.brand--footer img {
  width: 56px;
  height: 56px;
}
.site-footer p {
  color: #8999aa;
  font-size: 0.84rem;
}
.site-footer__inner > div {
  display: flex;
  gap: 22px;
  color: #a6b2bf;
  font-size: 0.84rem;
}
@media (max-width: 960px) {
  .site-header nav a:not(.nav-button) {
    display: none;
  }
  .software-hero__inner {
    grid-template-columns: 1fr;
    padding: 70px 0 80px;
  }
  .software-hero__visual {
    width: min(680px, 100%);
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .fit__grid,
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
  .process__steps {
    grid-template-columns: 1fr 1fr;
  }
  .process__steps li {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 640px) {
  .site-header__inner,
  .software-hero__inner {
    width: calc(100% - 40px);
  }
  .site-header__inner {
    min-height: 76px;
  }
  .brand img {
    width: 52px;
    height: 52px;
  }
  .brand > span {
    font-size: 0.98rem;
  }
  .site-header .nav-button {
    padding: 10px 12px;
    font-size: 0.78rem;
  }
  .software-hero__inner {
    min-height: auto;
    padding: 58px 0 65px;
  }
  .software-hero h1 {
    font-size: 3.15rem;
  }
  .software-hero__actions .button {
    width: 100%;
  }
  .software-hero__points {
    flex-direction: column;
    gap: 9px;
  }
  .section {
    padding: 76px 20px;
  }
  .fit__grid,
  .solutions__list,
  .benefits__grid,
  .process__steps {
    grid-template-columns: 1fr;
  }
  .fit__grid article,
  .benefits__grid article {
    min-height: auto;
  }
  .solutions__list article {
    grid-template-columns: 52px 1fr;
    min-height: auto;
    padding: 28px 22px;
  }
  .process__steps li,
  .process__steps li:first-child {
    min-height: auto;
    padding: 27px 0;
    border-right: 0;
  }
  .software-contact {
    padding: 76px 20px;
  }
  .software-contact__actions .button {
    width: 100%;
  }
  .site-footer__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .button {
    transition: none;
  }
}
